@charset "UTF-8";
body {
  font-family: "Zen Maru Gothic", serif;
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  background: #f7f5ef;
}
body.is-fixed {
  overflow: hidden;
}

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

.fade-in-up__scroll {
  opacity: 0; /* 初期状態で透明 */
  -webkit-transform: translateY(40px);
          transform: translateY(40px); /* 初期状態で少し下にオフセット */
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s; /* アニメーション設定 */
}

/* 表示時のスタイル */
.fade-in-up__scroll.is-visible {
  opacity: 1; /* 不透明にする */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に戻す */
}

.fade-in-up__scroll_deco {
  opacity: 0; /* 初期状態で透明 */
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* 初期状態で少し下にオフセット */
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s; /* アニメーション設定 */
}

/* 表示時のスタイル */
.fade-in-up__scroll_deco.is-visible {
  opacity: 1; /* 不透明にする */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に戻す */
}

.fade-in-left__scroll_1 {
  opacity: 0; /* 初期状態で透明 */
  -webkit-transform: translateX(-40px) rotate(-18deg);
          transform: translateX(-40px) rotate(-18deg); /* 初期状態で少し下にオフセット */
  -webkit-transition: opacity 1.3s, -webkit-transform 1.3s;
  transition: opacity 1.3s, -webkit-transform 1.3s;
  transition: opacity 1.3s, transform 1.3s;
  transition: opacity 1.3s, transform 1.3s, -webkit-transform 1.3s; /* アニメーション設定 */
}

/* 表示時のスタイル */
.fade-in-left__scroll_1.is-visible {
  opacity: 1; /* 不透明にする */
  -webkit-transform: translateX(0) rotate(-9.754deg);
          transform: translateX(0) rotate(-9.754deg); /* 元の位置に戻す */
}

.fade-in-left__scroll_2 {
  opacity: 0; /* 初期状態で透明 */
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px); /* 初期状態で少し下にオフセット */
  -webkit-transition: opacity 1.3s, -webkit-transform 1.3s;
  transition: opacity 1.3s, -webkit-transform 1.3s;
  transition: opacity 1.3s, transform 1.3s;
  transition: opacity 1.3s, transform 1.3s, -webkit-transform 1.3s; /* アニメーション設定 */
}

/* 表示時のスタイル */
.fade-in-left__scroll_2.is-visible {
  opacity: 1; /* 不透明にする */
  -webkit-transform: translateX(0) rotate(-9.754deg);
          transform: translateX(0) rotate(-9.754deg); /* 元の位置に戻す */
}

.fade-in-right__scroll {
  opacity: 0; /* 初期状態で透明 */
  -webkit-transform: translateX(40px);
          transform: translateX(40px); /* 初期状態で少し下にオフセット */
  -webkit-transition: opacity 1.3s, -webkit-transform 1.3s;
  transition: opacity 1.3s, -webkit-transform 1.3s;
  transition: opacity 1.3s, transform 1.3s;
  transition: opacity 1.3s, transform 1.3s, -webkit-transform 1.3s; /* アニメーション設定 */
}

/* 表示時のスタイル */
.fade-in-right__scroll.is-visible {
  opacity: 1; /* 不透明にする */
  -webkit-transform: translateX(0) rotate(11.806deg);
          transform: translateX(0) rotate(11.806deg); /* 元の位置に戻す */
}

/*-----------------------------------------------
  Splash
-----------------------------------------------*/
.splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #f7f5ef;
  text-align: center;
  display: none;
}

.splash__contents {
  max-width: 500px;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% - 77px));
          transform: translate(-50%, calc(-50% - 77px));
}
@media screen and (min-width: 768px) {
  .splash__contents {
    max-width: 800px;
  }
}
@media screen and (min-width: 1240px) {
  .splash__contents {
    -webkit-transform: translate(-50%, calc(-50% - 60px));
            transform: translate(-50%, calc(-50% - 60px));
  }
}

.splash__heading {
  font-family: "Darumadrop One", serif;
}

.splash__heading-main {
  font-size: 52.167px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 3px;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .splash__heading-main {
    font-size: 100px;
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 1240px) {
  .splash__heading-main {
    font-size: 150.069px;
    letter-spacing: 4.3px;
  }
}

.sunny .letter {
  display: inline-block;
}
.sunny .letter:first-child {
  color: #ec967d;
}
.sunny .letter:nth-child(2) {
  color: #ede04a;
}
.sunny .letter:nth-child(3) {
  color: #59ab33;
}
.sunny .letter:nth-child(4) {
  color: #8bccd2;
}
.sunny .letter:nth-child(5) {
  color: #26aebb;
}

.steps {
  margin-left: 7px;
}
@media screen and (min-width: 768px) {
  .steps {
    margin-left: 14px;
  }
}
@media screen and (min-width: 1240px) {
  .steps {
    margin-left: 20px;
  }
}
.steps .letter {
  display: inline-block;
}
.steps .letter:nth-child(1) {
  color: #ede04a;
}
.steps .letter:nth-child(2) {
  color: #8bccd2;
}
.steps .letter:nth-child(3) {
  color: #ec967d;
}
.steps .letter:nth-child(4) {
  color: #59ab33;
}
.steps .letter:nth-child(5) {
  color: #26aebb;
}

.splash__heading-sub {
  margin-top: 2px;
  font-size: 24.793px;
}
@media screen and (min-width: 768px) {
  .splash__heading-sub {
    margin-top: 10px;
    font-size: 32px;
  }
}
@media screen and (min-width: 1240px) {
  .splash__heading-sub {
    margin-top: 18px;
    font-size: 40px;
  }
}

.splash__heading-sub-text {
  margin-left: 1px;
}
@media screen and (min-width: 768px) {
  .splash__heading-sub-text {
    margin-left: 0;
  }
}
@media screen and (min-width: 1240px) {
  .splash__heading-sub-text {
    margin-left: -1px;
  }
}

.splash__heading-sub-text2 {
  margin-top: 2px;
  margin-left: -5px;
}
@media screen and (min-width: 768px) {
  .splash__heading-sub-text2 {
    margin-left: -7px;
  }
}
@media screen and (min-width: 1240px) {
  .splash__heading-sub-text2 {
    margin-top: 2.5px;
    margin-left: -10px;
  }
}

.splash__image1 {
  position: absolute;
  top: -72px;
  right: 40px;
  width: 76px;
}
@media screen and (min-width: 768px) {
  .splash__image1 {
    width: 88px;
  }
}
@media screen and (min-width: 1240px) {
  .splash__image1 {
    width: 100px;
    top: -8px;
    right: calc(50% - 332px);
  }
}

.splash__image2 {
  position: absolute;
  bottom: -83px;
  left: 17px;
  width: 84px;
}
@media screen and (min-width: 768px) {
  .splash__image2 {
    width: 140px;
  }
}
@media screen and (min-width: 1240px) {
  .splash__image2 {
    width: 198.139px;
    bottom: -3px;
    left: calc(-140px + -27 * (100vw - 1100px) / 340);
  }
}
@media screen and (min-width: 1440px) {
  .splash__image2 {
    left: calc(50% - 566px);
  }
}

/*-----------------------------------------------
  header
-----------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
}
@media screen and (min-width: 900px) {
  .header {
    display: none;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: calc(18px + 12 * (100vw - 375px) / 525);
  padding-right: calc(21px + 9 * (100vw - 375px) / 525);
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Darumadrop One", serif;
  font-size: calc(20.375px + 19.625 * (100vw - 375px) / 525);
  letter-spacing: 1.2px;
  margin-left: 1px;
  -webkit-transition: opacity 0.3s linear, visibility 0.3s linear;
  transition: opacity 0.3s linear, visibility 0.3s linear;
}
.header__logo .steps {
  margin-left: 2px;
}
.header__logo.is-checked {
  opacity: 0 !important;
  visibility: hidden;
}

.header__icon {
  margin-right: -1px;
}

.drawer-icon {
  width: calc(30px + 20 * (100vw - 375px) / 525);
  height: calc(14px + 20 * (100vw - 375px) / 525);
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked {
  width: calc(32.32px + 25.68 * (100vw - 375px) / 525);
}
.drawer-icon.is-checked .drawer-icon__bar {
  width: 100%;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  top: calc(8px + 10 * (100vw - 375px) / 525);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: calc(9px + 9 * (100vw - 375px) / 525);
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.drawer-icon.is-checked .drawer-icon__bar svg {
  fill: #7ec6d5;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(30px + 20 * (100vw - 375px) / 525);
  height: 2px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  fill: #ef8eb8;
}
.drawer-icon__bar:nth-child(1) {
  top: calc(0px + 4 * (100vw - 375px) / 525);
}
.drawer-icon__bar:nth-child(2) {
  top: calc(6px + 10 * (100vw - 375px) / 525);
}
.drawer-icon__bar:nth-child(3) {
  top: calc(12px + 16 * (100vw - 375px) / 525);
}

.header__contents {
  text-align: center;
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  background: #f7f5ef;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.header__contents.is-checked {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 900px) {
  .header__contents {
    display: none;
  }
}

.header__nav {
  display: block;
  margin-top: 107px;
  position: relative;
}
.header__nav::before {
  content: "";
  background: url(../img/menu_decoration_frame.svg) no-repeat center center/cover;
  width: 349px;
  height: 188px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% - 1.5px), calc(-50% + 8px));
          transform: translate(calc(-50% - 1.5px), calc(-50% + 8px));
}

.header-nav__lists {
  font-family: "Darumadrop One", serif;
  font-size: 20px;
  text-align: center;
}
.header-nav__lists li {
  margin-left: -20px;
  position: relative;
}
.header-nav__lists li::after {
  content: "";
  background: url(../img/menu_decoration_line.svg) no-repeat center center/cover;
  width: 217px;
  height: 6px;
  position: absolute;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 1.5px));
          transform: translateX(calc(-50% + 1.5px));
}
.header-nav__lists li:nth-child(2) {
  margin-top: 23px;
}
.header-nav__lists li:nth-child(3) {
  margin-top: 23px;
}
.header-nav__lists li .list-number {
  margin-left: 2px;
  font-size: 18px;
}
.header-nav__lists li .list-text {
  margin-left: 5px;
}
.header-nav__lists li a {
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.header-nav__lists li a:hover {
  opacity: 0.5;
}

.header__button {
  margin-top: 72px;
}
.header__button a {
  margin-inline: auto;
  display: block;
  width: 203px;
  height: 74px;
  padding-top: 15px;
  font-family: "Darumadrop One", serif;
  font-size: 28px;
  position: relative;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.header__button a:hover {
  opacity: 0.5;
}
.header__button a span {
  margin-left: -5px;
}
.header__button a::before {
  content: "";
  background: url(../img/menu_decoration_background.svg) no-repeat center;
  background-size: cover;
  width: 203px;
  height: 74px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% - 1.5px), calc(-50% + 0.5px));
          transform: translate(calc(-50% - 1.5px), calc(-50% + 0.5px));
  z-index: -1;
}

.header__sns {
  margin-top: 36px;
  margin-left: -3px;
}

.header-sns__heading {
  font-family: "Darumadrop One", serif;
  font-size: 22px;
  color: #ec967d;
}

.header__sns-links {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__sns-link {
  display: inline-block;
  width: 48px;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.header__sns-link:hover {
  opacity: 0.5;
}
/*-----------------------------------------------
  wrapper
-----------------------------------------------*/
/*-----------------------------------------------
  Contents
-----------------------------------------------*/
.contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*-----------------------------------------------
  Left Column
-----------------------------------------------*/
.left-column {
  display: none;
  position: relative;
}
@media screen and (min-width: 900px) {
  .left-column {
    display: block;
    width: 32.6388888889vw;
    height: 100vh;
    position: sticky;
    top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.left-column__heading {
  font-family: "Darumadrop One", serif;
}
@media screen and (min-width: 900px) {
  .left-column__heading {
    margin-top: 253px;
    margin-left: calc(15px + 13 * (100vw - 900px) / 340);
  }
}
@media screen and (min-width: 1240px) {
  .left-column__heading {
    margin-left: calc(28px + 29 * (100vw - 1240px) / 200);
  }
}
@media screen and (min-width: 1440px) {
  .left-column__heading {
    margin-left: calc(57px + 178 * (100vw - 1440px) / 560);
  }
}

.left-column__heading-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 2px;
}
@media screen and (min-width: 900px) {
  .left-column__heading-main {
    font-size: calc(30px + 31.549 * (100vw - 900px) / 340);
  }
}
@media screen and (min-width: 1240px) {
  .left-column__heading-main {
    font-size: 61.549px;
  }
}

.sunny .letter {
  display: inline-block;
}
.sunny .letter:first-child {
  color: #ec967d;
}
.sunny .letter:nth-child(2) {
  color: #ede04a;
}
.sunny .letter:nth-child(3) {
  color: #59ab33;
}
.sunny .letter:nth-child(4) {
  color: #8bccd2;
}
.sunny .letter:nth-child(5) {
  color: #26aebb;
}

@media screen and (min-width: 900px) {
  .steps {
    margin-left: 5px;
  }
}
@media screen and (min-width: 1240px) {
  .steps {
    margin-left: 10px;
  }
}
.steps .letter {
  display: inline-block;
}
.steps .letter:nth-child(1) {
  color: #ede04a;
}
.steps .letter:nth-child(2) {
  color: #8bccd2;
}
.steps .letter:nth-child(3) {
  color: #ec967d;
}
.steps .letter:nth-child(4) {
  color: #59ab33;
}
.steps .letter:nth-child(5) {
  color: #26aebb;
}

.left-column__heading-sub {
  margin-top: -1px;
  font-size: 16px;
  font-weight: 400;
}

.left-column__sns {
  margin-top: 141px;
}

.left-column__sns-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.left-column-sns-link {
  display: inline-block;
  width: 36px;
}
@media screen and (min-width: 1240px) {
  .left-column-sns-link {
    width: 48px;
  }
}

.left-column-decoration_image1 {
  position: absolute;
}
@media screen and (min-width: 900px) {
  .left-column-decoration_image1 {
    top: 8px;
    left: calc(4px + 14 * (100vw - 900px) / 340);
    width: calc(190px + 78 * (100vw - 900px) / 340);
  }
}
@media screen and (min-width: 1240px) {
  .left-column-decoration_image1 {
    left: 18px;
    width: 268px;
  }
}

.left-column-decoration_image2 {
  position: absolute;
  right: 7px;
}
@media screen and (min-width: 900px) {
  .left-column-decoration_image2 {
    top: calc(180px + -22 * (100vw - 900px) / 340);
    width: calc(80px + 45 * (100vw - 900px) / 340);
  }
}
@media screen and (min-width: 1240px) {
  .left-column-decoration_image2 {
    top: 158px;
    width: 125px;
  }
}

.left-column-decoration_image3 {
  position: absolute;
  left: 40px;
}
@media screen and (min-width: 900px) {
  .left-column-decoration_image3 {
    top: calc(360px + 50 * (100vw - 900px) / 340);
    left: calc(15px + 25 * (100vw - 900px) / 340);
    width: calc(74px + 41 * (100vw - 900px) / 340);
  }
}
@media screen and (min-width: 1240px) {
  .left-column-decoration_image3 {
    top: 410px;
    left: 40px;
    width: 115px;
  }
}

.left-column__sns {
  margin-top: 94px;
  margin-left: 18px;
  text-align: center;
}

.left-column-sns__heading {
  font-family: "Darumadrop One", serif;
  font-size: 22px;
  color: #ec967d;
}

.left-column__sns-links {
  margin-top: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.left-column__sns-link {
  display: inline-block;
  width: 48px;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.left-column__sns-link:hover {
  opacity: 0.5;
}
/*-----------------------------------------------
  Right Column
-----------------------------------------------*/
.right-column {
  display: none;
  position: relative;
}
@media screen and (min-width: 900px) {
  .right-column {
    display: block;
    width: 32.6388888889vw;
    height: 100vh;
    position: sticky;
    top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.right-column__inner {
  text-align: center;
}

.right-column__nav {
  margin-inline: auto;
  display: block;
  margin-top: 314px;
  position: relative;
}
.right-column__nav::before {
  content: "";
  background: url(../img/right_decoration_frame_small.svg) no-repeat center center/cover;
  width: 175px;
  height: 188px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -46%);
          transform: translate(-50%, -46%);
}
@media screen and (min-width: 1240px) {
  .right-column__nav::before {
    background: url(../img/right_decoration_frame.svg) no-repeat center center/cover;
    width: 350px;
    height: 188px;
  }
}

.right-column-nav__lists {
  font-family: "Darumadrop One", serif;
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 1240px) {
  .right-column-nav__lists {
    font-size: 20px;
  }
}
.right-column-nav__lists li {
  position: relative;
}
.right-column-nav__lists li::after {
  content: "";
  background: url(../img/right_decoration_line.svg) no-repeat center;
  background-size: cover;
  width: 140px;
  height: 4px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1240px) {
  .right-column-nav__lists li::after {
    width: 217px;
    height: 6px;
    bottom: -11px;
  }
}
.right-column-nav__lists li:not(:first-child) {
  margin-top: 23px;
}

.right-column-nav__link {
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.right-column-nav__link span:first-child {
  font-size: 18px;
}
.right-column-nav__link span:nth-child(2) {
  margin-left: 5px;
}
.right-column-nav__link:hover {
  opacity: 0.5;
}

.right-column__button {
  margin-top: 85px;
}
.right-column__button a {
  margin-inline: auto;
  padding-left: 1px;
  display: block;
  width: 201px;
  height: 74px;
  padding-top: 14px;
  font-family: "Darumadrop One", serif;
  font-size: 24px;
  position: relative;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.right-column__button a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1240px) {
  .right-column__button a {
    font-size: 28px;
  }
}
.right-column__button a span {
  margin-left: -3px;
}
.right-column__button a::before {
  content: "";
  background: url(../img/right_button_background.svg) no-repeat center center/cover;
  width: 184px;
  height: 68px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 1240px) {
  .right-column__button a::before {
    width: 201px;
    height: 74px;
  }
}

.right-column-decoration_image1 {
  position: absolute;
}
@media screen and (min-width: 900px) {
  .right-column-decoration_image1 {
    top: 9px;
    right: calc(4px + 6 * (100vw - 900px) / 340);
    width: calc(190px + 78 * (100vw - 900px) / 340);
  }
}
@media screen and (min-width: 1240px) {
  .right-column-decoration_image1 {
    right: 10px;
    width: 268px;
  }
}

/*-----------------------------------------------
  Main
-----------------------------------------------*/
.main {
  width: 100%;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .main {
    width: 500px;
    position: relative;
    z-index: 1;
  }
}

/*-----------------------------------------------
  First View
-----------------------------------------------*/
.fv {
  width: 100%;
  height: 160vw;
}
@media screen and (min-width: 900px) {
  .fv {
    height: 800px;
  }
}

.fv__slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fv__slide .swiper-wrapper {
  width: 100%;
}

.fv__slide-image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fv__slide-image-set {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.image-set1 {
  position: relative;
}
.image-set1 .fv__slide-decoration_1 {
  position: absolute;
  width: calc(39px + 55 * (100vw - 375px) / 525);
  top: 41.7%;
  left: 52.5%;
}
@media screen and (min-width: 900px) {
  .image-set1 .fv__slide-decoration_1 {
    width: 52px;
  }
}
.image-set1 .fv__slide-text {
  font-family: "Darumadrop One", serif;
  font-size: calc(18px + 27 * (100vw - 375px) / 525);
  line-height: 8.428px;
  letter-spacing: 0.9px;
  position: absolute;
  top: 41.1%;
  left: 28%;
  -webkit-transform: rotate(-15.218deg);
          transform: rotate(-15.218deg);
}
@media screen and (min-width: 900px) {
  .image-set1 .fv__slide-text {
    font-size: 24px;
    line-height: 11.237px;
    letter-spacing: 1.2px;
  }
}
.image-set1 .fv__slide-text span {
  display: inline-block;
}
.image-set1 .fv__slide-text span:nth-child(2) {
  margin-left: calc(3px + 4 * (100vw - 375px) / 525);
}

.image-set2 {
  position: relative;
}
.image-set2 .fv__slide-decoration_1 {
  position: absolute;
  width: calc(112px + 157 * (100vw - 375px) / 525);
  top: 10.4%;
  left: 9.5%;
}
@media screen and (min-width: 900px) {
  .image-set2 .fv__slide-decoration_1 {
    width: 149px;
  }
}
.image-set2 .fv__slide-text {
  font-family: "Darumadrop One", serif;
  font-size: calc(20px + 28 * (100vw - 375px) / 525);
  line-height: 8.428px;
  letter-spacing: 0.9px;
  position: absolute;
  top: 14.8%;
  left: 14%;
  -webkit-transform: rotate(-6.569deg);
          transform: rotate(-6.569deg);
}
@media screen and (min-width: 900px) {
  .image-set2 .fv__slide-text {
    font-size: 28px;
    letter-spacing: 0;
  }
}
.image-set2 .fv__slide-text span {
  display: inline-block;
}
.image-set2 .fv__slide-text span:nth-child(2) {
  margin-left: calc(3px + 4 * (100vw - 375px) / 525);
}
@media screen and (min-width: 900px) {
  .image-set2 .fv__slide-text span:nth-child(2) {
    margin-left: 4px;
  }
}
.image-set2 .fv__slide-text span:nth-child(3) {
  font-size: calc(14px + 20 * (100vw - 375px) / 525);
}
@media screen and (min-width: 900px) {
  .image-set2 .fv__slide-text span:nth-child(3) {
    font-size: 19px;
  }
}

.image-set3 {
  position: relative;
}
.image-set3 .fv__slide-decoration_1 {
  position: absolute;
  width: calc(138px + 193 * (100vw - 375px) / 525);
  top: 10%;
  right: 10%;
}
@media screen and (min-width: 900px) {
  .image-set3 .fv__slide-decoration_1 {
    width: 184px;
  }
}
.image-set3 .fv__slide-decoration_2 {
  position: absolute;
  top: 14.9%;
  right: 33.8%;
  width: calc(17px + 24 * (100vw - 375px) / 525);
  -webkit-transform: rotate(18.002deg);
          transform: rotate(18.002deg);
}
@media screen and (min-width: 900px) {
  .image-set3 .fv__slide-decoration_2 {
    width: 22px;
  }
}
.image-set3 .fv__slide-decoration_3 {
  position: absolute;
  top: 22.5%;
  right: 28.5%;
  width: calc(28px + 39 * (100vw - 375px) / 525);
  -webkit-transform: rotate(18.002deg);
          transform: rotate(18.002deg);
}
@media screen and (min-width: 900px) {
  .image-set3 .fv__slide-decoration_3 {
    width: 36px;
    top: 22.5%;
    right: 30.1%;
  }
}
.image-set3 .fv__slide-decoration_4 {
  position: absolute;
  top: 18.4%;
  right: 16.8%;
  width: calc(23px + 32 * (100vw - 375px) / 525);
  -webkit-transform: rotate(18.002deg);
          transform: rotate(18.002deg);
}
@media screen and (min-width: 900px) {
  .image-set3 .fv__slide-decoration_4 {
    width: 30px;
  }
}
.image-set4 {
  position: relative;
}
.image-set4 .fv__slide-decoration_1 {
  position: absolute;
  width: calc(33px + 46 * (100vw - 375px) / 525);
  top: 11.3%;
  right: 19.5%;
}
@media screen and (min-width: 900px) {
  .image-set4 .fv__slide-decoration_1 {
    width: 44px;
  }
}
.image-set4 .fv__slide-decoration_2 {
  position: absolute;
  top: 16.4%;
  right: 9%;
  width: calc(46px + 64 * (100vw - 375px) / 525);
  -webkit-transform: rotate(20.593deg);
          transform: rotate(20.593deg);
}
@media screen and (min-width: 900px) {
  .image-set4 .fv__slide-decoration_2 {
    width: 63px;
  }
}
.image-set4 .fv__slide-decoration_3 {
  position: absolute;
  bottom: 24%;
  left: 15%;
  width: calc(35px + 49 * (100vw - 375px) / 525);
}
@media screen and (min-width: 900px) {
  .image-set4 .fv__slide-decoration_3 {
    width: 49px;
  }
}
.image-set4 .fv__slide-decoration_4 {
  position: absolute;
  bottom: 37%;
  left: 11%;
  width: calc(19px + 27 * (100vw - 375px) / 525);
}
@media screen and (min-width: 900px) {
  .image-set4 .fv__slide-decoration_4 {
    width: 26px;
  }
}
/* アクティブなスライドの画像を元のサイズに戻す */
.swiper-slide-active .fv__slide-image-set.active,
.swiper-slide-duplicate-active .fv__slide-image-set.active {
  /* 12秒かけて拡大させる */
  -webkit-animation: zoomOut 6s linear 0s both;
          animation: zoomOut 6s linear 0s both;
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.fv__scroll {
  position: relative;
}

.scroll_down {
  position: absolute;
  bottom: 63px;
  right: 10.65%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .scroll_down {
    bottom: 101px;
    right: 9%;
  }
}
.scroll_down a {
  position: absolute;
  left: 7px;
  bottom: 116px;
  font-size: 16px;
  font-family: "Darumadrop One", serif;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  line-height: 12.4px;
  letter-spacing: 1.28px;
}
.scroll_down::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #333333;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.scroll_down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 166px;
  background: #333333;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 160px;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 160px;
  }
  100% {
    bottom: 0px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*-----------------------------------------------
  About
-----------------------------------------------*/
.about {
  background: #ffffff;
}

.about__inner {
  max-width: 375px;
  padding-block: 143px 72px;
  margin-inline: auto;
  position: relative;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-block: 159px 72px;
  }
}

.about__title {
  text-align: center;
  font-family: "Darumadrop One", serif;
  font-size: 24px;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.about__text {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0.98px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
    letter-spacing: 1.12px;
  }
}
.about__text p {
  margin-left: 5px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__text p {
    margin-left: 0;
  }
}
.about__text p::after {
  content: "";
  width: calc(300px + 75 * (100vw - 300px) / 75);
  max-width: 375px;
  height: 6.28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  bottom: -2.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.about__text p:nth-child(1)::after {
  background: url(../img/about_decoration_under-line_1.svg) no-repeat center center/cover;
  -webkit-transform: translateX(calc(-50% - 2.5px));
          transform: translateX(calc(-50% - 2.5px));
}
.about__text p:nth-child(2)::after {
  background: url(../img/about_decoration_under-line_2.svg) no-repeat center center/cover;
  bottom: -4.5px;
  -webkit-transform: translateX(calc(-50% - 2.5px));
          transform: translateX(calc(-50% - 2.5px));
}
.about__text p:nth-child(3)::after {
  background: url(../img/about_decoration_under-line_3.svg) no-repeat center center/cover;
  bottom: -2.5px;
  -webkit-transform: translateX(calc(-50% - 2.5px));
          transform: translateX(calc(-50% - 2.5px));
}
.about__text p:nth-child(4)::after {
  background: url(../img/about_decoration_under-line_4.svg) no-repeat center center/cover;
  bottom: -2.5px;
  -webkit-transform: translateX(calc(-50% - 2.5px));
          transform: translateX(calc(-50% - 2.5px));
}
.about__text p:nth-child(5)::after {
  background: url(../img/about_decoration_under-line_5.svg) no-repeat center center/cover;
  bottom: -3.5px;
  -webkit-transform: translateX(calc(-50% - 2.5px));
          transform: translateX(calc(-50% - 2.5px));
}
.about__text p:nth-child(6)::after {
  background: url(../img/about_decoration_under-line_6.svg) no-repeat center center/cover;
  bottom: -3.5px;
  -webkit-transform: translateX(calc(-50% - 2.5px));
          transform: translateX(calc(-50% - 2.5px));
}
.about__text p:nth-child(7)::after {
  background: url(../img/about_decoration_under-line_7.svg) no-repeat center center/cover;
  bottom: -5.5px;
  -webkit-transform: translateX(calc(-50% - 2.5px));
          transform: translateX(calc(-50% - 2.5px));
}

.about__decoration_image1 {
  position: absolute;
  top: 40px;
  right: 13px;
  width: 97px;
}
@media screen and (min-width: 768px) {
  .about__decoration_image1 {
    top: 56px;
    right: -32px;
  }
}

.about__decoration_image2 {
  position: absolute;
  bottom: 4px;
  left: 15px;
  width: 69px;
}
@media screen and (min-width: 768px) {
  .about__decoration_image2 {
    bottom: 4px;
    left: -28px;
  }
}

/*-----------------------------------------------
  Look
-----------------------------------------------*/
.look {
  background: #ffffff;
  overflow: hidden;
}
.look.odekake {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .look.odekake {
    margin-top: 23px;
  }
}
.look.amenohi {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .look.amenohi {
    margin-top: 60px;
  }
}
.look.casual {
  margin-top: 43px;
}
@media screen and (min-width: 768px) {
  .look.casual {
    margin-top: 60px;
  }
}

.look__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .look__inner {
    padding-inline: 30px;
  }
}

.look__card {
  max-width: 500px;
  margin-inline: auto;
  border-radius: 32px;
}
.look__card.odekake {
  background: #f8f8eb;
  padding-bottom: 39px;
}
@media screen and (min-width: 768px) {
  .look__card.odekake {
    padding-bottom: 43px;
  }
}
.look__card.amenohi {
  background: #ebf7f8;
  padding-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .look__card.amenohi {
    padding-bottom: 31px;
  }
}
.look__card.casual {
  background: #ebf8eb;
  padding-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .look__card.casual {
    padding-bottom: 26px;
  }
}

.look__heading {
  padding-top: 1px;
  text-align: center;
  font-family: "Darumadrop One", serif;
  position: relative;
}
.look__heading.odekake {
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  .look__heading.odekake {
    margin-top: -3px;
    margin-left: 6px;
  }
}
.look__heading.amenohi {
  margin-left: 2px;
}
@media screen and (min-width: 768px) {
  .look__heading.amenohi {
    padding-top: 1px;
    margin-left: -5px;
  }
}
.look__heading.casual {
  margin-left: 1px;
}
@media screen and (min-width: 768px) {
  .look__heading.casual {
    margin-left: 2px;
  }
}

.look-heading__title-en {
  font-size: 20px;
  line-height: 38.4px;
}

.look-heading__title-jp {
  font-size: 28px;
  line-height: 53.76px;
  position: relative;
  z-index: 5;
}
.look-heading__title-jp.odekake {
  margin-top: -16px;
}
.look-heading__title-jp.amenohi {
  margin-top: -16.5px;
}
.look-heading__title-jp.casual {
  margin-top: -16px;
}

.look-heading__decoration {
  width: 161px;
  position: absolute;
  left: 50%;
  bottom: 1px;
  -webkit-transform: translateX(calc(-50% - 2px));
          transform: translateX(calc(-50% - 2px));
}
.look-heading__decoration.amenohi {
  width: 161px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .look-heading__decoration.amenohi {
    bottom: 2px;
  }
}
.look-heading__decoration.casual {
  width: 161px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 2px;
}
@media screen and (min-width: 768px) {
  .look-heading__decoration.casual {
    width: 168px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.look__collection {
  max-width: 311px;
  margin-inline: auto;
}

.look-collection__images {
  position: relative;
}
.look-collection__images.odekake {
  height: 316px;
}
@media screen and (min-width: 768px) {
  .look-collection__images.odekake {
    height: 364px;
  }
}
.look-collection__images.amenohi {
  height: 313px;
}
@media screen and (min-width: 768px) {
  .look-collection__images.amenohi {
    height: 315px;
  }
}
.look-collection__images.casual {
  height: 390px;
}
@media screen and (min-width: 768px) {
  .look-collection__images.casual {
    height: 421px;
  }
}

.look-collection__image1 {
  position: absolute;
}
.look-collection__image1.odekake {
  width: 154px;
  top: 66px;
  left: 18px;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
}
@media screen and (min-width: 768px) {
  .look-collection__image1.odekake {
    width: 175px;
    top: 72px;
    left: -1px;
  }
}
.look-collection__image1.amenohi {
  width: 183px;
  top: 19px;
  left: -11px;
}
@media screen and (min-width: 768px) {
  .look-collection__image1.amenohi {
    left: -20px;
  }
}
.look-collection__image1.casual {
  width: 151px;
  top: 42px;
  left: 11px;
}
@media screen and (min-width: 768px) {
  .look-collection__image1.casual {
    width: 171px;
    top: 42px;
    left: -6px;
  }
}

.look-collection__image2 {
  position: absolute;
}
.look-collection__image2.odekake {
  width: 135px;
  top: 30px;
  right: 14px;
  -webkit-transform: rotate(7deg);
          transform: rotate(7deg);
}
@media screen and (min-width: 768px) {
  .look-collection__image2.odekake {
    width: 152px;
    top: 32px;
    right: -3px;
  }
}
.look-collection__image2.amenohi {
  width: 185px;
  top: 21px;
  right: -22px;
}
@media screen and (min-width: 768px) {
  .look-collection__image2.amenohi {
    right: -14px;
  }
}
.look-collection__image2.casual {
  width: 156.5px;
  top: 76px;
  right: 18px;
}
@media screen and (min-width: 768px) {
  .look-collection__image2.casual {
    width: 178px;
    top: 74px;
    right: -13px;
  }
}

.look-collection__decoration1 {
  position: absolute;
}
.look-collection__decoration1.odekake {
  width: 66px;
  top: 19px;
  left: 0px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration1.odekake {
    width: 75px;
    top: 19px;
    left: -22px;
  }
}
.look-collection__decoration1.amenohi {
  width: 16px;
  top: 1px;
  left: 15px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration1.amenohi {
    top: 25px;
    left: -18px;
  }
}
.look-collection__decoration1.casual {
  width: 28.5px;
  top: 19px;
  left: 27px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration1.casual {
    width: 32px;
    left: 10px;
  }
}

.look-collection__decoration2 {
  position: absolute;
}
.look-collection__decoration2.odekake {
  width: 96px;
  top: 109px;
  right: -2px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration2.odekake {
    width: 107px;
    top: 123px;
    right: -21px;
  }
}
.look-collection__decoration2.amenohi {
  width: 13px;
  top: 35px;
  left: 31px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration2.amenohi {
    top: 58px;
    left: -2px;
  }
}
.look-collection__decoration2.casual {
  width: 40px;
  bottom: 57px;
  left: 6px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration2.casual {
    width: 45px;
    bottom: 52px;
    left: -15px;
  }
}

.look-collection__decoration3 {
  position: absolute;
}
.look-collection__decoration3.odekake {
  width: 28.49px;
  bottom: -14px;
  left: 7px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration3.odekake {
    width: 33px;
    bottom: -13px;
    left: -14px;
  }
}
.look-collection__decoration3.amenohi {
  width: 16px;
  top: 46px;
  left: 5px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration3.amenohi {
    top: 70px;
    left: -28px;
  }
}
.look-collection__decoration3.casual {
  width: 27px;
  bottom: 53px;
  left: 47px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration3.casual {
    width: 30px;
    bottom: 47px;
    left: 33px;
  }
}

.look-collection__decoration4 {
  position: absolute;
}
.look-collection__decoration4.amenohi {
  width: 14px;
  bottom: 56px;
  right: 17px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration4.amenohi {
    bottom: 34px;
    right: 9px;
  }
}
.look-collection__decoration4.casual {
  width: 39px;
  bottom: 108px;
  right: 18px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration4.casual {
    width: 45px;
    bottom: 108px;
    right: -12px;
  }
}

.look-collection__decoration5 {
  position: absolute;
}
.look-collection__decoration5.amenohi {
  width: 12px;
  bottom: 32px;
  right: 5px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration5.amenohi {
    bottom: 10px;
    right: -3px;
  }
}
.look-collection__decoration5.casual {
  width: 34px;
  bottom: 6px;
  left: 128px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration5.casual {
    bottom: 6px;
    left: 142px;
  }
}

.look-collection__decoration6 {
  position: absolute;
}
.look-collection__decoration6.amenohi {
  width: 13px;
  bottom: 20px;
  right: 26px;
}
@media screen and (min-width: 768px) {
  .look-collection__decoration6.amenohi {
    bottom: -3px;
    right: 18px;
  }
}

.look-collection__decoration7 {
  position: absolute;
}
.look-collection__decoration7.amenohi {
  width: 65.821px;
  bottom: -14px;
  left: 1px;
}

.look-collection-info__content {
  text-align: center;
  font-family: "Darumadrop One", serif;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.look-collection-info__content.casual:nth-child(2) {
  margin-top: 10px;
}

.look-collection-info_name.odekake {
  margin-left: 28px;
}
@media screen and (min-width: 768px) {
  .look-collection-info_name.odekake {
    margin-left: -4px;
  }
}
.look-collection-info_name.amenohi {
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .look-collection-info_name.amenohi {
    margin-left: -20px;
  }
}
.look-collection-info_name.casual {
  margin-left: 2px;
}
@media screen and (min-width: 768px) {
  .look-collection-info_name.casual {
    margin-left: -19px;
  }
}
.look-collection-info_name.casual2 {
  margin-left: 0px;
}
@media screen and (min-width: 768px) {
  .look-collection-info_name.casual2 {
    margin-left: -20px;
  }
}

.look-collection-info_price {
  margin-left: 5px;
}
.look-collection-info_price.casual {
  margin-left: 45px;
}
@media screen and (min-width: 768px) {
  .look-collection-info_price.casual {
    margin-left: 37px;
  }
}
.look-collection-info_price.casual2 {
  margin-left: 50px;
}
@media screen and (min-width: 768px) {
  .look-collection-info_price.casual2 {
    margin-left: 42px;
  }
}

.look-collection-info_button {
  margin-top: 2.5px;
  margin-left: 15px;
}
.look-collection-info_button.amenohi {
  padding-left: 1px;
}
.look-collection-info_button.casual {
  margin-top: 3px;
  margin-left: 5px;
}
.look-collection-info_button a {
  display: block;
  font-size: 16px;
  line-height: 18px;
  border-radius: 7px;
  width: 46px;
  padding-block: 1px 5px;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.look-collection-info_button a:hover {
  opacity: 0.5;
}
.look-collection-info_button a.odekake {
  background: #f1a5c7;
}
.look-collection-info_button a.amenohi {
  background: #95d3dd;
}
.look-collection-info_button a.casual {
  background: #ef8eb8;
}

.look__point {
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .look__point {
    margin-inline: 0;
  }
}
.look__point.odekake {
  margin-top: 27px;
  max-width: 365px;
}
@media screen and (min-width: 768px) {
  .look__point.odekake {
    margin-top: 20px;
    max-width: 525px;
  }
}
.look__point.amenohi {
  margin-top: 18px;
  max-width: 335px;
}
@media screen and (min-width: 768px) {
  .look__point.amenohi {
    margin-top: 20px;
    max-width: 420px;
  }
}
.look__point.casual {
  margin-top: 17px;
  max-width: 395px;
}
@media screen and (min-width: 768px) {
  .look__point.casual {
    max-width: 520px;
  }
}

.look-point__heading {
  display: inline-block;
  font-family: "Darumadrop One", serif;
  font-size: 16px;
  margin-left: 23px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .look-point__heading {
    margin-left: 59px;
  }
}
.look-point__heading.odekake {
  color: #81cddf;
}
.look-point__heading.odekake::before {
  position: absolute;
  content: "";
  background: url(../img/look1_decoration_frame.svg) no-repeat center center/cover;
  width: 62.32px;
  height: 25.17px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-51%, -40%);
          transform: translate(-51%, -40%);
}
.look-point__heading.amenohi {
  color: #d6ca79;
}
.look-point__heading.amenohi::before {
  position: absolute;
  content: "";
  background: url(../img/look2_decoration_frame.svg) no-repeat center center/cover;
  width: 63px;
  height: 25.17px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
}
.look-point__heading.casual {
  color: #a0c787;
}
.look-point__heading.casual::before {
  position: absolute;
  content: "";
  background: url(../img/look3_decoration_frame.svg) no-repeat center center/cover;
  width: 65px;
  height: 25.17px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
}

.look-point__text {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.28px;
}
@media screen and (min-width: 768px) {
  .look-point__text {
    margin-top: 11px;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .look-point__text.amenohi {
    margin-top: 12px;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .look-point__text.casual {
    margin-top: 8px;
  }
}
.look-point__text li {
  padding-left: 34px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .look-point__text li {
    padding-left: 70px;
  }
}
.look-point__text li::before {
  content: "";
  width: 10px;
  height: 11px;
  position: absolute;
  top: 7px;
  left: 14px;
}
@media screen and (min-width: 768px) {
  .look-point__text li::before {
    top: 7px;
    left: 50px;
  }
}
@media screen and (min-width: 768px) {
  .look-point__text li.odekake:nth-child(2) {
    margin-top: 8px;
  }
}
.look-point__text li.odekake:nth-child(3) {
  padding-left: 34px;
  padding-right: 6px;
}
@media screen and (min-width: 768px) {
  .look-point__text li.odekake:nth-child(3) {
    margin-top: 4px;
    padding-left: 68px;
    padding-right: 80px;
  }
}
.look-point__text li.odekake::before {
  background: url(../img/look1_decoration_circle.svg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .look-point__text li.amenohi {
    padding-left: 70px;
  }
}
@media screen and (min-width: 768px) {
  .look-point__text li.amenohi:nth-child(2), .look-point__text li.amenohi:nth-child(3) {
    margin-top: 8px;
  }
}
.look-point__text li.amenohi::before {
  content: "";
  background: url(../img/look2_decoration_circle.svg) no-repeat center center/cover;
}
.look-point__text li.casual {
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .look-point__text li.casual {
    padding-right: 45px;
  }
}
.look-point__text li.casual::before {
  content: "";
  background: url(../img/look3_decoration_circle.svg) no-repeat center center/cover;
  top: 9px;
}
.look-point__text li.casual:first-child {
  padding-left: 32px;
}
@media screen and (min-width: 768px) {
  .look-point__text li.casual:first-child {
    margin-top: 3px;
    padding-left: 70px;
  }
}
.look-point__text li.casual:nth-child(2) {
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .look-point__text li.casual:nth-child(2) {
    margin-top: 3px;
    padding-left: 71px;
  }
}
.look-point__text li.casual:nth-child(2)::before {
  top: 7px;
}
.look-point__text li.casual:nth-child(3) {
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .look-point__text li.casual:nth-child(3) {
    margin-top: 1px;
    padding-left: 72px;
  }
}

.look__lineup {
  text-align: center;
}
.look__lineup.odekake {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .look__lineup.odekake {
    margin-top: 40px;
  }
}
.look__lineup.amenohi {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .look__lineup.amenohi {
    margin-top: 49px;
  }
}
.look__lineup.casual {
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .look__lineup.casual {
    margin-top: 44px;
  }
}

.look-lineup__title {
  display: inline-block;
  position: relative;
}
.look-lineup__title-text {
  font-family: "Darumadrop One", serif;
  font-size: 24px;
  line-height: 38.4px;
}

.look-lineup__title-decoration1 {
  position: absolute;
}
.look-lineup__title-decoration1.odekake {
  top: 2px;
  left: -32px;
  width: 30.5px;
}
@media screen and (min-width: 768px) {
  .look-lineup__title-decoration1.odekake {
    left: -33px;
  }
}
.look-lineup__title-decoration1.amenohi {
  top: 3px;
  left: -31px;
  width: 22px;
}
.look-lineup__title-decoration1.casual {
  top: 4px;
  left: -35px;
  width: 26px;
}

.look-lineup__title-decoration2 {
  position: absolute;
}
.look-lineup__title-decoration2.odekake {
  top: 0px;
  right: -33px;
  width: 31px;
}
.look-lineup__title-decoration2.amenohi {
  top: 3px;
  right: -36px;
  width: 31px;
}
.look-lineup__title-decoration2.casual {
  top: 4px;
  right: -36px;
  width: 26px;
}

.look-lineup__image.odekake {
  margin-left: 1px;
}
.look-lineup__image.amenohi {
  margin-top: 11px;
  margin-inline: auto;
  width: 252px;
  height: 280px;
}
@media screen and (min-width: 768px) {
  .look-lineup__image.amenohi {
    margin-top: 9px;
  }
}
.look-lineup__image.casual {
  margin-top: 24px;
  margin-inline: auto;
  width: 157px;
}
@media screen and (min-width: 768px) {
  .look-lineup__image.casual {
    width: 257.52px;
  }
}
.look-lineup__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .look-lineup__text {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
.look-lineup__text.odekake {
  margin-top: 10px;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .look-lineup__text.odekake {
    margin-top: 7px;
    margin-left: 3px;
  }
}
.look-lineup__text.amenohi {
  margin-top: 24px;
  margin-left: 1px;
}
@media screen and (min-width: 768px) {
  .look-lineup__text.amenohi {
    margin-top: 23px;
  }
}
.look-lineup__text.casual {
  margin-top: 20px;
  margin-left: 1px;
}
@media screen and (min-width: 768px) {
  .look-lineup__text.casual {
    margin-top: 19px;
  }
}

.look-swiper {
  margin-top: 17px;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .look-swiper {
    margin-top: 16px;
  }
}
.look-swiper .swiper-wrapper {
  margin-top: 10px;
}
/*-----------------------------------------------
  Photo
-----------------------------------------------*/
.photo {
  padding-block: 66px 57px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .photo {
    padding-block: 25px 38px;
  }
}

.photo__inner {
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .photo__inner {
    max-width: 500px;
  }
}

.photo__title {
  font-family: "Darumadrop One", serif;
  font-size: 24px;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.photo__images {
  position: relative;
  height: 521px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .photo__images {
    height: 667px;
  }
}

.photo__image1,
.photo__image2,
.photo__image3 {
  background: #f8f8f8;
  position: absolute;
}
.photo__image1 {
  width: 253px;
  height: 161px;
  padding: 11px 20px;
  -webkit-box-shadow: 1.736px 2.604px 5.208px -1.519px rgba(0, 0, 0, 0.25);
          box-shadow: 1.736px 2.604px 5.208px -1.519px rgba(0, 0, 0, 0.25);
  top: 103px;
  left: 13px;
}
@media screen and (min-width: 768px) {
  .photo__image1 {
    width: 323px;
    height: 207px;
    padding: 16px 25px;
    top: 135px;
    left: 26px;
    -webkit-box-shadow: 2.534px 3.802px 7.603px -2.218px rgba(0, 0, 0, 0.25);
            box-shadow: 2.534px 3.802px 7.603px -2.218px rgba(0, 0, 0, 0.25);
  }
}

.photo__image2 {
  width: 222px;
  height: 142px;
  padding: 14px 17px;
  -webkit-box-shadow: 1.736px 2.604px 5.208px -1.519px rgba(0, 0, 0, 0.25);
          box-shadow: 1.736px 2.604px 5.208px -1.519px rgba(0, 0, 0, 0.25);
  bottom: 20px;
  left: 32px;
}
@media screen and (min-width: 768px) {
  .photo__image2 {
    width: 284px;
    height: 182px;
    padding: 18px 22px;
    -webkit-box-shadow: 2.221px 3.332px 6.664px -1.944px rgba(0, 0, 0, 0.25);
            box-shadow: 2.221px 3.332px 6.664px -1.944px rgba(0, 0, 0, 0.25);
    bottom: 21px;
    left: 50px;
  }
}

.photo__image3 {
  width: 206px;
  height: 132px;
  padding: 10px 16px;
  -webkit-box-shadow: 1.612px 2.418px 4.836px -1.41px rgba(0, 0, 0, 0.25);
          box-shadow: 1.612px 2.418px 4.836px -1.41px rgba(0, 0, 0, 0.25);
  top: 239px;
  right: 32px;
}
@media screen and (min-width: 768px) {
  .photo__image3 {
    width: 263px;
    height: 169px;
    padding: 13px 20px;
    -webkit-box-shadow: 2.062px 3.094px 6.187px -1.805px rgba(0, 0, 0, 0.25);
            box-shadow: 2.062px 3.094px 6.187px -1.805px rgba(0, 0, 0, 0.25);
    top: 311px;
    right: 52px;
  }
}

.photo__decoration1,
.photo__decoration2,
.photo__decoration3,
.photo__decoration4,
.photo__decoration5,
.photo__decoration6,
.photo__decoration7 {
  position: absolute;
}
.photo__decoration1 {
  width: 43px;
  top: 27px;
  left: 32px;
}
@media screen and (min-width: 768px) {
  .photo__decoration1 {
    width: 56px;
    top: 39px;
    left: 50px;
  }
}

.photo__decoration2 {
  width: 183px;
  top: -3px;
  left: 83px;
}
@media screen and (min-width: 768px) {
  .photo__decoration2 {
    width: 234px;
    top: 0px;
    left: 116px;
  }
}

.photo__decoration3 {
  width: 54px;
  top: 175px;
  right: 44px;
}
@media screen and (min-width: 768px) {
  .photo__decoration3 {
    width: 68px;
    top: 230px;
    right: 67px;
  }
}

.photo__decoration4 {
  width: 42px;
  top: 281px;
  left: 78px;
}
@media screen and (min-width: 768px) {
  .photo__decoration4 {
    width: 55px;
    top: 364px;
    left: 109px;
  }
}

.photo__decoration5 {
  width: 27px;
  top: 314px;
  left: 117px;
}
@media screen and (min-width: 768px) {
  .photo__decoration5 {
    width: 34px;
    top: 412px;
    left: 160px;
  }
}

.photo__decoration6 {
  width: 59px;
  bottom: 66px;
  right: 69px;
}
@media screen and (min-width: 768px) {
  .photo__decoration6 {
    width: 75px;
    bottom: 80px;
    right: 99px;
  }
}

.photo__decoration7 {
  width: 38px;
  bottom: 34px;
  right: 51px;
}
@media screen and (min-width: 768px) {
  .photo__decoration7 {
    width: 49px;
    bottom: 39px;
    right: 75px;
  }
}

.photo__button {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .photo__button {
    margin-top: 29px;
  }
}

.photo-button__link {
  display: inline-block;
  padding-left: 64px;
  height: 51.58px;
  position: relative;
}
.photo-button__link:hover .photo-button__decoration {
  left: -17px;
}
.photo-button__link:hover .photo-button__text {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .photo-button__link {
    padding-left: 58px;
  }
}

.photo-button__decoration {
  position: absolute;
  top: -3px;
  left: 3px;
  -webkit-transition: left 0.1s linear;
  transition: left 0.1s linear;
}
@media screen and (min-width: 768px) {
  .photo-button__decoration {
    top: -5px;
    left: -1px;
  }
}

.photo-button__text {
  margin-top: 16px;
  font-family: "Darumadrop One", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 8.428px;
  letter-spacing: 2.8px;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
@media screen and (min-width: 768px) {
  .photo-button__text {
    font-size: 50px;
    line-height: 9.813px;
    letter-spacing: 2.5px;
  }
}

/*-----------------------------------------------
  Instagram
-----------------------------------------------*/
.instagram {
  padding-block: 40px 41px;
  background: #f7f5ef;
}
@media screen and (min-width: 768px) {
  .instagram {
    padding-block: 60px 45px;
  }
}

.instagram__title {
  text-align: center;
  font-family: "Darumadrop One", serif;
  font-size: 24px;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.instagram__description {
  text-align: center;
  max-width: 398px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .instagram__description {
    max-width: 462px;
  }
}

.instagram-description__content {
  max-width: 365px;
  margin-inline: 11px;
  padding-inline: 6px 5px;
  border-radius: 24px;
  background: #ffffff;
  color: #ee9f1e;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .instagram-description__content {
    max-width: 441px;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
.instagram-description__content span {
  margin-left: 1px;
  letter-spacing: 1px;
  font-weight: 700;
}

@media (max-width: 374px) {
  .instagram-description__content span {
    display: block;
    margin-top: -8px;
  }
}
/* ✅ Safari & Firefox のみ適用 */
@supports (-webkit-hyphens: none) or (-moz-appearance: none) {
  .instagram-description__content {
    margin-inline: auto;
    padding-inline: 0;
    font-size: 13px;
  }
  @media screen and (min-width: 768px) {
    .instagram-description__content {
      max-width: 441px;
      font-size: 16px;
      letter-spacing: 0.8px;
    }
  }
}
.instagram__inner {
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .instagram__inner {
    padding-inline: 31.24px;
  }
}

.instagram__heading {
  margin-top: 10px;
  padding-left: 2px;
  font-family: "Darumadrop One", serif;
  font-size: 32px;
  line-height: 30px;
  letter-spacing: 1.6px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .instagram__heading {
    font-size: 50px;
    letter-spacing: 2.5px;
  }
}
.instagram__heading::before {
  content: "";
  background: url(../img/instagram_decoration_sun.svg) no-repeat center center/cover;
  width: 28px;
  height: 25.765px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% - 118px), calc(-50% + 2px));
          transform: translate(calc(-50% - 118px), calc(-50% + 2px));
}
@media screen and (min-width: 768px) {
  .instagram__heading::before {
    -webkit-transform: translate(calc(-50% - 170px), calc(-50% + 2px));
            transform: translate(calc(-50% - 170px), calc(-50% + 2px));
  }
}
.instagram__heading::after {
  content: "";
  background: url(../img/instagram_decoration_sun.svg) no-repeat center center/cover;
  width: 28px;
  height: 25.765px;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(calc(-50% + 145px), calc(-50% + 2px));
          transform: translate(calc(-50% + 145px), calc(-50% + 2px));
}
@media screen and (min-width: 768px) {
  .instagram__heading::after {
    -webkit-transform: translate(calc(-50% + 198px), calc(-50% + 2px));
            transform: translate(calc(-50% + 198px), calc(-50% + 2px));
  }
}

.instagram__card {
  max-width: 500px;
  margin-top: 36px;
  margin-inline: auto;
  padding-bottom: 15px;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .instagram__card {
    margin-top: 40px;
    padding-bottom: 27px;
  }
}

.instagram__header {
  padding-block: 7px;
  padding-inline: 14px 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .instagram__header {
    padding-block: 9px 10px;
    padding-inline: 18px 27px;
  }
}

.instagram__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.instagram__user-icon {
  width: 38px;
}
@media screen and (min-width: 768px) {
  .instagram__user-icon {
    width: 48px;
  }
}
.instagram__user-id {
  margin-top: 1px;
  margin-left: 5px;
  color: #161722;
  font-family: "Roboto", sans-serif;
  font-size: 12.313px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .instagram__user-id {
    margin-top: 0px;
    margin-left: 7px;
    font-size: 15.706px;
  }
}

.instagram__menu-icon {
  margin-bottom: 1px;
  width: 4px;
}
@media screen and (min-width: 768px) {
  .instagram__menu-icon {
    width: 5px;
  }
}

.instagram__icons {
  margin-top: 1px;
  margin-left: 18px;
  margin-right: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .instagram__icons {
    margin-top: 0;
    margin-left: 23px;
    margin-right: 22px;
  }
}

.instagram__icons-left {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .instagram__icons-left {
    margin-top: 11px;
  }
}

.instagram__icon1 {
  position: relative;
}

.instagram-icon1_image {
  width: 21px;
}
@media screen and (min-width: 768px) {
  .instagram-icon1_image {
    width: 27px;
  }
}
.instagram-icon1_image.floating {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% - 0.5px), calc(-50% - 0.5px));
          transform: translate(calc(-50% - 0.5px), calc(-50% - 0.5px));
  pointer-events: none;
}

.instagram__icon2 {
  margin-left: 13px;
  width: 19px;
}
@media screen and (min-width: 768px) {
  .instagram__icon2 {
    margin-left: 17px;
    width: 24px;
  }
}

.instagram__icon3 {
  margin-left: 13px;
  width: 26px;
}
@media screen and (min-width: 768px) {
  .instagram__icon3 {
    margin-left: 17px;
    width: 32px;
  }
}

.instagram__icons-right {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .instagram__icons-right {
    margin-top: 11px;
  }
}

.instagram__icon4 {
  width: 17px;
}
@media screen and (min-width: 768px) {
  .instagram__icon4 {
    width: 21px;
  }
}

.instagram__good-number {
  margin-top: 8px;
  margin-left: 18px;
  color: #161722;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12.313px;
}
@media screen and (min-width: 768px) {
  .instagram__good-number {
    margin-left: 23px;
    font-size: 15.706px;
  }
}
.instagram__good-number span:first-child {
  font-weight: 300;
}
.instagram__good-number span:nth-child(2) {
  font-weight: 600;
  letter-spacing: -0.6px;
}
@media screen and (min-width: 768px) {
  .instagram__good-number span:nth-child(2) {
    letter-spacing: -1px;
  }
}

.instagram__caption {
  margin-top: 5px;
  margin-left: 18px;
  padding-right: 35px;
  color: #161722;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.05px;
}
@media screen and (min-width: 768px) {
  .instagram__caption {
    margin-top: 7px;
    margin-left: 23px;
    padding-right: 40px;
    font-size: 15.706px;
    line-height: 17px;
    letter-spacing: -0.1px;
  }
}

.instagram__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .instagram__button {
    margin-top: 43px;
  }
}
.instagram__button a {
  display: inline-block;
  padding: 14px 30px 21px 34px;
  font-family: "Darumadrop One", serif;
  font-size: 28px;
  line-height: 8.428px;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 10;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.instagram__button a:hover {
  opacity: 0.5;
}
@media (max-width: 374px) {
  .instagram__button a {
    font-size: 23px;
  }
}
@media screen and (min-width: 768px) {
  .instagram__button a {
    font-size: 35px;
    font-weight: 400;
    line-height: 8.428px;
    letter-spacing: 1px;
  }
}
.instagram__button a::before {
  content: "";
  background: url(../img/instagram_button_background.svg) no-repeat center center/cover;
  width: 313px;
  height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% + 1px), calc(-50% + 1px));
          transform: translate(calc(-50% + 1px), calc(-50% + 1px));
  z-index: -10;
}
@media screen and (min-width: 768px) {
  .instagram__button a::before {
    width: 358px;
    height: 50px;
    -webkit-transform: translate(-50%, -47%);
            transform: translate(-50%, -47%);
  }
}

/*-----------------------------------------------
  Sustainable
-----------------------------------------------*/
.sustainable {
  padding-block: 79px 54px;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .sustainable {
    padding-block: 82px 130px;
  }
}

.sustainable__inner {
  max-width: 500px;
  margin-inline: auto;
  padding-inline: 22px;
}

.sustainable__heading {
  position: relative;
  padding-left: 2px;
}
@media screen and (min-width: 768px) {
  .sustainable__heading {
    padding-left: 23px;
  }
}

.sustainable-heading__text {
  color: #63b739;
  text-align: center;
  font-family: "Darumadrop One", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 107.143% */
  letter-spacing: 0.84px;
}
@media screen and (min-width: 768px) {
  .sustainable-heading__text {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 1.2px;
  }
}
@media screen and (min-width: 768px) {
  .sustainable-heading__text span {
    letter-spacing: 1.2px;
  }
}

.sustainable-heading__decoration1 {
  width: 48px;
  position: absolute;
  top: -17px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 132px));
          transform: translateX(calc(-50% - 132px));
}
@media screen and (min-width: 768px) {
  .sustainable-heading__decoration1 {
    width: 54px;
    top: -17px;
    -webkit-transform: translateX(calc(-50% - 186px));
            transform: translateX(calc(-50% - 186px));
  }
}

.sustainable-heading__decoration2 {
  width: 37px;
  position: absolute;
  top: -19px;
  right: 50%;
  -webkit-transform: translateX(calc(-50% + 175px));
          transform: translateX(calc(-50% + 175px));
}
@media screen and (min-width: 768px) {
  .sustainable-heading__decoration2 {
    width: 41px;
    top: -22px;
    -webkit-transform: translateX(calc(-50% + 244px));
            transform: translateX(calc(-50% + 244px));
  }
}

.sustainable__description {
  margin-top: 20px;
  margin-left: 1px;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .sustainable__description {
    margin-inline: 14px 5px;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
.sustainable__description span {
  font-weight: 700;
}

.sustainable__slider {
  margin-top: 11px;
}

@media screen and (min-width: 768px) {
  .sustainable-swiper-wrapper {
    margin-left: 5px;
  }
}

.sustainable__card {
  margin-block: 70px 45px;
  margin-inline: auto;
  padding-block: 96px 15.5px;
  border-radius: 14px;
  background: #ffffff;
  position: relative;
  -webkit-filter: drop-shadow(0px 4px 8px rgba(51, 51, 51, 0.25));
          filter: drop-shadow(0px 4px 8px rgba(51, 51, 51, 0.25));
}
.sustainable__card.durability {
  border: 3px solid rgba(163, 219, 231, 0.7);
}
.sustainable__card.material {
  border: 3px solid rgba(214, 214, 122, 0.7);
}
.sustainable__card.recycle {
  border: 3px solid rgba(235, 183, 109, 0.7);
}

.sustainable-card__heading {
  text-align: center;
  position: absolute;
}
.sustainable-card__heading.durability {
  top: 5px;
  left: 50%;
  -webkit-transform: translate(calc(-50% - 3px), -50%);
          transform: translate(calc(-50% - 3px), -50%);
}
@media screen and (min-width: 768px) {
  .sustainable-card__heading.durability {
    -webkit-transform: translate(calc(-50% - 1px), -50%);
            transform: translate(calc(-50% - 1px), -50%);
  }
}
.sustainable-card__heading.material {
  top: 5px;
  left: 50%;
  -webkit-transform: translate(calc(-50% - 3px), -50%);
          transform: translate(calc(-50% - 3px), -50%);
}
.sustainable-card__heading.recycle {
  top: 5px;
  left: 50%;
  -webkit-transform: translate(calc(-50% - 3px), -50%);
          transform: translate(calc(-50% - 3px), -50%);
}
@media screen and (min-width: 768px) {
  .sustainable-card__heading.recycle {
    -webkit-transform: translate(calc(-50% + 4px), calc(-50% + 4px));
            transform: translate(calc(-50% + 4px), calc(-50% + 4px));
  }
}

.sustainable-card-heading__wrapper {
  position: relative;
}

.sustainable-card-heading__bg.durability {
  width: 143.674px;
  height: 138.814px;
}
.sustainable-card-heading__bg.material {
  width: 144.077px;
  height: 139.202px;
}
.sustainable-card-heading__bg.recycle {
  width: 151.385px;
  height: 146.263px;
}

.sustainable-card-heading__text {
  width: 100%;
  font-size: 21px;
  font-weight: 700;
  line-height: 31.321px;
  letter-spacing: 1.044px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% + 5px), calc(-50% - 3px));
          transform: translate(calc(-50% + 5px), calc(-50% - 3px));
}
@media screen and (min-width: 768px) {
  .sustainable-card-heading__text.durability {
    -webkit-transform: translate(calc(-50% + 2px), calc(-50% - 6px));
            transform: translate(calc(-50% + 2px), calc(-50% - 6px));
  }
}
@media screen and (min-width: 768px) {
  .sustainable-card-heading__text.recycle {
    -webkit-transform: translate(calc(-50% + 2px), calc(-50% - 2px));
            transform: translate(calc(-50% + 2px), calc(-50% - 2px));
  }
}

.sustainable__image {
  margin-inline: auto;
  width: calc(217px + 304 * (100vw - 375px) / 525);
  max-width: 435px;
}
@media screen and (min-width: 900px) {
  .sustainable__image {
    width: 217px;
  }
}
.sustainable__prev,
.sustainable__next {
  width: 27.58px;
  height: 21.15px;
}
.sustainable__prev::after,
.sustainable__next::after {
  display: none;
}

.sustainable__prev {
  background: url(../img/sustainable_arrow_left.svg) no-repeat center center/contain;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(calc(-50% - 5px));
          transform: translateY(calc(-50% - 5px));
}
@media screen and (min-width: 768px) {
  .sustainable__prev {
    left: 87px;
  }
}

.sustainable__next {
  background: url(../img/sustainable_arrow_right.svg) no-repeat center center/contain;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(calc(-50% - 5px));
          transform: translateY(calc(-50% - 5px));
}
@media screen and (min-width: 768px) {
  .sustainable__next {
    right: 80px;
  }
}

.sustainable-pagination {
  bottom: 1px !important;
}
@media screen and (min-width: 768px) {
  .sustainable-pagination {
    bottom: -2px !important;
    left: 5px !important;
  }
}

.swiper-pagination-bullet {
  background: url(../img/sustainable_pagination-circle.svg) no-repeat center center/contain;
  opacity: 1;
  width: 18px;
  height: 18px;
  margin: 0 2px !important;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    margin: 0 2px !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: 0.5;
}

/*-----------------------------------------------
  Footer
-----------------------------------------------*/
.footer {
  padding-top: 182px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 267px;
  }
}
@media screen and (min-width: 1440px) {
  .footer {
    margin-inline: auto;
    width: 1440px;
  }
}

.footer__decoration {
  width: 100%;
  max-width: 375px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 3px));
          transform: translateX(calc(-50% - 3px));
}
@media screen and (min-width: 768px) {
  .footer__decoration {
    top: 0px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(286px + 178 * (100vw - 900px) / 540);
    max-width: 464px;
  }
}
@media screen and (min-width: 900px) {
  .footer__decoration {
    top: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .footer__decoration {
    width: 464px;
  }
}
.footer__decoration.left, .footer__decoration.right {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__decoration.left, .footer__decoration.right {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .footer__decoration.left {
    -webkit-transform: translateX(-154%);
            transform: translateX(-154%);
  }
}
@media screen and (min-width: 768px) {
  .footer__decoration.right {
    -webkit-transform: translateX(54%);
            transform: translateX(54%);
  }
}

@media screen and (min-width: 900px) {
  .footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-inline: calc(50px + 70 * (100vw - 900px) / 540);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1440px) {
  .footer__wrapper {
    padding-inline: 120px;
  }
}

.footer__heading {
  font-family: "Darumadrop One", serif;
  font-size: calc(50px + 11.549 * (100vw - 300px) / 75);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 1px;
  letter-spacing: 2.2px;
}
@media screen and (min-width: 900px) {
  .footer__heading {
    font-size: calc(61.549px + 20.747 * (100vw - 900px) / 540);
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 1440px) {
  .footer__heading {
    font-size: 82.296px;
  }
}

.footer-sunny .letter {
  display: inline-block;
}
.footer-sunny .letter:first-child {
  color: #ec967d;
}
.footer-sunny .letter:nth-child(2) {
  color: #ede04a;
}
.footer-sunny .letter:nth-child(3) {
  color: #59ab33;
}
.footer-sunny .letter:nth-child(4) {
  color: #8bccd2;
}
.footer-sunny .letter:nth-child(5) {
  color: #26aebb;
}

.footer-steps {
  margin-left: 8px;
}
@media screen and (min-width: 900px) {
  .footer-steps {
    margin-left: 11px;
  }
}
.footer-steps .letter {
  display: inline-block;
}
.footer-steps .letter:nth-child(1) {
  color: #ede04a;
}
.footer-steps .letter:nth-child(2) {
  color: #8bccd2;
}
.footer-steps .letter:nth-child(3) {
  color: #ec967d;
}
.footer-steps .letter:nth-child(4) {
  color: #59ab33;
}
.footer-steps .letter:nth-child(5) {
  color: #26aebb;
}

.footer__sns {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 19px;
  }
}
@media screen and (min-width: 900px) {
  .footer__sns {
    margin-top: 60px;
  }
}

.footer-sns__heading {
  display: inline-block;
  width: 100px;
  font-family: "Darumadrop One", serif;
  font-size: 22px;
  color: #ec967d;
}
@media screen and (min-width: 900px) {
  .footer-sns__heading {
    width: 150px;
    font-size: 32.756px;
  }
}

.footer__sns-links {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .footer__sns-links {
    margin-left: -4px;
    gap: 45px;
  }
}

.footer__sns-link {
  display: inline-block;
  width: 48px;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
@media screen and (min-width: 900px) {
  .footer__sns-link {
    width: 71.467px;
  }
}
.footer__sns-link:hover {
  opacity: 0.5;
}
.footer__nav {
  margin-top: 60px;
  display: block;
}
@media screen and (min-width: 900px) {
  .footer__nav {
    margin-top: 109px;
    margin-right: calc(10px + 47 * (100vw - 900px) / 540);
  }
}
@media screen and (min-width: 1440px) {
  .footer__nav {
    margin-right: 57px;
  }
}

.footer-nav__lists {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 900px) {
  .footer-nav__lists {
    font-size: calc(14px + 2 * (100vw - 900px) / 540);
    letter-spacing: 0.8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: calc(25px + 5 * (100vw - 900px) / 540);
  }
}
@media screen and (min-width: 1440px) {
  .footer-nav__lists {
    font-size: 16px;
    gap: 30px;
  }
}
.footer-nav__lists li {
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.footer-nav__lists li:not(:nth-child(1)) {
  margin-top: 2px;
}
@media screen and (min-width: 900px) {
  .footer-nav__lists li:not(:nth-child(1)) {
    margin-top: 0;
  }
}
.footer-nav__lists li:hover {
  opacity: 0.5;
}
@media screen and (min-width: 900px) {
  .footer-nav__lists.second-line {
    margin-top: calc(15px + 15 * (100vw - 900px) / 540);
  }
}
@media screen and (min-width: 1440px) {
  .footer-nav__lists.second-line {
    margin-top: 28px;
  }
}
.footer-nav__lists.second-line li {
  margin-top: 2px;
}

.footer__copyright {
  margin-top: 60px;
  margin-left: -9px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 80px;
  }
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    margin-top: 169px;
  }
}
.footer__copyright small {
  font-size: 10px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 900px) {
  .footer__copyright small {
    margin-right: 6px;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}