/* ==========================================================
   Lindo — Private Care Salon for Gentlemen
   深いグリーン（ブランド）× 亜麻色の紙 × シャンパンゴールド
   明朝の品格と、女性セラピストの柔らかさを両立させる
   ========================================================== */

:root {
  --forest: #2f4a34;
  --forest-deep: #20301f;
  --forest-night: #182417;
  --moss: #7d9468;
  --sprout: #a9bd8f;
  --linen: #f6f1e6;
  --paper: #fdfbf5;
  --sand: #e7dfcd;
  --gold: #b3924f;
  --gold-soft: #cfb377;
  --ink: #2b2d26;
  --muted: #77755f;
  --shadow: 0 18px 46px rgba(32, 48, 31, 0.12);
  --shadow-soft: 0 10px 30px rgba(32, 48, 31, 0.08);
  /* 「悩み」セクションの葉の地紋の濃さ。★調整はこの1行だけ
     0.05=ほぼ見えん ／ 0.07=既定 ／ 0.10=はっきり出る（それでも見出しは読める） */
  --pattern-alpha: 0.07;
  --font-display: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  --font-en: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
  overflow-wrap: anywhere;
}

.sp-only {
  display: none;
}

/* ---------- scroll reveal（JSが動く環境でのみ隠す） ---------- */

html.js .rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .rv.on {
  opacity: 1;
  transform: none;
}

.rv.d1 { transition-delay: 0.12s; }
.rv.d2 { transition-delay: 0.24s; }
.rv.d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .rv,
  html.js .rv.d1,
  html.js .rv.d2,
  html.js .rv.d3 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 10px clamp(18px, 5vw, 64px);
  background: rgba(253, 251, 245, 0.88);
  border-bottom: 1px solid rgba(179, 146, 79, 0.22);
  backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.brand-logo {
  width: 132px;
  height: auto;
}

.logo small {
  color: var(--gold);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.28em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 22px;
  color: var(--linen);
  background: var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.3s ease;
}

.header-cta:hover {
  background: var(--forest-deep);
}

/* ---------- 共通パーツ ---------- */

.sec {
  position: relative;
  padding: clamp(84px, 11vw, 150px) clamp(20px, 5vw, 72px);
}

/* 日本語見出しは文節単位で折り返す（未対応ブラウザは通常改行） */

.hero h1,
.sec-heading h2,
.turning-copy h2,
.offer-copy h2,
.owner-copy h2,
.cta-content h2,
.pain-grid h3,
.owner-quote {
  word-break: auto-phrase;
}

.eyebrow-ja {
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sec-heading {
  max-width: 860px;
  margin: 0 auto clamp(46px, 6vw, 72px);
  text-align: center;
}

.sec-heading h2 {
  position: relative;
  padding-bottom: 26px;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.8vw, 35px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.sec-heading h2::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  transform: translateX(-50%);
}

.sec-lead {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15px;
}

/* 縦書きの章ラベル */

.v-label {
  position: absolute;
  top: clamp(96px, 12vw, 160px);
  right: clamp(14px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.42em;
  writing-mode: vertical-rl;
}

.v-label::after {
  width: 1px;
  height: 62px;
  content: "";
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* アーチ型写真：女性らしい柔らかさの要 */

.arch-photo {
  position: relative;
  overflow: hidden;
  border-radius: 999px 999px 18px 18px;
  box-shadow: var(--shadow);
}

.arch-photo::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(253, 251, 245, 0.55);
  border-radius: 999px 999px 10px 10px;
  pointer-events: none;
}

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

/* ボタン */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--linen);
  background: var(--forest);
  box-shadow: 0 10px 24px rgba(32, 48, 31, 0.24);
}

.button.primary:hover {
  background: var(--forest-deep);
}

.button.ghost {
  color: var(--forest);
  background: transparent;
  border: 1px solid rgba(47, 74, 52, 0.4);
}

.button.ghost:hover {
  border-color: var(--forest);
  background: rgba(47, 74, 52, 0.06);
}

.button.ghost.light {
  color: var(--linen);
  border-color: rgba(246, 241, 230, 0.5);
}

.button.ghost.light:hover {
  border-color: var(--linen);
  background: rgba(246, 241, 230, 0.1);
}

.button.gold {
  color: var(--forest-night);
  background: linear-gradient(120deg, var(--gold-soft), #e3cd96 50%, var(--gold-soft));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.button.wide {
  width: 100%;
}

.num {
  display: block;
  color: var(--gold);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(140px, 16vw, 200px) clamp(20px, 5vw, 72px) clamp(70px, 8vw, 110px);
  background:
    radial-gradient(58% 46% at 86% 8%, rgba(169, 189, 143, 0.22), transparent 70%),
    radial-gradient(42% 40% at 4% 92%, rgba(207, 179, 119, 0.16), transparent 70%),
    var(--linen);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.9vw, 48px);
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: 0.03em;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(transparent 68%, rgba(207, 179, 119, 0.45) 68%);
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-top: 30px;
}

.hero-proof li {
  position: relative;
  padding-left: 16px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-proof li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 0 50% 0 50%;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual .arch-photo {
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
}

.hero-vertical {
  position: absolute;
  top: 8%;
  right: max(-14px, -2vw);
  padding: 26px 12px;
  color: var(--forest);
  background: rgba(253, 251, 245, 0.92);
  border: 1px solid rgba(179, 146, 79, 0.35);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  box-shadow: var(--shadow-soft);
}

/* ---------- 悩み ---------- */

.pain-section {
  background: var(--paper);
}

/* 葉の地紋（2026-09-12 社長決裁A案）
   ロゴ由来のボタニカル線画（葉・蔓に葉がつく小枝・5弁の小花・蔓のカール）をSVGで
   描き起こし data URI で直書き＝画像ファイルは増やしとらん。
   タイルは280px角。端をまたぐモチーフをタイルの上下左右斜めに複製してある
   （SVG末尾に use が9枚並んどるのがそれ）けぇ、継ぎ目が格子に見えることは無い。
   下地の paper はセクション側に残したまま、その上にこの層を重ねとる。
   ★濃さは :root の --pattern-alpha で変える（このURIは触らんでええ） */
.pain-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cdefs%3E%3Cg id='l'%3E%3Cpath d='M0 0C4-7 13-9 19 0 13 9 4 7 0 0Z'/%3E%3Cpath d='M2 0H16'/%3E%3C/g%3E%3Cg id='s'%3E%3Cpath d='M0 0C13-3 27-10 39-23'/%3E%3Cuse href='%23l' transform='translate(4,-1) rotate(-58) scale(.46)'/%3E%3Cuse href='%23l' transform='translate(12,-4) rotate(22) scale(.42)'/%3E%3Cuse href='%23l' transform='translate(21,-9) rotate(-62) scale(.4)'/%3E%3Cuse href='%23l' transform='translate(30,-16) rotate(18) scale(.34)'/%3E%3Cuse href='%23l' transform='translate(38,-23) rotate(-46) scale(.32)'/%3E%3C/g%3E%3Cg id='f'%3E%3Cellipse rx='2.1' ry='4.3' cy='-4.4'/%3E%3Cellipse rx='2.1' ry='4.3' cy='-4.4' transform='rotate(72)'/%3E%3Cellipse rx='2.1' ry='4.3' cy='-4.4' transform='rotate(144)'/%3E%3Cellipse rx='2.1' ry='4.3' cy='-4.4' transform='rotate(216)'/%3E%3Cellipse rx='2.1' ry='4.3' cy='-4.4' transform='rotate(288)'/%3E%3Ccircle r='1.2'/%3E%3C/g%3E%3Cg id='t'%3E%3Cpath d='M0 0C11 1 17 7 15 14 13.5 19 7 19 6 14.5 5.2 11 9 9.4 11 12'/%3E%3C/g%3E%3Cg id='m'%3E%3Cuse href='%23s' transform='translate(16,62) rotate(-14)'/%3E%3Cuse href='%23l' transform='translate(148,18) rotate(34) scale(1.05)'/%3E%3Cuse href='%23f' transform='translate(96,116)'/%3E%3Cuse href='%23s' transform='translate(214,170) rotate(163) scale(.9)'/%3E%3Cuse href='%23l' transform='translate(44,198) rotate(-74) scale(1.15)'/%3E%3Cuse href='%23t' transform='translate(242,86) rotate(18)'/%3E%3Cuse href='%23f' transform='translate(238,242) scale(.85)'/%3E%3Cuse href='%23s' transform='translate(-8,258) rotate(-28) scale(.92)'/%3E%3Cuse href='%23l' transform='translate(118,264) rotate(12)'/%3E%3Cuse href='%23t' transform='translate(70,10) rotate(-102) scale(.9)'/%3E%3Cuse href='%23s' transform='translate(98,224) rotate(-6) scale(.78)'/%3E%3Cuse href='%23l' transform='translate(270,140) rotate(-30) scale(.8)'/%3E%3Cuse href='%23f' transform='translate(20,132) scale(.72)'/%3E%3Cuse href='%23l' transform='translate(186,52) rotate(-118) scale(.9)'/%3E%3Cuse href='%23t' transform='translate(152,148) rotate(96) scale(.85)'/%3E%3Cuse href='%23s' transform='translate(178,238) rotate(-102) scale(.7)'/%3E%3Cuse href='%23l' transform='translate(52,106) rotate(58) scale(.7)'/%3E%3C/g%3E%3C/defs%3E%3Cg fill='none' stroke='%237d9468' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cuse href='%23m' x='0' y='0'/%3E%3Cuse href='%23m' x='0' y='280'/%3E%3Cuse href='%23m' x='0' y='-280'/%3E%3Cuse href='%23m' x='280' y='0'/%3E%3Cuse href='%23m' x='280' y='280'/%3E%3Cuse href='%23m' x='280' y='-280'/%3E%3Cuse href='%23m' x='-280' y='0'/%3E%3Cuse href='%23m' x='-280' y='280'/%3E%3Cuse href='%23m' x='-280' y='-280'/%3E%3C/g%3E%3C/svg%3E") 0 0 / 280px 280px repeat;
  opacity: var(--pattern-alpha);
  pointer-events: none;
}

/* 中身は地紋より前面に置く（.v-label は元から absolute でDOM順に前面） */
.pain-section > .sec-heading,
.pain-section > .pain-grid {
  position: relative;
  z-index: 1;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1080px;
  margin: 0 auto;
}

.pain-grid article {
  position: relative;
  padding: clamp(28px, 3.4vw, 42px);
  background: var(--linen);
  border: 1px solid var(--sand);
  border-radius: 4px 28px 4px 28px;
}

.pain-grid h3 {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 19px);
  font-weight: 600;
  line-height: 1.8;
  text-wrap: balance;
}

.pain-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- 本音（濃緑の転換点） ---------- */

.turning-section {
  color: var(--linen);
  background:
    radial-gradient(52% 60% at 90% 6%, rgba(169, 189, 143, 0.12), transparent 70%),
    linear-gradient(160deg, var(--forest-deep), var(--forest-night));
}

.turning-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.turning-copy h2 {
  color: var(--linen);
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.9;
}

.turning-copy .gold {
  color: var(--gold-soft);
}

.turning-copy p {
  margin-top: 24px;
  color: rgba(246, 241, 230, 0.78);
  font-size: 15px;
}

.turning-card {
  padding: clamp(30px, 4vw, 46px);
  background: rgba(246, 241, 230, 0.06);
  border: 1px solid rgba(207, 179, 119, 0.4);
  border-radius: 4px 28px 4px 28px;
}

.turning-card strong {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.turning-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(246, 241, 230, 0.9);
  font-size: 15px;
}

.turning-card li + li {
  margin-top: 14px;
}

.turning-card li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold-soft);
  border-radius: 0 50% 0 50%;
}

/* ---------- 変わる理由 ---------- */

.method-section {
  background: var(--linen);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.method-photo {
  aspect-ratio: 3 / 2;
  border-radius: 160px 160px 18px 18px; /* 横長（引き）用に浅めのアーチ */
}

.method-photo::after {
  border-radius: 148px 148px 10px 10px; /* 内側の線も浅いアーチに合わせる */
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: clamp(22px, 2.6vw, 30px);
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 4px 22px 4px 22px;
}

.method-list .num {
  padding-top: 4px;
  text-align: center;
  border-right: 1px solid var(--sand);
}

.method-list h3 {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.6;
}

.method-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- 3つの入口 ---------- */

.program-section {
  background: var(--paper);
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1160px;
  margin: 0 auto;
}

.program-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--linen);
  border: 1px solid var(--sand);
  border-radius: 4px 28px 4px 28px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.program-card figure {
  height: 250px;
}

.program-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--moss);
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(169, 189, 143, 0.3), transparent 75%),
    var(--linen);
  border-bottom: 1px solid var(--sand);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.leaf-mark {
  width: 26px;
  height: 26px;
  background: var(--moss);
  border-radius: 0 60% 0 60%;
  transform: rotate(45deg);
  opacity: 0.7;
}

.program-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(24px, 2.8vw, 32px);
}

.program-label {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.program-body h3 {
  margin-top: 6px;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
}

.program-body p:not(.program-label):not(.program-note) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.program-note {
  margin-top: auto;
  padding-top: 18px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

/* ---------- 実例 ---------- */

.proof-section {
  background:
    radial-gradient(50% 40% at 10% 0%, rgba(169, 189, 143, 0.14), transparent 70%),
    var(--linen);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  max-width: 1080px;
  margin: 0 auto;
}

.proof-item {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.proof-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.proof-item img {
  width: 100%;
  height: auto;
}

.proof-note {
  max-width: 1200px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* ---------- 初回体験 ---------- */

.offer-section {
  background: var(--paper);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  padding: clamp(32px, 5vw, 64px);
  background: var(--linen);
  border: 1px solid var(--sand);
  border-radius: 4px 36px 4px 36px;
  box-shadow: var(--shadow-soft);
}

.offer-copy h2 {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.7vw, 32px);
  font-weight: 600;
  line-height: 1.75;
}

.offer-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.offer-list {
  margin-top: 24px;
}

.offer-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.offer-list li + li {
  margin-top: 10px;
}

.offer-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border-radius: 0 50% 0 50%;
}

.price-box {
  padding: clamp(30px, 3.4vw, 42px) clamp(24px, 3vw, 36px);
  color: var(--linen);
  background: linear-gradient(160deg, var(--forest), var(--forest-deep));
  border-radius: 4px 28px 4px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.price-label {
  display: inline-block;
  padding: 4px 18px;
  color: var(--gold-soft);
  border: 1px solid rgba(207, 179, 119, 0.5);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.price-figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 6px;
  font-family: var(--font-display);
}

.price-figure .min {
  font-size: 18px;
}

.price-figure strong {
  font-size: clamp(42px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.price-figure .yen {
  font-size: 18px;
}

.price-box small {
  display: block;
  color: rgba(246, 241, 230, 0.75);
  font-size: 12px;
}

.price-box .button {
  margin-top: 24px;
  color: var(--forest-night);
  background: linear-gradient(120deg, var(--gold-soft), #e3cd96 50%, var(--gold-soft));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  max-width: 1120px;
  margin: 0 auto;
}

.flow li {
  padding: clamp(24px, 2.8vw, 32px);
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 4px 22px 4px 22px;
}

.flow .num {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand);
}

.flow h3 {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.flow p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- セラピスト ---------- */

.owner-section {
  background: var(--linen);
}

.owner-inner {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.owner-photo {
  aspect-ratio: 10 / 11;
  max-width: 420px;
  margin: 0 auto;
}

.owner-photo img {
  object-position: 50% 24%;
}

.owner-copy h2 {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.7vw, 32px);
  font-weight: 600;
  line-height: 1.75;
}

.owner-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0 26px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.owner-title span {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.owner-copy > p:not(.owner-title) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

.owner-quote {
  position: relative;
  margin-top: 30px;
  padding: 6px 0 6px 24px;
  border-left: 2px solid var(--gold);
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 2;
  text-wrap: balance;
}

/* ---------- 向き不向き ---------- */

.fit-section {
  background: var(--paper);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1080px;
  margin: 0 auto;
}

.fit-column {
  padding: clamp(30px, 4vw, 48px);
  background: var(--linen);
  border: 1px solid var(--sand);
  border-radius: 4px 28px 4px 28px;
}

.fit-column.good {
  border-top: 3px solid var(--forest);
}

.fit-column.not {
  border-top: 3px solid var(--sand);
}

.fit-column h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
}

.fit-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--linen);
  background: var(--forest);
  border-radius: 50%;
  font-size: 17px;
}

.fit-column.not .fit-mark {
  color: var(--muted);
  background: var(--sand);
}

.fit-column ul {
  margin-top: 24px;
}

.fit-column li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
}

.fit-column li + li {
  margin-top: 12px;
}

.fit-column li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--moss);
  border-radius: 0 50% 0 50%;
}

.fit-column.not li::before {
  background: var(--sand);
}

/* ---------- CTA ---------- */

.cta-section {
  color: var(--linen);
  background:
    radial-gradient(56% 60% at 12% 100%, rgba(207, 179, 119, 0.12), transparent 70%),
    radial-gradient(50% 55% at 88% 0%, rgba(169, 189, 143, 0.12), transparent 70%),
    linear-gradient(160deg, var(--forest-deep), var(--forest-night));
  text-align: center;
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--linen);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.8vw, 34px);
  font-weight: 600;
  line-height: 1.8;
}

.cta-content p {
  margin: 22px 0 0;
  color: rgba(246, 241, 230, 0.78);
  font-size: 15px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.cta-content small {
  display: block;
  margin-top: 20px;
  color: rgba(246, 241, 230, 0.55);
  font-size: 12px;
}

/* ---------- footer ---------- */

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  padding: 34px 20px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--sand);
  text-align: center;
  font-size: 13px;
}

.footer-logo {
  width: 120px;
  height: auto;
}

.footer small {
  width: 100%;
  color: var(--muted);
  font-size: 11px;
}

/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  .v-label {
    display: none;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .turning-inner,
  .method-layout,
  .offer-card,
  .owner-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual .arch-photo {
    width: min(100%, 380px);
  }

  .hero-vertical {
    right: 4px;
  }

  .pain-grid,
  .fit-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .program-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .proof-grid,
  .flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-photo {
    max-width: 560px;
    margin: 0 auto;
  }

  .owner-photo {
    max-width: 340px;
  }
}

@media (max-width: 640px) {
  /* 地紋：スマホでは葉が大きく見えすぎるけぇタイルを詰める（濃さは変えん） */
  .pain-section::before {
    background-size: 190px 190px;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  body {
    line-height: 1.9;
  }

  .site-header {
    min-height: 64px;
    padding: 8px 16px;
  }

  .brand-logo {
    width: 104px;
  }

  .logo small {
    display: none;
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(26px, 7.4vw, 32px);
  }

  .hero-vertical {
    font-size: 12px;
    padding: 18px 9px;
  }

  .button {
    width: 100%;
  }

  .sec {
    padding: 72px 18px;
  }

  .proof-grid,
  .flow {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    max-width: 420px;
    margin: 0 auto;
  }

  .method-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .sec-heading h2 {
    font-size: 20px;
    letter-spacing: 0.03em;
  }

  .turning-copy h2 {
    font-size: 19px;
  }

  .price-box {
    padding: 26px 18px;
  }

  .owner-title {
    flex-direction: column;
    gap: 4px;
  }
}

/* ---------- ブログ更新情報 ---------- */

.blog-section {
  background: var(--paper);
}

.blog-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--sand);
}

.blog-item {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 10px;
  border-bottom: 1px solid var(--sand);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.3s ease;
}

.blog-item:hover {
  background: var(--linen);
}

.blog-meta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.blog-item time {
  color: var(--gold);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.blog-tag {
  padding: 3px 12px;
  color: var(--forest);
  border: 1px solid var(--sprout);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.blog-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.blog-more {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 640px) {
  .blog-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 18px 4px;
  }
}

/* ---------- プロフィールページへの導線 ---------- */

.owner-more {
  margin-top: 34px;
}

/* ---------- accessibility ---------- */

a:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ==========================================================
   MY REBOOT — 40代からの「自分再起動」プログラム
   PDF（黒×ゴールド）の格を、サイトの亜麻色×深緑に翻訳する
   ========================================================== */

/* 5枚並びのため d4 を追加（既存は d3 まで） */
.rv.d4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html.js .rv.d4 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reboot-section {
  background:
    radial-gradient(58% 46% at 50% 0%, rgba(207, 179, 119, 0.16), transparent 72%),
    var(--linen);
}

/* ---------- ヒーロー帯（PDFの黒ヘッダー相当） ---------- */

.reboot-hero {
  position: relative;
  max-width: 1120px;
  margin: 0 auto clamp(56px, 7vw, 92px);
  padding: clamp(40px, 5.6vw, 76px) clamp(26px, 5vw, 72px);
  overflow: hidden;
  color: var(--linen);
  background:
    radial-gradient(52% 62% at 88% 6%, rgba(207, 179, 119, 0.16), transparent 70%),
    radial-gradient(48% 58% at 6% 100%, rgba(169, 189, 143, 0.12), transparent 72%),
    linear-gradient(158deg, var(--forest-deep), var(--forest-night));
  border-radius: 4px 44px 4px 44px;
  box-shadow: var(--shadow);
  text-align: center;
}

.reboot-eyebrow {
  color: rgba(246, 241, 230, 0.62);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.reboot-logo {
  margin: 12px 0 4px;
  font-family: var(--font-en);
  font-style: italic;
  font-size: clamp(46px, 8.4vw, 104px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  background: linear-gradient(112deg, #a8873f, #f0dcae 42%, #cfb377 66%, #a8873f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reboot-hero h2 {
  color: var(--linen);
  font-family: var(--font-display);
  font-size: clamp(21px, 2.9vw, 34px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  word-break: auto-phrase;
}

.reboot-sub {
  display: inline-block;
  margin-top: 22px;
  padding: 5px 22px;
  color: var(--gold-soft);
  border: 1px solid rgba(207, 179, 119, 0.46);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.reboot-lead {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(246, 241, 230, 0.8);
  font-size: 15px;
  line-height: 2.05;
}

.reboot-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.reboot-chips li {
  padding: 7px 18px;
  color: rgba(246, 241, 230, 0.9);
  background: rgba(246, 241, 230, 0.06);
  border: 1px solid rgba(246, 241, 230, 0.18);
  border-radius: 999px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.reboot-chips li::before {
  margin-right: 8px;
  color: var(--gold-soft);
  content: "□";
}

/* ---------- 5つの側面 ---------- */

.reboot-pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  max-width: 1120px;
  margin: 0 auto clamp(46px, 6vw, 76px);
}

.reboot-pillars li {
  padding: clamp(22px, 2.6vw, 30px) clamp(16px, 1.8vw, 22px);
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 4px 22px 4px 22px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reboot-pillars li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.pillar-no {
  display: block;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand);
  color: var(--gold);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 24px;
  line-height: 1;
}

.reboot-pillars h3 {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
  /* 「メンタル・ライフデザイン」が語中で割れるのを防ぐ（h3の既定は anywhere） */
  overflow-wrap: normal;
  word-break: auto-phrase;
}

.reboot-pillars p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

/* ---------- 3つの特徴 ---------- */

.reboot-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 30px);
  max-width: 1120px;
  margin: 0 auto clamp(56px, 7vw, 88px);
}

.reboot-features li {
  position: relative;
  padding-left: 22px;
  border-left: 1px solid var(--sand);
}

.reboot-features .num {
  margin-bottom: 10px;
  font-size: 30px;
}

.reboot-features h3 {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.reboot-features p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.95;
}

/* ---------- オファー（LINE導線） ---------- */

.reboot-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px);
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 4px 36px 4px 36px;
  box-shadow: var(--shadow-soft);
}

.reboot-offer-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 18px;
  color: var(--gold);
  border: 1px solid rgba(179, 146, 79, 0.42);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.reboot-offer-copy h3 {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 29px);
  font-weight: 600;
  line-height: 1.8;
  word-break: auto-phrase;
}

.reboot-steps {
  margin-top: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 20px;
}

.reboot-steps li {
  padding-left: 20px;
  border-left: 2px solid var(--sprout);
}

.step-no {
  display: block;
  color: var(--gold);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.reboot-steps strong {
  display: block;
  margin-top: 2px;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.7;
}

.reboot-steps p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.reboot-offer-cta {
  padding: clamp(28px, 3.2vw, 40px) clamp(22px, 2.8vw, 32px);
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(207, 179, 119, 0.2), transparent 72%),
    var(--linen);
  border: 1px solid rgba(179, 146, 79, 0.4);
  border-radius: 4px 28px 4px 28px;
  text-align: center;
}

.reboot-offer-catch {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 26px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.reboot-offer-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.85;
}

.reboot-offer-cta .button {
  margin-top: 22px;
}

.reboot-offer-cta small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

/* ---------- レスポンシブ ---------- */

@media (max-width: 1100px) {
  .reboot-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .reboot-offer {
    grid-template-columns: minmax(0, 1fr);
  }

  .reboot-features {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .reboot-hero {
    border-radius: 4px 28px 4px 28px;
  }

  .reboot-chips {
    gap: 8px;
  }

  .reboot-chips li {
    padding: 6px 14px;
    font-size: 12.5px;
  }

  .reboot-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* 5枚を2列に流すと最後の1枚が余るので、横いっぱいに使わせる */
  .reboot-pillars li:last-child {
    grid-column: 1 / -1;
  }

  .reboot-offer {
    padding: 26px 20px;
    border-radius: 4px 28px 4px 28px;
  }
}
