@charset "UTF-8";

img {
  display: block;
  width: 100%;
  height: auto;
}

/* utility */
.u-tt--light {
  font-family: "TTCommons-Light", sans-serif;
  font-size: 120%;
}

.u-tt--regular {
  font-family: "TTCommons-Regular", sans-serif;
  font-size: 120%;
}

.u-tt--demibold {
  font-family: "TTCommons-Demibold", sans-serif;
  font-size: 120%;
}

.u-fs-up {
  font-size: 120%;
}

.u-fw-bold {
  font-weight: 800;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-narrow {
  letter-spacing: 0.02em;
}

.u-text-note {
  font-size: 1.2rem;
}

.u-link-text {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  color: #000030;
}

.u-link-img {
  transition: .3s;
}

.hover-scale {
  transition: transform 0.4s ease-out;
}

@media (any-hover: hover) {
  .u-link-text:hover {
    text-decoration: none;
  }

  .u-link-img:hover {
    opacity: .8;
  }

  .hover-scale:hover {
    transform: scale(1.1);
    opacity: .9;
  }
}

@media screen and (max-width: 768px) {
  .u-text-left-sp {
    text-align: left;
  }
  
  .u-text-center-sp {
    text-align: center;
  }
  
  .u-text-right-sp {
    text-align: right;
  }
}

.u-mt40 {
  margin-top: 4rem;
}

/* mv */
.l-mv {
  position: relative;
}

.l-mv__title {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX( -50% );
  color: #fff;
}

.l-mv__text {
  font-family: "TTCommons-Demibold", sans-serif;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (min-width: 1200px) {
  .l-mv__text {
    font-size: 2.923976608187134vw;
    letter-spacing: 0.12em;
  }
}

@media screen and (max-width: 768px) {
  .l-mv__title {
    width: 100%;
    text-align: center;
    bottom: 7%;
  }

  .l-mv__text{
    line-height: 1.2;
    letter-spacing: 0.12em;
    font-size: 8.533333333333333vw;
  }
}

.l-wrapper {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  color: #393c41;
}

.l-main {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

.lead-block {
  max-width: 1048px;
  margin: 0 auto;
  padding: 0 2.4rem 6.4rem;
}

.lead-block__text {
  line-height: 2.5;
  text-align: center;
}

.lead-block__text + .lead-block__text {
  margin-top: 2.4rem;
}

@media screen and (max-width: 768px) {
  .lead-block {
    padding: 0 1.5rem 6.4rem;
  }

  .lead-block__text {
    line-height: 1.8;
    text-align: left;
  }

  .lead-block__text + .lead-block__text {
    margin-top: 1.6rem;
  }
}

/* アンカーリンク */
.nav-wrapper {
  max-width: 1048px;
  margin: 0 auto;
  padding: 6.4rem 2.4rem 8rem;
}
.c-nav-anchor {
  --column-gap: 4.8rem;
  --row-gap: 3.2rem;
  --min-col: 18rem;
  --max-col: 30%;
}

.c-nav-anchor__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--row-gap) var(--column-gap);
  list-style: none;
  padding: 0;
}

.c-nav-anchor__item {
    flex: 0 0 calc((100% - (var(--column-gap) * 3)) / 4);
}

.c-nav-anchor.--border .c-nav-anchor__text {
  border-bottom: 1px solid currentColor;
}
.c-nav-anchor__text {
  padding: 0 1.6rem 1.6rem 0.8rem;
  position: relative;
  display: block;
}

.c-nav-anchor__text::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(135deg);
  position: absolute;
  bottom: 2.4rem;
  right: 0.4rem;
  transition: .3s;
}

.c-nav-anchor__text:hover::after {
  bottom: 2rem;
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 4rem 1.5rem 6.4rem;
  }
  .c-nav-anchor {
    --column-gap: 3.2rem;
  }

  .c-nav-anchor__list {
    justify-content: flex-start;
  }

  .c-nav-anchor__item {
    flex: 0 0 calc((100% - var(--column-gap)) / 2);
    min-width: 0;
    max-width: none;
  }

  .c-nav-anchor__text {
    letter-spacing: 0.004em;
  }
}

.l-section-lp {
  width: 100%;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.l-section-lp.--top {
  padding-top: 4rem;
}

.l-section-lp + .l-section-lp {
  margin-top: 8rem;
}

.l-section-lp:last-child {
  padding-bottom: 8rem;
}

.l-section-lp__inner {
  max-width: 1000px;
  margin: 0 auto;
}


/* 見出し */
.lp-heading-primary {
  text-align: center;
  color:#000030;
  margin-bottom: 4rem;
}

.lp-heading-primary.--border {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1.6rem;
}

.lp-heading-primary__main {
  display: block;
  font-size:2.4rem;
  letter-spacing:0.1em;
  font-weight:600;
  line-height:1.25;
}

.lp-heading-primary__main.--en {
  font-family:"TTCommons-Regular", sans-serif;
  font-size: 3rem;
  line-height:1;
}

.lp-heading-primary__sub {
  display: block;
  margin-top: 0.2rem;
  font-size:1.2rem;
  font-weight:300;
  line-height:1.5;
  letter-spacing:0.075em;
}

.lp-heading-primary__sub.--en {
  font-family:"TTCommons-Light", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 0.8rem;
}

.lp-heading-secondary {
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
}

.lp-heading-secondary__text {
  padding: 0.4rem 0 0.4rem 1.2rem;
  border-left: 2px solid #000030;
}

.lp-heading-secondary__main {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.4;
}

.lp-heading-secondary__note {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  line-height: 1;
}

.pickupItem {
  padding: 2.4rem 3.2rem;
}

.c-grid-pickup {
  display: grid;
  grid-template-areas: "image top" "image button" "image bottom" "image .";
  grid-template-columns: 40rem 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.c-grid-pickup__img {
  grid-area: image;
  margin: 0 auto;
}

.c-grid-pickup__top {
  grid-area: top;
}

.c-grid-pickup__bottom {
  grid-area: bottom;
  margin-top: 4rem;
}

.c-grid-pickup__button {
  grid-area: button;
}

.c-grid-pickup__title {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  margin-bottom: 2.4rem;
  line-height: 1;
  color: #000030;
}

.sch__title {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1.6rem;
  line-height: 1;
  color: #000030;
}

.sch-box dt {
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.08em;
}

.sch-box dd {
  margin-bottom: 1.6rem;
}

@media screen and (max-width: 768px) {
  .pickupItem {
    padding: 0;
  }

  .c-grid-pickup {
    grid-template-areas: "top" "image" "button" "bottom";
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .c-grid-pickup__title {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
    text-align: center;
  }

  .c-grid-pickup__img {
    margin-top: 4rem;
  }

  .c-grid-pickup__button .lp-button {
    margin: auto;
  }

  .sch__title {
    font-size: 2.2rem;
    font-family: TTCommons-Regular, sans-serif;
  }
  
}

.lp-box.--bg-gray {
  background-color: #eee;
}

.lp-box__inner {
  padding: 2.4rem 4rem;
}

@media screen and (max-width: 768px) {
  .lp-box__inner {
    padding: 0;
  }
}


/* slider */
.l-slider {
  position: relative;
}

.sakura-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
}

.sakura-swiper .swiper-slide {
  height: auto;
}

.sakura-swiper .swiper-button-prev {
  background: url(../img/icon_arrow_prev.svg) no-repeat center center / 10px auto;
  left: -2.4rem;
  width: 10px;
  height: 20px;
  color: transparent;
}

.sakura-swiper .swiper-button-prev:hover {
  transform: translateX(-2px);
  transition: all ease .3s;
}
.sakura-swiper .swiper-button-next {
  background: url(../img/icon_arrow_next.svg) no-repeat center center / 10px auto;
  right: -2.4rem;
  width: 10px;
  height: 20px;
  color: transparent;
}

.sakura-swiper .swiper-button-next:hover {
  transform: translateX(2px);
  transition: all ease .3s;
}

.sakura-swiper .swiper-scrollbar {
  display: none;
}

@media screen and (max-width: 768px) {
  .sakura-swiper .swiper-button-prev, .sakura-swiper .swiper-button-next {
    display: none;
  }

  .sakura-swiper .swiper-scrollbar {
    display: block;
    height: 3px;
    top: 16px;
    position: relative;
  }

  .sakura-swiper .swiper-scrollbar-drag {
    color: #ccc;
  }

  .sakura-swiper {
    padding-bottom: 1.6rem;
  }
}

.sakura-swiper .swiper-button-next.swiper-button-disabled, .sakura-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.lp-card-1__period {
  font-family: "TTCommons-Regular", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: 0.2em;
}

.lp-card-1__text {
  /* margin-top: 1.6rem; */
  background-color: #fafafa;
  padding: 1.6rem;
}

.lp-card-1 .itemName {
  font-size: 1.2rem;
  line-height: 1.5;
}

.story-box + .story-box {
  margin-top: 6.4rem;
}

.story-box__inner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5%;
}

.story-box__inner.--re {
  flex-direction: row-reverse;
}

.story-box__img {
  width: 30%;
  margin-top: auto;
}

.story-box__text {
  width: 65%;
}

.story-box__heading {
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.story-box__desc + .story-box__desc {
  margin-top: 1.6rem;
}

@media screen and (max-width: 768px) {
  .story-box__inner, .story-box__inner.--re {
    flex-direction: column-reverse;
    column-gap: 0;
    row-gap: 3.2rem;
  }

  .story-box__img {
    width: 80%;
    margin: 0 auto;
  }

  .story-box__text {
    width: 100%;
  }
}

/* ボタン */
.lp-button {
  background-color: #000030;
  border: 1px solid #000030;
  border-radius: 6px;
  display: block;
  padding: 1rem;
  width: 100%;
  max-width: 400px;
  min-height: 4rem;
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
  position: relative;
  transition: all ease 0.4s;
}

.lp-button.--bg-none {
  background-color: transparent;
}

.lp-button.--bg-white {
  background-color: #fff;
  color: #000030;
}

.buttonWrapper {
  margin-top: 2.4rem;
  display: flex;
  column-gap: 4rem;
  justify-content: center;
  align-items: center;
}

.lp-button.--small {
  max-width: 260px;
}

.lp-button.--medium {
  max-width: 340px;
}

@media (any-hover: hover) {
  .lp-button:hover {
    background-color: #fff;
    color: #000030;
  }

  .lp-button.--bg-white:hover {
    background-color: #000030;
    color: #fff;
  }
}

.l-stack {
  --stack-space: 2.4rem;
}

.l-stack.--xs {--stack-space: 0.8rem; }
.l-stack.--sm { --stack-space: 1.6rem; }
.l-stack.--md { --stack-space: 3.2rem; }
.l-stack.--lg { --stack-space: 4.8rem; }
.l-stack.--xl { --stack-space: 6.4rem; }

.l-stack > * + * {
  margin-top: var(--stack-space);
}

.footer-feature-section {
  padding: 10rem 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-group {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}

.image-group img {
  width: 16rem;
  height: auto;
}

/* フェードインの共通設定 */
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  /* 少し時間を長く、イージングを滑らかに */
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.is-visible .fade-item {
  opacity: 1;
  transform: translateY(0);
}

/* 順次表示（Delay）の設定 */
.is-visible .fade-item:nth-child(1) { transition-delay: 0.2s; }
.is-visible .fade-item:nth-child(2) { transition-delay: 0.5s; }
.is-visible .fade-item:nth-child(3) { transition-delay: 0.8s; }
.is-visible .fade-item:nth-child(4) { transition-delay: 1.2s; }
.is-visible .fade-item:nth-child(5) { transition-delay: 1.5s; }

.image-group .fade-item:nth-child(5) {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}

.handwriting-svg {
  width: 200px; /* 文字のサイズ調整 */
  height: auto;
}

@media (max-width: 768px) {
  .image-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 1rem;
  }

  .fade-item:nth-child(1) { order: 1; }
  .fade-item:nth-child(2) { order: 2; }
  .fade-item:nth-child(3) { order: 4; }
  .fade-item:nth-child(4) { order: 5; }
  .fade-item:nth-child(5) { order: 3; }

  /* 4つの商品は幅を45%位にして2列に見せる */
  .image-group .fade-item:nth-child(-n+4) {
    width: 45%; 
  }

  /* 5つ目のSVG（文字）だけ横幅いっぱいを使って中央に */
  .image-group .fade-item:nth-child(5) {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2rem 0;
  }

  /* SVG自体のサイズ微調整 */
    .handwriting-svg {
      width: 50%;
      height: auto;
    }
}