@charset "UTF-8";
/**
 * rclamp拡張版
 * - 文字サイズ・高さ・幅・paddingなどに使える
 * - デフォルトのビューポートは SP: 390px, PC: 1400px
 */
/* clamp() Safari バグ対策 */
* {
  min-height: 0vw;
}

body {
  background: #fff;
  color: #464646;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 2;
}

.text__change-color {
  color: #fd0a02;
}

.btn {
  background: #464646;
  padding-inline: 30px;
  justify-content: center; /* 横方向中央 */
  align-items: center;
  color: #fff;
  display: inline-flex;
  border: 1px solid #464646;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.btn:hover {
  background-color: #fff;
  color: #464646;
  border: 1px solid #464646;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.inner {
  margin: 0 auto;
  max-width: 1000px;
}
@media not screen and (min-width: 768px) {
  .inner {
    padding-inline: 15px;
  }
}

.section {
  padding-top: 94px;
  padding-bottom: 93px;
}
@media not screen and (min-width: 768px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section__title-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
}
.section__title-head::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: #464646;
}

.section__title-head-wrapper {
  display: flex;
  flex-direction: column;
}

.section__title-subText {
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .section__title-subText {
    font-size: 14px;
  }
}

.section__title-logo {
  max-width: 116px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .section__title-logo {
    max-width: 70px;
  }
}

.section__title {
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-weight: 600;
}
@media not screen and (min-width: 768px) {
  .section__title {
    font-size: 25px;
  }
}

.bold-text {
  font-weight: 700;
}

.animated__fadeIn {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated__fadeIn.js-show {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: sticky;
  top: 0;
  z-index: 101;
  width: 100%;
  background: #fff;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 82px 40px;
  padding-block: 5px;
}
@media screen and (max-width: 899px) {
  .header__inner {
    padding-left: 16px;
    height: 60px;
  }
}

.header__logo-title {
  transition: opacity 0.3s ease;
}
.header__logo-title img {
  width: 89.069px;
  height: 78.273px;
}
@media screen and (max-width: 899px) {
  .header__logo-title img {
    width: 57.207px;
    height: 50.273px;
    aspect-ratio: 57.21/50.27;
  }
}
.header__logo-title:hover {
  opacity: 0.8;
}

.header__lists {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media screen and (max-width: 899px) {
  .header__lists {
    display: none;
  }
}

.header__link {
  font-size: clamp(1.125rem, 0.45rem + 1.2vw, 1.5rem);
  font-family: "Open Sans", sans-serif;
}

.header__btn {
  margin-left: 27px;
  color: #fff;
  font-size: clamp(1.125rem, 0.675rem + 0.8vw, 1.375rem);
  height: 40px;
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 18px;
  right: 17px;
  width: 25px;
  height: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.drawer__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: #464646;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.drawer__icon.js-show::before {
  background: #464646;
}
@media screen and (min-width: 900px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 3px;
  border-radius: 6px;
  background: #fff;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 10.5px;
  background: #fff;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -10.5px;
  background: #fff;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 290px;
  height: 100vh;
  background: #464646;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.3s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
  padding-left: 34px;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.drawer__list li a {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.drawer__list li a:hover {
  opacity: 0.8;
}

.fv {
  position: relative;
}

.fv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.5625rem, 0.7178217822rem + 3.4653465347vw, 3.75rem);
  font-weight: 600;
}

.our-name {
  padding-top: 88px;
}
@media not screen and (min-width: 768px) {
  .our-name {
    padding-top: 60px;
  }
}

.our-name__inner {
  max-width: 729px;
  margin-inline: auto;
  text-align: center;
}

.our-name__title {
  margin-top: 73px;
  font-size: 24px;
}
@media not screen and (min-width: 768px) {
  .our-name__title {
    margin-top: 50px;
    font-size: 20px;
  }
}

.our-name__image {
  width: 270px;
  height: 234px;
  aspect-ratio: 15/13;
  animation: bounce 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

@keyframes bounce {
  /* 開始位置（第1回頂点） */
  0% {
    translate: 0 -140px;
    /* スローアウト（ゆっくり減速） */
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
  }
  /* 地面に戻る */
  28.57% {
    translate: 0 0;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.5;
  }
  /* 第2回バウンドの頂点（減衰） */
  50% {
    translate: 0 -70px;
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  /* 地面に戻る */
  71.43% {
    translate: 0 0;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  /* 第3回バウンドの頂点（さらに減衰） */
  85.71% {
    translate: 0 -30px;
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  /* 地面に戻る（最終位置） */
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
.our-name__text-contets {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media not screen and (min-width: 768px) {
  .our-name__text-contets {
    font-size: 14px;
    gap: 25px;
  }
}

.our-name__text-top .bold-text {
  font-weight: 800;
}

.how-we-dye {
  background: #f6f5f3;
}

.how-we-dye__inner {
  max-width: 808px;
}

.how-we-dye__lists {
  margin-top: 74px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.how-we-day__item {
  display: flex;
  gap: 8px;
}
@media not screen and (min-width: 768px) {
  .how-we-day__item {
    flex-direction: column;
    gap: 0;
  }
}

.how-we-day__item.reverse {
  flex-direction: row-reverse;
}
@media not screen and (min-width: 768px) {
  .how-we-day__item.reverse {
    flex-direction: column;
    gap: 0;
  }
}

.how-we-day__item-body,
.how-we-day__item-image {
  width: calc(50% - 4px);
}
@media not screen and (min-width: 768px) {
  .how-we-day__item-body,
  .how-we-day__item-image {
    width: 100%;
  }
}

.how-we-day__item-body {
  background: #cbc8c2;
  padding: 20px 43px 30px 50px;
}

/* 画像部分 */
.item-body__head {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

.item-body__head-alphabet {
  font-size: 22px;
  letter-spacing: 0.66px;
  position: absolute;
  top: 0;
  left: 0;
}

.item-body__head-number {
  font-size: 54px;
  font-weight: 600;
}

.item-body__title {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  margin-top: -18px;
}

.item-body__text {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 1.5; /* 21px */
  margin-top: 9px;
}

.craftsmanship__contents {
  margin-top: 80px;
  display: flex;
  gap: 60px;
}
@media not screen and (min-width: 768px) {
  .craftsmanship__contents {
    margin-top: 40px;
    flex-direction: column;
    gap: 30px;
  }
}

@media not screen and (min-width: 768px) {
  .craftsmanship__contents-image {
    margin: 0 auto;
    display: block;
  }
}

.craftsmanship__contents-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .craftsmanship__contents-body {
    gap: 15px;
  }
}

.craftsmanship__contents-body-title {
  font-size: 24px;
}
@media not screen and (min-width: 768px) {
  .craftsmanship__contents-body-title {
    font-size: 20px;
  }
}

@media not screen and (min-width: 768px) {
  .craftsmanship__contents-body-text {
    font-size: 14px;
  }
}

.thoughts {
  background: #f6f5f3;
}

.thoughts__contents {
  margin-top: 73px;
  display: flex;
  gap: 60px;
}
@media not screen and (min-width: 768px) {
  .thoughts__contents {
    margin-top: 40px;
    flex-direction: column;
    gap: 30px;
  }
}

@media not screen and (min-width: 768px) {
  .thoughts__contents-image {
    margin: 0 auto;
    display: block;
  }
}

.thoughts__contents-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .thoughts__contents-body {
    gap: 15px;
  }
}

.thoughts__contents-body-title {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
}
@media not screen and (min-width: 768px) {
  .thoughts__contents-body-title {
    font-size: 20px;
  }
}

.text-flow__line {
  position: relative;
  display: inline-block;
}

@keyframes text-flow {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
.text-flow__cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: #464646;
  /* 最初は非アニメーション状態 */
  clip-path: inset(0 100% 0 0);
}

.text-flow__base {
  display: block;
  position: relative;
  color: #ccc;
}

/* js-animate が付与されたときに動く */
.text-flow__cover.js-animate {
  animation: text-flow 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@media not screen and (min-width: 768px) {
  .thoughts__contents-body-text {
    font-size: 14px;
  }
}

.footer {
  background-color: #464646;
  padding-top: 55px;
  padding-bottom: 9px;
}
@media not screen and (min-width: 768px) {
  .footer {
    padding-top: 40px;
  }
}

.footer__inner {
  max-width: 920px;
  padding-inline: 20px;
  margin-inline: auto;
}

.footer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  max-width: 125px;
  height: auto;
  aspect-ratio: 125/109.85;
  width: 100%;
  transition: opacity 0.3s ease;
}
.footer__logo:hover {
  opacity: 0.8;
}
@media not screen and (min-width: 768px) {
  .footer__logo {
    max-width: 90px;
  }
}

.footer__body {
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__top-lists {
  color: #fff;
  display: flex;
  gap: 45px;
  margin-right: 27px;
}
@media not screen and (min-width: 768px) {
  .footer__top-lists {
    display: none;
  }
}

.footer__bottom-contents {
  display: flex;
  padding-left: 26px;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .footer__bottom-contents {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.footer__bottom-lists {
  display: flex;
  gap: 24px;
}

.footer__bottom-link {
  display: flex; /* 中央寄せ用 */
  align-items: center; /* 縦中央 */
  justify-content: center; /* 横中央 */
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 4px; /* 角丸が欲しければ */
  transition: opacity 0.3s ease;
}
.footer__bottom-link:hover {
  opacity: 0.8;
}

.footer__link-image-instagram {
  width: 27.925px;
  height: 27.925px;
}

.footer_btn {
  color: #464646;
  background-color: #fff;
  margin-inline: 58px 32px;
  padding-inline: 35px;
  font-family: "Open Sans", sans-serif;
  height: 35px;
}
@media not screen and (min-width: 768px) {
  .footer_btn {
    margin-inline: 0;
  }
}

.footer_copy {
  color: var(--BW-White, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 10px;
  letter-spacing: 0.2px;
  display: block;
  margin-top: 52px;
}
@media not screen and (min-width: 768px) {
  .footer_copy {
    margin-top: 20px;
  }
}