@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  line-height: 2;
  color: #333;
}
@media (max-width: 599px) {
  body {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    font-size: 1.2rem;
    font-size: clamp(1rem, 3.2vw, 1.2rem);
  }
}
@media (min-width: 600px) {
  body {
    font-size: 1.4rem;
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  }
}

a {
  color: #333;
  text-decoration: none;
  transition: 0.9s;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.show--pc {
  display: block;
}
@media (max-width: 599px) {
  .show--pc {
    display: none;
  }
}
.show--sp {
  display: none;
}
@media (max-width: 599px) {
  .show--sp {
    display: block;
  }
}

.view_timer {
  display: none;
}

/*------------------------ メイン ------------------------*/
.ttl {
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 4.3vw, 1.6rem);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 600px) {
  .ttl {
    font-size: 2.4rem;
    font-size: clamp(2rem, 3.6vw, 2.4rem);
  }
}

.red {
  color: #e45666;
}

/*メインビジュアル*/
.mv {
  background: url("image/kanban_sp.jpg");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 599px) {
  .mv {
    height: 100vh;
    height: 100dvh;
  }
}
@media (min-width: 600px) {
  .mv {
    background: url("image/kanban.jpg");
    background-size: cover;
    height: 100vh;
  }
}
.mv-ttl {
  opacity: 0;
  transition: all 2s;
  width: 100px;
  width: clamp(80px, 27vw, 100px);
  transform: translate(0, 5%);
}
@media (min-width: 600px) {
  .mv-ttl {
    display: flex;
    align-items: center;
    width: 24vh;
    max-width: 200px;
    height: 66vh;
  }
}
.mv-mark {
  width: 90px;
  width: clamp(70px, 24vw, 90px);
  position: absolute;
  right: 10px;
  bottom: 10px;
}
@media (min-width: 600px) {
  .mv-mark {
    width: 160px;
    width: clamp(100px, 18vw, 160px);
    right: 30px;
    bottom: 30px;
  }
}

/*イントロ*/
.intro {
  padding: 50px 0;
}
@media (min-width: 600px) {
  .intro {
    padding: 120px 0;
  }
}
.intro::before {
  content: "";
  display: block;
  background: url("image/point.png") no-repeat center;
  background-size: contain;
  width: 112px;
  height: 2.5px;
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .intro::before {
    width: 225px;
    height: 5px;
    margin-bottom: 50px;
  }
}
.intro-ttl {
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .intro-ttl {
    margin-bottom: 50px;
  }
}
.intro-txt {
  text-align: center;
}
.intro-txt:not(:last-of-type) {
  margin-bottom: 20px;
}

/*メッセージ*/
.message {
  background: url("image/bg_sp.jpg") no-repeat center;
  background-size: cover;
  padding: 20px 0;
}
@media (min-width: 600px) {
  .message {
    background: url("image/bg.jpg") no-repeat center;
    background-size: cover;
    padding: 100px 0;
  }
}
.message-txt {
  color: #fff;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 599px) {
  .message-txt {
    font-size: 1.6rem;
    font-size: clamp(1.2rem, 4.3vw, 1.6rem);
  }
}
@media (min-width: 600px) {
  .message-txt {
    font-size: 3rem;
    font-size: clamp(2.4rem, 4.5vw, 3rem);
  }
}

/*メニュー*/
.menu {
  padding: 40px 0 50px;
}
@media (min-width: 600px) {
  .menu {
    padding: 70px 0 100px;
  }
}
.menu-ttl {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .menu-ttl {
    margin-bottom: 60px;
  }
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5px;
  row-gap: 10px;
  margin: 0 10px;
}
@media (min-width: 600px) {
  .menu-list {
    max-width: 650px;
    gap: 25px;
    margin: 0 auto;
  }
}
.menu-list-item a {
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  padding: 10px 0;
}
@media (min-width: 600px) {
  .menu-list-item a {
    padding: 25px 0;
  }
}
.menu-list-item a::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("image/arrow1.png") no-repeat center;
  background-size: contain;
  margin-right: 5px;
}
@media (min-width: 600px) {
  .menu-list-item a::before {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}
.menu-list-item:nth-child(1) a {
  background-color: #00b09b;
}
.menu-list-item:nth-child(2) a {
  background-color: #31669a;
}
.menu-list-item:nth-child(3) a {
  background-color: #f18c46;
}
.menu-list-item:nth-child(4) a {
  background-color: #dd9a89;
}

/*セクション*/
.section {
  background: #fff;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 30px 10px;
}
@media (min-width: 600px) {
  .section {
    padding: 100px 20px;
    margin-bottom: 100px;
  }
}
.section.textile {
  border-top: 10px solid #00b09b;
}
@media (min-width: 600px) {
  .section.textile {
    border-top: 25px solid #00b09b;
  }
}
.section.recycle {
  border-top: 10px solid #31669a;
}
@media (min-width: 600px) {
  .section.recycle {
    border-top: 25px solid #31669a;
  }
}
.section.environment {
  border-top: 10px solid #f18c46;
}
@media (min-width: 600px) {
  .section.environment {
    border-top: 25px solid #f18c46;
  }
}
.section.reduce {
  border-top: 10px solid #dd9a89;
}
@media (min-width: 600px) {
  .section.reduce {
    border-top: 25px solid #dd9a89;
  }
}
.section.reduce .section-img {
  margin-bottom: 0;
}
.section__wrap {
  background: #e7ded5;
  padding: 50px 20px;
}
@media (min-width: 600px) {
  .section__wrap {
    padding: 150px 20px;
  }
}
.section-ttl {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .section-ttl {
    margin-bottom: 60px;
  }
}
.section-txt {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .section-txt {
    margin-bottom: 60px;
  }
}
.section-img {
  line-height: 0;
  max-width: 600px;
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .section-img {
    margin-bottom: 50px;
  }
}
.section-link {
  display: flex;
  justify-content: center;
}
.section-link a {
  font-size: 1.3rem;
  font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  padding: 8px 15px;
}
@media (min-width: 600px) {
  .section-link a {
    font-size: 1.8rem;
    font-size: clamp(1.4rem, 1.2vw, 1.8rem);
    padding: 10px 20px;
  }
}
.section-link a::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("image/arrow2.png") no-repeat center;
  background-size: contain;
  margin-right: 5px;
}
@media (min-width: 600px) {
  .section-link a::before {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}

/*その他の取り組み*/
.other {
  max-width: 900px;
  margin: 0 auto;
}
.other-item {
  font-size: 1.3rem;
  font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 8px 15px;
}
@media (min-width: 600px) {
  .other-item {
    font-size: 1.8rem;
    font-size: clamp(1.4rem, 1.2vw, 1.8rem);
    padding: 15px 40px;
  }
}
.other-item:first-of-type {
  margin-bottom: 15px;
}
.other-item::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("image/ic_plus_sp.png");
  background-position: center;
  background-size: contain;
  margin-right: 10px;
}
@media (min-width: 600px) {
  .other-item::before {
    width: 27px;
    height: 27px;
    background-image: url("image/ic_plus.png");
    background-position: center;
    background-size: contain;
    margin-right: 20px;
  }
}
.other-item.active::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("image/ic_minus_sp.png");
  background-position: center;
  background-size: contain;
  margin-right: 10px;
}
@media (min-width: 600px) {
  .other-item.active::before {
    width: 27px;
    height: 27px;
    background-image: url("image/ic_minus.png");
    background-position: center;
    background-size: contain;
    margin-right: 20px;
  }
}
.other-item-content {
  background: #fff;
  padding: 20px 10px 50px;
  margin-bottom: 15px;
  display: none;
}
@media (min-width: 600px) {
  .other-item-content {
    padding: 50px 20px 100px;
  }
}
.other-item-content:first-of-type {
  transform: translateY(-15px);
}
.other-item-content.gender::before {
  content: "";
  display: block;
  background: url("image/point2_1.png") no-repeat center;
  background-size: contain;
  width: 85px;
  height: 2.5px;
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .other-item-content.gender::before {
    width: 170px;
    height: 5px;
    margin-bottom: 50px;
  }
}
.other-item-content.gender .other-item-content__inner-ttl::before {
  content: "";
  display: block;
  background: url("image/point2_2.png") no-repeat center;
  background-size: contain;
  width: 25px;
  height: 2.5px;
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .other-item-content.gender .other-item-content__inner-ttl::before {
    width: 50px;
    height: 5px;
    margin: 0 0 30px;
  }
}
.other-item-content.career::before {
  content: "";
  display: block;
  background: url("image/point3_1.png") no-repeat center;
  background-size: contain;
  width: 85px;
  height: 2.5px;
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .other-item-content.career::before {
    width: 170px;
    height: 5px;
    margin-bottom: 50px;
  }
}
.other-item-content.career .other-item-content__inner-ttl::before {
  content: "";
  display: block;
  background: url("image/point3_2.png") no-repeat center;
  background-size: contain;
  width: 25px;
  height: 2.5px;
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .other-item-content.career .other-item-content__inner-ttl::before {
    width: 50px;
    height: 5px;
    margin: 0 0 30px;
  }
}
.other-item-content-ttl {
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .other-item-content-ttl {
    margin-bottom: 60px;
  }
}
.other-item-content-txt {
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .other-item-content-txt {
    margin-bottom: 100px;
  }
}
.other-item-content-img {
  line-height: 0;
  max-width: 600px;
  margin: 0 auto 30px;
}
@media (min-width: 600px) {
  .other-item-content-img {
    margin-bottom: 60px;
  }
}
.other-item-content__inner {
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .other-item-content__inner {
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 auto 60px;
  }
}
.other-item-content__inner.margin-n {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .other-item-content__inner--left > div {
    order: 2;
  }
}
.other-item-content__inner-ttl {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .other-item-content__inner-ttl {
    text-align: left;
    margin-bottom: 30px;
  }
}
@media (max-width: 599px) {
  .other-item-content__inner-txt {
    text-align: center;
    margin-bottom: 10px;
  }
}
.other-item-content__inner-img {
  line-height: 0;
}
@media (min-width: 600px) {
  .other-item-content__inner-img {
    max-width: 400px;
    flex-shrink: 0;
  }
}

/*フッター*/
.footer {
  padding: 50px 0 0;
}
@media (min-width: 600px) {
  .footer {
    padding-top: 100px;
  }
}
.footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: url("image/footer_sp.jpg") bottom 0 center;
  background-size: cover;
}
@media (min-width: 600px) {
  .footer::after {
    height: 70px;
    background: url("image/footer.jpg") bottom 0 center;
    background-size: cover;
  }
}
.footer-btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-right: 1px solid #333;
  border-left: 1px solid #333;
  width: 80%;
  margin: 0 auto 30px;
}
@media (min-width: 600px) {
  .footer-btn {
    max-width: 520px;
    margin-bottom: 60px;
  }
}
.footer-btn-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-btn-item img {
  max-width: 120px;
}
@media (min-width: 600px) {
  .footer-btn-item img {
    max-width: 180px;
  }
}
.footer-btn-item:first-of-type {
  border-right: 1px solid #333;
}

.copyright {
  font-size: 1rem;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .copyright {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
}

/*------------------------ 遅延読み込みアニメーション ------------------------*/
.animation.lazyload,
.animation.lazyloading {
  opacity: 0;
  visibility: hidden;
}

.animation.lazyloaded {
  opacity: 1;
  visibility: visible;
  transition: 0.8s;
}

/*------------------------ スクロールに合わせてアニメーション ------------------------*/
.animated.fadeinUp {
  opacity: 0;
  transform: translate(0, 20%);
  transition: all 2s;
}

.animated.fadeinUp.active {
  opacity: 1;
  transform: translate(0, 0);
}