/* ===========================
   カラー変数（追加分）
   =========================== */
:root {
  --gold: #EEA703;
  --gold-light: #fff5df;
  --gray: #bebebe;
}

/* ===========================
   ページコンテナ
   =========================== */
.page-wls {
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===========================
   セクション共通
   =========================== */
.wls-howto,
.wls-company,
.wls-birth,
.wls-feature,
.wls-point-detail {
  padding: 80px 0;
}

/* ===========================
   HowTo セクション
   =========================== */
.wls-howto {
  text-align: center;
  background: var(--white);
}

.wls-howto__label {
  font-family: 'Montserrat', sans-serif;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.wls-howto__title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.wls-howto__body {
  max-width: 868px;
  margin: 0 auto 48px;
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 600;
  line-height: 1.7;
  color: var(--navy);
  font-size: 16px;
}

.wls-howto__media {
  max-width: 868px;
  margin: 0 auto;
}

.wls-howto__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ===========================
   Company セクション
   =========================== */
.wls-company {
  background: var(--white);
}

.wls-company__inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.wls-company__col-media {
  flex: 0 0 494px;
}

.wls-company__col-media img {
  width: 100%;
  height: auto;
  border-radius: 0 30px 30px 0;
  display: block;
  object-fit: cover;
}

.wls-company__col-text {
  flex: 1 1 auto;
  min-width: 0;
}

.wls-company__label {
  font-family: 'Montserrat', sans-serif;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.wls-company__title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.wls-company__body {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 16px;
}

.wls-company__body:last-child {
  margin-bottom: 0;
}

/* ===========================
   Birth セクション
   =========================== */
.wls-birth {
  background: var(--white);
  text-align: center;
}

.wls-birth__label {
  font-family: 'Montserrat', sans-serif;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.wls-birth__title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.wls-birth__body {
  max-width: 868px;
  margin: 0 auto 48px;
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
  line-height: 2;
}

.wls-birth__body--bottom {
  margin-top: 48px;
  margin-bottom: 0;
}

.wls-birth__highlight {
  color: var(--cyan);
  font-weight: 800;
  font-size: 20px;
}

.wls-birth__highlight-big {
  color: var(--cyan);
  font-weight: 800;
  font-size: 32px;
}

.wls-birth__products {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.wls-birth__products img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   Feature セクション
   =========================== */
.wls-feature {
  background: var(--white);
  text-align: center;
}

.wls-feature__heading-group {
  margin-bottom: 32px;
}

.wls-feature__label {
  font-family: 'Montserrat', sans-serif;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.wls-feature__title-jp {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.5;
}

.wls-feature__sub-group {
  margin-bottom: 48px;
}

.wls-feature__sub-title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.wls-feature__sub-text {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 16px;
}

/* ポイントサークル */
.wls-feature__points {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 64px;
}

.wls-point-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wls-point-circle__num {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
}

.wls-point-circle__frame {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 6px solid var(--cyan);
  padding: 8px;
  background: var(--white);
  overflow: hidden;
  box-sizing: border-box;
}

.wls-point-circle__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.wls-point-circle__pill {
  background: var(--gold);
  color: var(--white);
  border-radius: 24px;
  padding: 6px 20px;
  text-align: center;
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  min-width: 160px;
}

.wls-point-circle__pill-main {
  font-size: 20px;
  display: block;
  line-height: 1.3;
}

.wls-point-circle__pill-sub {
  font-size: 14px;
  display: block;
  line-height: 1.3;
}

/* CTA ブロック */
.wls-feature__cta {
  padding: 48px 0 0;
}

.wls-feature__cta-label {
  font-family: 'Montserrat', sans-serif;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}

.wls-feature__cta-title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 29px;
  line-height: 43px;
  margin-bottom: 32px;
}

.wls-feature__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 48px;
  border: 1px solid var(--cyan);
  border-radius: 400px;
  color: var(--cyan);
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.wls-feature__cta-button:hover {
  background: var(--cyan);
  color: var(--white);
}

/* ===========================
   Point Detail セクション（共通）
   =========================== */
.wls-point-detail {
  background: var(--white);
}

.wls-point-detail--natural {
  background: #f7fbfc;
}

.wls-point-detail__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.wls-point-detail__inner--reverse {
  margin-bottom: 32px;
}

.wls-point-detail__col-text {
  flex: 1 1 auto;
  min-width: 0;
}

.wls-point-detail__col-media {
  flex: 0 0 444px;
}

.wls-point-detail__num {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.wls-point-detail__title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.wls-point-detail__sub {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 600;
  color: var(--cyan);
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.wls-point-detail__body {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 16px;
}

.wls-point-detail__body:last-child {
  margin-bottom: 0;
}

/* ===========================
   Components Card（成分）
   =========================== */
.wls-components-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.wls-components-card__title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 12px;
}

.wls-components-card__body {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.75;
}

/* ===========================
   Natural Section: 大画像
   =========================== */
.wls-natural-image {
  margin-bottom: 40px;
}

/* ===========================
   Ingredient Grid（成分4枚）
   =========================== */
.wls-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 0 40px;
}

.ingredient-card {
  background: var(--white);
  border: 3px solid var(--cyan);
  border-radius: 30px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ingredient-card__photo-wrap {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ingredient-card__photo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.ingredient-card__header-text {
  flex: 1 1 auto;
  min-width: 0;
}

.ingredient-card__title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ingredient-card__sub {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.4;
}

.ingredient-card__divider {
  border: none;
  border-top: 1px solid var(--cyan);
  margin: 0;
}

.ingredient-card__desc-em {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  color: var(--cyan);
  font-size: 16px;
  line-height: 1.6;
}

.ingredient-card__desc {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 400;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.6;
}

/* ===========================
   Note Cards（天然由来定義 / キャリーオーバー）
   =========================== */
.wls-note-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.wls-note-card:last-child {
  margin-bottom: 0;
}

.wls-note-card__head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.wls-note-card__icon {
  color: var(--cyan);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.wls-note-card__title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 20px;
}

.wls-note-card__body {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.75;
}

.wls-note-card__body p + p {
  margin-top: 16px;
}

/* ===========================
   Unused Card（無添加処方）
   =========================== */
.wls-unused-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.wls-unused-card__title {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  color: var(--cyan);
  font-size: 20px;
  margin-bottom: 12px;
}

.wls-unused-card__body {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.75;
}

/* ===========================
   Membership Section
   =========================== */
.membership-section {
  padding: 80px 0;
}

/* ===========================
   レスポンシブ: タブレット (1100px以下)
   =========================== */
@media (max-width: 1100px) {
  .wls-company__inner,
  .wls-point-detail__inner {
    flex-direction: column;
  }

  .wls-company__col-media {
    flex: 0 0 auto;
    width: 100%;
  }

  .wls-company__col-media img {
    border-radius: 20px;
  }

  .wls-point-detail__col-media {
    flex: 0 0 auto;
    width: 100%;
  }

  .wls-ingredient-grid {
    grid-template-columns: 1fr;
  }

  .wls-point-circle__frame {
    width: 200px;
    height: 200px;
  }
}

/* ===========================
   レスポンシブ: スマホ (767px以下)
   =========================== */
@media (max-width: 767px) {
  .wls-howto,
  .wls-company,
  .wls-birth,
  .wls-feature,
  .wls-point-detail {
    padding: 48px 0;
  }

  .wls-howto__title,
  .wls-company__title,
  .wls-birth__title,
  .wls-feature__title-jp,
  .wls-feature__sub-title {
    font-size: 22px;
  }

  .wls-point-detail__title {
    font-size: 22px;
  }

  .wls-birth__body {
    font-size: 15px;
  }

  .wls-feature__points {
    gap: 24px;
  }

  .wls-point-circle__frame {
    width: 160px;
    height: 160px;
  }

  .wls-point-circle__pill-main {
    font-size: 16px;
  }

  .wls-feature__cta-title {
    font-size: 22px;
    line-height: 1.5;
  }

  .wls-feature__cta-button {
    font-size: 16px;
    padding: 10px 32px;
  }

  .wls-note-card,
  .wls-unused-card,
  .wls-components-card {
    padding: 20px;
  }

  .membership-section {
    padding: 48px 0;
  }
}
