@charset "utf-8";
/*=========================
  Common
=========================*/
/* color */
:root {
  --gold: #ba9808;
  --pink: #ed8c8c;
  --gray: #858585;
}

html {
  scroll-behavior: smooth;
  /* scroll-padding-top: 100px;  */
}
/* @media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 0px;
  }
} */
body {
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  color: #858585;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: relative;
  @media (max-width: 960px) {
    font-size: 0.875rem;
  }
}
a {
  text-decoration: none;
  transition: opacity 0.3s;
  color: inherit;
  &:hover {
    @media (any-hover: hover) {
      opacity: 0.6;
    }
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  text-align: justify;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Shippori Mincho', serif;
  /* line-height: 1; */
  font-size: inherit;
  font-weight: inherit;
  color: #6d6d6d;
}

.en {
  font-family: 'Crimson Text', serif;
}

.pc-only {
  display: inline-block;
}
.sp-only {
  display: none;
}
@media (max-width: 960px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: inline-block;
  }
}

.container {
  width: calc(100% - 56px);
  max-width: 1200px;
  margin-inline: auto;
}

/* button */
.button {
  --bg-color: var(--pink);
  --color: #fff;
  --r: 0px;
  background-color: var(--bg-color);
  color: var(--color);
  border-radius: var(--r);
  padding: 1.25rem 2rem;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Shippori Mincho', serif;
  position: relative;
  .icon {
    margin-left: 0.75rem;
  }
  @media (max-width: 960px) {
    font-size: 14px;
    padding: 16px 20px;
    .icon {
      width: 14px;
      margin-left: 0.75rem;
    }
  }
  @media (any-hover: hover) {
    &::before {
      border-radius: var(--r);
      content: '';
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    &:hover {
      opacity: 1;
    }
    &:hover::before {
      opacity: 0.25;
    }
  }
}

/*=========================
  header
=========================*/
header {
  position: absolute;
  z-index: 100;
  width: 100%;
  .logo {
    width: 210px;
    margin: 30px;
    @media (max-width: 960px) {
      width: 108px;
      margin: 30px 20px;
    }
  }
}

/*=========================
  kv
=========================*/
section.kv {
  background: url(../img/kv-bg.png) no-repeat;
  background-color: #f9fafd;
  background-position: 100% 0%;
  padding: 100px 0 80px;
  @media (max-width: 960px) {
    background: url(../img/kv-bg-sp.png) no-repeat;
    background-position: 100%;
    background-size: cover;
    padding: 100px 0 30px;
  }
  .kv__inner {
    position: relative;
    margin: 45px auto 0;
    max-width: 1400px;
    padding-inline: 5vw;
    @media (max-width: 960px) {
      margin: 0;
    }
  }
  .kv__copy {
    color: var(--gold);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    .row1 {
      font-size: 46px;
      @media (max-width: 960px) {
        font-size: 22px;
        line-height: 1.7;
      }
    }
    .row2 {
      font-size: 70px;
      font-weight: 600;
      @media (max-width: 960px) {
        font-size: 32px;
        line-height: 1.5;
        margin-left: -5px;
      }
    }
  }
  .kv__item {
    position: relative;
    max-width: 700px;
    margin-bottom: 1.75rem;
    .item-img {
      position: relative;
      z-index: 2;
      width: 245px;
      margin-inline: auto;
      @media (max-width: 960px) {
        width: 160px;
        margin: 0 auto 0 38px;
      }
    }
    .bg-bubble {
      position: absolute;
      z-index: 1;
      top: 40px;
      width: 380px;
      @media (max-width: 960px) {
        left: -18%;
        top: 60px;
        width: 220px;
      }
    }
  }
  .kv__buttons {
    max-width: 700px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    @media (max-width: 960px) {
      display: none;
    }
    .kv__button {
      width: fit-content;
      margin: 0;
    }
    .kv__button:nth-child(1) {
      background-color: var(--gold);
    }
  }
}

section.kv-buttons-sp {
  display: none;
  position: relative;
  z-index: 2;
  @media (max-width: 960px) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .kv__button {
    width: 100%;
    padding: 20px;
  }
  .kv__button:nth-child(1) {
    background-color: var(--gold);
  }
}

/*=========================
  about
=========================*/
section.about {
  background: url(../img/about-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0 80px;
  @media (max-width: 960px) {
    background: url(../img/about-bg-sp.png) no-repeat;
    background-size: cover;
    padding: 60px 0;
  }
  .about__title {
    font-size: 44px;
    font-weight: 500;
    text-align: center;
    text-wrap: balance;
    margin-bottom: 50px;
    @media (max-width: 960px) {
      font-size: 28px;
      margin-bottom: 24px;
    }
  }
  .about__text {
    max-width: 660px;
    margin-inline: auto;
    line-height: 1.8;
  }
}

/*=========================
  worries
=========================*/
section.worries {
  background: url(../img/worries-bg.png) no-repeat;
  background-size: 600px;
  background-position: 0% 0%;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  padding-top: 80px;
  @media (max-width: 960px) {
    padding-top: 54px;
    background-size: 400px;
  }
  .worries__title {
    text-align: center;
    margin-bottom: 60px;
    @media (max-width: 960px) {
      margin-bottom: 20px;
    }
    .sub {
      font-size: 30px;
      font-weight: 600;
      @media (max-width: 960px) {
        font-size: 18px;
      }
    }
    .main {
      font-size: 44px;
      font-weight: 500;
      @media (max-width: 960px) {
        font-size: 28px;
      }
    }
  }
  .worries__content {
    .worries__img {
      position: relative;
      z-index: 3;
      width: 267px;
      margin-inline: auto;
      @media (max-width: 960px) {
        width: 170px;
      }
    }
    .checklist {
      background-color: var(--gray);
      color: #fff;
      max-width: 660px;
      margin-inline: auto;
      position: relative;
      z-index: 2;
      padding: 40px 50px;
      border-radius: 10px;
      position: relative;
      top: -20px;
      @media (max-width: 960px) {
        max-width: 560px;
        padding: 36px 24px;
      }
      &::after {
        content: '';
        display: block;
        clip-path: polygon(0 0, 50% 100%, 100% 0);
        background-color: var(--gray);
        width: 40px;
        height: 30px;
        position: absolute;
        top: 95%;
        left: 0;
        right: 0;
        margin-inline: auto;
      }
      .checklist__item {
        font-size: 20px;
        display: flex;
        @media (max-width: 960px) {
          font-size: 14px;
        }
        &::before {
          flex-shrink: 0;
          content: '';
          background: url(../img/icon-check.svg) no-repeat;
          background-size: 100%;
          display: block;
          width: 16px;
          height: 16px;
          margin-top: 10px;
          margin-right: 18px;
          @media (max-width: 960px) {
            margin-top: 4px;
            margin-right: 12px;
          }
        }
      }
      .checklist__item:not(:last-child) {
        margin-bottom: 20px;
      }
    }
  }
}

/*=========================
  solution
=========================*/
section.solution {
  position: relative;
  top: -100px;
  margin-bottom: -100px;
  background: url(../img/solution-bg.png) no-repeat;
  background-size: cover;
  padding: 170px 0 80px;
  overflow-x: hidden;
  @media (max-width: 960px) {
    padding: 150px 0 55px;
  }
  .bubble1 {
    position: absolute;
    z-index: 1;
    width: 238px;
    top: -100px;
    left: 65%;
  }
  .bubble2 {
    position: absolute;
    z-index: 1;
    width: 160px;
    top: 270px;
    left: 17%;
    @media (max-width: 960px) {
      top: 100px;
      left: -15%;
    }
  }
  .container {
    position: relative;
    z-index: 2;
  }
  .solution__title {
    font-size: 44px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    @media (max-width: 960px) {
      font-size: 28px;
      margin-bottom: 36px;
    }
  }
  .solution__text {
    max-width: 650px;
    margin-inline: auto;
    margin-bottom: 70px;
    @media (max-width: 960px) {
      margin-bottom: 16px;
    }
  }
  .solution__flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 30px;
      margin-bottom: 30px;
    }
    .flex-l {
      .copy {
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 40px;
        @media (max-width: 960px) {
          font-size: 18px;
          margin-bottom: 20px;
        }
      }
      .achivements {
        max-width: min(100%, 600px);
        @media (max-width: 960px) {
          max-width: min(100%, 500px);
          margin-inline: auto;
        }
      }
    }
    .flex-r {
      .item-img {
        @media (max-width: 960px) {
          max-width: min(100%, 500px);
          margin-inline: auto;
        }
      }
    }
  }
}

/*=========================
  features
=========================*/
section.features {
  padding: 80px 0;
  @media (max-width: 960px) {
    padding: 56px 0;
  }
  .features__title {
    text-align: center;
    margin-bottom: 60px;
    @media (max-width: 960px) {
      margin-bottom: 34px;
    }
    .sub {
      font-size: 30px;
      font-weight: 500;
      @media (max-width: 960px) {
        font-size: 15px;
      }
    }
    .main {
      font-size: 44px;
      font-weight: 500;
      @media (max-width: 960px) {
        font-size: 28px;
      }
    }
  }
  .feature__items {
    overflow: hidden;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80px;
    row-gap: 100px;
    max-width: 980px;
    margin-inline: auto;
    @media (max-width: 960px) {
      grid-template-columns: 1fr;
      row-gap: 50px;
      margin-inline: calc(50% - 50vi);
    }
  }
  .feature__item {
    max-width: 450px;
    position: relative;
    @media (max-width: 960px) {
      max-width: 300px;
      margin-inline: auto;
    }
    .item-img {
      position: relative;
      z-index: 2;
      width: 75%;
      margin-inline: auto;
      margin-bottom: 20px;
      @media (max-width: 960px) {
        margin-bottom: 8px;
      }
    }
    .item-title {
      position: relative;
      z-index: 2;
      font-size: 30px;
      font-weight: 500;
      text-align: center;
      color: var(--gold);
      margin-bottom: 12px;
      @media (max-width: 960px) {
        font-size: 18px;
        line-height: 1.5;
      }
      .number {
        font-size: 36px;
        position: relative;
        top: 1px;
        margin-right: 14px;
        @media (max-width: 960px) {
          font-size: 30px;
          top: 3px;
          margin-right: 10px;
        }
      }
    }
    .item-text {
      position: relative;
      z-index: 2;
    }
    .haze {
      position: absolute;
    }
  }
  .feature__item:nth-child(1) .haze {
    width: 185px;
    top: 26%;
    left: -75px;
    @media (max-width: 960px) {
      top: 10%;
      left: -100px;
    }
  }
  .feature__item:nth-child(2) .haze {
    width: 155px;
    top: 25%;
    right: 10px;
    @media (max-width: 960px) {
      top: 12%;
      right: -12%;
    }
  }
  .feature__item:nth-child(3) .haze {
    width: 195px;
    top: -58px;
    left: -57px;
  }
  .feature__item:nth-child(4) .haze {
    width: 195px;
    top: 23%;
    right: -30px;
    @media (max-width: 960px) {
      top: 12%;
      right: -108px;
    }
  }
}

/*=========================
  thoughts
=========================*/
section.thoughts {
  background-color: #cbaa22;
  padding: 80px 0;
  color: #fff;
  position: relative;
  /* overflow-x: hidden; */
  @media (max-width: 960px) {
    padding: 50px 0;
  }
  .haze1 {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    top: -12%;
    left: -2%;
    @media (max-width: 960px) {
      width: 95px;
      top: -4%;
      left: -6%;
    }
  }
  .haze2 {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    bottom: -30%;
    right: 0%;
    @media (max-width: 960px) {
      width: 156px;
      bottom: 18%;
      right: 0%;
    }
  }
  .thoughts__title {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    @media (max-width: 960px) {
      margin-bottom: 30px;
    }
    .sub {
      font-size: 30px;
      font-weight: 400;
      @media (max-width: 960px) {
        font-size: 20px;
      }
    }
    .main {
      font-size: 44px;
      font-weight: 500;
      @media (max-width: 960px) {
        font-size: 28px;
      }
    }
  }
  .flex {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 30px;
    }
    .flex-l {
      width: 50%;
      @media (max-width: 960px) {
        width: 100%;
      }
      .thoughts__text {
        max-width: 456px;
        margin-left: auto;
        @media (max-width: 960px) {
          margin-inline: auto;
        }
      }
    }
    .flex-r {
      width: 50%;
      @media (max-width: 960px) {
        width: 100%;
      }
      .textbox {
        max-width: 530px;
        margin-right: auto;
        background: #fff;
        color: #cbaa22;
        padding: 40px 40px;
        border-radius: 16px;
        @media (max-width: 960px) {
          margin-inline: auto;
          padding: 20px 30px 24px;
        }
        .textbox__title {
          text-align: center;
          font-size: 22px;
          font-weight: 500;
          color: #858585;
          margin-bottom: 30px;
          @media (max-width: 960px) {
            font-size: 16px;
            margin-bottom: 16px;
          }
        }
        .textbox__item {
          display: flex;
          align-items: center;
          font-size: 20px;
          font-weight: 500;
          @media (max-width: 960px) {
            font-size: 14px;
          }
          .icon {
            flex-shrink: 0;
            margin-right: 20px;
            @media (max-width: 960px) {
              width: 30px;
            }
          }
        }
        .textbox__item:not(:last-child) {
          margin-bottom: 30px;
          @media (max-width: 960px) {
            margin-bottom: 14px;
          }
        }
      }
    }
  }
}

/*=========================
  images
=========================*/
section.images {
  position: relative;
  z-index: 2;
  .images__container {
    max-width: 100%;
    min-height: 370px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    @media (max-width: 960px) {
      min-height: 110px;
    }
    .img {
      width: 100%;
      height: 100%;
      max-height: 100%;
      object-fit: cover;
    }
  }
}

/*=========================
  products
=========================*/
section.products {
  /* background: url(../img/products-haze.png) no-repeat;
  background-position: 100% -7%; */
  background-color: #fff;
  padding: 80px 0;
  position: relative;
  overflow-x: hidden;
  @media (max-width: 960px) {
    padding: 55px 0 70px;
  }
  .haze {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    top: -10%;
    right: 0%;
    @media (max-width: 960px) {
      width: 190px;
      top: -5%;
      right: -2%;
    }
  }
  .products__title {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 70px;
    @media (max-width: 960px) {
      font-size: 28px;
      margin-bottom: 40px;
    }
  }
  .products__items {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 120px;
    @media (max-width: 960px) {
      grid-template-columns: 1fr;
      row-gap: 60px;
      max-width: 500px;
      margin-inline: auto;
    }
  }
  .products__item {
    .item-img {
      margin-bottom: 16px;
      @media (max-width: 960px) {
        margin-bottom: 10px;
      }
    }
    .item-title {
      font-size: 30px;
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 12px;
      @media (max-width: 960px) {
        font-size: 18px;
        margin-bottom: 4px;
      }
    }
    .item-text {
      /* margin-bottom: 12px; */
    }
    .item-price {
      font-family: 'Shippori Mincho', serif;
      color: #6d6d6d;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 45px;
      @media (max-width: 960px) {
        font-size: 24px;
        margin-bottom: 24px;
      }
      .tax {
        font-size: 20px;
        font-weight: 500;
        @media (max-width: 960px) {
          font-size: 12px;
        }
      }
    }
    .button {
      @media (max-width: 960px) {
        width: 200px;
      }
    }
  }
}

/*=========================
  reviews
=========================*/
section.reviews {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fff4f4, #fffae3);
  @media (max-width: 960px) {
    padding: 55px 0;
    overflow-y: hidden;
  }
  .reviews__title-wrapper {
    position: relative;
    margin-bottom: 90px;
    @media (max-width: 960px) {
      margin-bottom: 26px;
    }
    .reviews__title {
      position: relative;
      z-index: 2;
      font-size: 44px;
      font-weight: 500;
      text-align: center;
      @media (max-width: 960px) {
        font-size: 28px;
      }
    }
    .haze {
      position: absolute;
      z-index: 1;
      top: -50px;
      left: 33%;
      @media (max-width: 960px) {
        top: -105px;
        left: -21%;
      }
    }
  }
  .slider {
    .slider-item {
      max-width: 300px;
      margin-inline: auto;
      .item-img {
        width: 80%;
        margin-inline: auto;
        margin-bottom: 20px;
      }
    }
  }
  .splide-wrapper {
  }
  .splide {
    .splide__slide.is-visible:nth-child(2n+1) {
      /* transform: translateY(80px); */
    }
    .slider-item {
      width: 300px;
      margin-inline: auto;
      .item-img {
        width: 80%;
        margin-inline: auto;
        margin-bottom: 20px;
      }
    }
    .splide-nav {
      margin-top: 50px;
      position: relative;
      @media (max-width: 960px) {
        margin-top: 25px;
      }
      .splide__arrows {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 100px;
        @media (max-width: 960px) {
          gap: 40px;
        }
      }
      .splide__arrow {
        background: transparent;
        opacity: 1;
        width: 24px;
        height: 29px;
        position: relative;
        transform: none;
      }
      .splide__pagination {
        position: relative;
        bottom: 0;
        gap: 20px;
        @media (max-width: 960px) {
          gap: 8px;
        }
      }
      .splide__pagination__page {
        background: #c0c0c0;
        width: 18px;
        height: 18px;
        opacity: 1;
        @media (max-width: 960px) {
          width: 12px;
          height: 12px;
        }
      }
      .splide__pagination__page.is-active {
        background: #cbaa22;
        transform: none;
      }
    }
  }
  .splide:not(.is-overflow) .splide__pagination {
    display: flex;
  }
}

/*=========================
  faq
=========================*/
section.faq {
  padding: 80px 0;
  background-color: #f4f2e9;
  @media (max-width: 960px) {
    padding: 46px 0 70px;
  }
  .faq__title {
    font-size: 44px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    @media (max-width: 960px) {
      font-size: 28px;
      margin-bottom: 36px;
    }
  }
  .faq__items {
    .faq__item {
      background-color: #fff;
      padding: 20px 25px;
      cursor: pointer;
      @media (max-width: 960px) {
        padding: 14px 14px;
      }
      .question {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 16px;
        @media (max-width: 960px) {
          gap: 12px;
          font-size: 14px;
        }
        .q {
          width: 23px;
          @media (max-width: 960px) {
            width: 16px;
          }
        }
        .plus {
          aspect-ratio: 1/1;
          width: 20px;
          margin-left: auto;
          position: relative;
          &::before,
          &::after {
            position: absolute;
            inset: 0;
            margin: auto;
            content: '';
            display: block;
            width: 20px;
            height: 1px;
            background-color: #858585;
          }
          &::after {
            rotate: 90deg;
            transition: 0.3s ease;
          }
          @media (max-width: 960px) {
            &::before,
            &::after {
              width: 13px;
            }
          }
        }
      }
      .answer {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        p {
          margin-top: 20px;
          padding: 0 20px;
        }
      }
    }
    .faq__item.open {
      .question .plus {
        &::after {
          rotate: 0deg;
          opacity: 0;
        }
      }
      .answer {
        max-height: 999px;
      }
    }
    .faq__item:not(:last-child) {
      margin-bottom: 20px;
    }
  }
}

/*=========================
  footer
=========================*/
footer {
  padding: 80px 0 60px;
  @media (max-width: 960px) {
    padding: 40px 0 24px;
  }
  .container {
    width: calc(100% - 60px);
    max-width: 1100px;
    margin-inline: auto;
  }
  .flex {
    display: flex;
    justify-content: center;
    .flex-l {
      width: 100%;
    }
    .flex-r {
      width: 300px;
    }
    @media (max-width: 960px) {
      flex-direction: column;
      .flex-l {
        width: 100%;
        border-bottom: 1px solid #d6d6d6;
        margin-bottom: 24px;
      }
      .flex-r {
        width: 100%;
      }
    }
  }
  .logo {
    width: 234px;
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      width: 153px;
    }
  }
  .sns-links {
    width: 234px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      margin-bottom: 24px;
    }
  }
  .footer-nav {
    .footer-nav__link {
      font-weight: 400;
      font-size: 14px;
      margin-bottom: 12px;
    }
    @media (max-width: 960px) {
      margin-bottom: 30px;
    }
  }
  .copyright {
    font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    @media (max-width: 960px) {
      text-align: center;
    }
  }
}
