@charset "UTF-8";

/* ===== 共通 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
  }
body { 
    font-family: "Noto Sans JP", sans-serif; 
    color: #333;
    background-color: #FBF9F6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
  }
.header__list {
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-padding-start: 0;
  }

ul, ol, li {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-padding-start: 0;
  }
.image {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
    border: 0;
    outline: none;
  }

img {
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: top;
    border: 0;
    outline: none;
  }
.link {
    color: inherit;
    text-decoration: none;
  }

h1, h2, h3, h4, h5, h6, p, span, div {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
  }

button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

input, textarea, select {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
:root {
    --bp: 768px;
    --c-white: #fff;
    --c-cta: #E57149;  
  }
  
  /* ===== header ===== */
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    color: var(--c-white);
    background: rgba(0, 0, 0, 0);
  }
  
  .header__inner {
    margin: 1.8% 4% 1.8% 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  @media (max-width: 768px) {
    .header__inner {
      padding: 1.5rem 0;
    }
  }
  
  .header__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--c-white);
  }
  
  
  .header__logo {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.2;
    white-space: nowrap;
    color: #4A3B36;
  }
  
  @media (max-width: 768px) {
    .header__logo {
      font-size: 1.25rem;
      display: block;
    }
  }
  
  .header__logo--sp {
    display: none;
  }
  
  .header__sparcle {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  
  @media (max-width: 768px) {
    .header__sparcle {
      width: 20px;
      height: 20px;
    }
  }
  
  /* ハンバーガーメニュー開閉時のロゴ色切り替え */
  @media (max-width: 768px) {
    .header__logo--hidden {
      color: #333;
    }
    
    .header__sparcle--hidden {
      display: none;
    }
  }
  
  .header__nav {
    position: static;
    transform: none;
    background: transparent;
    color: var(--c-white);
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
  }
  
  @media (max-width: 768px) {
    .header__nav {
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 13%;
      right: 0;
      transition: .5s;
      background: #FBF9F6;
      padding: 2rem 1.5rem;
      display: none;
      margin-left: 0;
    }
  }
  
  .header__nav.is-open {
    transform: none;
  }
  
  @media (max-width: 768px) {
    .header__nav.is-open {
      display: block;
    }
  }
  
  .header__menu {
    display: flex;
    align-items: center;
    gap: 2.7rem;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .header__menu {
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 6rem;
      margin-bottom: 5rem;
      align-items: center;
      justify-content: center;
    }
  }
  
  
  .header__link {
    font-size: 0.9375rem;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4A3B36;
  }
  
  @media (max-width: 768px) {
    .header__link {
      color: #1E7AA8;
      margin-bottom: 0.5rem;
      justify-content: flex-start; 
      width: 100px;
    }
    
    .header__link::before {
      content: '';
      display: inline-block;   
      width: 15px;
      height: 15px;
      background-image: url('../img/sparcle.avif');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      flex-shrink: 0;
      margin-right: .5rem;
    }
  }

  
  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 2.25rem;
    border-radius: 9999px;
    width: 350px;
    height: 50px;
    background: var(--c-cta);
    color: #fff;
    font-weight: 700;
  }
  
  @media (max-width: 768px) {
    .header__cta {
      padding: 1rem 3rem;
      font-size: 0.9375rem;
      border-radius: 9999px;
      width: 100%;
      height: 54px;
      margin: 0 auto 1.5rem;
      justify-content: center;
    }
  }
  
  .header__cta--member {
    display: none;
  }
  
  @media (max-width: 768px) {
    .header__cta--member {
      display: inline-flex;
      background: #E59749;
      margin: 0 auto 2.5rem;
      width: 100%;
    }
  }

  .header__cta-icon {
    font-size: 1.2rem;         
    vertical-align: middle; 
    margin-left: 0.28rem;
    position: relative;
    top: 0.05em;
  }
  .header__toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 22px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  @media (max-width: 768px) {
    .header__toggle {
     display: inline-flex;
    }
  }
  .header__toggle-line {
    display: block;
    height: 2px;
    width: 100%;
    background: #333333;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  
  @media (max-width: 768px) {
    .header__toggle-line {
      background: #4A3B36;  
    }
  }
  
  .header__toggle-line--open {
    background: #333333;
  }
  
  .header__toggle-line--open:first-child {
    transform: rotate(45deg) translateY(6px);
  }
  
  .header__toggle-line--open:last-child {
    transform: rotate(-45deg) translateY(-6px);
  }
  
  /* ===== mask ===== */
  .mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FBF9F6;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .mask.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  /* ===== hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;            
  overflow: hidden;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  z-index: 1;
  margin-bottom: 5rem;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero__bg-image {
    object-fit: cover;
    object-position: center top;
    height: 100vh;
    width: 100%;
    min-height: 600px;
  }
}

.hero__content {
  position: absolute;
  top: 50%;
  left: min(10vw, 120px);
  transform: translateY(-50%);
  max-width: 48rem;
  color: #4A3B36;
}

@media (max-width: 768px) {
  .hero__content {
    left: 3.5rem;
    top: 45%;
    transform: translateY(-50%);
    max-width: calc(100vw - 7rem);
  }
}

.hero__title {
  font-size: 2.25rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
}

.hero__subtitle {
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

.hero__subtitle-br {
  display: none;
}

@media (max-width: 768px) {
  .hero__subtitle-br {
    display: block;
  }
}

/* ===== Bottom fixed CTAs ===== */
.hero__ctaBar {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none; 
  margin-right: 1rem;
}

.hero__cta-base {
  pointer-events: auto;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 311px;
  height: 105px;
  color: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

@media (max-width: 768px) {
  .hero__cta-base {
    border-radius: 0;
    box-shadow: none;
    height: 80px;
    padding: 0.5rem;
  }
}

.hero__cta-lead {
  font-size: 0.875rem;              
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .hero__cta-lead {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

.hero__cta-main {
  font-size: 1.25rem;              
  line-height: 1.3;
  font-weight: 700;
  white-space: nowrap; 
}

@media (max-width: 768px) {
  .hero__cta-main {
    font-size: 0.875rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }
}

.hero__cta-trial {
  background-color: #E57149;         
}

.hero__cta-referral {
  background-color: #E59749;         
}

.hero__cta-base:hover,
.hero__cta-base:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
}

@media (max-width: 768px) {
  .hero__ctaBar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    margin: 0;
    z-index: 20;
  }

  .hero__cta-base {
    width: 50%;
    max-width: none;
    border-radius: 0;
  }
}



/* ===== section header (共通) ===== */
.section-header {
  margin: 0 8% 4rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-left: 4%;
    margin-bottom: 2rem;
  }
}

.section-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.section-header__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.section-header__title {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 3rem; 
  color: #1E7AA8;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .section-header__title {
    font-size: 2rem; 
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}

.section-header__icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .section-header__icon {
    width: 30px;
    height: 30px;
  }
}

.section-header__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-size: .875rem;
  color: #333;
  margin: 0;
}

/* ===== about ===== */
.about {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .about {
    padding: 0 0 3rem;
  }
}

.about__inner {
  width: 100%;
}

@media (max-width: 768px) {
  .about__inner {
    padding: 2rem 0;
  }
}

.about__content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 768px) {
  .about__content {
    flex-direction: column;
    gap: 2rem;
  }
}

.about__image {
  width: 60%;
}

@media (max-width: 768px) {
  .about__image {
    width: 100%;
    max-width: none;
  }
}

.about__image-item {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 0 20px 20px 0;
}

@media (max-width: 768px) {
  .about__image-item {
    width: 95%;
    margin-right: 5%;
  }
}
  

.about__image-item--reverse {
  border-radius: 20px 0 0 20px;
}
.about__text {
  padding-left: 1rem;
  margin-right: 8%;
  width: 35%;
}

@media (max-width: 768px) {
  .about__text {
    padding-left: 0;
    width: 90%;
    max-width: none;
    margin: 0 4%;
  }
}

.about__content--reverse {
  margin-top: 5.2rem;
}

@media (max-width: 768px) {
  .about__content--reverse {
    margin-top: 2rem;
    flex-direction: column-reverse;
  }
}

.about__text--reverse {
  margin-left: 8%;
  padding-right: 1rem;
  width: 35%;
}

@media (max-width: 768px) {
  .about__text--reverse {
    padding-left: 0;
    width: 90%;
    max-width: none;
    margin: 0 4%;
  }
}

.about__image--reverse {
  width: 60%;
}

@media (max-width: 768px) {
  .about__image--reverse {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .about__image-item--reverse {
    width: 95%;
    margin-left: 5%;
  }
}


.about__heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #333;
  margin: 0 0 1.8rem;
}

@media (max-width: 768px) {
  .about__heading {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.about__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-size: 0.875rem;
  color: #333;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about__description {
    font-size: 0.8125rem; 
  }
}


/* ===== voices ===== */
.voices {
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .voices {
    margin-bottom: 2rem;
  }
}

.voices__inner {
  margin: 0 4%;
}

@media (max-width: 768px) {
  .voices__inner {
    margin: 0;
  }
}

.voices__cards {
  display: -webkit-flex;  
  display: flex;
  margin: 4rem 4% 0;
  overflow: hidden;
}

.voices__cards > * {
  margin-right: 2rem;  
}

.voices__cards > *:last-child {
  margin-right: 0;  
}

@media (max-width: 768px) {
  .voices__cards {
    display: none;
  }
}

.voices__slider {
  display: none;
}

@media (max-width: 768px) {
  .voices__slider {
    display: block;
  }
  
  .voices__slick-list {
    overflow: hidden; 
  }
  
  .voices__slick-track {
    display: -webkit-flex;  
    display: flex;
    -webkit-align-items: stretch;  
    align-items: stretch;
  }
  
  .voices__slick-slide {
    padding: 0;
    height: auto;
    width: 100%;
  }
  
  .voices__card--center {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}


.voices__card {
  -webkit-flex: 1; 
  flex: 1;
  background: #FCFBF9;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  display: -webkit-flex; 
  display: flex;
  -webkit-flex-direction: column;  
  flex-direction: column;
  min-height: 300px;
}

.voices__card-content {
  padding: 2.5rem;
  display: -webkit-flex;  
  display: flex;
  -webkit-flex-direction: column;  
  flex-direction: column;
  height: 100%;
}

.voices__card-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.25rem; 
  color: #333;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.voices__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-size: 0.875rem; 
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.8;
  flex: 1;
}

.voices__user-info {
  display: -webkit-flex;  
  display: flex;
  -webkit-align-items: center;  
  align-items: center;
  margin-top: auto;
}

.voices__user-info > * {
  margin-right: 1.25rem;  
}

.voices__user-info > *:last-child {
  margin-right: 0;  
}

.voices__user-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #F5F5F5;
  object-fit: cover;
  flex-shrink: 0;
}

.voices__user-details {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-size: 0.8125rem; 
  color: #333;
  line-height: 1.4;
}


/* ===== voices slider controls ===== */
.voices__slider-controls {
  display: none;
  gap: 1rem;
  align-items: center;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .voices__slider-controls {
    display: flex;
  }
}

.voices__slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3BAFDA;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.voices__slider-btn:hover {
  background-color: #2a91b9;
  transform: scale(1.05);
}

.voices__slider-btn:active {
  transform: scale(0.95);
}

.voices__slider-arrow {
  width: 0;
  height: 0;
  border-style: solid;
}

.voices__slider-arrow--left {
  border-width: 6px 8px 6px 0;
  border-color: transparent #fff transparent transparent;
  margin-left: -2px;
}

.voices__slider-arrow--right {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  margin-right: -2px;
}

/* ===== banner ===== */
.banner {
  margin-bottom: 5rem;
}

.banner__inner {
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .banner__inner {
    margin: 0 4%;
    min-height: 250px;
  }
}

.banner__picture {
  width: 100%;
  height: 100%;
  display: block;
}

.banner__image {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .banner__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
  }
}
/* ===== price ===== */
.price {
  background-color: #fff;
  padding: 5rem 0;
  margin: 0 8% 5rem;
}

@media (max-width: 768px) {
  .price {
    padding: 3rem 0;
    margin: 0 4% 2rem;
  }
}

.price__inner {
  margin: 0 4%;
}

@media (max-width: 768px) {
  .price__inner {
    margin: 0 4%;
  }
}

.price .section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.price__heading {
  background-color: #FBF9F6;
  width: 100%;
  max-width: 900px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #333;
  margin: 2rem auto 0;
}

@media (max-width: 768px) {
  .price__heading {
    width: 100%;
    height: 60px;
    font-size: 1rem;
    margin: 1.5rem 0 0;
  }
}

.price__table {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.price__row {
  display: flex;
  border: 1px solid #FBF9F6;
  min-height: 60px;
}

@media (max-width: 768px) {
  .price__row {
    min-height: 50px;
    flex-direction: column;
  }
}

.price__row:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .price__row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.price__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem; 
  background-color: #fff;
}

@media (max-width: 768px) {
  .price__cell {
    font-size: 1rem; 
    width: 100%;
    justify-content: center;
  }
}

.price__cell--frequency {
  width: 30%;
  font-weight: 500;
  color: #E57149;
}

@media (max-width: 768px) {
  .price__cell--frequency {
    width: 100%;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #FBF9F6;
  }
}

.price__cell--amount {
  width: 70%;
  font-weight: 400;
  color: #333;
}

@media (max-width: 768px) {
  .price__cell--amount {
    width: 100%;
  }
}

.price__original {
  color: #333;
}

.price__arrow {
  color: #E57149;
  font-size: 0.5rem;
  margin: 0 1rem;
}

.price__discount {
  color: #E57149;
  font-weight: 500;
  font-size: 1.75rem;
  margin-right: .5rem;
}

@media (max-width: 768px) {
  .price__discount {
    font-size: 1.25rem; 
  }
}

.price__tax {
  font-size: 0.75rem; 
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .price__tax {
    font-size: 0.625rem; 
  }
}


/* ===== footer ===== */
.footer {
  background-color: #FBF9F6;
  padding: 1rem 0;
  margin-top: 5rem;
}

.footer__inner {
  margin: 0 4%;
  text-align: center;
}

.footer__copyright {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 0.6875rem; 
  color: #666;
}
