/* ========================================
   リセットCSS
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ========================================
   CSS変数（CBSプロジェクト）
======================================== */
:root {
  /* カラー */
  --color-primary: #47353C;
  --color-accent: #C48390;
  --color-accent-light: #E8B4BD;
  --color-bg: #ffffff;
  --color-bg-cream: #FFF8F9;
  --color-bg-dark: #47353C;
  --color-bg-pink: #F9EDEF;
  --color-text: #47353C;
  --color-text-light: #8B7078;
  --color-gold: #B8956A;
  --color-gradient: linear-gradient(135deg, #C48390, #B8956A);

  /* タイポグラフィ */
  --font-base: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --font-en: 'Cormorant Garamond', serif;
  --font-size-base: 1.4rem;
  --font-size-sm: 1.2rem;
  --font-size-xs: 1rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2.2rem;
  --font-size-xxl: 2.8rem;
  --line-height-base: 1.7;
  --line-height-tight: 1.4;

  /* スペーシング */
  --spacing-xs: 0.4rem;
  --spacing-sm: 0.8rem;
  --spacing-md: 1.6rem;
  --spacing-lg: 3.2rem;
  --spacing-xl: 4.8rem;
  --spacing-xxl: 6.4rem;
  --spacing-section: 8rem;

  /* レイアウト */
  --max-width: 500px;         /* .lpの絶対キャップ（500px固定） */
  --content-width: 37.5rem;
  --container-padding: 2rem;

  /* ボーダー */
  --border-radius: 0.6rem;
  --border-radius-lg: 1rem;
}

/* ========================================
   CBS LP スタイル
======================================== */

/* ----------------------------------------
   ビューポート連動スケーリング
   ・基準375px幅のデザインを画面幅に比例拡大
   ・500pxで頭打ち（それ以上は.lpの中央寄せで左右余白）
   ・1rem = 10px (375px幅時) 〜 13.33px (500px幅時)
---------------------------------------- */
html {
  font-size: min(2.6667vw, 13.3333px);
}

/* ----------------------------------------
   共通
---------------------------------------- */
body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: #F0E8EA;
}

.lp {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--color-bg);
}

/* セクション共通 */
.section {
  padding: var(--spacing-xl) var(--container-padding);
}

.section__heading {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section__heading-en {
  font-family: var(--font-en);
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-xs);
}

.section__heading-ja {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
}

/* フェードインアニメーション */
.js-fade-in {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ----------------------------------------
   FV（ファーストビュー）
---------------------------------------- */
.fv {
  position: relative;
  padding: 1.4rem 0 3rem;
  background: url(../img/fv-bg.webp) no-repeat center top / cover;
}

.fv figure {
  width: 100%;
}

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

/* ----------------------------------------
   CTAカード
---------------------------------------- */
.cta-card {
  background-color: #FFF7EE;
  padding: 3rem 2rem;
}

.cta-card__inner {
  position: relative;
  background-color: #ffffff;
  border-radius: 0.6rem;
  box-shadow: 1rem 1rem 3rem rgba(116, 96, 77, 0.25);
}

/* 上部 */
.cta-card__top {
  position: relative;
  background: linear-gradient(90deg, #CE6462 0%, #F5A4A4 100%);
  border-radius: 0.6rem 0.6rem 0 0;
  padding: 1rem 1.5rem;
}

.cta-card__heading {
  z-index: 1;
}

.cta-card__heading-main {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.25;
  /* letter-spacing: 0.035em; */
  color: #ffffff;
  text-align: left;
}

.cta-card__heading-main .--spacing{
  letter-spacing: -0.15em;
}

.cta-card__heading-main .--spacing span{
  letter-spacing: -0.3em;
}

.cta-card__heading-note {
  font-size: 0.7em;
  vertical-align: super;
}

.cta-card__heading-sub {
  margin-top: 0.2rem;
  font-size: 1rem;
  color: #ffffff;
  text-align: left;
}

.cta-card__products {
  position: absolute;
  top: -2.3rem;
  right: -1.2rem;
  width: 8.7rem;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.cta-card__web-limited {
  position: absolute;
  top: -1.1rem;
  left: 15.5rem;
  width: 4.9rem;
  height: 4.9rem;
  background-color: #F0E33A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transform: rotate(10.304deg);
}

.cta-card__web-limited-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

/* 価格エリア */
.cta-card__prices {
  position: relative;
  padding: 1rem 1.5rem 1rem;
}

/* 安心バッジ */
.cta-card__badges {
  display: flex;
  justify-content: center;
  gap: 0.43rem;
  padding: 1.6rem 1.5rem 0;
}

.cta-card__badge {
  padding: 0.32rem 0.64rem 0.43rem;
  border: 1px solid #C96E7A;
  border-radius: 0.43rem;
  background-color: #FFF6F6;
  font-size: 1.28rem;
  font-weight: 700;
  color: #C96E7A;
  line-height: 1.3;
}

.cta-card__badge .--small{
  font-size: .6em;
  vertical-align: top;
}


/* 訴求コピー */
.cta-card__appeal {
  margin-top: 1.2rem;
  padding: 0 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: center;
  color: var(--color-primary);
}

.cta-card__appeal .--inner{
  display: inline-block;
  position: relative;
  padding: 0 1.6rem;
}

.cta-card__appeal .--inner::before,
.cta-card__appeal .--inner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 2rem;
  background-color: var(--color-primary);
}

.cta-card__appeal .--inner::before {
  left: 0;
  transform: translateY(-50%) rotate(-18deg);
}

.cta-card__appeal .--inner::after {
  right: 0;
  transform: translateY(-50%) rotate(18deg);
}

.cta-card__appeal .--red{
  color: #E02B35;
}

/* CTAボタン */
.cta-card__button {
  position: relative;
  display: block;
  margin: .7rem 1.5rem 0;
  padding: 1.9rem 3rem 1.9rem 5.8rem;
  background: linear-gradient(180deg, #98CF76 6%, #3C9007 100%);
  border-radius: 8rem;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 0.4rem 0 #2E7700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* ホバー時：シャドウ分（0.4rem）沈み込む */
.cta-card__button:hover {
  transform: translateY(0.4rem);
  box-shadow: 0 0 0 #2E7700;
}

.cta-card__button-text {
  display: block;
}

/* 左の黄色丸バッジ（73% OFF） */
.cta-card__button-badge {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
  width: 4.6rem;
  height: 4.6rem;
  background-color: #FFF354;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: #439610;
  letter-spacing: -0.02em;
  line-height: .9;
}

.cta-card__button-badge-num {
  font-size: 1.86rem;
  display: inline-flex;
  align-items: flex-end;
}

.cta-card__button-badge-small {
  font-size: 1.23rem;
  line-height: 1;
}

.cta-card__button-badge-off {
  font-size: 1.23rem;
}

/* 右の白三角アロー */
.cta-card__button-arrow {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem 0 0.75rem 1.2rem;
  border-color: transparent transparent transparent #ffffff;
}

/* 注意書き */
.cta-card__disclaimer {
  padding: 1.4rem 0 2.4rem;
  font-size: 1rem;
  font-feature-settings: 'palt' on;
  line-height: 1.4;
  text-align: center;
  color: var(--color-primary);
}



/* ----------------------------------------
   セレブリティ
---------------------------------------- */
.celebrity {
  position: relative;
  background: url(../img/celebrity-bg.webp) no-repeat center top / cover;
  overflow: hidden;
  padding: 3.5rem 0 4.6rem 2rem;
}

.celebrity__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 4.44rem;
  display: inline-block;
  font-feature-settings: 'palt' on;
  line-height: 1.3;
  letter-spacing: -0.02em;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.celebrity__image {
  position: absolute;
  bottom: 0;
  right: -8.5rem;
  width: 32.1rem;
  pointer-events: none;
}

.celebrity__photo {
  width: 100%;
  height: auto;
}

.celebrity .celebrity__text {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.95;
  letter-spacing: 0.07em;
  color: var(--color-primary);
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.celebrity .celebrity__text--second{
  margin-top: 2rem;
  font-feature-settings: 'palt' on;
}

/* ----------------------------------------
   悩みセクション
---------------------------------------- */
.problem {
  position: relative;
  background-color: #9A9692;
  padding: 3.5rem 0 5rem;      /* 下部に斜めカット用スペース */
  overflow: hidden;
}

/* 暗いテクスチャ背景（オーバーレイ） */
.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/problem-bg.webp) no-repeat center / cover;
  background-color: #C0BBB8;
  background-blend-mode: multiply;
  opacity: 0.6;
  pointer-events: none;
}

/* 下辺を斜めにカット（左下→右上の斜めライン） */
.problem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background-color: #FBF9F6;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

.problem__heading,
.problem__items {
  position: relative;
  z-index: 1;
}

.problem__heading {
  margin-bottom: 2.5rem;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1.39;
  letter-spacing: -0.01em;
  text-align: center;
  color: #ffffff;
  font-feature-settings: 'palt' on;
}

.problem__items {
  display: block;
  padding: 0;
  gap: 0;
  padding-bottom: 4.6rem;
}

.problem__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 12rem;
  padding: 0;
  background-color: rgba(150, 147, 143, 0.8);
  border-radius: 0;
  border-top: .3rem solid transparent;
  border-image: linear-gradient(90deg, #7C7074 1.09%, #C1B1B1 45.43%, #7C7074 100%) 1;
}

.problem__item:last-child{
  border-bottom: .3rem solid transparent;
}

.problem__item-photo {
  position: relative;
  width: 24.2rem;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.problem__item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 写真：左配置時は右側にグラデで消える */
.problem__item--photo-left .problem__item-photo img {
  -webkit-mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
}

/* 写真：右配置時は左側にグラデで消える */
.problem__item--photo-right{
  display: flex;
  justify-content: flex-end;
}
.problem__item--photo-right .problem__item-photo img {
  -webkit-mask-image: linear-gradient(270deg, #000 55%, transparent 100%);
          mask-image: linear-gradient(270deg, #000 55%, transparent 100%);
}

.problem__item-text {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  color: #ffffff;
  text-shadow: 0.1rem 0.1rem 0.9rem rgba(0, 0, 0, 0.25);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
  z-index: 1;
  position: absolute;
}

/* Card 1: 写真LEFT / テキストRIGHT */
.problem__item--photo-left .problem__item-text {
  flex: 1;
  right: 2rem;
}

/* Card 2: 写真RIGHT / テキストLEFT */
.problem__item--photo-right .problem__item-text {
  flex: 1;
  left: 2rem;
}

/* ----------------------------------------
   原因セクション
---------------------------------------- */
.cause {
  position: relative;
  padding: 0;
  background-color: #FBF9F6;
}

.cause__intro {
  position: relative;
  padding: 3.7rem 2rem 5.5rem;
  background-color: #FBF9F6;
  text-align: center;
  margin-top: -1px;
}

/* 「それは、」バッジ円（悩みセクションから跨ぐ） */
.cause__badge {
  position: absolute;
  top: -7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.6rem;
  height: 9.6rem;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0.4rem 0.4rem 1.5rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cause__badge::before {
  content: "";
  position: absolute;
  inset: 0.3rem;
  border: 1px solid #B59581;
  border-radius: 50%;
}

.cause__badge-text {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
  font-weight: 500;
  font-size: 2.9rem;
  line-height: 1.39;
  letter-spacing: -0.01em;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(-4.718deg);
}

.cause__badge-text--tight {
  letter-spacing: -0.06em;
}

/* メインテキスト（バリア機能〜） */
.cause__intro-text {
  position: relative;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0 0 2.4rem;
  padding: 2rem 0;
}

/* 上下の装飾（丸＋線、上は左に丸／下は右に丸） */
.cause__intro-text::before,
.cause__intro-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1rem;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* 上：左に引用符風マーク、右に線 */
.cause__intro-text::before {
  top: 0.5rem;
  background:
    url(../img/deco-quote.svg) 0 center / 1.1rem 1rem no-repeat,
    linear-gradient(#E0D2D4 0 100%) 1.8rem center / calc(100% - 1.8rem) 1px no-repeat;
}

/* 下：左に線、右に引用符風マーク（閉じ記号） */
.cause__intro-text::after {
  bottom: 0.5rem;
  background:
    linear-gradient(#E0D2D4 0 100%) 0 center / calc(100% - 1.8rem) 1px no-repeat,
    url(../img/deco-quote-close.svg) 100% center / 1.1rem 1rem no-repeat;
}

.cause__mark {
  font-weight: 400;
  color: #C96E7A;
}

.cause__highlight {
  color: #C96E7A;
}

/* 注意書き */
.cause__intro-note {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin-bottom: 1.5rem;
}

.cause__note-mark {
  font-size: 0.85em;
  vertical-align: 0.1em;
}

.cause__intro-disclaimer {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

/* ----------------------------------------
   なぜ「限界」があるのかセクション
---------------------------------------- */
.why {
  position: relative;
  padding: 4rem 2rem 4rem;
  background:
    url(../img/why-bg.webp) no-repeat top center / 100% auto,
    linear-gradient(136deg, #443D3F 0%, #5F5457 100%);
  color: #ffffff;
  overflow: hidden;
}

/* メイン見出し＋引用符 */
.why__top {
  position: relative;
  margin-bottom: 2.2rem;
}

.why__heading {
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1.39;
  letter-spacing: -0.01em;
  text-align: center;
  color: #ffffff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
}

.why__quote {
  position: absolute;
  width: 1.9rem;
  height: 1.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.why__quote--open {
  top: 0.7rem;
  left: 1.9rem;
  background-image: url(../img/icon-quote-open.svg);
}

.why__quote--close {
  top: 11.9rem;
  right: 1rem;
  background-image: url(../img/icon-quote-close.svg);
}

/* 浸透しない白ボックス */
.why__penetration {
  padding: 2rem 0 0;
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
}

.why__penetration-title {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin-bottom: 1.6rem;
}

.why__penetration-strong {
  color: #D83157;
}

.why__penetration-fig img {
  width: 100%;
  height: auto;
  display: block;
}

/* 「主な原因」「間違ったケア」ラベル（両サイドに線付きピル） */
.why__label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 2rem;
}

.why__label::before,
.why__label::after {
  content: "";
  height: 1px;
}

.why__label--white {
  margin-top: 3rem;
}

.why__label--white::before,
.why__label--white::after {
  width: 12.3rem;
  background-color: #ffffff;
}

.why__label--yellow::before,
.why__label--yellow::after {
  width: 3.6rem;
  background-color: #FFF354;
}

.why__label span {
  display: inline-block;
  padding: 0 1.5rem 0.2rem;
  border-radius: 999rem;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  white-space: nowrap;
}

.why__label--white span {
  background-color: #ffffff;
}

.why__label--yellow span {
  background-color: #FFF354;
}

/* 主な原因リスト（暗いボックス） */
.why__reasons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why__reason {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background-color: #1D191A;
  border-radius: 1rem;
}

.why__reason p {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-feature-settings: 'palt' on;
}

.why__icon {
  width: 2.05rem;
  height: 2.05rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

/* 間違ったケアリスト（半透明白ボックス） */
.why__mistakes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why__mistake {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.why__mistake .why__icon {
  margin-top: 0;
}

.why__mistake-body {
  flex: 1;
}

.why__mistake-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #ffffff;
  font-feature-settings: 'palt' on;
}

.why__mistake-note {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-feature-settings: 'palt' on;
}

/* ----------------------------------------
   ソリューション（この1台で / Open・Deliver・Heat）
---------------------------------------- */
.solution {
  position: relative;
  background:
    url(../img/solution-bg.webp) no-repeat top center / 100% auto,
    #F2EFEC;
  color: var(--color-primary);
  overflow: hidden;
  padding-top: 2.5rem;
}

/* 上部：ラベル＋キャッチ＋商品 */
.solution__top {
  position: relative;
  padding: 1.1rem 2rem 0;
  min-height: 17.5rem;
  /* 後ろのダークグラデ帯（y:95.05 付近から72px） */
  background: linear-gradient(140deg, #47353C 0%, #C2A0A0 35%, #47353C 100%) no-repeat 0 9.5rem / 100% 7.2rem;
}

.solution__labels {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

/* 各ラベル：白ボックス＋下ゴールドグラデライン */
.solution__pre-label {
  display: inline-block;
  width: fit-content;
  padding: 0.12rem 0.45rem 0;
  background-color: #ffffff;
  font-weight: 500;
  font-size: 2.07rem;
  line-height: 1.5;
  letter-spacing: 0.035em;
  color: var(--color-primary);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
  text-align: center;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, #B59684 0%, #ECD9B6 49%, #C1A78E 100%) 1;
  margin: 0;
}

.solution__heading {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 6.2rem;
  line-height: 1.39;
  letter-spacing: -0.01em;
  transform: translateX(-.1em);
  color: #ffffff;
  font-family: var(--font-serif);
  font-feature-settings: 'palt' on;
}

.solution__product {
  position: absolute;
  top: 0;
  right: 0.6rem;
  width: 9.8rem;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* リード文 */
.solution__lead {
  padding: 0.8rem 2rem 1.6rem;
}

.solution__lead-text {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin-bottom: 0.5rem;
}

.solution__mark {
  font-size: 0.85em;
  vertical-align: 0.1em;
}

.solution__lead-note {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

/* 3ステップ */
.solution__steps {
  padding-bottom: 4.5rem;
}

.solution__step {
  position: relative;
  padding: 2rem 2rem .5rem;
}

/* 番号「01/02/03」＋ 右側に伸びるドットライン */
.solution__step-num {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.solution__step-num::after {
  content: "";
  flex: 1;
  height: 0.7rem;
  background-image: url(../img/dot-slide.png);
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: left center;
}

.solution__step-en {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.solution__step-ja {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
}

/* ビジュアル（円＋ダイアグラム） */
.solution__step-visual {
  position: relative;
  height: 21.5rem;
  margin: 0 -1rem 1.5rem 0;
}

.solution__step-circle {
  position: absolute;
  top: 2.4rem;
  left: -1rem;
  width: 16.4rem;
  height: 16.4rem;
  z-index: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0.95rem 0.95rem 1.9rem rgba(66, 36, 11, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* 外側リング：ゴールドグラデ（太め 1.9px相当） */
.solution__step-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 0.19rem;
  background: linear-gradient(180deg, #EDD5B3 0%, #A78B63 36%, #F0DCBA 71%, #A78B63 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
          mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* 内側リング：ゴールドグラデ（細め 0.5px相当） */
.solution__step-circle::after {
  content: "";
  position: absolute;
  inset: 0.585rem;
  border-radius: 50%;
  padding: 0.05rem;
  background: linear-gradient(180deg, #EDD5B3 0%, #A78B63 36%, #F0DCBA 71%, #A78B63 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
          mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* 円の中身（テキスト）をリングより前面に */
.solution__step-circle > * {
  position: relative;
  z-index: 1;
}

.solution__step-circle-label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3.9rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  font-feature-settings: 'palt' on;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
}

.solution__step-circle-label--smaller {
  font-size: 3.3rem;
}

.solution__step-circle-value {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-align: center;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
}

.solution__step-circle-value--small {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.solution__step-sup {
  font-size: 0.75em;
  vertical-align: 0.3em;
}

.solution__step-diagram {
  position: absolute;
  top: 0;
  right: 0;
  width: 21.1rem;
  height: 21.1rem;
  border-radius: 0;
  z-index: 0;
}

.solution__step-desc {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin-bottom: 0.5rem;
}

.solution__step-note {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

/* ----------------------------------------
   5つのサロンクオリティ
---------------------------------------- */
.quality {
  position: relative;
  background:
    url(../img/quality-bg.webp) no-repeat top center / 100% auto,
    url(../img/quality-bottom-bg.webp) no-repeat bottom center / 100% auto,
    #F4F2EC;
    padding-top: 4.1rem;
}

/* イントロ（写真背景＋タイトル） */
.quality__intro {
  position: relative;
}

.quality__intro-photo {
  width: 100%;
  max-width: none;
  height: auto;
  margin-top: -4rem;
}

.quality__intro-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
  color: #47353C;
  font-feature-settings: 'palt' on;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* タイトル左右の斜め線装飾 */
.quality__intro-title::before,
.quality__intro-title::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  width: 3.9rem;
  height: 9.1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.quality__intro-title::before {
  left: 1rem;
  background-image: url(../img/title-deco-left.svg);
}

.quality__intro-title::after {
  right: 1rem;
  background-image: url(../img/title-deco-right.svg);
}

.quality__intro-title-row {
  display: block;
}

.quality__intro-highlight {
  display: inline-block;
  padding: 0 0.25em 0.1em;
  background-color: #DD9688;
  color: #ffffff;
  border-radius: 0.45rem;
  letter-spacing: -0.03em;
  margin: 0 0.5rem;
}

/* メイン見出し */
.quality__heading {
  position: relative;
  padding: 0;
  text-align: center;
}

.quality__heading-sub {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  margin-bottom: 0.9rem;
  font-feature-settings: 'palt' on;
}

.quality__heading-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: 'palt' on;
  margin: 0;
}

/* POINTヘッダー（両サイドに二重線 + 円バッジ） */
.quality__point {
  padding: 3rem 2rem 0;
  text-align: center;
  border-top: 0;
}

.quality__point-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.quality__point-header::before,
.quality__point-header::after {
  content: "";
  flex: 1;
  max-width: 12.8rem;
  height: 0.3rem;
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

/* POINTバッジ（グラデ円） */
.quality__point-badge {
  position: relative;
  flex-shrink: 0;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: linear-gradient(149deg, #47353C 0%, #C2A0A0 13%, #47353C 95%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Libre Baskerville', serif;
  text-transform: uppercase;
  line-height: 1;
}

.quality__point-badge::before {
  content: "";
  position: absolute;
  inset: 0.2rem;
  border: 1px solid #ffffff;
  border-radius: 50%;
  pointer-events: none;
}

.quality__point-badge-label {
  font-size: 0.93rem;
  letter-spacing: 0;
  margin-bottom: 0.2rem;
}

.quality__point-badge-num {
  font-size: 3rem;
  letter-spacing: 0;
}

/* Point タイトル */
.quality__point-title {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0 0 1.3rem;
}

.quality__point-img {
  display: block;
  width: 100%;
  max-width: 33.5rem;
  height: auto;
  margin: 0 auto .8rem;
  border-radius: 0.6rem;
}

.quality__point-text {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  text-align: justify;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0;
}

/* サーマプレス®の登録記号 */
.quality__point-title-reg {
  font-size: 0.55em;
  vertical-align: 0.7em;
}

/* タイトル内の上付き「※」 */
.quality__point-title-sup {
  font-size: 0.4em;
  vertical-align: 1em;
  margin: 0 0.1em;
}

/* Point 内の注釈（※ 角質層の深部 等） */
.quality__point-disclaimer {
  margin-top: .8rem;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
}

/* ---------- POINT 05 拡張 ---------- */

/* グラデーションサブタイトル（深部※加温で美チャージ） */
.quality__point-subtitle {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 3.2rem;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: 0em;
  text-align: center;
  font-feature-settings: 'palt' on;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: -2rem 0 0.5rem;
  padding-bottom: 0.8rem;
}

/* サブタイトル下のグラデ二重線 */
.quality__point-subtitle::before,
.quality__point-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #47353C 0%, #C2A0A0 50%, #47353C 100%);
}

.quality__point-subtitle::before {
  bottom: 0.5rem; /* 上の線 */
}

.quality__point-subtitle::after {
  bottom: 0.2rem; /* 下の線（3px下） */
}

.quality__point-subtitle .--small{
  font-size: 2.6rem;
}

/* ヒーロービジュアル（写真 + 縦書きオーバーレイ） */
.quality__hero {
  position: relative;
  margin: -1rem -2rem 0;
  overflow: hidden;
}

.quality__hero-photo {
  width: 85%;
  height: auto;
  display: block;
}

/* ヒーロー画像上に配置する縦文字画像 */
.quality__hero-text-img {
  position: absolute;
  top: 2rem;
  right: 2.6rem;
  width: auto;
  height: auto;
  max-width: 10.4rem;
  z-index: 1;
  pointer-events: none;
}

.quality__hero-disclaimer {
  position: absolute;
  left: 2rem;
  bottom: 1rem;
  margin: 0;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  white-space: nowrap;
  z-index: 2;
}

/* 4サークルダイアグラム */
/* サロントリートメント再現（タイトル+4ステップ画像+サブタイトル） */
.quality__salon {
  margin: 2rem 0 2.5rem;
  text-align: center;
}

.quality__salon-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0 0 1.2rem;
}

.quality__salon-img {
  display: block;
  width: 100%;
  max-width: 33.5rem;
  margin: 0 auto 1.5rem;
}

.quality__salon-subtitle {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: 'palt' on;
  margin: 0;
}

/* 深感覚RF × 新感覚EP（2つの円） */
.quality__features {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0;
  width: 110%;
  position: relative;
  left: 50%;
  transform: translateX(-47%);
}

/* 円の下に敷くV字型グラデ背景（375×148 のSVG準拠） */
.quality__features::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  /* 親の translateX(-47%) 分のズレを translateX(-53%) で相殺 */
  transform: translateX(-53%);
  width: 100vw;
  max-width: var(--max-width);
  aspect-ratio: 375 / 148;
  background: linear-gradient(180deg,
    rgba(230, 211, 189, 0) 0%,
    rgba(230, 211, 189, 0.6) 88.5%);
  clip-path: polygon(0 0, 100% 0, 100% 61.5%, 50% 100%, 0 61.5%);
  z-index: 0;
  pointer-events: none;
}

.quality__features > * {
  position: relative;
  z-index: 1;
}

.quality__feature-photo {
  width: 100%;
  height: auto;
}

.quality__feature-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
  background-color: rgba(71, 53, 60, 0.35);
  font-feature-settings: 'palt' on;
}

.quality__features-x {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--color-primary);
}

/* ----------------------------------------
   モード説明
---------------------------------------- */
.mode {
  background-color: #FFFFFF;
  padding: 4rem 0;
}

/* 上部イントロ */
.mode__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.mode__intro-title {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 3.3rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0 0 1.2rem;
}

/* 黄色マーカー（「首」「目元」の下にフェード） */
.mode__intro-hl {
  background-image: linear-gradient(90deg, #FCE7BA 38%, rgba(252, 231, 186, 0) 100%);
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 40%;
  padding: 0 0.05em;
}

.mode__intro-catch {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0 0 1rem;
}

.mode__intro-text {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  text-align: justify;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0;
  padding: 0 2rem;
}

.mode__cards{
  padding: 0 2rem;
}

/* Modeカード外枠 */
.mode__card {
  position: relative;
  background-color: #F2EFEC;
  border-radius: 0.6rem;
  padding: 1rem 1rem 1.6rem;
  margin-bottom: 1.2rem;
}

.mode__card:last-child{
  margin-bottom: 0;
}

/* 白いヘッダーカード（画像を配置するだけ） */
.mode__card-head {
  margin: 0 0 1.9rem;
  border-radius: 0.4rem;
  overflow: hidden;
  background: #FFFFFF;
}

.mode__card-head img {
  display: block;
  width: 100%;
  height: auto;
}

.mode__card-content{
  padding: 0 1rem;
}


/* Mode 1/2 テキスト（下線付き） */
.mode__card-mode {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1rem;
}

.mode__card-mode > span {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-primary);
  flex-shrink: 0;
}

.mode__card-mode::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 1px dashed #B4B4B4;
}

.mode__card-detail {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  text-align: justify;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0 0 2.2rem;
}

/* Face / Neck / Eye & Smile Line 各セクション */
.mode__area {
  margin-bottom: 2.2rem;
}
.mode__area.--mb-0{
  margin-bottom: 0;
}

.mode__area-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0.5rem;
}

.mode__area-tag > span {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-primary);
  flex-shrink: 0;
}

.mode__area-tag::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 1px dashed #B4B4B4;
}

.mode__area-text {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0;
}

.mode__card-note {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 1rem 0 0;
}

/* ----------------------------------------
   美容液セクション
---------------------------------------- */
.serum {
  position: relative;
  background: url(../img/serum-intro-bg.png) no-repeat top center / 100% auto, #F7F1F1;
  color: var(--color-primary);
  padding: 4rem 0 5rem;
}

.serum::before{
  content: '';
  width: 100%;
  height: 25.6rem;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #A69098 45.12%, rgba(166, 144, 152, 0.00) 100%);
}

/* イントロ（背景画像の上にテキスト、中央揃え） */
.serum__intro {
  position: relative;
  padding: 0;
  text-align: center;
  margin-bottom: 1.1rem;
}

/* 1行目：「ミニキュアエクセレント」とのセット使いがおすすめ！（白・大） */
.serum__intro-recommend {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin: 0 0 0.9rem;
  font-feature-settings: 'palt' on;
}

.serum__intro-recommend strong {
  font-weight: 700;
}

.serum__intro-recommend .--small {
  font-size: 2.5rem;
  line-height: 1.2;
}

/* 2行目：使い始めた〜3Dレインボウファクター（白・細） */
.serum__intro-name {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin: 0 0 1.8rem;
  font-feature-settings: 'palt' on;
}

.serum__intro-product {
  display: inline-block;
  margin-top: 0.3rem;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

/* aging care ※2（ダーク、中央揃え） */
.serum__intro-aging {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.48;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  margin: 0 0 0.2rem;
  font-feature-settings: 'palt' on;
}

/* ※2 は「aging care」よりひと回り小さく上付き */
.serum__intro-aging-sup {
  font-size: 0.55em;
  vertical-align: 0.25em;
  margin-left: 0.2em;
}

/* 効かせたいところへ効果的に届ける（ダーク・大） */
.serum__intro-catch {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.48;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0;
}

/* 5つの成分＋商品＋注釈を1枚画像で配置 */
.serum__diagram {
  margin: 0 0 7rem;
  padding: 0 1.6rem;
}

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

/* 上付き※ */
.serum__sup {
  font-size: 0.6em;
  vertical-align: 0.5em;
  margin: 0 0.05em;
}

/* 5成分の詳細 */
.serum__ingredients {
  padding: 0 2rem;
}

.serum__ingredient {
  position: relative;
  margin-bottom: 4rem;
}

.serum__ingredient:last-child{
  margin-bottom: 0;
}

.serum__ingredient-head {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
}

.serum__ingredient-num {
  position: relative;
  padding-right: 1.2rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.48;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  flex-shrink: 0;
  font-feature-settings: 'palt' on;
}

/* 番号のすぐ右に縦線（01 | 肌本来の... のような | を再現） */
.serum__ingredient-num::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 0.9em;
  background-color: var(--color-primary);
}

.serum__ingredient-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 2.7rem;
  line-height: 1.48;
  letter-spacing: 0;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0;
}

/* 成分タグ（ダーク紫背景 + 白文字） */
.serum__ingredient-tag {
  display: inline-block;
  padding: 0 0.6rem 0.1rem;
  margin: 0 0 1.2rem;
  background-color: #5E1A55;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.48;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  font-feature-settings: 'palt' on;
}

/* 画像＋テキスト横並び（flexbox） */
.serum__ingredient-body {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.serum__ingredient-content {
  flex: 1;
  min-width: 0; /* 本文が正しく縮むように */
}

.serum__ingredient-img {
  flex-shrink: 0;
  width: 13rem;
  height: auto;
  display: block;
}

/* 右寄せパターン（01, 03, 05）：画像は右 */
.serum__ingredient--right .serum__ingredient-body {
  flex-direction: row-reverse;
}

.serum__ingredient-body.--02{
  gap: 0;
}

.serum__ingredient-body.--02 .serum__ingredient-img{
  width: 16rem;
}

.serum__ingredient-body.--04 .serum__ingredient-img{
  width: 14rem;
}

/* タグが長い場合は行折り返しを許容 */
.serum__ingredient-tag {
  max-width: 100%;
  word-break: break-all;
  overflow-wrap: anywhere;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* 01専用：タグをbody外に配置（幅はinline-blockの自然幅） */
.serum__ingredient-tag--full {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0 0 1.2rem;
}

.serum__ingredient-text {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-primary);
  font-feature-settings: 'palt' on;
  margin: 0 0 0.6rem;
  text-align: justify;
}

.serum__ingredient-note {
  clear: both;
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-primary);
  text-align: left;
  margin: 0;
  font-feature-settings: 'palt' on;
}

/* ----------------------------------------
   3ステップルーティン
---------------------------------------- */
.routine {
  padding: 5rem 0;
}

/* 見出し */
.routine__heading {
  text-align: center;
  margin-bottom: 1.8rem;
}

.routine__heading-title {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 4.9rem;
  line-height: 1;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.routine__heading-sub {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.65em;
  text-indent: 1.65em;
}

/* ステップリスト */
.routine__steps {
  list-style: none;
  position: relative;
  padding: 0 2.1rem;
  margin: 0;
}

.routine__step {
  display: grid;
  grid-template-columns: 6.9rem 1fr;
  column-gap: 1.6rem;
  align-items: start;
  padding-bottom: 2rem;
  position: relative;
}

.routine__step:last-child {
  padding-bottom: 0;
}

/* バッジ直下の点線コネクター */
.routine__step::after {
  content: "";
  position: absolute;
  top: 6.9rem;
  bottom: 0;
  left: calc(3.45rem - 0.5px);
  border-left: 1px dashed #BCB3B3;
  z-index: 0;
  pointer-events: none;
}

/* STEPバッジ（二重円） */
.routine__badge {
  position: relative;
  grid-row: 1;
  width: 6.9rem;
  height: 6.9rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}

.routine__badge::before {
  content: "";
  position: absolute;
  inset: 0.2rem;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: none;
}

.routine__badge-label {
  font-size: 1.1rem;
  line-height: 1;
}

.routine__badge-num {
  font-size: 2.4rem;
  line-height: 1;
}

/* 右カラム */
.routine__content {
  grid-column: 2;
  padding-top: 1.6rem;
}

.routine__name {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.routine__desc {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--color-primary);
  text-align: justify;
  margin: 0 0 1.2rem;
}

/* Mode 1 / Mode 2 サブブロック */
.routine__mode {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.7rem;
}

.routine__mode-title {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  margin: 0;
}

.routine__mode-desc {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--color-primary);
  text-align: justify;
  margin: 0;
}

.routine__img {
  width: 100%;
  display: block;
  margin-top: 0.4rem;
}

/* 目元・口元・デコルテ の3カラム（STEP 2 content 内） */
.routine__targets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.52rem;
  padding: 0;
  margin: 1.6rem 0 0;
}

.routine__target {
  position: relative;
  padding-top: 0.9rem;
}

.routine__target-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-accent);
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0 0.8rem 0.1rem;
  white-space: nowrap;
  z-index: 2;
}

.routine__target-img {
  width: 100%;
  height: 8.657rem;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* 結果テキスト（グラデーション） */
.routine__result {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 2rem 0 1.2rem;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* before / after ブロック */
.routine__ba {
  margin: 0 2.1rem;
}

.routine__ba-img {
  width: 100%;
  display: block;
}

.routine__ba-note {
  display: block;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-align: center;
  padding: .9rem 0 0 0;
}

/* ----------------------------------------
   ユーザーボイス
---------------------------------------- */
.voice {
  position: relative;
  padding: 5rem 0 6.2rem;
  background: #F0F0F0 url(../img/voice-bg.webp) no-repeat center / cover;
  color: var(--color-primary);
  overflow: hidden;
}

.voice__heading {
  text-align: center;
  margin-bottom: 1.2rem;
}

.voice__heading-en {
  font-family: 'Libre Baskerville', var(--font-en), serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-left: 0.6em; /* letter-spacing 分の視覚バランス調整 */
}

.voice__heading-ja {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.voice__heading-ja--small {
  font-size: 3rem;
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 4.4rem;
  padding-top: 2.9rem; /* 最初のカードから写真がはみ出す分 */
  padding-left: 2rem;
  padding-right: 2rem;
}

.voice__item {
  position: relative;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 3rem rgba(116, 96, 77, 0.25);
  padding: 5.5rem 2rem 2rem;
}

.voice__item-photo {
  position: absolute;
  top: -2.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7.6rem;
  height: 7.6rem;
  padding: 0.2rem;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0.6rem 0.6rem 1.8rem rgba(116, 96, 77, 0.25);
  overflow: hidden;
}

.voice__item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.voice__item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.voice__item-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed #BCB3B3;
  margin-bottom: 1.2rem;
}

.voice__item-name {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-primary);
}

.voice__item-stars {
  font-size: 1.24rem;
  line-height: 1;
  color: #FFC107;
  letter-spacing: 0.04em;
}

.voice__item-text {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: justify;
  color: var(--color-primary);
}

.voice__disclaimer {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

/* ----------------------------------------
   オファーセクション
---------------------------------------- */
.offer {
  position: relative;
  padding: 7.6rem 0 4rem;
  background-color: #FEF6EC;
}

/* 「本来なら、」バッジ（ユーザーボイスセクションとまたぐ） */
.offer__prelude {
  position: absolute;
  top: -4.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.6rem;
  height: 9.6rem;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0.4rem 0.4rem 1.5rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.offer__prelude::before {
  content: "";
  position: absolute;
  inset: 0.3rem;
  border: 1px solid #B59581;
  border-radius: 50%;
}

.offer__prelude-text {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
  font-weight: 500;
  font-size: 2.29rem;
  line-height: 1.39;
  letter-spacing: -0.06em;
  text-align: center;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transform: rotate(-4.718deg);
}

/* 見出し「選ばれたサロンでしか...」 */
.offer__heading {
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 2.6rem;
}

.offer__heading-line {
  display: block;
}

.offer__heading-bracket,
.offer__heading-highlight {
  color: #C96E7A;
}

.offer__heading-bracket {
  font-weight: 400;
}

.offer__body{
  padding: 0 2rem;
}

/* cta-cardをoffer内で使う場合の余白リセット */
.cta-card--offer {
  background: transparent;
  padding: 0;
  margin-bottom: 2.4rem;
}

/* 価格画像 */
.offer__price-img {
  display: block;
  width: 100%;
  height: auto;
}

.offer__price-img--first {
  box-sizing: border-box;
}

.offer__price-img--second {
  /* 2回目以降カード：右側にserum画像が重なる想定で65%幅 */
  width: 75%;
  padding: .2rem 0 .5rem 1.5rem;
  box-sizing: border-box;
}

/* 2回目以降カード */
.offer__recurring {
  position: relative;
  background: #FFFFFF;
  border-radius: 0.6rem;
  box-shadow: 1rem 1rem 3rem rgba(116, 96, 77, 0.25);
  margin-bottom: 1.6rem;
}

.offer__recurring-header {
  padding: 1.3rem 1.5rem 0.9rem;
  background: linear-gradient(90deg, #CE6462 0%, #F5A4A4 100%);
  border-radius: 0.6rem 0.6rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.offer__recurring-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.6rem;
  background: #FFFFFF;
  border-radius: 0.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.49rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #D26B69;
}

.offer__recurring-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.25;
  letter-spacing: 0.035em;
  color: #FFFFFF;
}

.offer__recurring-body {
  position: relative;
  padding: 0;
}

.offer__recurring-image {
  position: absolute;
  bottom: .4rem;
  right: 1.9rem;
  width: 4.32rem;
  transform: rotate(13.982deg);
  height: auto;
  pointer-events: none;
  z-index: 2;
}

/* 送料等注意書き */
.offer__shipping-note {
  font-size: 1rem;
  line-height: 1.4;
  font-feature-settings: 'palt' on;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}

/* お届けサイクル */
.offer__cycle {
  margin-bottom: 2.4rem;
}

.offer__cycle-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.32;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

/* お届けサイクル：3つの楕円pillを重ねて鎖状に表示 */
.offer__cycle-options {
  position: relative;
  width: 33.5rem;
  height: 6.8rem;
  margin: 0 auto;
}

.offer__cycle-pill {
  position: absolute;
  top: 0.9rem;
  height: 5.9rem;
  background: #FFFFFF;
  border: 2px solid #C96E7A;
  border-radius: 999px;
  box-sizing: border-box;
}

.offer__cycle-pill--full {
  left: 0;
  width: 33.5rem;
  z-index: 1;
}

.offer__cycle-pill--middle {
  left: 8rem;
  width: 15.8rem;
  z-index: 2;
}

.offer__cycle-pill--first {
  left: 0;
  width: 12.8rem;
  z-index: 3;
}

.offer__cycle-day {
  position: absolute;
  top: 1.9rem;
  width: 5.7rem;
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #C96E7A;
  z-index: 4;
}

.offer__cycle-day--first {
  left: 3.5rem;
}

.offer__cycle-day--middle {
  left: 14.6rem;
}

.offer__cycle-day--last {
  left: 25.2rem;
}

.offer__cycle-recommend {
  position: absolute;
  top: 0;
  left: 3.2rem;
  padding: 0.1rem 0.8rem 0.3rem;
  background: #F0E33A;
  border-radius: 0.5rem;
  font-family: var(--font-base);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  white-space: nowrap;
  z-index: 5;
}

/* 定期コース条件 */
.offer__conditions {
  padding: 0;
  margin: 0 0 2.4rem;
  background: transparent;
  border-radius: 0;
}

.offer__conditions-title {
  position: relative;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.offer__conditions-title::before,
.offer__conditions-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4.35rem;
  border-top: 1px solid var(--color-primary);
}

.offer__conditions-title::before {
  left: 0;
}

.offer__conditions-title::after {
  right: 0;
}

.offer__terms {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.offer__terms-item {
  position: relative;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-primary);
  padding: 0 0 0 1.4rem;
  border: none;
}

.offer__terms-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
  color: #C96E7A;
}

.offer__terms-key {
  font-weight: 700;
  color: #C96E7A;
  margin-right: 0.4rem;
}

.offer__terms-subnote {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary);
}

.offer__conditions::after {
  content: "";
  display: block;
  margin-top: 1.2rem;
  border-top: 1px solid var(--color-primary);
}

/* 緊急訴求（左右に斜め線装飾） */
.offer__urgency {
  position: relative;
  font-feature-settings: 'palt' on;
  margin: 0 0 0.6rem;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--color-primary);
}

.offer__urgency::before,
.offer__urgency::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 2rem;
  background-color: var(--color-primary);
}

.offer__urgency::before {
  left: 1.7rem;
  transform: translateY(-50%) rotate(-18deg);
}

.offer__urgency::after {
  right: 1.7rem;
  transform: translateY(-50%) rotate(18deg);
}

.offer__urgency-highlight {
  color: #E02B35;
}

/* CTAボタンをoffer直置きで使う場合 */
.cta-card__button--offer {
  margin: 0 auto;
  max-width: 30.5rem;
  width: 100%;
}


/* ----------------------------------------
   安心してお使いいただくために
---------------------------------------- */
.safety {
  background-color: #FFFFFF;
  padding: 4rem 2rem;
}

.safety__heading {
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-feature-settings: 'palt' on;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 2rem;
}

.safety__cards {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

/* カード：角丸10px ＋ ゴールドグラデ枠（背景2枚重ね） */
.safety__card {
  border: 2px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#F3F3F3, #F3F3F3) padding-box,
    linear-gradient(180deg, #EDD5B3 0%, #A78B63 36%, #F0DCBA 71%, #A78B63 100%) border-box;
  padding: 2.2rem 0;
  min-height: 14.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

/* タイトル＋装飾 */
.safety__card-title {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}

.safety__card-ornament {
  width: 1.5rem;
  height: 4rem;
  flex-shrink: 0;
}

.safety__card-title-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  white-space: nowrap;
}

.safety__card-desc {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-align: center;
  margin: 0;
}

/* ----------------------------------------
   FAQ
---------------------------------------- */
.faq {
  background-color: #F0ECE7;
  padding: 4rem 0 5rem;
}

/* 見出し */
.faq__heading {
  text-align: center;
  margin-bottom: 2rem;
}

.faq__heading-title {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin: 0 0 0.2rem;
}

.faq__heading-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--color-accent);
  margin: 0;
}

/* リスト */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 0 1.9rem;
}

.faq__item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.faq__item.is-open .faq__answer {
  margin-top: 1.2rem;
}

/* 質問カード（ボタン） */
.faq__question {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem 3.5rem 1.2rem 1.5rem;
  background-color: #FFFFFF;
  border: none;
  border-radius: 6px;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq__question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.faq__question-label {
  flex-shrink: 0;
  width: 2.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.6;
  color: var(--color-accent);
}

.faq__question-text {
  flex: 1;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-primary);
}

/* ＋アイコン（SVG） */
.faq__question-icon {
  position: absolute;
  top: 2.3rem;
  right: 1.5rem;
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  pointer-events: none;
}

.faq__question-icon-bar {
  transition: opacity 0.25s ease;
}

/* 開いた状態: 縦棒を消して − にする */
.faq__item.is-open .faq__question-icon-bar {
  opacity: 0;
}

/* 回答（アコーディオン） */
.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  max-width: calc(100% - 2.3rem);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 40rem;
  opacity: 1;
}

.faq__answer-label {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.035em;
  color: #AAAAAA;
}

.faq__answer-text {
  flex: 1;
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-primary);
  margin: 0;
}

/* ----------------------------------------
   CTA（最終訴求）
---------------------------------------- */
.cta {
  position: relative;
}

/* Hero部分（背景パターン＋キャッチ＋celebrity画像） */
.cta__hero {
  position: relative;
  background: #FEF6EC url(../img/cta-bg.webp) no-repeat center top / 100% auto;
  padding: 4rem 0 0;
  text-align: center;
  overflow: hidden;
}

.cta__catch {
  display: block;
  width: 100%;
  max-width: 30.2rem;
  height: auto;
  margin: 0 auto 0.9rem;
}

.cta__visual {
  position: relative;
}

.cta__message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  padding: 0 3rem;
  font-family: var(--font-base);
  font-feature-settings: 'palt' on;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.cta__image {
  display: block;
  width: 100%;
  height: auto;
}

/* ファイナル部分（cream bg＋プライスカード） */
.cta__final {
  background: #FEF6EC;
  padding: 2.5rem 2rem 4rem;
  text-align: center;
}

.cta__final-heading {
  font-family: var(--font-serif);
  font-weight: 550;
  font-size: 3rem;
  line-height: 1.44;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin: 0 0 2.5rem;
}

.cta__final-heading-highlight {
  background: linear-gradient(178deg, #47353C 19%, #C2A0A0 55%, #47353C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ----------------------------------------
   注文フォーム
---------------------------------------- */
.order {
  padding: 4rem 2rem;
}

.order__heading {
  text-align: center;
  margin-bottom: 2.4rem;
}

.order__heading-ja {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin: 0 0 0.4rem;
}

.order__heading-en {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.5em;
  text-indent: 0.5em; /* letter-spacing分のセンター視覚補正 */
  color: #C96E7A;
  margin: 0;
}

.order__form {
  width: 100%;
}

/* ----------------------------------------
   フッター
---------------------------------------- */
.footer {
  background-color: #47353C;
  color: #FFFFFF;
  text-align: center;
  padding: 2rem 0 2rem;
  font-family: var(--font-base);
}

.footer__links {
  margin: 0 0 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: #FFFFFF;
}

.footer__link {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer__sep {
  display: inline-block;
  margin: 0 0.4rem;
  text-decoration: none;
}

.footer__copyright {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFFFFF;
}

/* ----------------------------------------
   PC表示対応（.lpが500pxキャップに達したとき）
---------------------------------------- */
@media (min-width: 501px) {
  body {
    background-color: #E8DFE2;
  }

  .lp {
    box-shadow: 0 0 4rem rgba(71, 53, 60, 0.15);
  }
}


/* ----------------------------------------
   ECforceフォームをPC表示でもSPレイアウトに強制
---------------------------------------- */
.lp table.landing_form_ec,
.lp table.landing_form_ec tbody,
.lp table.landing_form_ec tr,
.lp table.landing_form_ec th,
.lp table.landing_form_ec td {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.lp .form_container_ec,
.lp .form_main_container_ec {
  width: 100% !important;
  max-width: 100% !important;
}
