/******************************/
/* TOP共通 */
/******************************/
.p-top-section {
  box-sizing: content-box;
  margin: 64px 0;

  @media screen and (min-width: 768px) {
    margin-top: 96px;
    margin-bottom: 96px;
  }
}

.p-top-section__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 max(16px, 2%);
}

.p-top-section__header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-top-section__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
}

.p-top-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  justify-content: center;
  gap: 32px 16px;
  width: 100%;

  @media screen and (min-width: 500px) {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 48px 24px;
  }

  @media screen and (min-width: 800px) {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.p-top-product-list__item {
  flex: 0 0 auto;
  display: flex;
}

/******************************/
/* スライドショー */
/******************************/
.p-main-slider {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 max(16px, 2%);

  img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
  }

  .bx-wrapper {
    border: none;
    box-shadow: none;
    margin-bottom: 0;

    .bx-viewport {
      border: 0;
      box-shadow: none;
      left: 0;
    }

    .bx-pager {
      box-sizing: border-box;
      padding-top: 0;
      padding-right: 25px;
      bottom: 45px;
      text-align: right;
      display: none;

      @media screen and (min-width: 768px) {
        display: block;
      }

      &.bx-default-pager a {
        margin-left: 5px;
        margin-right: 5px;
        background: #E9EDE8;

        &.active {
          position: relative;
          background: #505748;
        }

        &:hover {
          background: #CBDBD3;
        }
      }
    }
  }
}

/******************************/
/* インフォメーション機能 */
/******************************/
.p-top-news {
  margin: 16px 0;

  .splide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    overflow: hidden;

    @media screen and (min-width: 600px) {
      flex-direction: row;
      align-items: center;
      gap: 4px;
    }
  }

  .splide__track {
    display: flex;
    flex: 1;
    width: 100%;
  }

  .splide__list {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .splide__arrows {
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    @media screen and (min-width: 600px) {
      align-self: center;
    }

    .splide__arrow {
      position: static;
      transform: translateY(0);
      background: transparent;
      width: 24px;
      height: 24px;
      transition: 0.3s ease;

      svg {
        width: 14px;
        height: 14px;
        fill: #728270;
      }
    }
  }

  .splide__arrow:hover:not(:disabled) {
    opacity: 1;
    background: #CBDBD3;
  }
}

.p-top-news__container {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 max(16px, 2%);

}

.p-top-news__header {
  display: none;

  @media screen and (min-width: 600px) {
    display: block;
  }
}

.p-top-news__body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.p-top-news-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  width: 100%;
  min-width: 0;

  @media screen and (min-width: 768px) {
    flex-direction: row;
    gap: 16px;
    font-size: 14px;
  }

  a {
    text-decoration: underline;

    &:hover {
      opacity: 0.7;
    }
  }
}

.p-top-news-list__date {
  flex: 0 0 auto;
}

.p-top-news-list__title {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/******************************/
/* ピックアップ */
/******************************/
.p-top-pickup {
  margin: 32px 0;

  .splide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;

    &:not( .is-overflow ) {
      .splide__list {
        justify-content: center;
      }

      .splide__slide:last-child {
        margin: 0 !important;
      }
    }

    .splide__slide {
      display: flex;
    }

    .splide__pagination {
      bottom: auto;
      left: auto;
      position: relative;
      transform: none;
      width: auto;
      padding: 0;

      .splide__pagination__page {
        background: transparent;
        border: 1px solid #728270;

        &.is-active {
          background: #728270;
        }
      }
    }
  }
}

.p-top-pickup__container {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 max(16px, 2%);
}

.p-top-pickup__item {
  display: flex;
  align-items: center;
  justify-content: center;

  a {
    transition: 0.3s ease;

    &:hover {
      opacity: 0.7;
    }
  }

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

/******************************/
/* コンセプト */
/******************************/
.p-concept {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 64px 0;

  @media screen and (min-width: 1024px) {
    flex-direction: row-reverse;
    align-items: center;
    gap: 0;
    margin-top: 80px;
    margin-bottom: 120px;
  }
}

.p-concept__img {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  background-image: url(https://img.shop-pro.jp/tmpl_img/91/no-image-concept.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  @media screen and (min-width: 1024px) {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    width: 50%;
    min-height: 600px;
  }
}

.p-concept__text {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(16px, 2%);
  line-height: 2;
  text-align: center;

  @media screen and (min-width: 1024px) {
    padding: 80px 32px;
    width: 50%;
    max-width: 650px;
    max-height: 600px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: left;
  }
}

.p-concept__title {
  margin: 0;
  font-size: 18px;
  font-weight: normal;

  @media screen and (min-width: 1024px) {
    font-size: 26px;
  }
}

/* 縦組みをやめたいときのバリエーション */
.p-concept--writing-mode-horizontal {
  .p-concept__text {
    writing-mode: horizontal-tb;
  }
}

/******************************/
/* 新着商品 */
/******************************/
.p-top-new-item {
  .splide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;

    .splide__slide {
      display: flex;
    }

    .splide__pagination {
      bottom: auto;
      left: auto;
      position: relative;
      transform: none;
      width: auto;
      padding: 0;

      .splide__pagination__page {
        background: transparent;
        border: 1px solid #728270;

        &.is-active {
          background: #728270;
        }
      }
    }
  }
}

/******************************/
/* おすすめ商品 */
/******************************/
.p-top-highly-recommended {
  align-self: center;
  max-width: 100%;

  @media screen and (min-width: 500px) {
    max-width: 950px;
  }
}

/******************************/
/* 売れ筋商品 */
/******************************/
.p-top-seller-item {
  .splide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;

    .splide__slide {
      display: flex;
    }

    .splide__pagination {
      bottom: auto;
      left: auto;
      position: relative;
      transform: none;
      width: auto;
      padding: 0;

      .splide__pagination__page {
        background: transparent;
        border: 1px solid #728270;

        &.is-active {
          background: #728270;
        }
      }
    }
  }
}

/******************************/
/* フリースペース */
/******************************/
.p-top-free {
  max-width: 1280px;
  margin: 96px auto;
  padding: 0 max(16px, 2%);
}

/******************************/
/* 店舗情報 */
/******************************/
.p-shop {
  margin: 64px 0;

  @media screen and (min-width: 1024px) {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.p-shop__container {
  display: flex;
  flex-direction: column-reverse;

  @media screen and (min-width: 1024px) {
    flex-direction: row-reverse;
    align-items: center;
  }
}

.p-shop__text {
  background-color: #E9EDE8;
  width: 100%;
  padding: 48px 0;

  @media screen and (min-width: 1024px) {
    padding: 80px  0;
  }

  .p-shop__image + & {
    @media screen and (min-width: 1024px) {
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
      margin-right: -20%;
      padding: 80px 20% 80px 0;
    }

    @media screen and (min-width: 1800px) {
      display: flex;
      justify-content: flex-end;
      padding-right: 25%;
    }
  }
}

.p-shop__text-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.p-shop__image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 280px;

  @media screen and (min-width: 1024px) {
    flex: 0 0 50%;
    height: auto;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    @media screen and (min-width: 1024px) {
      max-width: 820px;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
    }

    @media screen and (min-width: 1640px) {
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
    }
  }
}

.p-shop__header {
  max-width: 600px;
  margin-inline: auto;
}

.p-shop__body,
.p-shop__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin-inline: auto;
  padding: 0 max(16px, 2%);
}

.p-shop__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.2;
}

































/* fv */
.p-fv {
  position: relative;
}
.p-fv__image {
  width: 100%;
}
.p-fv__lead {
  position: absolute;
  top: 50%;
  right: 100px;/*50px*/
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.p-fv__lead-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
}
.p-fv__lead-copy {
  font-size: 20px;
  text-decoration: underline;
}
.p-fv__lead-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 15px;
}
.p-fv__lead-cta div.pc img {
  width: 251px;
}
.p-fv__lead-image {
  width: 415px;
  margin-top: 20px;
}
.p-fv__lead-text {
  font-size: 24px;
}
.p-fv__lead-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #3D3D3D;
  color: #fff;
  font-size: 18px;
  width: 340px;
  height: 70px;
  margin-top: 30px;
}
.p-fv__lead-button a::after {
  position: absolute;
  content: '';
  width: 34px;
  height: 34px;
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/arrow.svg');
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.p-fv__lead-button a:hover {
  background-color: #D1808B;
}
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 50px;
  width: 23px;
  color: #D1808B;
  font-size: 14px;
  writing-mode: vertical-rl;
}
.scrolldown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #F7F4F1;
}
.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #d88b95;
  animation: sdl06 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl06 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media screen and (max-width:1199px) {
  .p-fv__lead {
    right: 7vw;
  }
  .p-fv__lead-title {
    font-size: 26px;
  }
  .p-fv__lead-copy {
    font-size: 16px;
  }
  .p-fv__lead-cta {
    gap: 18px;
    margin-top: 10px;
  }
  .p-fv__lead-cta div.pc img {
    width: 167px;
  }
  .p-fv__lead-image {
    width: 300px;
    margin-top: 10px;
  }
  .p-fv__lead-text {
    font-size: 18px;
  }
  .p-fv__lead-button a {
    width: 260px;
    margin-top: 20px;
  }
}
@media screen and (max-width:767px) {
  .p-fv__lead {
    top: auto;
    right: 0;
    bottom: 65px;/*40px*/
    transform: translateY(0);
    width: 100%;
  }
  .p-fv__lead div.sp img {
    width: 167px;
    margin: 0 auto;
  }
  .p-fv__lead-title {
    font-size: 24px;
    text-align: center;
    margin-top: 10px;
  }
  .p-fv__lead-copy {
    font-size: 14px;
  }
  .p-fv__lead-cta {
    text-align: center;
  }
  .p-fv__lead-cta div {
    margin: auto;
  }
  .p-fv__lead-image {
    width: 242px;
    margin-top: 5px;
  }
  .p-fv__lead-text {
    font-size: 16px;
  }
  .p-fv__lead-button a {
    margin-top: 20px;
    width: calc(100vw - 40px);
  }
  .p-fv__lead-button a::after {
    right: 12px;
  }
  .scrolldown {
    height: 55px;
    font-size: 11px;
  }
}
/* Experts' Choice */
.p-experts {
  padding: 80px 0 100px;
  background-color: #D1808B;
}
.p-experts .swiper-wrapper {
  align-items: stretch;
}
.p-experts .swiper-slide {
  padding: 50px 50px 80px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  height: auto;
}
.p-experts .slide-inner {
  flex: 1;
}
.p-experts__title {
  text-align: center;
}
.p-experts__title img {
  width: 665px;
}
.p-experts__copy {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding-bottom: 50px;
}
.p-experts p {
  margin: 15px 0 0;
}
.p-experts-title {
  font-size: 30px;
  font-weight: bold;
  color: #D1808B;
}
.p-experts-lead {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
.p-experts-lead img {
  width: 110px;
}
.p-experts-lead p {
  font-size: 12px;
  margin: 0;
}
.p-experts-lead span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (min-width:768px) {
  .p-experts .swiper .swiper-button-prev,
  .p-experts .swiper .swiper-button-next,
  .p-user .swiper .swiper-button-prev,
  .p-user .swiper .swiper-button-next {
    transform: translateX(-50%);
  }
  .p-experts .swiper .swiper-button-prev,
  .p-user .swiper .swiper-button-prev {
    left: calc(20% + 50px);
  }
  .p-experts .swiper .swiper-button-next,
  .p-user .swiper .swiper-button-next {
    right: 20%;
  }
}
@media screen and (max-width:767px) {
  .p-experts .swiper-slide {
    padding: 30px 30px;
    border-radius: 20px;
  }
  .p-experts__title img {
    width: 334px;
  }
  .p-experts__copy {
    font-size: 22px;
  }
  .p-experts-title {
    font-size: 18px;
  }
  .p-experts-lead {
    gap: 20px;
  }
  .p-experts-lead img {
    width: 90px;
  }
  .p-experts-lead span {
    font-size: 16px;
  }
}
/* inner */
.p-inner-link {
  display: flex;
  justify-content: center;
  gap: 20px 8px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
}
.p-inner-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 0 20px;
  position: relative;
  background-color: #F7F4F1;
  border: 2px solid #F7F4F1;
  border-radius: 40px;
  height: 43px;
  box-sizing: border-box;
}
.p-inner-link a::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #ABABAB;
  border-bottom: 2px solid #ABABAB;
  transform: rotate(45deg);
  top: 13px;
  right: 15px;
}
.p-inner-link a:hover {
  color: #F7F4F1;
  background-color: #000;
}
.p-inner-link a:hover::after {
  border-color: #F7F4F1;
}
@media screen and (max-width:767px) {
  .p-inner-link {
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .p-inner-link a {
    width: calc((100% - 9px) / 2);
    font-size: 14px;
    padding: 0 16px 0 10px;
  }
  .p-inner-link a::after {
    width: 5px;
    height: 5px;
    border-right: 1px solid #ABABAB;
    border-bottom: 1px solid #ABABAB;
    top: 16px;
    right: 8px;
  }
}
/* cta */
.p-cta {
  /*background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/cta.webp');*/
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 700px;
  /* aspect-ratio: 2800/1414; */
  box-sizing: border-box;
  position: relative;
}
.p-cta::before {
  position: absolute;
  content: '';
  width: 100%;
  aspect-ratio: 2800/290;
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/wave.webp');
  background-repeat: no-repeat;
  background-size: cover;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}
.p-cta2 {
  background-position: bottom 0 center;
}
.p-cta__header{
  width:98svw;
  max-width:1200px;
  display:block;
  margin:0 auto;
}
.p-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px 65px;
  box-sizing: border-box;
  background-color: #F7F4F1;
  max-width: 1200px;
  margin: 0 auto;
}
.p-cta__image img {
  width: 333px;
}
.p-cta__lead {
  width: 550px;
  text-align: center;
}
.p-cta__lead-copy {
  font-size: 40px;
  font-weight: bold;
}
.p-cta__lead-title img {
  width: calc(821px / 2);
  margin-top: 20px;
}
.p-cta__lead-text {
  font-size: 24px;
  margin-top: 5px;
}
.p-cta__lead-price {
  font-size: 18px;
  margin-top: 10px;
}
.p-cta__lead-price span {
  font-size: 13px;
  display: inline-block;
}
.p-cta__lead-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #3D3D3D;
  color: #fff;
  font-size: 18px;
  width: 340px;
  height: 70px;
  margin: 30px auto 0;
}
.p-cta__lead-button a::after {
  position: absolute;
  content: '';
  width: 34px;
  height: 34px;
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/arrow.svg');
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.p-cta__lead-button a:hover {
  background-color: #D1808B;
}
@media screen and (max-width:767px) {
  .p-cta {
    /* background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/cta_sp.webp'); */
    background-position: bottom center;
    aspect-ratio: 750 / 1351;
  }
  .p-cta::before {
    aspect-ratio: 750/143;
    background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/wave3.webp');
    bottom: 50px;
  }
  .p-cta__header{
    width:calc(100% - 20px);
    margin-bottom:8px;
  }
  .p-cta__inner {
    flex-direction: column;
    padding: 40px 20px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .p-cta__image img {
    width: 192px;
  }
  .p-cta__lead {
    width: 100%;
  }
  .p-cta__lead-copy {
    font-size: 20px;
  }
  .p-cta__lead-text {
    font-size: 16px;
  }
  .p-cta__lead-title img {
    width: 242px;
  }
  .p-cta__lead-price {
    font-size: 20px;
  }
  .p-cta__lead-button a {
    width: 100%;
  }
  .p-cta__lead-button a::after {
    right: 12px;
  }
}
/* Awards & Press */
.p-awards {
  padding: 100px;
  box-sizing: border-box;
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/award.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
.p-awards__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px 40px;
}
.p-awards__title {
  display: flex;
  flex-direction: column;
  gap: 60px;
  font-size: 40px;
  font-weight: bold;
}
.p-awards__title img {
  width: 426px;
}
.p-awards__lead {
  max-width: 600px;
}
.p-awards__lead-head {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.p-awards__lead-head p {
  font-size: 13px;
  margin-bottom: 0;
}
.p-awards__lead-head p span {
  font-size: 24px;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}
.p-awards__lead-count {
  font-size: 40px;
  font-weight: bold;
  position: relative;
  white-space:nowrap;
}
.p-awards__lead-count::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #000;
  left: 0;
  bottom: 0;
}
.p-awards__lead-count span {
  font-size: 80px;
  display: inline-block;
  margin-left: 5px;
  white-space:nowrap;
}
.p-awards__lead ul {
  margin-top: 30px;
}
.p-awards__lead li {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.p-awards__lead li img {
  width: 140px;
}
.p-awards__lead li p {
  font-size: 24px;
}
.p-awards__lead li span {
  font-size: 16px;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width:767px) {
  .p-awards {
    padding: 100px 20px;
    background-position: top right;
    position: relative;
  }
  .p-awards::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 80px;
    background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/wave3.webp');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 10px;
    left: 0;
  }
  .p-awards__inner {
    flex-direction: column;
  }
  .p-awards__title {
    align-items: center;
    gap: 20px;
    font-size: 22px;
    text-align: center;
  }
  .p-awards__title img {
    width: 335px;
  }
  .p-awards__lead {
    max-width: none;
  }
  .p-awards__lead-head {
    flex-direction: column;
  }
  .p-awards__lead-head p span {
    font-size: 18px;
  }
  .p-awards__lead-count {
    font-size: 30px;
  }
  .p-awards__lead-count span {
    font-size: 54px;
  }
  .p-awards__lead li {
    gap: 10px;
  }
  .p-awards__lead li img {
    width: 110px;
  }
  .p-awards__lead li p {
    font-size: 16px;
  }
  .p-awards__lead li span {
    font-size: 14px;
  }
}
/* Sign */
.p-sign {
  position: relative;
  padding-top: 110px;
  --pSignHeight:650px;
}
.p-sign::after {
  position: absolute;
  content: '';
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/question.webp');
  background-position: center;
  background-size: cover;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: calc(115px / 2);
  height: calc(187px / 2);
}
.p-sign__title {
  font-size: 56px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px){
  .p-sign__title span{
    margin-bottom:0.2em;
  }
}
.p-sign__inner {
  position: relative;
  height: var(--pSignHeight);
}
.p-sign__inner:nth-child(2) ul,
.p-sign__lead {
  position: absolute;
}
.p-sign__inner:nth-child(2) ul {
  padding-right: 100px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.p-sign__inner:nth-child(2) ul::after {
  position: absolute;
  content: '';
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/nothing-the-signs.webp');
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(77px / 2);
  height: calc(644px / 2);
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.p-sign__inner:nth-child(2) li {
  display: flex;
  align-items: center;
  padding: 5px 10px 5px 56px;
  box-sizing: border-box;
  width: 640px;
  min-height: 50px;
  position: relative;
  background-color: #fff;
  font-size: 20px;
}
.p-sign__inner:nth-child(2) li::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 16px;
  border-right: 4px solid #D1808B;
  border-bottom: 4px solid #D1808B;
  left: 26px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.p-sign__inner:nth-child(3) .p-sign__lead {
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
}
.p-sign__inner:nth-child(3) .p-sign__en img {
  width: 283px;
}
.p-sign__block {
  padding: 40px 0 0 50px;
  font-weight: bold;
}
.p-sign__head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-sign__head img {
  width: 154px;
}
.p-sign__inner:nth-child(3) .p-sign__title {
  font-size: 30px;
  text-align: left;
  margin-bottom: 30px;
}
.p-sign__inner:nth-child(3) .p-sign__title span {
  display: block;
  font-size: 56px;
  position: relative;
  width: fit-content;
}
.p-sign__inner:nth-child(3) .p-sign__title span::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #000;
  bottom: -5px;
  left: 0;
}
.p-sign__inner:nth-child(3) .p-sign__text {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-top: 20px;
}
.p-sign__inner:nth-child(3) ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}
.p-sign__inner:nth-child(3) li {
  width: 190px;
  height: 190px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
}
.p-sign__button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 40px 8px 20px;
  box-sizing: border-box;
  font-size: 18px;
  margin-top: 30px;
  border: 1px solid #000;
  border-radius: 30px;
  width: fit-content;
}
.p-sign__button:hover {
  background-color: #000;
  color: #fff;
  cursor: pointer;
}
.p-sign__button.modal-btn-03 {
  margin-top: 14px;
}
.p-sign__button::before,
.p-sign__button::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 1px;
  background-color: #000;
  top: 20px;
  right: 20px;
}
.p-sign__button::after {
  transform: rotate(90deg);
}
.p-sign__button:hover::before,
.p-sign__button:hover::after {
  background-color: #fff;
}
.p-sign__inner:nth-child(4) .p-sign__lead {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding-right: 200px;
  box-sizing: border-box;
  color: #fff;
  font-weight: bold;
}
.p-sign__inner:nth-child(4) .p-sign__lead::after {
  position: absolute;
  content: '';
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/diffyculty-of-core.webp');
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(78px / 2);
  height: calc(561px / 2);
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.p-sign__inner:nth-child(4) .p-sign__text {
  font-size: 24px;
}
.p-sign__inner:nth-child(4) .p-sign__title {
  font-size: 30px;
  text-align: left;
  margin-top: 10px;
}
.p-sign__inner:nth-child(4) .p-sign__title span {
  display: inline-block;
  position: relative;
}
.p-sign__inner:nth-child(4) .p-sign__title span::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  background-color: #fff;
  left: 0;
  bottom: -1px;
}
.p-sign__inner:nth-child(4) .p-sign__button {
  border-color: #fff;
}
.p-sign__inner:nth-child(4) .p-sign__button::before,
.p-sign__inner:nth-child(4) .p-sign__button::after {
  background-color: #fff;
}
.p-sign__inner:nth-child(4) .p-sign__button:hover {
  background-color: #fff;
  color: #000;
}
.p-sign__inner:nth-child(4) .p-sign__button:hover::before,
.p-sign__inner:nth-child(4) .p-sign__button:hover::after {
  background-color: #000;
}
.p-sign__parallax img {
  width: 100vw;
  height: var(--pSignHeight);
}
.p-sign-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.p-sign-modal.is-active {
  display: block;
}
.p-sign-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.p-sign-modal__content {
  position: absolute;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background: #F1EFEC;
  padding: 80px 50px 100px;
  box-sizing: border-box;
  border-radius: 20px;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.p-sign-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  border: none;
  background: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  padding: 0;
}
.p-sign-modal__close::before,
.p-sign-modal__close::after {
  position: absolute;
  content: '';
  width: 40px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
  left: -5px;
  top: 14px;
  transition: 0.4s;
}
.p-sign-modal__close::after {
  transform: rotate(-45deg);
}
.p-sign-modal__close:hover::before,
.p-sign-modal__close:hover::after {
  background-color: #909090;
}
.p-sign-modal__title {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.p-sign-modal__title::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #000;
  bottom: -5px;
  left: 0;
}
.p-sign-modal__inner {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
.p-sign-modal__inner p {
  font-size: 18px;
}
.p-sign-modal__inner span {
  font-weight: bold;
  color: #D1808B;
}
.p-sign-modal__inner img {
  width: 350px;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #F7F4F1;
  border-radius: 50%;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  top: 15px;
  z-index: 1;
}
.swiper-button-prev::after {
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  left: 19px;
}
.swiper-button-next::after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  left: 12px;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  display: none;
}
@media screen and (max-width:767px) {
  .p-sign__title {
    font-size: 28px;
  }
  .p-sign__parallax {
    overflow: hidden;
  }
  .p-sign__inner:nth-child(2) .p-sign__parallax img {
    object-position: left -120px top -120px !important;
    transform: scale(1.7);
  }
  .p-sign__inner:nth-child(3) .p-sign__parallax img {
    object-position: right -380px bottom 0 !important;
    opacity: 0.6;
  }
  .p-sign__inner:nth-child(4) .p-sign__parallax img {
    object-position: bottom 50px left 0 !important;
    transform: scale(2.0);
  }
  .p-sign__inner:nth-child(2) ul,
  .p-sign__lead {
    position: absolute;
  }
  .p-sign__inner:nth-child(2) ul {
    padding-right: 0;
    top: 80px;
    right: 20px;
    transform: translateY(0);
    width: calc(100% - 40px);
  }
  .p-sign__inner:nth-child(2) ul::after {
    display: none;
  }
  .p-sign__inner:nth-child(2) li {
    width: 100%;
    min-height: 70px;
    font-size: 16px;
  }
  .p-sign__inner:nth-child(3) .p-sign__lead {
    top: 30px;
    left: 10px;
    transform: translateY(0);
    width: calc(100% - 20px);
    padding-right: 10px;
  }
  .p-sign__block {
    padding: 20px 10px 0 10px;
  }
  .p-sign__head {
    position: relative;
  }
  .p-sign__head img {
    width: 137px;
    position: absolute;
    top: 40px;
    right: 10px;
  }
  .p-sign-modal__content {
    padding: 15px 20px 20px;
    overflow-x: scroll;
    max-height: 90vh;
  }
  .p-sign-modal__close {
    top: 0;
    position: sticky;
    display: block;
    margin-left: auto;
    right: 0;
  }
  .p-sign-modal__title {
    text-decoration: underline;
  }
  .p-sign-modal__title::before {
    display: none;
  }
  .p-sign-modal__inner {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  .p-sign-modal__inner img {
    width: 100%;
  }
  .p-sign__inner:nth-child(3),
  .p-sign__inner:nth-child(3) .p-sign__parallax img {
    height: 770px;
  }
  .p-sign__inner:nth-child(3) .p-sign__title {
    font-size: 18px;
  }
  .p-sign__inner:nth-child(3) .p-sign__title span {
    font-size: 40px;
  }
  .p-sign__inner:nth-child(3) .p-sign__text {
    font-size: 18px;
    width: calc(100% - 160px);
  }
  .p-sign__inner:nth-child(3) ul {
    justify-content: center;
    gap: 10px;
  }
  .p-sign__inner:nth-child(3) li {
    width: 150px;
    height: 150px;
    font-size: 14px;
  }
  .p-sign__button {
    margin: 40px auto 0;
    font-size: 16px;
  }
  .p-sign__button::after {
    transform: rotate(90deg);
  }
  .p-sign__button:hover::before,
  .p-sign__button:hover::after {
    background-color: #fff;
  }
  .p-sign__inner:nth-child(4) .p-sign__lead {
    right: 20px;
    padding-right: 0;
    width: calc(100% - 40px);
  }
  .p-sign__inner:nth-child(4) .p-sign__lead::after {
    right: -4px;
    top: -120px;
    transform: translateY(0);
    /* width: calc(78px / 3);
    height: calc(561px / 3); */
  }
  .p-sign__inner:nth-child(4) .p-sign__text {
    font-size: 18px;
  }
  .p-sign__inner:nth-child(4) .p-sign__title {
    font-size: 22px;
    margin-top: 30px;
  }
  .p-sign__inner:nth-child(4) .p-sign__title div {
    font-size: 16px;
    position: relative;
    width: fit-content;
    display: block;
    margin-top: 10px;
  }
  .p-sign__inner:nth-child(4) .p-sign__title div::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    left: 0;
    bottom: -1px;
  }
  .p-sign__inner:nth-child(4) .p-sign__button {
    margin-left: 0;
  }
}
/* care */
.p-care {
  text-align: center;
  padding-top: 153px;
  position: relative;
}
.p-care::after {
  position: absolute;
  content: '';
  width: 230px;
  height: 115px;
  background-color: #E7AFB6;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.p-care__text {
  font-size: 40px;
  font-weight: bold;
}
.p-care__title {
  font-size: 56px;
  font-weight: bold;
  padding:0 40px;
}
.p-care__title span {
  display: inline-block;
  position: relative;
}
.p-care__title span::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #000;
  bottom: -5px;
  left: 0;
}
.p-care p {
  font-size: 18px;
  margin-top: 40px;
  padding:0 40px;
}
.p-care p span {
  font-size: 13px;
  display: block;
  margin-top: 20px;
}
.p-care__image {
  margin: 50px 0;
}
.p-care__video iframe {
  max-width: 960px;
  margin: 50px auto;
  aspect-ratio: 16/9;
  border-radius: 40px;
}
@media screen and (max-width:767px) {
  .p-care {
    padding-top: 55px;
  }
  .p-care::after {
    width: 60px;
    height: 30px;
  }
  .p-care__text {
    font-size: 20px;
  }
  .p-care__title {
    font-size: 30px;
  }
  .p-care__title span::before {
    height: 2px;
    bottom: -1px;
  }
  .p-care p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
  }
  .p-care__image {
    margin: 30px 0 0;
  }
  .p-care__video {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .p-care__video iframe {
    border-radius: 20px;
    margin-bottom: 0;
  }
}
/* Reason */
.p-reason {
  padding: 80px 0;
  background: #fff;
  color: #333;
  /* font-family: "Noto Sans JP", sans-serif; */
}
.p-reason__head {
  text-align: center;
  margin-bottom: 60px;
}
.p-reason__head .p-reason__title img {
  width: calc(697px / 2);
}
.p-reason__head .p-reason__text {
  margin-top: 16px;
  font-size: 40px;/*20px*/
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #666;
}
.p-reason__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-reason__inner .p-reason__title {
  text-align: center;
  margin-bottom: 16px;
}
.p-reason__inner .p-reason__title img {
  max-width: 114px;
}
.p-reason__inner .p-reason__text {
  text-align: center;
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 70px;
}
.p-reason__inner .p-reason__text span {
  position: relative;
  display: inline-block;
}
.p-reason__inner .p-reason__text span::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #000;
  bottom: -4px;
  left: 0;
}
.p-reason__block {
  display: flex;
  gap: 40px 80px;
  align-items: center;
  margin-bottom: 60px;
}
.p-reason__inner .p-reason__block:nth-child(n+4) {
  gap: 60px;
}
.p-reason__lead {
  flex: 1;
}
.p-reason__lead-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.p-reason__lead p {
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 24px;
}
.p-reason__lead p:last-child{
  margin-bottom:0!important;
}
/*
.p-reason__lead p span {
  display: block;
  margin-top: 15px;
  font-size: 0.7rem;
}
*/
.p-reason__lead-highlight {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.7;
  box-sizing: border-box;
  position: relative;
}
.p-reason .p-reason__inner {
  padding: 100px 20px;
  box-sizing: border-box;
}
.p-reason__number {
  font-weight: 600;
}
.p-reason .p-reason__number:nth-child(even) {
  background-color: #F7F4F1;
}
.p-reason .p-reason__number:nth-child(n+2) .p-reason__block:nth-child(n+3) .p-reason__image,
.p-reason .p-reason__number:nth-child(n+2) .p-reason__block:nth-child(n+3) .p-reason__lead {
  width: calc((100% - 80px) / 2);
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(3) .p-reason__lead-highlight {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #D1808B;
  margin-top: 30px;
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(3) .p-reason__lead-highlight img {
  max-width: 283px;
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(3) .p-reason__lead-highlight p {
  color: #fff;
  margin: 0;
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(3) .p-reason__lead-highlight p span:nth-child(1) {
  position: relative;
  top: -6px;
  font-size: 10px;
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(3) .p-reason__lead-highlight p span:nth-child(3) {
  position: relative;
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(3) .p-reason__lead-highlight p span:nth-child(3)::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #fff;
  bottom: -3px;
  left: 0;
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(3) .p-reason__lead-highlight p span:nth-child(4) {
  display: block;
  font-size: 13px;
  margin-top: 8px;
}
/* .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) .p-reason__lead-highlight:nth-child(1) {
  display: flex;
  justify-content: space-between;
  gap: 20px 5px;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 50px;
  border-radius: 20px;
  background-color: #DCDCDC;
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) p {
  margin-top: 40px;
} */
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) .p-reason__lead-title {
  font-size: 24px;
  margin-bottom: 0.2rem;
}
/* .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) img {
  width: 182px;
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) .p-reason__lead-highlight {
  width: calc((100% - 60px) / 2);
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) .p-reason__lead-highlight:nth-child(2) {
  background: none;
  border: 1px solid #000;
} */
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) {
  display: block;
}
.p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) .p-reason__lead-highlight {
  background: none;
  border: 1px solid #000;
}
.p-reason .p-reason__number:nth-child(3) .p-reason__block:nth-child(3) {
  margin: 200px 0 100px;
}
.p-reason .p-reason__number:nth-child(3) .p-reason__block:nth-child(3) .p-reason__image {
  position: relative;
}
.p-reason .p-reason__number:nth-child(3) .p-reason__block:nth-child(3) img {
  position: absolute;
  width: calc(1114px / 2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.p-reason .p-reason__number:nth-child(4) .p-reason__block span {
  display: block;
  font-size: 13px;
  margin-top: 20px;
}
.p-reason .p-reason__number:nth-child(5) .p-reason__block .p-reason__image:nth-child(n+2) {
  width: calc(971px / 2);
  padding-left: 30px;
}
.p-reason__block:nth-child(odd) {
  flex-direction: row;
}
@media screen and (max-width:767px) {
  .p-reason {
    padding-bottom: 0;
  }
  .p-reason__head .p-reason__title img {
    width: calc(697px / 4);
  }
  .p-reason__head .p-reason__text {
    font-size: 22px;
  }
  .p-reason__inner .p-reason__title {
    text-align: center;
    margin-bottom: 16px;
  }
  .p-reason__inner .p-reason__title img {
    max-width: 43px;
  }
  .p-reason__inner .p-reason__text {
    font-size: 24px;
    margin-bottom: 60px;
    line-height: 2;
  }
  .p-reason__inner .p-reason__text span::before {
    bottom: 0;
  }
  .p-reason__block {
    flex-direction: column;
  }
  .p-reason__inner .p-reason__block:nth-child(n+4) {
    gap: 40px;
  }
  .p-reason__block:nth-child(n+4) {
    margin-bottom: 0;
  }
  .p-reason__lead-title {
    font-size: 20px;
  }
  .p-reason__lead p {
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 40px;
  }
  .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) .p-reason__lead-highlight:nth-child(1) p br{
    display:none;
  }
  .p-reason .p-reason__number:nth-child(n+2) .p-reason__block:nth-child(n+3) .p-reason__image,
  .p-reason .p-reason__number:nth-child(n+2) .p-reason__block:nth-child(n+3) .p-reason__lead {
    width: 100%;
  }
  .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(3) .p-reason__lead-highlight {
    flex-direction: column;
  }
  .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(3) .p-reason__lead-highlight img {
    max-width: 100%;
  }
  .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) .p-reason__lead-highlight:nth-child(1) {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    /* font-size: 16px; */
    padding: 40px 20px;
  }
  .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) p {
    margin-top: 0;
  }
  .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) .p-reason__lead-title {
    font-size: 20px;
  }
  .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) img {
    width: 124px;
  }
  .p-reason .p-reason__number:nth-child(2) .p-reason__block:nth-child(4) .p-reason__lead-highlight {
    width: 100%;
  }
  .p-reason .p-reason__number:nth-child(3) .p-reason__block:nth-child(3) {
    margin: 0 0 60px;
    gap: 0;
  }
  .p-reason .p-reason__number:nth-child(3) .p-reason__block:nth-child(3) .p-reason__image {
    position: relative;
  }
  .p-reason .p-reason__number:nth-child(3) .p-reason__block:nth-child(3) img {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0, 0);
  }
  .p-reason .p-reason__number:nth-child(4) .p-reason__block:nth-child(n+3) {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
  .p-reason .p-reason__number:nth-child(4) .p-reason__block:nth-child(n+3) p {
    margin-bottom: 0;
  }
  .p-reason .p-reason__number:nth-child(5) .p-reason__block {
    flex-direction: column;
    margin-bottom: 0;
  }
  .p-reason .p-reason__number:nth-child(5) .p-reason__block .p-reason__image:nth-child(n+2) {
    width: 100%;
    padding-left: 0;
  }
  .p-reason__block:nth-child(odd) {
    flex-direction: column;
  }
}
/* Users' Voice */
.p-user {
  padding: 100px 0 60px;
  background-color: #E7AFB6;
}
.p-user__title {
  text-align: center;
}
.p-user__title img {
  width: calc(1131px / 2);
}
.p-user__copy {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin: 20px auto 40px;
}
.p-user .swiper-slide {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
  box-sizing: border-box;
}
.p-user .swiper-wrapper {
  align-items: stretch;
}
.p-user .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
.p-user .swiper-slide p span {
  font-weight: bold;
}
.p-user .slide-inner {
  flex: 1;
}
.p-user-title {
  font-size: 20px;
  font-weight: bold;
}
.p-user-stars span {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #ccc;
  margin: 1rem 0;

  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
.p-user-stars[data-rate="1"] span:nth-child(-n+1) {
  background: #494740;
}
.p-user-stars[data-rate="2"] span:nth-child(-n+2) {
  background: #494740;
}
.p-user-stars[data-rate="3"] span:nth-child(-n+3) {
  background: #494740;
}
.p-user-stars[data-rate="4"] span:nth-child(-n+4) {
  background: #494740;
}
.p-user-stars[data-rate="5"] span:nth-child(-n+5) {
  background: #e88;
}
.p-user__note {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width:767px) {
  .p-user__title img {
    width: calc(1131px / 6);
  }
  .p-user__copy {
    font-size: 22px;
    margin-top: 5px;
  }
  .p-user .swiper-slide {
    padding: 30px;
  }
}
/* Care on Your Time */
.p-yourtime {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
.p-yourtime__title img {
  width: calc(1545px / 2);
}
.p-yourtime__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px 10px;
  margin-top: 50px;
}
.p-yourtime__text {
  font-size: 40px;
  font-weight: bold;
}
.p-yourtime__lead {
  width: 325px;
}
.p-yourtime__lead p {
  margin-top: 20px;
}
.p-yourtime__images {
  display: flex;
  gap: 7px;
  max-width: 800px;
}
.p-yourtime__images-item {
  width: calc((100% - 14px) / 3);
}
@media screen and (max-width:767px) {
  .p-yourtime {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .p-yourtime__title {
    text-align: center;
  }
  .p-yourtime__title img {
    width: calc(1545px / 5);
  }
  .p-yourtime__inner {
    flex-direction: column;
    margin-top: 30px;
  }
  .p-yourtime__text {
    font-size: 30px;
    text-align: center;
  }
  .p-yourtime__lead {
    width: 100%;
  }
  .p-yourtime__images {
    flex-direction: column;
  }
  .p-yourtime__images-item {
    width: 100%;
  }
}
/* How to Use */
.p-howto {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 120px 100px;
  box-sizing: border-box;
  border-radius: 40px;
  text-align: center;
  background-color: #F7F4F1;
}
.p-howto__title img {
  width: calc(966px / 2);
}
.p-howto__text {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
.p-howto__video{
  margin-top:50px;
}
.p-howto__video iframe {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 40px;
}
.p-howto__note {
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}
.p-howto__note li {
  position: relative;
  padding-left: 1.2rem;
  box-sizing: border-box;
}
.p-howto__note li::before {
  position: absolute;
  content: '※';
  left: 0;
  top: 0;
}
@media screen and (max-width:767px) {
  .p-howto {
    padding: 100px 20px;
    border-radius: 20px;
  }
  .p-howto__title img {
    width: calc(966px / 4);
  }
  .p-howto__text {
    font-size: 24px;
  }
  .p-howto__video iframe {
    border-radius: 20px;
    margin: 40px 0 0;
  }
}
/* Support Products */
.p-support {
  padding: 100px 0;
  background-color: #D1808B;
  color: #fff;
}
.p-support__title {
  text-align: center;
}
.p-support__title img {
  width: calc(1455px / 2);
}
.p-support__text {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
.p-support__inner {
  max-width: 1140px;
  margin: 50px auto 0;
  display: flex;
  gap: 50px 30px;
}
.p-support__lead {
  width: calc((100% - 60px) / 3);
}
.p-support__lead img {
  width: 100%;
}
.p-support__lead .p-support__title {
  font-size: 30px;
  font-weight: bold;
  margin: 20px 0;
}
.p-support__inner-text {
  position: relative;
  padding-bottom: 45px;
}
.p-support__lead p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.4s;
}
.p-support__lead p.is-open {
  -webkit-line-clamp: unset;
  transition: 0.4s;
}
.p-support__more-button {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}
.p-support__more-button::before {
  position: absolute;
  content: '';
  width: 80px;
  height: 1px;
  background-color: #fff;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}
.p-support__more-button:hover {
  opacity: 0.7;
}
.p-support__more-button.is-hidden {
  display: none;
}
.p-support__lead-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #3D3D3D;
  border: 2px solid #3D3D3D;
  color: #fff;
  font-size: 18px;
  width: 100%;
  max-width: 340px;
  height: 70px;
  /* margin-top: 30px; */
}
.p-support__lead-button a::after {
  position: absolute;
  content: '';
  width: 34px;
  height: 34px;
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/arrow.svg');
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.p-support__lead-button a:hover {
  background-color: #D1808B;
}
@media screen and (max-width:767px) {
  .p-support {
    padding: 100px 20px;
    box-sizing: border-box;
  }
  .p-support__title img {
    width: calc(1455px / 5);
  }
  .p-support__text {
    font-size: 24px;
    margin-top: 5px;
  }
  .p-support__inner {
    flex-direction: column;
  }
  .p-support__lead {
    width: 100%;
  }
  .p-support__title {
    font-size: 20px;
  }
  .p-support__lead-button a {
    width: 100%;
    max-width: none;
  }
}
/* Try It Free */
.p-try {
  padding: 100px 0;
  position: relative;
}
.p-try::after {
  position: absolute;
  content: '';
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/try-it-free.webp');
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(144px / 2);
  height: calc(662px / 2);
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}
.p-try__inner {
  display: flex;
  align-items: center;
  gap: 68px;
  max-width: 1200px;
  margin: 0 auto;
}
.p-try__image,
.p-try__lead {
  position: relative;
  width: calc((100% - 68px) / 2);
}
.p-try__image img{
  border-radius: 20px;
}
.p-try__lead {
  padding-right: 100px;
  box-sizing: border-box;
}
.p-try__title {
  font-size: 30px;
  font-weight: bold;
}
.p-try__title span {
  position: relative;
  font-size: 56px;
  display: flex;
  width: fit-content;
}
.p-try__title span::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #000;
  bottom: -4px;
  left: 0;
}
.p-try__lead p {
  margin-top: 30px;
}
.p-try__lead p a {
  display: inline-block;
  position: relative;
  margin-left: 30px;
  padding-left: 15px;
}
.p-try__lead p a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #000;
  bottom: -1px;
  left: 0;
}
.p-try__lead p a::after {
  position: absolute;
  content: '';
  width: 9.61px;
  height: 13px;
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/map.svg');
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 5px;
  transition: 0.4s;
}
.p-try__lead p a:hover {
  cursor: pointer;
  opacity: 0.7;
}
.p-try__lead p a:hover::after {
  top: 8px;
}
@media screen and (max-width:767px) {
  .p-try {
    padding: 100px 20px;
    box-sizing: border-box;
  }
  .p-try::after {
    top: -40px;
    right: 9px;
    transform: translateY(0) scale(0.66);
  }
  .p-try__inner {
    flex-direction: column-reverse;
  }
  .p-try__image,
  .p-try__lead {
    width: 100%;
  }
  .p-try__lead {
    padding-right: 0;
  }
  .p-try__title {
    font-size: 20px;
  }
  .p-try__title span {
    font-size: 40px;
  }
  .p-try__lead p span::before {
    height: 1px;
    bottom: 0px;
  }
  .p-try__lead p {
    margin-top: 30px;
  }
  .p-try__lead p span {
    margin-left: 15px;
  }
  /* .p-try__lead p a {
    margin-left: 0;
  } */
}
/* Details */
.p-details {
  padding: 100px 0;
  background-color: #E7AFB6;
  max-width: 1200px;
  margin: 100px auto;
  text-align: center;
}
.p-details__title img {
  width: calc(562px / 2);
}
.p-details__text {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-top: 15px;
}
.p-details table {
  width: 100%;
  max-width: 600px;
  margin: 50px auto 0;
  text-align: left;
}
.p-details tr {
  background-color: #fff;
  border-top: 4px solid #E7AFB6;
  width: 100%;
}
.p-details td {
  padding: 15px 0;
  vertical-align: middle;
}
.p-details td:nth-child(1) {
  padding-left: 40px;
  width: 240px;
  box-sizing: border-box;
  font-weight: bold;
}
.p-details td:nth-child(2) {
  width: calc(100% - 200px);
}
@media screen and (max-width:767px) {
  .p-details {
    padding: 100px 20px;
    margin-top: 40px;
    box-sizing: border-box;
  }
  .p-details__title img {
    width: calc(562px / 4);
  }
  .p-details__text {
    font-size: 24px;
    margin-top: 10px;
  }
  .p-details table {
    margin: 40px auto 0;
  }
  .p-details td:nth-child(1) {
    padding-left: 15px;
    width: 140px;
  }
  .p-details td:nth-child(2) {
    width: calc(100% - 150px);
  }
}
/* FAQ */
.p-faq {
  padding-top: 120px;
  margin-top: -120px;
}
.p-faq__title,
.p-faq__text {
  text-align: center;
}
.p-faq__title img {
  width: calc(349px / 2);
}
.p-faq__text {
  font-size: 40px;
  font-weight: bold;
  margin-top: 15px;
}
.p-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1000px;
  margin: 50px auto 0;
}
/*
.p-faq__item {
  font-weight: bold;
}
*/
.accordionSwitch{
	cursor:pointer;
  font-size: 20px;
  background-color: #F7F4F1;
  padding: 30px 0;
}
.accordionSwitch,
.accordion {
  padding-left: 60px;
  box-sizing: border-box;
  position: relative;
}
.accordionSwitch input{
	display:none !important;
  position: relative;
}
.accordion{
	display:grid;
	grid-template-rows:0fr;
	transition:grid-template-rows 0.4s ease-out;
}
.accordionSwitch::before {
  position: absolute;
  content: '';
  width: calc(46px / 2);
  height: calc(45px / 2);
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/q.webp');
  background-repeat: no-repeat;
  background-size: cover;
  left: 24px;
  top: 28px;
}
.accordionSwitch:has(input:checked) ~ .accordion{
	grid-template-rows:1fr;
  padding: 20px 0 20px 60px;
}
.accordionSwitch:has(input:checked) ~ .accordion::before{
  position: absolute;
  content: '';
  width: calc(42px / 2);
  height: calc(46px / 2);
  background-image: url('https://file001.shop-pro.jp/PA01521/909/img/top/a.webp');
  background-repeat: no-repeat;
  background-size: cover;
  left: 24px;
  top: 24px;
}
.accordionContent{
	overflow:hidden;
}
/* .p-faq__icon {
  position: absolute;
  width: calc(100% - 60px);
} */
.p-faq__icon::before,
.p-faq__icon::after {
  position: absolute;
  content: '';
  width: 25px;
  height: 2px;
  background-color: #000;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  transition: 0.4s;
  z-index: 1;
}
.p-faq__icon::after {
  transform: translateY(-50%) rotate(90deg);
}
.accordionSwitch::after {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.accordionSwitch:has(input:checked) .p-faq__icon::after {
  transform: rotate(0);
}
@media screen and (max-width:767px) {
  .p-faq {
    padding-left: 20px;
    padding-top: 80px;
    padding-right: 20px;
    margin-top: -80px;
    box-sizing: border-box;
  }
  .p-faq__title img {
    width: calc(349px / 4);
  }
  .p-faq__text {
    font-size: 24px;
    margin-top: 10px;
  }
  .p-faq__inner {
    margin-top: 40px;
  }
  .accordionSwitch{
    font-size: 18px;
    padding: 20px 50px 20px 0;
  }
  .accordionSwitch,
  .accordion {
    padding-left: 60px;
  }
  .accordionSwitch::before {
    top: 50%;
    transform: translateY(-50%);
  }
  .p-faq__icon::before,
  .p-faq__icon::after {
    right: 17px;
  }
  .p-faq__icon::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .accordionSwitch::after {
    right: 10px;
  }
}

.p-reason__lead p,
.p-reason__lead-highlight {
  font-size: 12px;
}

.p-reason .p-reason__number:nth-child(4) .p-reason__block span {
  font-size: 11px;
}