/* ============================================================
   Re:LIFE — Publish-Ready Premium CSS v2
   株式会社Relis
   ============================================================ */

/* ─── SCROLL TOP BTN ─── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--sh-md);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  z-index: 500;
  transition: transform .2s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); }

/* ─── LEAD STRIP ─── */
.lead-strip {
  background: var(--text-dark);
  padding: 0;
}
.lead-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.lead-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  color: rgba(250,248,244,.85);
  font-size: .82rem;
  letter-spacing: .1em;
  flex: 1;
  justify-content: center;
}
.lead-strip-item i { color: var(--gold); font-size: .95rem; }
.lead-strip-sep {
  width: 1px;
  background: rgba(196,163,90,.3);
  align-self: stretch;
  margin: 10px 0;
}

/* ─── HERO REDESIGN ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/9968503/pexels-photo-9968503.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250,248,244,.92) 0%,
    rgba(244,237,227,.82) 42%,
    rgba(196,163,90,.08) 72%,
    rgba(46,42,38,.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 108px 32px 72px;
  display: flex;
  align-items: center;
}
.hero-card {
  background: rgba(250,248,244,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: var(--bdr-gold2);
  border-radius: var(--r-xl);
  padding: 56px 56px 52px;
  max-width: 560px;
  box-shadow: 0 24px 72px rgba(46,42,38,.18);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 36px; right: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-eyebrow {
  font-size: .7rem;
  letter-spacing: .32em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-gold-bar {
  width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 20px;
  border-radius: 2px;
}
.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.hero-title-accent { color: var(--gold-dark); }
.hero-sub {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 2.05;
  margin-bottom: 24px;
}
.hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  margin-bottom: 24px;
  opacity: .6;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: .7rem;
  color: var(--text-light);
  margin-top: 14px;
  letter-spacing: .06em;
}

/* Hero badge */
.hero-badge {
  position: absolute;
  bottom: 72px;
  right: 48px;
  z-index: 3;
}
.hero-badge-inner {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(250,248,244,.92);
  border: var(--bdr-gold2);
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(8px);
}
.badge-top { font-size: .6rem; color: var(--text-light); letter-spacing: .1em; }
.badge-main { font-size: .82rem; font-weight: 600; color: var(--gold-dark); letter-spacing: .06em; }
.badge-sub { font-size: .6rem; color: var(--text-light); letter-spacing: .1em; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity:.3; transform:scaleY(.4); transform-origin:top; }
  50%      { opacity:1; transform:scaleY(1); transform-origin:top; }
}

/* ─── FOR WHOM PHOTO ROW ─── */
.for-whom-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  margin-bottom: 0;
}
.for-whom-photo-wrap {
  overflow: hidden;
  position: relative;
}
.for-whom-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.for-whom-text-wrap {
  background: var(--ivory-deep);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.for-whom-text-wrap .section-label { text-align: left; }
.for-whom-lead {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 28px;
}
.for-whom-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.for-whom-list li {
  font-size: .87rem;
  color: var(--text-dark);
  line-height: 1.7;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.for-whom-list li i { color: var(--gold); flex-shrink: 0; margin-top: 4px; font-size: .82rem; }
.for-whom { padding-bottom: 72px; padding-top: 0; }

/* ─── TREE SECTION — FULL REDESIGN ─── */
.tree-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: 680px;
  display: flex;
  align-items: center;
}
.tree-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/5031245/pexels-photo-5031245.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 30%;
}
.tree-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(30,24,16,.85) 0%,
    rgba(30,24,16,.80) 55%,
    rgba(40,32,18,.65) 100%
  );
}
.tree-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}

/* 木ダイアグラム */
.tree-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.tree-crown-block {
  background: rgba(232,245,233,.15);
  border: 1px solid rgba(165,214,167,.45);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 22px 24px 18px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(4px);
}
.tree-crown-title {
  font-size: .72rem;
  letter-spacing: .14em;
  color: rgba(165,214,167,.9);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tree-crown-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.tree-crown-tags span {
  background: rgba(232,245,233,.2);
  border: 1px solid rgba(165,214,167,.35);
  color: rgba(250,248,244,.9);
  font-size: .78rem;
  padding: 4px 12px;
  border-radius: 20px;
}

.tree-trunk-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 0;
  width: 100%;
  position: relative;
}
.tree-trunk-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 16px;
  margin-left: -8px;
  background: linear-gradient(to bottom, rgba(165,214,167,.5), rgba(196,163,90,.6));
  border-radius: 4px;
}
.tree-trunk-badge {
  position: relative;
  z-index: 1;
  background: rgba(196,163,90,.9);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .1em;
  margin-left: 24px;
  white-space: nowrap;
}

.tree-root-block {
  background: rgba(196,163,90,.18);
  border: 1px solid rgba(196,163,90,.45);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 18px 24px 22px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(4px);
}
.tree-root-title {
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tree-root-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.tree-root-tags span {
  background: rgba(196,163,90,.22);
  border: 1px solid rgba(196,163,90,.45);
  color: var(--gold-light);
  font-size: .78rem;
  padding: 4px 12px;
  border-radius: 20px;
}

/* テキストコラム */
.tree-text-col {
  padding: 64px 52px;
  background: rgba(20,16,12,.45);
  border: 1px solid rgba(196,163,90,.28);
  border-radius: var(--r-xl);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin: 8px 0;
}
.tree-desc {
  font-size: .93rem;
  line-height: 2.05;
  color: rgba(255,250,238,.96);
  margin: 20px 0 32px;
}
.tree-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tree-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(250,248,244,.1);
  border: 1px solid rgba(196,163,90,.3);
  border-radius: var(--r-md);
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}
.tree-point-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(196,163,90,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .9rem;
}
.tree-point strong {
  display: block;
  font-size: .9rem;
  color: rgba(250,248,244,.95);
  margin-bottom: 4px;
}
.tree-point p { font-size: .82rem; color: rgba(255,248,230,.92); line-height: 1.7; }

/* ─── DAILY WORK PHOTO STRIP ─── */
.daily-photo-strip {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.daily-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.daily-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,24,16,.68) 0%,
    rgba(30,24,16,.82) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.daily-work { padding-top: 96px; }
.daily-work .container { padding-top: 56px; }

/* ─── PILLARS PHOTO HEADER ─── */
.pillars-photo-header {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.pillars-photo-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.pillars-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,24,16,.72) 0%,
    rgba(30,24,16,.82) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.five-pillars { padding-top: 96px; }

/* Future image caption */
.future-img-wrap { position: relative; }
.future-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(46,42,38,.6), transparent);
  padding: 28px 20px 14px;
}
.future-img-caption span {
  font-size: .82rem;
  color: rgba(250,248,244,.88);
  font-style: italic;
  letter-spacing: .06em;
  font-family: var(--f-serif);
}

/* Best card */
.course-card.best-card {
  border: 2px solid var(--gold);
  box-shadow: var(--sh-lg);
}

/* ================================================================
   GLOBAL PREMIUM UPGRADE v3 — すべてのセクションをtree並みに
   ================================================================ */

/* ── セクション共通：写真背景付きの場合のオーバーレイ強化 ── */
.section-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(20,14,8,.78) 0%,
    rgba(40,32,24,.62) 100%);
}

/* ── definition（Re:LIFEとは）リデザイン ── */
.definition {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  padding: 0;
}

/* 左テキスト列・右写真パネルの2分割レイアウト */
.def-split-container {
  position: relative;
  z-index: 2;
  padding-left: 5%;
  padding-right: 0;
  max-width: none;
}
.def-photo-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
}
.def-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.def-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(253,249,242,.92) 0%,
    rgba(253,249,242,.6) 40%,
    rgba(253,249,242,.0) 100%
  );
}
.def-text-col {
  width: 58%;
  padding: 88px 80px 88px 0;
}

/* ハイライトボックス */
.def-highlight-box {
  background: linear-gradient(135deg, rgba(196,163,90,.12) 0%, rgba(196,163,90,.06) 100%);
  border: 1.5px solid rgba(196,163,90,.45);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 24px 0 36px;
  position: relative;
}
.def-highlight-box::before {
  content: '';
  position: absolute;
  left: 0; top: 16px; bottom: 16px;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  border-radius: 0 3px 3px 0;
}
.def-highlight-text {
  font-family: var(--f-serif);
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  line-height: 2.0;
  color: var(--text-mid);
  margin: 0;
}
.def-highlight-accent {
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: .04em;
}
.def-strong {
  color: var(--gold-dark);
  font-weight: 700;
}
.definition::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 85% 20%, rgba(196,163,90,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(196,163,90,.06) 0%, transparent 70%);
  pointer-events: none;
}
.definition-body { position: relative; z-index: 1; }
.definition-main {
  font-family: var(--f-serif);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 2.1;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: .04em;
}
.definition-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.def-card {
  background: #fff;
  border: var(--bdr-gold);
  border-radius: var(--r-lg);
  padding: 36px 22px 32px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.def-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity .3s;
}
.def-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.def-card:hover::before { opacity: 1; }
.def-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.2rem;
  color: var(--gold-dark);
  transition: background .3s, color .3s;
}
.def-card:hover .def-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
}
.def-card p {
  font-size: .85rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 400;
}

/* ── for-whom（こんな方に）リデザイン ── */
.for-whom {
  padding: 0;
  overflow: hidden;
}
.for-whom-photo-row {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 600px;
}
.for-whom-photo-wrap {
  position: relative;
  overflow: hidden;
}
.for-whom-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}
.for-whom-photo-wrap:hover img { transform: scale(1.04); }
.for-whom-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(244,237,227,.95) 100%);
}
.for-whom-text-wrap {
  background: var(--ivory-deep);
  padding: 80px 60px 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.for-whom-text-wrap::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.for-whom-lead {
  font-family: var(--f-serif);
  font-size: .95rem;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid rgba(196,163,90,.3);
}
.for-whom-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-left: 4px;
}
.for-whom-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding: 10px 14px;
  background: rgba(255,255,255,.7);
  border-radius: var(--r-sm);
  border: var(--bdr-greige);
  transition: background .2s, transform .2s;
}
.for-whom-list li:hover { background: #fff; transform: translateX(4px); }
.for-whom-list li i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: .8rem;
}
.for-whom-closing {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3d3028 100%);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  margin-top: 0;
  text-align: center;
}
.for-whom-closing p {
  font-family: var(--f-serif);
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  line-height: 2;
  color: rgba(250,248,244,.88);
}
.for-whom-closing strong { color: var(--gold-light); }
.for-whom .container { padding-top: 0; padding-bottom: 0; }
section.for-whom { padding-bottom: 0; }

/* ── empathy（共感）リデザイン ── */
.empathy { padding: 0; }
.empathy-bg {
  position: relative;
  padding: 100px 0 96px;
  background: linear-gradient(135deg, #1a1210 0%, #2a1e16 50%, #1e1814 100%);
  overflow: hidden;
}
.empathy-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/5390689/pexels-photo-5390689.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 30%;
  opacity: .18;
  filter: grayscale(20%);
}
.empathy-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(20,14,8,.85) 0%,
    rgba(26,18,12,.7) 50%,
    rgba(20,14,8,.9) 100%);
}
.empathy-bg > .container { position: relative; z-index: 2; }
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 44px 0 48px;
}
.empathy-card {
  background: rgba(250,248,244,.06);
  border: 1px solid rgba(196,163,90,.2);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s, transform .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.empathy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196,163,90,.5), transparent);
}
.empathy-card:hover {
  background: rgba(250,248,244,.11);
  border-color: rgba(196,163,90,.4);
  transform: translateY(-4px);
}
.empathy-card p {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(255,250,235,.97);
  font-family: var(--f-serif);
}
.empathy-message {
  background: rgba(196,163,90,.12);
  border: 1px solid rgba(196,163,90,.3);
  border-radius: var(--r-lg);
  padding: 36px 48px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.empathy-message p {
  font-family: var(--f-serif);
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  line-height: 2;
  color: rgba(250,248,244,.92);
}
.empathy-message strong { color: var(--gold-light); }

/* ── future（整えた先）リデザイン ── */
.future {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}
.future::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 5% 50%, rgba(196,163,90,.07) 0%, transparent 60%);
  pointer-events: none;
}
.future-image-row {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.future-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
}
.future-img-wrap img {
  width: 100%; height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}
.future-img-wrap:hover img { transform: scale(1.04); }
.future-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.future-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: #fff;
  border-radius: var(--r-md);
  border: var(--bdr-greige);
  box-shadow: var(--sh-xs);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.future-item:hover {
  transform: translateX(6px);
  box-shadow: var(--sh-sm);
  border-color: rgba(196,163,90,.4);
}
.future-check {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .78rem;
  box-shadow: 0 3px 10px rgba(196,163,90,.4);
}
.future-item strong {
  display: block;
  font-size: .92rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 600;
}
.future-item p {
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── essence（本質）リデザイン ── */
.future-essence {
  background: linear-gradient(135deg, #1a1210 0%, #2e2218 100%);
  position: relative;
  overflow: hidden;
}
.future-essence::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/307915/pexels-photo-307915.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 40%;
  opacity: .12;
}
.future-essence::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,14,8,.9) 0%, rgba(40,28,18,.8) 100%);
}
.future-essence .container { position: relative; z-index: 2; }
.essence-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(250,248,244,.06);
  border: 1px solid rgba(196,163,90,.3);
  border-radius: var(--r-xl);
  padding: 64px 72px;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
}
.essence-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.essence-card .section-label { color: rgba(196,163,90,.85); }
.essence-card .section-title { color: var(--ivory); }
.essence-text {
  font-family: var(--f-serif);
  font-size: .96rem;
  line-height: 2.15;
  color: rgba(255,250,235,.97);
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.essence-text strong { color: var(--gold-light); }

/* ── root-cause（真因）リデザイン ── */
.root-cause {
  position: relative;
  background: var(--ivory-deep);
  overflow: hidden;
}
.root-cause::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(176,80,64,.06) 0%, transparent 60%);
  pointer-events: none;
}
.root-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.root-flow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--greige), rgba(193,179,168,.1));
  z-index: 0;
}
.root-box {
  width: 100%;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s;
}
.root-box:hover { transform: scale(1.015); box-shadow: var(--sh-md); }
.root-box.trigger { background: #fff; border: var(--bdr-greige); }
.root-box.pattern {
  background: linear-gradient(135deg, #fff8f0, #fff3e8);
  border: 1px solid rgba(196,140,80,.25);
}
.root-box.action {
  background: linear-gradient(135deg, #fff0f0, #ffe8e8);
  border: 1px solid rgba(176,80,80,.2);
}
.root-box.result.negative {
  background: linear-gradient(135deg, #1e1410, #2e1c14);
  border: 1px solid rgba(176,80,64,.35);
  color: #fff;
}
.root-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
}
.trigger .root-icon { background: var(--gold-pale); color: var(--gold-dark); }
.pattern .root-icon { background: rgba(196,140,80,.15); color: var(--gold-dark); }
.action .root-icon { background: rgba(176,80,80,.12); color: #9e4040; }
.result.negative .root-icon { background: rgba(176,80,64,.25); color: #e8a090; }
.root-box h3 {
  font-size: 1rem;
  font-family: var(--f-serif);
  margin-bottom: 6px;
  font-weight: 500;
}
.result.negative h3 { color: rgba(250,248,244,.95); }
.root-box p { font-size: .84rem; line-height: 1.8; color: var(--text-mid); }
.result.negative p { color: rgba(250,248,244,.93); }
.root-arrow {
  color: var(--greige-mid);
  font-size: 1.1rem;
  padding: 8px 0;
  position: relative;
  z-index: 2;
}
.root-message {
  background: linear-gradient(135deg, var(--text-dark), #3d3028);
  border-radius: var(--r-lg);
  padding: 36px 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.root-message p {
  font-family: var(--f-serif);
  font-size: .97rem;
  line-height: 2;
  color: rgba(255,250,235,.97);
}
.root-message strong { color: var(--gold-light); }

/* ── branch-limit（枝葉テク）リデザイン ── */
.branch-limit {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.branch-limit::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 0% 50%, rgba(196,163,90,.06) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 100% 50%, rgba(196,163,90,.06) 0%, transparent 60%);
  pointer-events: none;
}
.branch-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.branch-card {
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.branch-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.branch-card.bad {
  background: linear-gradient(135deg, #f8f4f0, #f0ebe4);
  border: var(--bdr-greige);
}
.branch-card.good {
  background: linear-gradient(135deg, #1e1a14, #2e2418);
  border: 1px solid rgba(196,163,90,.35);
  box-shadow: var(--sh-md);
}
.branch-card.good::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.branch-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
}
.branch-card.bad .branch-label {
  background: rgba(158,64,64,.1);
  color: #9e4040;
  border: 1px solid rgba(158,64,64,.2);
}
.branch-card.good .branch-label {
  background: rgba(196,163,90,.2);
  color: var(--gold-light);
  border: 1px solid rgba(196,163,90,.35);
}
.branch-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.branch-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  line-height: 1.75;
}
.branch-card.bad li { color: var(--text-mid); }
.branch-card.good li { color: rgba(250,248,244,.96); }
.branch-card li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .78rem;
}
.branch-card.bad li i { color: #c47070; }
.branch-card.good li i { color: var(--gold-light); }
.branch-result {
  font-size: .85rem;
  line-height: 1.75;
  padding: 14px 18px;
  border-radius: var(--r-md);
  margin-top: 8px;
}
.branch-card.bad .branch-result {
  background: rgba(158,64,64,.07);
  color: #9e4040;
}
.branch-card.good .branch-result {
  background: rgba(196,163,90,.15);
  color: var(--gold-light);
}
.branch-result strong { font-weight: 600; }
.branch-arrow-h {
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
  padding: 0 8px;
}

/* ── self-limit（自己流の限界）リデザイン ── */
.self-limit {
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
}
.self-limit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,163,90,.07) 0%, transparent 60%);
  pointer-events: none;
}
.self-limit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 44px;
  position: relative;
  z-index: 1;
}
.self-card {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 44px 32px 38px;
  text-align: center;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.self-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform .35s ease;
  transform-origin: left;
}
.self-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.self-card:hover::before { transform: scaleX(1); }
.self-icon {
  width: 68px; height: 68px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: background .3s, color .3s, transform .3s;
}
.self-card:hover .self-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.self-card h3 {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-weight: 500;
}
.self-card p { font-size: .86rem; line-height: 1.85; color: var(--text-mid); }
.self-limit-message {
  background: linear-gradient(135deg, var(--text-dark), #3d3028);
  border-radius: var(--r-xl);
  padding: 44px 56px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.self-limit-message::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.self-limit-message p {
  font-family: var(--f-serif);
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  line-height: 2.1;
  color: rgba(255,250,235,.97);
}
.self-limit-message strong { color: var(--gold-light); }

/* ── no-goal（結婚は通過点）リデザイン ── */
.no-goal { padding: 0; }
.no-goal-bg {
  position: relative;
  padding: 104px 0 96px;
  overflow: hidden;
}
.no-goal-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/12525486/pexels-photo-12525486.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.no-goal-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(16,10,6,.88) 0%,
    rgba(30,20,12,.82) 50%,
    rgba(16,10,6,.90) 100%);
}
.no-goal-bg > .container { position: relative; z-index: 2; }
.no-goal-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 52px;
}
.no-goal-card {
  background: rgba(250,248,244,.07);
  border: 1px solid rgba(250,248,244,.12);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .3s, border-color .3s;
}
.no-goal-card:hover { background: rgba(250,248,244,.1); }
.no-goal-card.highlight {
  background: rgba(196,163,90,.12);
  border-color: rgba(196,163,90,.4);
  box-shadow: 0 0 40px rgba(196,163,90,.12);
  position: relative;
}
.no-goal-card.highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.no-goal-card h3 {
  font-family: var(--f-serif);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.no-goal-card:not(.highlight) h3 { color: rgba(250,248,244,.96); }
.no-goal-card.highlight h3 { color: var(--gold-light); }
.no-goal-card p {
  font-size: .88rem;
  line-height: 2;
  color: rgba(250,248,244,.93);
}
.no-goal-card.highlight p { color: rgba(250,248,244,.9); }
.no-goal-card strong { color: var(--gold-light); }
.no-goal-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  padding: 0 8px;
}

/* ── overview（全体像）リデザイン ── */
.overview {
  position: relative;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  overflow: hidden;
}
.overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(196,163,90,.06) 0%, transparent 60%);
  pointer-events: none;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
.overview-card {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 42px 28px 36px;
  text-align: center;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.overview-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .35s ease;
}
.overview-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.overview-card:hover::after { transform: scaleX(1); }
.overview-num {
  font-family: var(--f-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.overview-icon {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.2rem;
  color: var(--gold-dark);
  transition: background .3s, transform .3s;
}
.overview-card:hover .overview-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  transform: scale(1.1);
}
.overview-card h3 {
  font-family: var(--f-serif);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 500;
}
.overview-card p { font-size: .83rem; line-height: 1.85; color: var(--text-mid); }

/* ── timetable（タイムテーブル）リデザイン ── */
.timetable {
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
}
.timetable::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50%;
  background: radial-gradient(ellipse 80% 100% at 0% 50%, rgba(196,163,90,.06) 0%, transparent 70%);
  pointer-events: none;
}
.timetable-wrap {
  max-width: 720px;
  margin: 48px auto 0;
  position: relative;
}
.timetable-wrap::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(196,163,90,.2));
}
.timetable-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 24px 0 24px 0;
  position: relative;
}
.timetable-item::after {
  content: '';
  position: absolute;
  left: 80px;
  top: 36px;
  width: 18px; height: 18px;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(196,163,90,.15);
}
.tt-time {
  width: 88px;
  flex-shrink: 0;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-align: right;
  padding-top: 4px;
  letter-spacing: .04em;
}
.tt-time span { font-size: .7rem; font-weight: 400; }
.tt-content {
  padding-left: 28px;
  flex: 1;
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--sh-xs);
  transition: transform .2s, box-shadow .2s;
  margin-left: 20px;
}
.tt-content:hover { transform: translateX(4px); box-shadow: var(--sh-sm); }
.tt-content h3 {
  font-family: var(--f-serif);
  font-size: .98rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 500;
}
.tt-content p { font-size: .84rem; color: var(--text-mid); line-height: 1.8; }

/* ── chat-ba（チャット）リデザイン ── */
.chat-ba {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.chat-ba::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(196,163,90,.07) 0%, transparent 60%);
  pointer-events: none;
}
.chat-cases {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.chat-case {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  box-shadow: var(--sh-sm);
  transition: box-shadow .3s;
}
.chat-case:hover { box-shadow: var(--sh-md); }
.chat-case-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: var(--bdr-gold);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.chat-case h3 {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 22px;
  font-weight: 500;
}
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.ba-box {
  border-radius: var(--r-lg);
  padding: 24px 26px;
}
.ba-box.before {
  background: linear-gradient(135deg, #f8f4f0, #f2ece4);
  border: var(--bdr-greige);
}
.ba-box.after {
  background: linear-gradient(135deg, #1e1a14, #2e2418);
  border: 1px solid rgba(196,163,90,.3);
}
.ba-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.ba-box.before .ba-label { background: rgba(100,90,80,.1); color: var(--text-light); }
.ba-box.after .ba-label { background: rgba(196,163,90,.2); color: var(--gold-light); }
.ba-box.before p { font-size: .86rem; color: var(--text-mid); line-height: 1.8; }
.ba-box.after p { font-size: .86rem; color: rgba(255,250,235,.95); line-height: 1.8; }
.ba-arrow { font-size: 1.2rem; color: var(--gold); }

/* ── work-card（毎日ワーク）リデザイン ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 0;
}
.work-card {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 36px 22px 30px;
  text-align: center;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.work-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.work-card:hover::before { transform: scaleX(1); }
.work-icon {
  width: 58px; height: 58px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.2rem;
  color: var(--gold-dark);
  transition: background .3s, transform .3s;
}
.work-card:hover .work-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}
.work-card h3 {
  font-family: var(--f-serif);
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 500;
}
.work-card p { font-size: .8rem; line-height: 1.85; color: var(--text-mid); }
.work-method {
  font-size: .72rem;
  color: var(--gold-dark);
  font-weight: 500;
  display: block;
  margin-top: 6px;
}
.work-note {
  text-align: center;
  font-family: var(--f-serif);
  font-size: .92rem;
  color: var(--text-mid);
  margin-top: 32px;
  padding: 22px 40px;
  border-radius: var(--r-lg);
  background: rgba(196,163,90,.06);
  border: var(--bdr-gold);
}

/* ── pillar-block（5本柱）リデザイン ── */
.pillar-block {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 0;
  margin-bottom: 28px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: box-shadow .3s;
}
.pillar-block:hover { box-shadow: var(--sh-md); }
.pillar-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--text-dark), #3d3028);
  border-bottom: 1px solid rgba(196,163,90,.2);
}
.pillar-num {
  font-family: var(--f-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(196,163,90,.75);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}
.pillar-title {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 4px;
  font-weight: 500;
}
.pillar-basis {
  font-size: .72rem;
  color: var(--gold-light);
  letter-spacing: .1em;
}
.pillar-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pillar-desc {
  padding: 36px 40px;
  border-right: var(--bdr-greige);
}
.pillar-results { padding: 36px 40px; }
.pillar-goal {
  font-size: .88rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--gold-pale);
  border-radius: var(--r-md);
  border: var(--bdr-gold);
}
.pillar-goal strong { color: var(--gold-dark); }
.pillar-content { font-size: .86rem; }
.pillar-content p { font-size: .84rem; color: var(--text-mid); margin-bottom: 10px; font-weight: 600; }
.pillar-content ul { display: flex; flex-direction: column; gap: 8px; }
.pillar-content li {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding-left: 18px;
  position: relative;
}
.pillar-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .78rem;
}
.pillar-results h4 {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  font-weight: 600;
}
.pillar-change {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 10px;
}
.pillar-change i { color: var(--gold); font-size: .82rem; margin-top: 3px; flex-shrink: 0; }
.pillar-example {
  background: var(--ivory-deep);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-top: 16px;
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.85;
  border: var(--bdr-greige);
}
.pillar-example strong { color: var(--gold-dark); display: block; margin-bottom: 4px; }
.pillar-evidence {
  background: linear-gradient(135deg, #2e2416, #3a2e1c);
  padding: 20px 40px;
  font-size: .82rem;
  color: rgba(250,248,244,.92);
  line-height: 1.85;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pillar-evidence i { color: rgba(196,163,90,.85); flex-shrink: 0; margin-top: 2px; }

/* ── roadmap（ロードマップ）リデザイン ── */
.roadmap {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.roadmap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 110%, rgba(196,163,90,.07) 0%, transparent 60%);
  pointer-events: none;
}
.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 3px repeat(3, 1fr);
  align-items: start;
  gap: 0;
  margin: 52px 0 44px;
  position: relative;
}
/* フルリビルド：シンプルなタイムライン */
.roadmap-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin: 52px 0 44px;
}
.roadmap-phase {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.roadmap-phase:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.roadmap-period {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 8px 16px;
  text-align: center;
}
.roadmap-phase-inner { padding: 22px 22px 26px; flex: 1; }
.roadmap-phase-inner h3 {
  font-family: var(--f-serif);
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.roadmap-theme {
  font-size: .76rem;
  margin-bottom: 14px;
  opacity: 1;
  letter-spacing: .04em;
}
.roadmap-phase-inner ul { display: flex; flex-direction: column; gap: 8px; }
.roadmap-phase-inner li {
  font-size: .82rem;
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}
.roadmap-phase-inner li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}
.phase1 { background: #fff; border: var(--bdr-greige); }
.phase1 .roadmap-period { background: rgba(200,185,172,.15); color: var(--text-mid); }
.phase1 .roadmap-phase-inner h3 { color: var(--text-dark); }
.phase1 .roadmap-theme { color: var(--text-mid); }
.phase1 li { color: var(--text-mid); }
.phase1 li::before { color: var(--greige-mid); }
.phase2 { background: linear-gradient(135deg, #fff8f0, #fff3e8); border: 1px solid rgba(196,140,80,.2); }
.phase2 .roadmap-period { background: rgba(196,140,80,.1); color: var(--gold-dark); }
.phase2 .roadmap-phase-inner h3 { color: var(--text-dark); }
.phase2 .roadmap-theme { color: var(--gold-dark); }
.phase2 li { color: var(--text-mid); }
.phase2 li::before { color: var(--gold); }
.phase3 { background: linear-gradient(135deg, #f8f0e8, #f5e8d8); border: 1px solid rgba(196,163,90,.25); }
.phase3 .roadmap-period { background: rgba(196,163,90,.15); color: var(--gold-dark); }
.phase3 .roadmap-phase-inner h3 { color: var(--text-dark); }
.phase3 .roadmap-theme { color: var(--gold-dark); }
.phase3 li { color: var(--text-mid); }
.phase3 li::before { color: var(--gold); }
.phase4 { background: linear-gradient(135deg, #1e1a14, #2e2418); border: 1px solid rgba(196,163,90,.4); }
.phase4 .roadmap-period { background: rgba(196,163,90,.2); color: var(--gold-light); }
.phase4 .roadmap-phase-inner h3 { color: var(--ivory); }
.phase4 .roadmap-theme { color: var(--gold-light); }
.phase4 li { color: rgba(250,248,244,.95); }
.phase4 li::before { color: var(--gold-light); }
.highlight-phase h3 { font-weight: 600; }
.roadmap-arrow { font-size: 1rem; color: var(--gold); align-self: center; text-align: center; }
.roadmap-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.roadmap-point {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--sh-sm);
}
.roadmap-point.highlight {
  background: linear-gradient(135deg, #1e1a14, #2e2418);
  border-color: rgba(196,163,90,.4);
}
.roadmap-point-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.roadmap-point:not(.highlight) .roadmap-point-label { color: var(--text-light); }
.roadmap-point.highlight .roadmap-point-label { color: rgba(196,163,90,.8); }
.roadmap-point-value {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 500;
}
.roadmap-point:not(.highlight) .roadmap-point-value { color: var(--gold-dark); }
.roadmap-point.highlight .roadmap-point-value { color: var(--gold-light); }
.roadmap-recommend-tag {
  font-size: .7rem;
  color: var(--gold-light);
  letter-spacing: .1em;
  margin-top: 6px;
}

/* ── ibj-section（IBJ選択肢）リデザイン ── */
.ibj-section {
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
}
.ibj-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(76,100,128,.05) 0%, transparent 60%);
  pointer-events: none;
}
.ibj-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
.ibj-card {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.ibj-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.ibj-card.highlight-ibj {
  background: linear-gradient(135deg, #1e1a14, #2e2418);
  border: 1px solid rgba(196,163,90,.4);
  position: relative;
}
.ibj-card.highlight-ibj::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ibj-card-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.ibj-card:not(.highlight-ibj) .ibj-card-tag {
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: var(--bdr-gold);
}
.ibj-card-tag.premium {
  background: rgba(196,163,90,.2);
  color: var(--gold-light);
  border: 1px solid rgba(196,163,90,.4);
}
.ibj-card h3 {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.ibj-card:not(.highlight-ibj) h3 { color: var(--text-dark); }
.ibj-card.highlight-ibj h3 { color: var(--ivory); }
.ibj-icon {
  font-size: 2rem;
  margin-bottom: 22px;
}
.ibj-card:not(.highlight-ibj) .ibj-icon { color: var(--gold-dark); }
.ibj-card.highlight-ibj .ibj-icon { color: var(--gold-light); }
.ibj-purpose, .ibj-meeting {
  font-size: .86rem;
  line-height: 1.8;
  margin-bottom: 14px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
}
.ibj-card:not(.highlight-ibj) .ibj-purpose,
.ibj-card:not(.highlight-ibj) .ibj-meeting {
  background: var(--ivory-deep);
  color: var(--text-mid);
  border: var(--bdr-greige);
}
.ibj-card.highlight-ibj .ibj-purpose,
.ibj-card.highlight-ibj .ibj-meeting {
  background: rgba(196,163,90,.08);
  color: rgba(255,250,235,.95);
  border: 1px solid rgba(196,163,90,.2);
}
.ibj-purpose strong, .ibj-meeting strong { color: var(--gold-dark); }
.ibj-card.highlight-ibj .ibj-purpose strong,
.ibj-card.highlight-ibj .ibj-meeting strong { color: var(--gold-light); }
.ibj-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.ibj-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  line-height: 1.75;
}
.ibj-card:not(.highlight-ibj) .ibj-list li { color: var(--text-mid); }
.ibj-card.highlight-ibj .ibj-list li { color: rgba(255,250,235,.95); }
.ibj-list li i { font-size: .78rem; margin-top: 3px; flex-shrink: 0; }
.ibj-card:not(.highlight-ibj) .ibj-list li i { color: var(--gold); }
.ibj-card.highlight-ibj .ibj-list li i { color: var(--gold-light); }

/* ── ibj-data（IBJデータ）リデザイン ── */
.ibj-data {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
}
.data-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 48px 0 52px;
}
.data-card {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .3s;
}
.data-card:hover { transform: translateY(-5px); }
.data-card.highlight-data {
  background: linear-gradient(135deg, #1e1a14, #2e2418);
  border-color: rgba(196,163,90,.4);
}
.data-num {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.data-card.highlight-data .data-num { color: var(--gold-light); }
.data-unit { font-size: .6em; font-weight: 400; color: var(--text-light); }
.data-card.highlight-data .data-unit { color: rgba(196,163,90,.7); }
.data-label {
  font-size: .76rem;
  color: var(--text-light);
  letter-spacing: .08em;
}
.data-card.highlight-data .data-label { color: rgba(250,248,244,.92); }
.data-charts-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.data-chart-block {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
}
.data-chart-block h3 {
  font-family: var(--f-serif);
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: 22px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: var(--bdr-greige);
}
.data-bar-group { display: flex; flex-direction: column; gap: 14px; }
.data-bar-row { display: flex; align-items: center; gap: 12px; }
.data-bar-label { font-size: .76rem; color: var(--text-light); width: 80px; flex-shrink: 0; }
.data-bars { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.data-bars.single { flex-direction: row; }
.data-bar {
  height: 22px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  min-width: 10px;
  transition: width .8s ease;
}
.data-bar span { font-size: .68rem; color: #fff; font-weight: 600; white-space: nowrap; }
.data-bar.male { background: linear-gradient(90deg, var(--ibj-blue), rgba(76,100,128,.7)); }
.data-bar.female { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.data-legend { display: flex; gap: 16px; margin-top: 12px; }
.data-legend span { font-size: .74rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.legend-dot.male { background: var(--ibj-blue); }
.legend-dot.female { background: var(--gold); }
.data-donut-list { display: flex; flex-direction: column; gap: 10px; }
.data-donut-item { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--text-mid); }
.donut-color {
  width: 12px; height: 12px; border-radius: 2px; flex-shrink: 0;
}
.donut-color.c1 { background: var(--gold-dark); }
.donut-color.c2 { background: var(--gold); }
.donut-color.c3 { background: var(--gold-light); }
.donut-color.c4 { background: var(--greige-mid); }
.data-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--gold-pale);
  border-radius: var(--r-sm);
  font-size: .83rem;
  color: var(--gold-dark);
  text-align: center;
}

/* ── highspec（ハイスペ）リデザイン ── */
.highspec {
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
}
.highspec-wrap { position: relative; z-index: 1; }
.highspec-def {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}
.hs-bad, .hs-good {
  border-radius: var(--r-xl);
  padding: 36px 32px;
  text-align: center;
}
.hs-bad {
  background: #fff;
  border: var(--bdr-greige);
  box-shadow: var(--sh-sm);
}
.hs-good {
  background: linear-gradient(135deg, #1e1a14, #2e2418);
  border: 1px solid rgba(196,163,90,.4);
  box-shadow: var(--sh-md);
  position: relative;
}
.hs-good::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hs-bad h3, .hs-good h3 {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.hs-bad h3 { color: var(--text-light); }
.hs-good h3 { color: rgba(196,163,90,.8); }
.hs-bad p { font-family: var(--f-serif); font-size: 1.1rem; color: var(--text-dark); }
.hs-good p { font-family: var(--f-serif); font-size: .98rem; color: rgba(255,250,235,.97); line-height: 1.9; }
.hs-good .plus { color: var(--gold-light); font-size: 1.1rem; }
.hs-arrow { font-size: 1.4rem; color: var(--gold); text-align: center; }
.highspec-logic {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  box-shadow: var(--sh-sm);
}
.highspec-logic h3 {
  font-family: var(--f-serif);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 28px;
  text-align: center;
  font-weight: 500;
}
.hs-logic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hs-logic-card {
  padding: 28px 22px;
  background: var(--ivory-deep);
  border-radius: var(--r-lg);
  border: var(--bdr-greige);
  text-align: center;
  transition: transform .25s;
}
.hs-logic-card:hover { transform: translateY(-4px); }
.hs-logic-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.1rem;
  color: var(--gold-dark);
}
.hs-logic-card p { font-size: .85rem; line-height: 1.85; color: var(--text-mid); }
.hs-logic-card strong { color: var(--text-dark); }

/* ── voice（お客様の声）リデザイン ── */
.voice-section {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.voice-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,163,90,.06) 0%, transparent 60%);
  pointer-events: none;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.voice-card {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.voice-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.voice-card::before {
  content: '"';
  position: absolute;
  top: 14px; left: 22px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
  font-weight: 700;
}
.voice-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .35s;
}
.voice-card:hover::after { transform: scaleX(1); }
.voice-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 2px solid var(--gold-pale);
}
.voice-img img { width: 100%; height: 100%; object-fit: cover; }
.voice-text {
  font-family: var(--f-serif);
  font-size: .92rem;
  line-height: 2;
  color: var(--text-dark);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.voice-profile {
  font-size: .76rem;
  color: var(--text-light);
  letter-spacing: .06em;
  padding-top: 14px;
  border-top: var(--bdr-greige);
}

/* ── faq（FAQ）リデザイン ── */
.faq-section {
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.faq-item {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.faq-q:hover { background: var(--gold-pale); }
.faq-q-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-serif);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.faq-q-text {
  flex: 1;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
}
.faq-toggle {
  color: var(--gold);
  font-size: .9rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 4px 26px 24px;
}
.faq-a p {
  font-size: .87rem;
  line-height: 1.9;
  color: var(--text-mid);
  padding-top: 14px;
  border-top: var(--bdr-greige);
}

/* ── price（料金）リデザイン ── */
.price-section {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  position: relative;
  overflow: hidden;
}
.price-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(196,163,90,.05) 0%, transparent 60%);
  pointer-events: none;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.price-group-title {
  font-family: var(--f-serif);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: var(--bdr-gold);
}
.price-card {
  background: #fff;
  border: var(--bdr-greige);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.price-card-head {
  padding: 28px 28px 24px;
  border-bottom: var(--bdr-greige);
}
.price-card.featured { border-color: var(--gold); }
.price-card.featured .price-card-head {
  background: linear-gradient(135deg, #1e1a14, #2e2418);
}
.price-months {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.price-card:not(.featured) .price-months { color: var(--text-dark); }
.price-card.featured .price-months { color: var(--ivory); }
.price-tag-recommend {
  display: inline-block;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.price-card:not(.featured) .price-tag-recommend {
  background: var(--gold-pale); color: var(--gold-dark);
}
.price-card.featured .price-tag-recommend {
  background: rgba(196,163,90,.2); color: var(--gold-dark);
}
.price-amount {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: .02em;
}
.price-card:not(.featured) .price-amount { color: var(--text-dark); }
.price-card.featured .price-amount { color: var(--gold-dark); }
.price-installment {
  font-size: .78rem;
  margin-top: 6px;
}
.price-card:not(.featured) .price-installment { color: var(--text-light); }
.price-card.featured .price-installment { color: rgba(250,248,244,.88); }
.price-card-body { padding: 24px 28px 28px; }
.price-desc {
  font-size: .84rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.price-cta {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding: 13px 20px;
  border-radius: 40px;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: transform .2s, box-shadow .2s;
}
.price-card:not(.featured) .price-cta {
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: var(--bdr-gold);
}
.price-card.featured .price-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,163,90,.4);
}
.price-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,163,90,.5); }
.price-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

/* ── contact フォーム改善 ── */
.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/6633771/pexels-photo-6633771.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 50%;
  background-attachment: fixed;
  opacity: .08;
}
.contact-section > .container { position: relative; z-index: 2; }

/* ── final-cta リデザイン ── */
.final-cta {
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/34873689/pexels-photo-34873689.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(16,10,6,.92) 0%,
    rgba(30,22,14,.88) 50%,
    rgba(16,10,6,.95) 100%);
}
.final-cta .container { position: relative; z-index: 2; }

/* ── スクロールアニメーション ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── voice-grid alias ── */
.voices-grid { }

/* ================================================================
   NATURE PHOTO STRIPS & DIVIDERS
   ================================================================ */

/* ─ 自然写真帯（テキスト付き幅広バー） ─ */
.nature-strip {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  overflow: hidden;
}
.nature-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(196,163,90,.55) 0%,
    rgba(244,220,160,.35) 50%,
    rgba(196,163,90,.50) 100%);
}
.nature-strip-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 0 24px;
}
.nature-strip-text span {
  font-family: var(--f-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #fff;
  letter-spacing: .12em;
  text-shadow: 0 2px 12px rgba(156,112,48,.4);
}
.nature-strip-accent {
  font-size: clamp(1.2rem, 3vw, 1.8rem) !important;
  font-weight: 600 !important;
  color: rgba(255,248,220,.96) !important;
}

/* ─ 花写真区切り帯（薄め） ─ */
.flower-divider {
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.flower-divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(250,248,244,.82) 0%,
    rgba(244,225,195,.45) 50%,
    rgba(250,248,244,.82) 100%);
}
.flower-divider-2 { background-position: center 50%; }
.flower-divider-3 { height: 200px; background-position: center 25%; }
.flower-divider-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flower-divider-text p {
  font-family: var(--f-serif);
  font-size: clamp(.85rem, 1.5vw, 1rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(250,248,244,.75);
  padding: 8px 28px;
  border-radius: 30px;
  border: 1px solid rgba(196,163,90,.3);
  backdrop-filter: blur(6px);
}

/* ─ 広幅自然写真帯（引用テキスト付き） ─ */
.nature-wide-strip {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center 50%;
  background-attachment: fixed;
  overflow: hidden;
}
.nature-wide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(30,20,10,.62) 0%,
    rgba(50,35,15,.45) 50%,
    rgba(30,20,10,.62) 100%);
}
.nature-wide-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.nature-quote {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: #fdf6e3;
  text-align: center;
  line-height: 1.9;
  letter-spacing: .08em;
  text-shadow:
    0 2px 12px rgba(0,0,0,.55),
    0 0 30px rgba(0,0,0,.35);
}

/* ─ 桜帯 ─ */
.sakura-strip {
  position: relative;
  height: 140px;
  background-size: cover;
  background-position: center 60%;
  overflow: hidden;
}
.sakura-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(250,245,235,.75) 0%,
    rgba(255,230,220,.35) 50%,
    rgba(250,245,235,.75) 100%);
}

/* ================================================================
   ライト・温かい色調への全面置き換え
   ================================================================ */

/* セクション背景を明るく */
.root-cause { background: #fdf8f2; }
.root-cause::before { background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(196,140,80,.06) 0%, transparent 60%); }

/* ルートボックスの暗色テーマを明るく */
.root-box.result.negative {
  background: linear-gradient(135deg, #f5e8d8, #eeddc8);
  border: 1px solid rgba(196,163,90,.4);
  color: var(--text-dark);
}
.result.negative .root-icon { background: rgba(196,140,80,.15); color: var(--gold-dark); }
.result.negative h3 { color: var(--text-dark); }
.result.negative p { color: var(--text-mid); }

/* branch-limitの暗いカードを明るく */
.branch-card.good {
  background: linear-gradient(135deg, #1e1a14, #2e2418);
  border: 1px solid rgba(196,163,90,.45);
  box-shadow: var(--sh-md);
}
.branch-card.good .branch-label {
  background: rgba(196,163,90,.22);
  color: var(--gold-light);
  border: 1px solid rgba(196,163,90,.38);
}
.branch-card.good li { color: rgba(255,250,235,.97); }
.branch-card.good li i { color: var(--gold-light); }
.branch-card.good .branch-result {
  background: rgba(196,163,90,.18);
  color: var(--gold-light);
}
.branch-card.good::before { display: block; }

/* self-limit message を明るく */
.self-limit-message {
  background: linear-gradient(135deg, #f5e8d4, #eeddc4);
  border-top: 2px solid rgba(196,163,90,.3);
}
.self-limit-message::before { background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.self-limit-message p { color: var(--text-dark); }
.self-limit-message strong { color: var(--gold-dark); }

/* for-whom closing を明るく */
.for-whom-closing {
  background: linear-gradient(135deg, #f5e8d4, #eeddc4);
  margin-top: 24px;
}
.for-whom-closing p { color: var(--text-dark); }
.for-whom-closing strong { color: var(--gold-dark); }

/* essence を明るく */
.future-essence {
  background: linear-gradient(135deg, #f8f0e4, #f2e6d0);
}
.future-essence::before { display: none; }
.future-essence::after { display: none; }
.future-essence .container { position: relative; z-index: 1; }
.essence-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(196,163,90,.3);
  backdrop-filter: blur(8px);
}
.essence-card .section-label { color: var(--gold-dark); }
.essence-card .section-title { color: var(--text-dark); }
.essence-text { color: var(--text-mid); }
.essence-text strong { color: var(--gold-dark); }

/* root-message を明るく */
.root-message {
  background: linear-gradient(135deg, #f5e8d4, #eeddc4);
}
.root-message p { color: var(--text-dark); }
.root-message strong { color: var(--gold-dark); }

/* pillar header を明るく */
.pillar-header {
  background: linear-gradient(135deg, #f5ecd8, #eeddc8);
  border-bottom: 1px solid rgba(196,163,90,.25);
}
.pillar-num { color: var(--gold); }
.pillar-title { color: var(--text-dark); }
.pillar-basis { color: var(--gold-dark); }
.pillar-evidence {
  background: linear-gradient(135deg, #fdf6ec, #f8edde);
  color: var(--text-mid);
}
.pillar-evidence i { color: var(--gold); }

/* roadmap phase4 を明るく */
.phase4 {
  background: linear-gradient(135deg, #f5ecd8, #eeddc8);
  border: 1px solid rgba(196,163,90,.4);
}
.phase4 .roadmap-period { background: rgba(196,163,90,.15); color: var(--gold-dark); }
.phase4 .roadmap-phase-inner h3 { color: var(--text-dark); }
.phase4 .roadmap-theme { color: var(--gold-dark); }
.phase4 li { color: var(--text-mid); }
.phase4 li::before { color: var(--gold); }

/* roadmap-point highlight を明るく */
.roadmap-point.highlight {
  background: linear-gradient(135deg, #f5ecd8, #eeddc8);
  border-color: rgba(196,163,90,.4);
}
.roadmap-point.highlight .roadmap-point-label { color: var(--gold-dark); }
.roadmap-point.highlight .roadmap-point-value { color: var(--gold-dark); }
.roadmap-recommend-tag { color: var(--gold-dark); }

/* ibj highlight を明るく */
.ibj-card.highlight-ibj {
  background: linear-gradient(135deg, #fdf6ec, #f8edde);
  border: 1px solid rgba(196,163,90,.4);
}
.ibj-card.highlight-ibj h3 { color: var(--text-dark); }
.ibj-card.highlight-ibj .ibj-icon { color: var(--gold-dark); }
.ibj-card.highlight-ibj .ibj-purpose,
.ibj-card.highlight-ibj .ibj-meeting {
  background: rgba(196,163,90,.06);
  color: var(--text-mid);
  border: 1px solid rgba(196,163,90,.2);
}
.ibj-card.highlight-ibj .ibj-purpose strong,
.ibj-card.highlight-ibj .ibj-meeting strong { color: var(--gold-dark); }
.ibj-card.highlight-ibj .ibj-list li { color: var(--text-mid); }
.ibj-card.highlight-ibj .ibj-list li i { color: var(--gold); }
.ibj-card.highlight-ibj::before { display: none; }

/* data-card highlight を明るく */
.data-card.highlight-data {
  background: linear-gradient(135deg, #f5ecd8, #eeddc8);
  border-color: rgba(196,163,90,.4);
}
.data-card.highlight-data .data-num { color: var(--gold-dark); }
.data-card.highlight-data .data-unit { color: var(--gold-dark); }
.data-card.highlight-data .data-label { color: var(--text-mid); }

/* hs-good を明るく */
.hs-good {
  background: linear-gradient(135deg, #f5ecd8, #eeddc8);
  border: 1px solid rgba(196,163,90,.4);
}
.hs-good h3 { color: var(--gold-dark); }
.hs-good p { color: var(--text-dark); }
.hs-good .plus { color: var(--gold-dark); }
.hs-good::before { display: none; }

/* ba-box after を明るく */
.ba-box.after {
  background: linear-gradient(135deg, #fdf6ec, #f8edde);
  border: 1px solid rgba(196,163,90,.3);
}
.ba-box.after p { color: var(--text-dark); }
.ba-box.after .ba-label {
  background: rgba(196,163,90,.15);
  color: var(--gold-dark);
}

/* chat-case-tag を調整 */
.chat-case-tag {
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: var(--bdr-gold);
}

/* empathy を温かくする */
.empathy-bg::after {
  background: linear-gradient(to bottom,
    rgba(30,20,10,.72) 0%,
    rgba(20,12,4,.58) 50%,
    rgba(30,20,10,.78) 100%);
}
.empathy-message {
  background: rgba(250,240,210,.18);
  border: 1px solid rgba(244,220,160,.4);
}

/* no-goal を温かくする */
.no-goal-bg::before {
  opacity: .25;
  filter: sepia(20%) brightness(1.1);
}
.no-goal-bg::after {
  background: linear-gradient(135deg,
    rgba(30,16,6,.80) 0%,
    rgba(50,28,10,.68) 50%,
    rgba(30,16,6,.82) 100%);
}
.no-goal-card.highlight {
  background: rgba(255,240,200,.14);
  border-color: rgba(220,180,100,.45);
}
.no-goal-card.highlight h3 { color: rgba(255,240,200,.96); }
.no-goal-card.highlight p { color: rgba(250,240,200,.9); }
.no-goal-card.highlight strong { color: rgba(255,240,200,.96); }

/* price-card featured を明るく */
.price-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}
.price-card.featured .price-card-head {
  background: linear-gradient(135deg, #f5ecd8, #eeddc8);
}
.price-card.featured .price-months { color: var(--text-dark); }
.price-card.featured .price-tag-recommend {
  background: rgba(196,163,90,.2);
  color: var(--gold-dark);
}
.price-card.featured .price-amount { color: var(--gold-dark); }
.price-card.featured .price-installment { color: var(--text-mid); }
.price-card.featured .price-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
}

/* tree section テキスト col を少し明るく */
.tree-text-col {
  background: rgba(244,230,198,.25);
  border: 1px solid rgba(196,163,90,.3);
}
.tree-desc { color: rgba(50,36,24,.82); }
.tree-point { background: rgba(255,248,235,.08); border: 1px solid rgba(196,163,90,.3); }
.tree-point-icon { background: rgba(196,163,90,.25); }
.tree-point strong { color: #fff; }
.tree-point p { color: rgba(255,248,230,.95); }

/* section-label.light を温かく */
.section-label.light { color: rgba(255,240,180,.97); text-shadow: 0 1px 8px rgba(0,0,0,.45); }
/* section-title.light を温かく */
.section-title.light { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 0 40px rgba(0,0,0,.25); }

/* ── 文字可読性グローバル改善 ── */
body { color: var(--text-dark); }

/* カードのテキスト強化 */
.def-card p,
.empathy-card p,
.overview-card p,
.work-card p,
.self-card p,
.hs-logic-card p,
.chat-case h3,
.ibj-list li,
.for-whom-list li {
  font-size: .88rem;
  line-height: 1.9;
}

/* section-title フォントサイズ調整 */
.section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  line-height: 1.6;
  letter-spacing: .04em;
}

/* section-desc 可読性向上 */
.section-desc { font-size: .95rem; line-height: 2; }
.section-lead { font-size: .97rem; line-height: 2; }

/* pillar-content li 読みやすく */
.pillar-content li { font-size: .86rem; line-height: 1.85; }
.pillar-change { font-size: .88rem; }
.pillar-example { font-size: .85rem; line-height: 1.9; }

/* voice-card text */
.voice-text {
  font-family: var(--f-serif);
  font-size: .93rem;
  line-height: 2.05;
  color: var(--text-dark);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  padding-top: 12px;
}

/* faq 読みやすく */
.faq-q-text { font-size: .93rem; line-height: 1.75; }
.faq-a p { font-size: .89rem; line-height: 2; color: var(--text-mid); }

/* ─── RESPONSIVE ADDITIONS ─── */
@media (max-width: 1024px) {
  .hero-badge { display: none; }
  .for-whom-photo-row { grid-template-columns: 1fr; min-height: auto; }
  .for-whom-photo-wrap { height: 380px; }
  .for-whom-photo-wrap::after { background: linear-gradient(to bottom, transparent 60%, rgba(244,237,227,.95) 100%); }
  .for-whom-text-wrap { padding: 56px 44px; }
  .tree-container { grid-template-columns: 1fr; gap: 40px; padding-top: 80px; padding-bottom: 80px; }
  .tree-text-col { padding: 52px 40px; }
  .lead-strip-item { padding: 16px 20px; }
  .definition-cards { grid-template-columns: repeat(2, 1fr); }
  /* 定義セクション responsive */
  .def-photo-panel { display: none; }
  .def-text-col { width: 100%; padding: 72px 48px; }
  .def-split-container { padding-left: 0; max-width: 1200px; margin: 0 auto; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .future-image-row { grid-template-columns: 1fr; gap: 40px; }
  .future-img-wrap img { height: 400px; }
  .empathy-grid { grid-template-columns: repeat(2, 1fr); }
  .branch-compare { grid-template-columns: 1fr; gap: 20px; }
  .branch-arrow-h { transform: rotate(90deg); }
  .self-limit-grid { grid-template-columns: 1fr; gap: 18px; }
  .no-goal-content { grid-template-columns: 1fr; gap: 18px; }
  .no-goal-arrow { display: none; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .pillar-body { grid-template-columns: 1fr; }
  .pillar-desc { border-right: none; border-bottom: var(--bdr-greige); }
  .roadmap-timeline { grid-template-columns: 1fr; gap: 12px; }
  .roadmap-arrow { transform: rotate(90deg); }
  .ibj-compare { grid-template-columns: 1fr; gap: 20px; }
  .data-numbers { grid-template-columns: repeat(2, 1fr); }
  .data-charts-wrap { grid-template-columns: 1fr; }
  .highspec-def { grid-template-columns: 1fr; gap: 18px; }
  .hs-arrow { transform: rotate(90deg); text-align: center; }
  .hs-logic-grid { grid-template-columns: 1fr; gap: 16px; }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-wrap { grid-template-columns: 1fr; gap: 14px; }
  .ba-arrow { text-align: center; }
  .price-grid { grid-template-columns: 1fr; }
  .timetable-wrap::before { left: 72px; }
  .tt-time { width: 72px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .for-whom-photo-wrap { height: 300px; }
  .for-whom-text-wrap { padding: 44px 28px; }
  .essence-card { padding: 48px 32px; }
  .ibj-card { padding: 36px 28px; }
  .chat-case { padding: 30px 24px; }
  .self-limit-message { padding: 32px 28px; }
  .for-whom-closing { padding: 36px 28px; }
  .data-numbers { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pillar-header { padding: 24px 28px; }
  .pillar-desc, .pillar-results { padding: 28px 28px; }
  .timetable-wrap::before { display: none; }
  .timetable-item { flex-direction: column; gap: 8px; padding: 12px 0; }
  .timetable-item::after { display: none; }
  .tt-time { width: auto; text-align: left; }
  .tt-content { margin-left: 0; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nature-strip { height: 160px; background-attachment: scroll; }
  .nature-wide-strip { height: 200px; background-attachment: scroll; }
  .flower-divider { height: 100px; }
  .flower-divider-3 { height: 130px; }
  .sakura-strip { height: 90px; }
  .nature-quote { font-size: 1rem; }
  .nature-strip-text span { font-size: .9rem; }
  .nature-strip-accent { font-size: 1.1rem !important; }
  .lead-strip-inner { flex-direction: column; }
  .lead-strip-sep { width: 40px; height: 1px; margin: 0 auto; }
  .lead-strip-item { padding: 14px 20px; justify-content: flex-start; }
  .for-whom-photo-wrap { height: 240px; }
  .for-whom-text-wrap { padding: 36px 20px; }
  .hero-card { padding: 36px 24px 32px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
  .tree-section { min-height: auto; }
  .tree-container { grid-template-columns: 1fr; gap: 24px; padding: 64px 16px; }
  .tree-text-col { padding: 40px 28px; }
  /* 定義セクション 640px */
  .def-photo-panel { display: none; }
  .def-text-col { width: 100%; padding: 56px 20px; }
  .def-split-container { padding-left: 0; max-width: 100%; }
  .def-highlight-box { padding: 22px 20px; }
  .daily-photo-strip { height: 240px; }
  .pillars-photo-header { height: 260px; }
  .definition-cards { grid-template-columns: 1fr; gap: 14px; }
  .empathy-grid { grid-template-columns: 1fr; }
  .empathy-message { padding: 28px 24px; }
  .future-image-row { grid-template-columns: 1fr; }
  .future-img-wrap img { height: 320px; }
  .essence-card { padding: 40px 24px; }
  .root-message { padding: 28px 24px; }
  .self-limit-grid { grid-template-columns: 1fr; }
  .self-limit-message { padding: 28px 20px; }
  .for-whom-closing { padding: 32px 20px; }
  .no-goal-content { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pillar-header { padding: 20px 20px; gap: 14px; }
  .pillar-num { font-size: 2rem; }
  .pillar-desc, .pillar-results { padding: 24px 20px; }
  .pillar-evidence { padding: 16px 20px; }
  .chat-case { padding: 24px 18px; }
  .roadmap-summary { grid-template-columns: 1fr; max-width: 320px; }
  .ibj-card { padding: 32px 20px; }
  .data-numbers { grid-template-columns: 1fr 1fr; }
  .data-charts-wrap { grid-template-columns: 1fr; }
  .highspec-def { grid-template-columns: 1fr; }
  .hs-logic-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .faq-q { padding: 18px 20px; }
  .faq-q-text { font-size: .88rem; }
  .faq-a { font-size: .85rem; }
  .price-grid { grid-template-columns: 1fr; max-width: none; }
  .compare-table-wrap { overflow-x: auto; }
  .roadmap-phase-inner { padding: 18px 16px; }
  .root-cause .container { padding: 0 16px; }
  .branch-limit .container { padding: 0 16px; }
  .no-goal-card { padding: 32px 20px; }
  .contact-wrap { flex-direction: column; }
  .final-cta-card { padding: 48px 24px; }
  .final-cta-btns { flex-direction: column; gap: 14px; }
  .final-cta-btns a { width: 100%; justify-content: center; }
}

/* ─── Custom Properties ─── */
:root {
  --ivory:        #faf8f4;
  --ivory-deep:   #f4ede3;
  --milk:         #f0e4d5;
  --pink-beige:   #edddd4;
  --greige:       #dfd3c5;
  --greige-mid:   #c8b9ac;
  --bg-section2:  #f7f3ef;
  --gold:         #c4a35a;
  --gold-light:   #dfc98a;
  --gold-pale:    #f5edda;
  --gold-dark:    #9a7030;
  --ibj-blue:     #4c6480;
  --ibj-pale:     #edf1f7;
  --text-dark:    #2e2a26;
  --text-mid:     #5c5148;
  --text-light:   #9c8e84;
  --white:        #ffffff;
  --line-green:   #06C755;
  --danger:       #9e4040;

  --f-serif: 'Noto Serif JP', Georgia, serif;
  --f-sans:  'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

  --sh-xs:  0 1px 4px rgba(46,42,38,.06);
  --sh-sm:  0 2px 12px rgba(46,42,38,.09);
  --sh-md:  0 6px 28px rgba(46,42,38,.12);
  --sh-lg:  0 16px 48px rgba(46,42,38,.15);

  --bdr-gold:    1px solid rgba(196,163,90,.3);
  --bdr-gold2:   1px solid rgba(196,163,90,.55);
  --bdr-greige:  1px solid rgba(193,179,168,.45);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .75; }
ul { list-style: none; }

/* ─── Layout ─── */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 96px 0; }
.serif { font-family: var(--f-serif); }
.sp-only { display: none; }

/* ─── Gold Dividers ─── */
.gold-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto;
}
.gold-line-full {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light) 50%, transparent);
}

/* ===================================================
   FINAL POLISH — 全体仕上げ微調整
   =================================================== */

/* ── セクション見出しの余白をゆったり ── */
.section-label {
  letter-spacing: .18em;
  margin-bottom: 10px;
}
.section-title {
  margin-bottom: 32px;
  line-height: 1.55;
}

/* ── definition（Re:LIFEとは）definition-main 可読性 ── */
.definition-main {
  color: var(--text-dark);
}
.definition-main strong.def-strong {
  font-size: 1.08em;
}

/* ── def-card アイコン色強化 ── */
.def-icon {
  color: var(--gold);
  font-size: 1.25rem;
}

/* ── tree-section テキスト col 見出し・説明文 余白 ── */
.tree-text-col .section-title {
  margin-top: 8px;
  margin-bottom: 20px;
}
.tree-desc {
  letter-spacing: .03em;
}
.tree-point strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: .93rem;
}
.tree-point p {
  font-size: .84rem;
  line-height: 1.85;
  color: rgba(255,248,230,.94);
  margin: 0;
}

/* ── nature-wide-strip 高さをやや高く ── */
.nature-wide-strip {
  height: 300px;
}

/* ── 全セクション背景の暗色を廃止し温かい色調で統一 ── */
.lead-strip {
  background: linear-gradient(90deg, #3b2f1e 0%, #4a3a28 50%, #3b2f1e 100%);
}

/* ── セクションラベル（lightクラス）明度調整 ── */
.section-label.light {
  color: rgba(250,240,200,.85);
}

/* ── for-whom 箇条書きの余白 ── */
.for-whom-list li {
  padding: 7px 0;
}

/* ── empathy-message 文字の明度 ── */
.empathy-message p {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 2;
}

/* ── future-item strong ── */
.future-item strong {
  color: var(--gold-dark);
  font-size: .95rem;
}

/* ── 全カードのテキスト下限を確保 ── */
.overview-card h3,
.work-card h3,
.pillar-title,
.def-card p {
  color: var(--text-dark);
}

/* ── footer 文字 ── */
footer {
  color: var(--greige-mid);
}
footer a {
  color: var(--greige-mid);
}
footer a:hover {
  color: var(--gold-light);
}

/* ── 768px 定義セクション ── */
@media (max-width: 768px) {
  .def-text-col { padding: 64px 32px; }
  .def-highlight-box { padding: 20px 22px; }
}


/* ─── Section Typography ─── */
.section-label {
  display: block;
  text-align: center;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-family: var(--f-sans);
  font-weight: 400;
}
.section-label.light { color: rgba(255,240,180,.97); text-shadow: 0 1px 8px rgba(0,0,0,.45); }

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.55;
  letter-spacing: .03em;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}
.section-title.light { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 0 40px rgba(0,0,0,.25); }
.serif-sub { font-size: .72em; font-weight: 400; color: var(--text-light); }

.section-desc {
  text-align: center;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 40px;
}
.section-lead {
  text-align: center;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto 48px;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #c4a35a 0%, #dfc98a 50%, #c4a35a 100%);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 4px 18px rgba(196,163,90,.45);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,163,90,.55); }
.btn-primary.large { padding: 16px 40px; font-size: .95rem; }

.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--line-green);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 14px 28px;
  border-radius: 40px;
  box-shadow: 0 4px 14px rgba(6,199,85,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-line:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(6,199,85,.45); }
.btn-line.large { padding: 16px 36px; font-size: .95rem; }

/* ─────────────────────────────────
   HEADER
───────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(250,248,244,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--bdr-gold);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--sh-md); }

.header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo a {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.logo-re {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: .02em;
}
.logo-life {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: .06em;
}
.logo-tagline {
  font-size: .62rem;
  color: var(--text-light);
  letter-spacing: .08em;
  padding-left: 4px;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header-nav ul {
  display: flex;
  gap: 4px;
}
.header-nav a {
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--text-mid);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.header-nav a:hover {
  color: var(--gold-dark);
  background: var(--gold-pale);
  opacity: 1;
}

.header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-cta-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 8px 18px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(196,163,90,.4);
  transition: transform .2s;
}
.btn-cta-primary:hover { opacity: 1; transform: translateY(-1px); }

.btn-cta-line {
  background: var(--line-green);
  color: #fff;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(6,199,85,.35);
}
.btn-cta-line:hover { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─────────────────────────────────
   HERO
───────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/4097215/pexels-photo-4097215.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.88) saturate(.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250,248,244,.78) 0%,
    rgba(240,228,213,.72) 50%,
    rgba(196,163,90,.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 100px 32px 60px;
  max-width: 1060px;
  margin: 0 auto;
}
.hero-card {
  background: rgba(250,248,244,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--bdr-gold2);
  border-radius: var(--r-xl);
  padding: 52px 52px 48px;
  max-width: 560px;
  box-shadow: var(--sh-lg);
}
.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.hero-title-accent {
  color: var(--gold-dark);
}
.hero-sub {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: .3; transform: scaleY(.4); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}

/* ─────────────────────────────────
   DEFINITION
───────────────────────────────── */
.definition {
  background: var(--white);
  padding: 88px 0;
}
.definition-body {
  max-width: 820px;
  margin: 0 auto;
}
.definition-main {
  text-align: center;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-dark);
  margin-bottom: 52px;
}
.definition-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.def-card {
  background: var(--ivory);
  border: var(--bdr-gold);
  border-radius: var(--r-md);
  padding: 28px 18px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.def-card:hover { box-shadow: var(--sh-sm); transform: translateY(-3px); }
.def-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 1.1rem;
}
.def-card p {
  font-size: .82rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─────────────────────────────────
   FOR WHOM
───────────────────────────────── */
.for-whom {
  background: var(--ivory-deep);
  padding: 88px 0;
}
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.for-whom-item {
  background: var(--white);
  border: var(--bdr-greige);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 20px 20px 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--sh-xs);
}
.for-whom-num {
  font-family: var(--f-serif);
  font-size: .78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .04em;
  flex-shrink: 0;
  padding-top: 2px;
}
.for-whom-item p {
  font-size: .85rem;
  line-height: 1.75;
  color: var(--text-dark);
}
.for-whom-closing {
  background: var(--white);
  border: var(--bdr-gold);
  border-radius: var(--r-md);
  padding: 32px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--sh-xs);
}
.for-whom-closing p {
  font-size: .95rem;
  line-height: 2;
  color: var(--text-mid);
}

/* ─────────────────────────────────
   EMPATHY
───────────────────────────────── */
.empathy {
  padding: 0;
}
.empathy-bg {
  background-image: url('https://images.pexels.com/photos/15848164/pexels-photo-15848164.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  position: relative;
  padding: 96px 0;
}
.empathy-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46,42,38,.7);
}
.empathy-bg .container { position: relative; z-index: 2; }
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 40px 0;
}
.empathy-card {
  background: rgba(250,248,244,.12);
  border: 1px solid rgba(250,248,244,.22);
  border-radius: var(--r-md);
  padding: 22px 20px;
  backdrop-filter: blur(4px);
  text-align: center;
}
.empathy-card p {
  font-size: .87rem;
  line-height: 1.8;
  color: rgba(250,248,244,.92);
}
.empathy-message {
  background: rgba(250,248,244,.15);
  border: 1px solid rgba(196,163,90,.5);
  border-radius: var(--r-md);
  padding: 28px 40px;
  text-align: center;
  backdrop-filter: blur(6px);
  max-width: 640px;
  margin: 0 auto;
}
.empathy-message p {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(250,248,244,.95);
}
.empathy-message strong { color: var(--gold-light); }

/* ─────────────────────────────────
   FUTURE
───────────────────────────────── */
.future {
  background: var(--white);
  padding: 96px 0;
}
.future-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 12px;
}
.future-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4/5;
}
.future-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.future-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.future-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--ivory);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  border: var(--bdr-greige);
  box-shadow: var(--sh-xs);
}
.future-check {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: .8rem;
  margin-top: 2px;
}
.future-item strong {
  display: block;
  font-size: .9rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.future-item p {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─────────────────────────────────
   FUTURE ESSENCE
───────────────────────────────── */
.future-essence {
  background: var(--ivory-deep);
  padding: 88px 0;
}
.essence-card {
  background: var(--white);
  border: var(--bdr-gold);
  border-radius: var(--r-xl);
  padding: 64px 72px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--sh-md);
  text-align: center;
}
.essence-text {
  font-size: .95rem;
  line-height: 2.1;
  color: var(--text-mid);
  margin-top: 24px;
  text-align: left;
}
.essence-text strong { color: var(--text-dark); }

/* ─────────────────────────────────
   ROOT CAUSE
───────────────────────────────── */
.root-cause {
  background: var(--white);
  padding: 96px 0;
}
.root-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 48px auto 0;
  max-width: 560px;
}
.root-box {
  width: 100%;
  background: var(--ivory);
  border: var(--bdr-greige);
  border-radius: var(--r-md);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--sh-xs);
}
.root-box.negative {
  background: var(--pink-beige);
  border-color: rgba(158,64,64,.2);
}
.root-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
}
.root-box.negative .root-icon { background: rgba(158,64,64,.12); color: var(--danger); }
.root-box h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.root-box p { font-size: .83rem; line-height: 1.7; color: var(--text-mid); }
.root-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  padding: 8px 0;
}
.root-message {
  margin-top: 36px;
  background: var(--gold-pale);
  border: var(--bdr-gold2);
  border-radius: var(--r-md);
  padding: 22px 28px;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.root-message p {
  font-size: .9rem;
  line-height: 1.85;
  color: var(--text-dark);
}

/* ─────────────────────────────────
   BRANCH LIMIT
───────────────────────────────── */
.branch-limit {
  background: var(--bg-section2);
  padding: 96px 0;
}
.branch-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 48px;
}
.branch-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
}
.branch-card.bad { border-top: 3px solid var(--danger); }
.branch-card.good { border-top: 3px solid var(--gold); }
.branch-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 10px;
  display: inline-block;
  border-radius: 4px;
}
.branch-card.bad .branch-label { background: rgba(158,64,64,.1); color: var(--danger); }
.branch-card.good .branch-label { background: rgba(196,163,90,.2); color: var(--gold-light); }
.branch-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.branch-card li {
  font-size: .85rem;
  color: var(--text-mid);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.6;
}
.branch-card.bad li { color: var(--text-mid); }
.branch-card.good li { color: rgba(255,250,235,.97); }
.branch-card.bad li i { color: var(--danger); flex-shrink: 0; margin-top: 3px; }
.branch-card.good li i { color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.branch-result {
  font-size: .83rem;
  line-height: 1.7;
  color: var(--text-mid);
  padding-top: 16px;
  border-top: var(--bdr-greige);
}
.branch-card.good .branch-result { color: rgba(255,248,220,.92); background: rgba(196,163,90,.12); border-color: rgba(196,163,90,.25); padding: 10px 14px; border-radius: 8px; border-top: none; }
.branch-arrow-h {
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
  flex-shrink: 0;
}

/* ─────────────────────────────────
   TREE METAPHOR
───────────────────────────────── */
.tree-metaphor {
  background: var(--white);
  padding: 96px 0;
}
.tree-card {
  background: var(--ivory);
  border: var(--bdr-gold);
  border-radius: var(--r-xl);
  padding: 60px 52px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.tree-wrap {
  margin: 40px auto 0;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.tree-crown {
  width: 100%;
}
.tree-leaf-box {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--r-md);
  padding: 18px 24px;
  font-size: .83rem;
  line-height: 1.8;
  color: #2e5b38;
  text-align: center;
  margin-bottom: -2px;
}
.tree-trunk-area {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.tree-trunk {
  width: 12px;
  height: 56px;
  background: linear-gradient(to bottom, #a5d6a7, var(--gold));
  border-radius: 4px;
}
.tree-trunk-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .08em;
}
.tree-root-area {
  width: 100%;
  text-align: center;
}
.tree-root-box {
  background: var(--gold-pale);
  border: var(--bdr-gold2);
  border-radius: var(--r-md);
  padding: 18px 24px;
  font-size: .83rem;
  line-height: 1.8;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.tree-root-label {
  font-size: .75rem;
  color: var(--gold-dark);
  letter-spacing: .06em;
  font-weight: 500;
}
.tree-text {
  font-size: .95rem;
  line-height: 2;
  color: var(--text-mid);
  margin-top: 32px;
}

/* ─────────────────────────────────
   SELF LIMIT
───────────────────────────────── */
.self-limit {
  background: var(--ivory-deep);
  padding: 88px 0;
}
.self-limit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 36px;
}
.self-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 24px;
  box-shadow: var(--sh-sm);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.self-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
}
.self-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.self-card p { font-size: .84rem; line-height: 1.8; color: var(--text-mid); }
.self-limit-message {
  background: var(--white);
  border: var(--bdr-gold);
  border-radius: var(--r-md);
  padding: 28px 36px;
  text-align: center;
  box-shadow: var(--sh-xs);
}
.self-limit-message p { font-size: .93rem; line-height: 2; color: var(--text-mid); }
.self-limit-message strong { color: var(--text-dark); }

/* ─────────────────────────────────
   NO GOAL
───────────────────────────────── */
.no-goal { padding: 0; }
.no-goal-bg {
  background-image: url('https://images.pexels.com/photos/18225994/pexels-photo-18225994.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 96px 0;
}
.no-goal-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46,42,38,.72);
}
.no-goal-bg .container { position: relative; z-index: 2; }
.no-goal-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
.no-goal-card {
  background: rgba(250,248,244,.13);
  border: 1px solid rgba(250,248,244,.22);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  backdrop-filter: blur(6px);
}
.no-goal-card.highlight {
  background: rgba(196,163,90,.18);
  border-color: rgba(196,163,90,.5);
}
.no-goal-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(250,248,244,.97);
  margin-bottom: 14px;
}
.no-goal-card.highlight h3 { color: var(--gold-light); }
.no-goal-card p {
  font-size: .87rem;
  line-height: 2;
  color: rgba(250,248,244,.92);
}
.no-goal-card.highlight p { color: rgba(250,248,244,.97); }
.no-goal-card strong { color: rgba(250,248,244,.95); }
.no-goal-arrow {
  color: var(--gold-light);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────
   OVERVIEW
───────────────────────────────── */
.overview {
  background: var(--white);
  padding: 96px 0;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.overview-card {
  background: var(--ivory);
  border: var(--bdr-gold);
  border-radius: var(--r-md);
  padding: 26px 18px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.overview-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.overview-num {
  font-family: var(--f-serif);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.overview-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
}
.overview-card h3 {
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}
.overview-card p { font-size: .78rem; line-height: 1.75; color: var(--text-mid); }

/* ─────────────────────────────────
   TIMETABLE
───────────────────────────────── */
.timetable {
  background: var(--bg-section2);
  padding: 96px 0;
}
.timetable-wrap {
  max-width: 680px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--gold-light);
  padding-left: 28px;
}
.timetable-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 32px 0;
  position: relative;
}
.timetable-item::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--gold-light);
}
.tt-time {
  flex-shrink: 0;
  font-family: var(--f-serif);
  font-size: .88rem;
  color: var(--gold-dark);
  font-weight: 500;
  min-width: 100px;
  padding-top: 2px;
}
.tt-time span { font-size: .7rem; margin-left: 2px; }
.tt-content { flex: 1; }
.tt-content h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.tt-content p { font-size: .83rem; line-height: 1.75; color: var(--text-mid); }

/* ─────────────────────────────────
   CHAT BEFORE/AFTER
───────────────────────────────── */
.chat-ba {
  background: var(--white);
  padding: 96px 0;
}
.chat-cases {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}
.chat-case {
  background: var(--ivory);
  border: var(--bdr-greige);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  box-shadow: var(--sh-xs);
}
.chat-case-tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.chat-case h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.ba-box {
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  box-shadow: var(--sh-xs);
}
.ba-box.before { border-left: 3px solid var(--greige-mid); }
.ba-box.after  { border-left: 3px solid var(--gold); }
.ba-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ba-box.before .ba-label { color: var(--text-light); }
.ba-box.after  .ba-label { color: var(--gold-dark); }
.ba-box p { font-size: .84rem; line-height: 1.75; color: var(--text-mid); }
.ba-arrow { color: var(--gold); font-size: 1.2rem; text-align: center; }

/* ─────────────────────────────────
   DAILY WORK
───────────────────────────────── */
.daily-work {
  background: var(--ivory-deep);
  padding: 96px 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 48px 0 24px;
}
.work-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px 16px;
  text-align: center;
  border: var(--bdr-greige);
  box-shadow: var(--sh-xs);
  transition: box-shadow .2s;
}
.work-card:hover { box-shadow: var(--sh-sm); }
.work-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
}
.work-card h3 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.work-card p { font-size: .78rem; line-height: 1.7; color: var(--text-mid); }
.work-method { font-size: .72rem; color: var(--gold-dark); display: block; margin-top: 4px; }
.work-note {
  text-align: center;
  font-size: .85rem;
  color: var(--text-light);
  font-style: italic;
  border-top: var(--bdr-greige);
  padding-top: 20px;
  max-width: 560px;
  margin: 0 auto;
}

/* ─────────────────────────────────
   FIVE PILLARS
───────────────────────────────── */
.five-pillars {
  background: var(--white);
  padding: 96px 0;
}
.pillar-block {
  background: var(--ivory);
  border: var(--bdr-greige);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--sh-xs);
}
.pillar-block:last-child { margin-bottom: 0; }
.pillar-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--white);
  border-bottom: var(--bdr-greige);
}
.pillar-num {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  min-width: 52px;
  line-height: 1;
}
.pillar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pillar-basis {
  font-size: .75rem;
  color: var(--gold-dark);
  letter-spacing: .06em;
}
.pillar-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.pillar-desc {
  padding: 28px 32px;
  border-right: var(--bdr-greige);
}
.pillar-goal {
  font-size: .87rem;
  line-height: 1.85;
  color: var(--text-mid);
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--r-sm);
  border: var(--bdr-greige);
  margin-bottom: 18px;
}
.pillar-goal strong { color: var(--text-dark); }
.pillar-content p {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pillar-content ul { display: flex; flex-direction: column; gap: 6px; }
.pillar-content li {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}
.pillar-content li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.pillar-results {
  padding: 28px 32px;
}
.pillar-results h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.pillar-change {
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pillar-change i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.pillar-example {
  margin-top: 16px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  font-size: .82rem;
  line-height: 1.75;
  color: var(--text-mid);
  border: var(--bdr-greige);
}
.pillar-example strong { color: var(--text-dark); display: block; margin-bottom: 4px; }
.pillar-evidence {
  padding: 16px 32px;
  font-size: .8rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  background: var(--gold-pale);
  border-top: var(--bdr-gold);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pillar-evidence i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ─────────────────────────────────
   ROADMAP
───────────────────────────────── */
.roadmap {
  background: var(--bg-section2);
  padding: 96px 0;
}
.roadmap-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
  margin-top: 52px;
}
.roadmap-phase {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: var(--bdr-greige);
}
.roadmap-period {
  background: var(--greige);
  color: var(--text-mid);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  padding: 8px;
}
.roadmap-phase.phase1 .roadmap-period { background: var(--pink-beige); }
.roadmap-phase.phase2 .roadmap-period { background: var(--milk); }
.roadmap-phase.phase3 .roadmap-period { background: var(--ivory-deep); }
.roadmap-phase.phase4 .roadmap-period { background: var(--gold-pale); color: var(--gold-dark); }

.roadmap-phase-inner {
  padding: 20px 18px;
}
.highlight-phase {
  background: linear-gradient(135deg, #fff 0%, var(--gold-pale) 100%) !important;
}
.roadmap-phase h3 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.roadmap-theme {
  font-size: .75rem;
  color: var(--gold-dark);
  letter-spacing: .04em;
  margin-bottom: 12px;
  font-style: italic;
}
.roadmap-phase ul { display: flex; flex-direction: column; gap: 6px; }
.roadmap-phase li {
  font-size: .78rem;
  line-height: 1.65;
  color: var(--text-mid);
  padding-left: 12px;
  position: relative;
}
.roadmap-phase li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  top: 2px;
}
.roadmap-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.roadmap-summary {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}
.roadmap-point {
  background: var(--white);
  border: var(--bdr-greige);
  border-radius: var(--r-md);
  padding: 20px 32px;
  text-align: center;
  box-shadow: var(--sh-xs);
  position: relative;
}
.roadmap-point.highlight {
  background: var(--gold-pale);
  border: var(--bdr-gold2);
  box-shadow: var(--sh-sm);
}
.roadmap-point-label {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.roadmap-point-value {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
}
.roadmap-point.highlight .roadmap-point-value { color: var(--gold-dark); }
.roadmap-recommend-tag {
  display: inline-block;
  font-size: .68rem;
  background: var(--gold);
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  letter-spacing: .06em;
  margin-top: 6px;
}

/* ─────────────────────────────────
   IBJ SECTION
───────────────────────────────── */
.ibj-section {
  background: var(--white);
  padding: 96px 0;
}
.ibj-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
.ibj-card {
  background: var(--ivory);
  border: var(--bdr-greige);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--sh-sm);
}
.ibj-card.highlight-ibj {
  background: linear-gradient(135deg, var(--ivory) 0%, #edf1f7 100%);
  border: 1px solid rgba(76,100,128,.25);
  box-shadow: var(--sh-md);
}
.ibj-card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.ibj-card-tag.premium { background: var(--ibj-pale); color: var(--ibj-blue); }
.ibj-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-family: var(--f-serif);
}
.ibj-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.ibj-card.highlight-ibj .ibj-icon { background: var(--ibj-pale); color: var(--ibj-blue); }
.ibj-purpose, .ibj-meeting {
  font-size: .85rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.ibj-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.ibj-list li {
  font-size: .84rem;
  color: var(--text-mid);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.65;
}
.ibj-list li i { color: var(--gold-dark); flex-shrink: 0; margin-top: 3px; }
.ibj-card.highlight-ibj .ibj-list li i { color: var(--ibj-blue); }

/* ─────────────────────────────────
   IBJ DATA
───────────────────────────────── */
.ibj-data {
  background: var(--bg-section2);
  padding: 96px 0;
}
.data-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.data-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px 18px;
  text-align: center;
  border: var(--bdr-greige);
  box-shadow: var(--sh-xs);
}
.data-card.highlight-data {
  background: var(--gold-pale);
  border: var(--bdr-gold2);
  box-shadow: var(--sh-sm);
}
.data-num {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}
.data-card.highlight-data .data-num { color: var(--gold-dark); }
.data-unit { font-size: .7rem; font-weight: 400; color: var(--text-light); }
.data-label { font-size: .78rem; color: var(--text-mid); letter-spacing: .04em; }

.data-charts-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.data-chart-block {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--sh-xs);
  border: var(--bdr-greige);
}
.data-chart-block h3 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: var(--bdr-greige);
}
.data-bar-group { display: flex; flex-direction: column; gap: 14px; }
.data-bar-row { display: flex; align-items: center; gap: 12px; }
.data-bar-label {
  flex-shrink: 0;
  width: 70px;
  font-size: .75rem;
  color: var(--text-mid);
  text-align: right;
}
.data-bars { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.data-bar {
  height: 18px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  overflow: visible;
  position: relative;
  min-width: 28px;
}
.data-bar.male { background: var(--ibj-blue); }
.data-bar.female { background: var(--pink-beige); border: 1px solid var(--greige-mid); }
.data-bar span {
  position: absolute;
  right: -36px;
  font-size: .68rem;
  color: var(--text-light);
  white-space: nowrap;
}
.data-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
}
.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-right: 5px;
}
.legend-dot.male { background: var(--ibj-blue); }
.legend-dot.female { background: var(--pink-beige); border: 1px solid var(--greige-mid); }
span.legend-male, span.legend-female { font-size: .75rem; color: var(--text-mid); display: flex; align-items: center; }

.data-donut-list { display: flex; flex-direction: column; gap: 10px; }
.data-donut-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-mid);
}
.donut-color {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.donut-color.c1 { background: var(--ibj-blue); }
.donut-color.c2 { background: var(--gold); }
.donut-color.c3 { background: var(--greige-mid); }
.donut-color.c4 { background: var(--pink-beige); border: 1px solid var(--greige); }
.data-note {
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--gold-pale);
  border-radius: var(--r-sm);
  font-size: .82rem;
  color: var(--gold-dark);
  text-align: center;
}
.data-bars.single { flex-direction: column; }

/* ─────────────────────────────────
   HIGHSPEC
───────────────────────────────── */
.highspec {
  background: var(--white);
  padding: 96px 0;
}
.highspec-wrap { margin-top: 52px; }
.highspec-def {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 36px;
}
.hs-bad, .hs-good {
  background: var(--ivory);
  border-radius: var(--r-md);
  padding: 24px 28px;
  border: var(--bdr-greige);
}
.hs-good { background: var(--gold-pale); border: var(--bdr-gold); }
.hs-bad h3, .hs-good h3 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hs-bad h3 { color: var(--text-light); }
.hs-good h3 { color: var(--gold-dark); }
.hs-bad p, .hs-good p { font-size: .93rem; line-height: 1.75; color: var(--text-mid); }
.hs-good p { color: var(--text-dark); }
.plus { color: var(--gold); font-weight: 700; margin: 0 4px; }
.hs-arrow { font-size: 1.5rem; color: var(--gold); text-align: center; }

.highspec-logic h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 24px;
}
.hs-logic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hs-logic-card {
  background: var(--ivory);
  border: var(--bdr-greige);
  border-radius: var(--r-md);
  padding: 24px 22px;
  text-align: center;
  box-shadow: var(--sh-xs);
}
.hs-logic-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
}
.hs-logic-card p { font-size: .83rem; line-height: 1.75; color: var(--text-mid); }

/* ─────────────────────────────────
   COURSE COMPARE TABLE
───────────────────────────────── */
.course-compare {
  background: var(--bg-section2);
  padding: 96px 0;
}
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  border: var(--bdr-gold);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 700px;
}
.compare-table thead tr {
  background: var(--ivory);
  border-bottom: 1px solid var(--greige);
}
.compare-table th {
  padding: 14px 12px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.5;
}
.compare-table th.th-course { text-align: left; padding-left: 20px; }
.compare-table td {
  padding: 14px 12px;
  font-size: .82rem;
  color: var(--text-mid);
  text-align: center;
  border-bottom: 1px solid rgba(215,205,195,.5);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.td-course {
  text-align: left !important;
  padding-left: 20px !important;
  font-weight: 600;
  color: var(--text-dark) !important;
  line-height: 1.6;
}
.td-months { font-size: .75rem; font-weight: 400; color: var(--text-mid); }
.td-goal { font-size: .8rem; color: var(--text-mid); text-align: left !important; padding-right: 16px !important; }
.star-rate { color: var(--gold); font-size: .82rem; letter-spacing: -.06em; }

.tr-recommend { background: #fdf7ee; }
.tr-recommend td { border-bottom: 1px solid rgba(196,163,90,.18); }
.tr-best { background: var(--gold-pale); }
.tr-best td { color: var(--text-dark) !important; border-bottom: 1px solid rgba(196,163,90,.25); }
.tr-premium { background: var(--ibj-pale); }
.tr-premium td { color: var(--ibj-blue) !important; }

.recommend-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .62rem;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: .04em;
  margin-left: 4px;
  vertical-align: middle;
}
.best-tag {
  display: inline-block;
  background: var(--gold-dark);
  color: #fff;
  font-size: .62rem;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: .04em;
  margin-left: 4px;
  vertical-align: middle;
}
.premium-tag {
  display: inline-block;
  background: var(--ibj-blue);
  color: #fff;
  font-size: .62rem;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: .04em;
  margin-left: 4px;
  vertical-align: middle;
}

/* ─────────────────────────────────
   COURSE DETAIL
───────────────────────────────── */
.course-detail {
  background: var(--white);
  padding: 96px 0;
}
.course-group-title {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-align: center;
  margin: 48px 0 24px;
  padding: 8px 24px;
  display: inline-block;
  background: var(--gold-pale);
  border-radius: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.course-group-title.ibj { background: var(--ibj-pale); color: var(--ibj-blue); }
.course-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.course-card {
  background: var(--ivory);
  border: var(--bdr-greige);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  position: relative;
}
.course-card.recommend-card { border: var(--bdr-gold2); box-shadow: var(--sh-md); }
.course-card.ibj-card { border-color: rgba(76,100,128,.2); }
.course-card.premium-card { box-shadow: var(--sh-lg); }

.course-card-tag-wrap {
  position: absolute;
  top: -1px;
  right: 16px;
  z-index: 2;
}
.course-card-recommend-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .06em;
}
.course-card-best-tag {
  display: inline-block;
  background: var(--gold-dark);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .06em;
}
.course-card-premium-tag {
  display: inline-block;
  background: var(--ibj-blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .06em;
}

.course-card-header {
  padding: 28px 24px 20px;
  text-align: center;
}
.months3 { background: var(--pink-beige); }
.months6 { background: linear-gradient(135deg, var(--gold-pale), var(--ivory-deep)); }
.months9 { background: linear-gradient(135deg, var(--gold-pale), #f2e8d0); }
.ibj-months6 { background: var(--ibj-pale); }
.ibj-months9 { background: linear-gradient(135deg, var(--ibj-pale), #dce5f0); }
.ibj-months12 { background: linear-gradient(135deg, var(--ibj-blue), #3a5068); }

.course-months {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.ibj-months12 .course-months { color: #fff; }
.course-subtitle {
  font-size: .78rem;
  color: var(--text-mid);
  letter-spacing: .04em;
}
.ibj-months12 .course-subtitle { color: rgba(255,255,255,.92); }

.course-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.course-card-body h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.course-card-body p, .course-card-body li {
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.course-card-body ul { display: flex; flex-direction: column; gap: 4px; }
.course-card-body li { padding-left: 12px; position: relative; }
.course-card-body li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  top: 0;
}
.density-badge {
  display: inline-block;
  font-size: .72rem;
  padding: 3px 12px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}
.density-badge.standard  { background: var(--pink-beige); color: var(--text-mid); }
.density-badge.enhanced  { background: var(--gold-pale); color: var(--gold-dark); }
.density-badge.top       { background: var(--gold); color: #fff; }
.density-badge.ibj-std   { background: var(--ibj-pale); color: var(--ibj-blue); }
.density-badge.ibj-top   { background: var(--ibj-blue); color: #fff; }

.course-caution {
  background: rgba(158,64,64,.07);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border: 1px solid rgba(158,64,64,.18);
}
.course-caution i { color: var(--danger); flex-shrink: 0; font-size: .9rem; margin-top: 2px; }
.course-caution p { font-size: .78rem; color: #7a4040; line-height: 1.65; }

/* ─────────────────────────────────
   CASES
───────────────────────────────── */
.cases {
  background: var(--ivory-deep);
  padding: 96px 0;
}
.imaginary-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-light);
  margin-bottom: 36px;
  font-style: italic;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: var(--bdr-greige);
}
.case-img-wrap {
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
}
.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.case-profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(46,42,38,.7) 0%, transparent 100%);
  padding: 20px 16px 12px;
}
.case-profile-overlay span {
  font-size: .78rem;
  color: rgba(250,248,244,.92);
  letter-spacing: .06em;
}
.case-body { padding: 24px 24px 22px; }
.case-ba-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.case-before, .case-after {
  background: var(--ivory);
  border-radius: var(--r-sm);
  padding: 14px 14px;
}
.case-before { border-left: 2px solid var(--greige-mid); }
.case-after  { border-left: 2px solid var(--gold); }
.case-before h4, .case-after h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.case-before h4 { color: var(--text-light); }
.case-after h4  { color: var(--gold-dark); }
.case-before li, .case-after li {
  font-size: .78rem;
  color: var(--text-mid);
  line-height: 1.65;
  padding-left: 10px;
  position: relative;
}
.case-before li::before, .case-after li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--greige-mid);
  font-size: 1.1rem;
  line-height: 1;
  top: 1px;
}
.case-after li::before { color: var(--gold); }
.case-ba-arrow { color: var(--gold); font-size: 1rem; text-align: center; }
.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.case-metrics span {
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}
.case-voice {
  font-size: .85rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding-top: 12px;
  border-top: var(--bdr-greige);
}
.case-voice i { color: var(--gold-light); flex-shrink: 0; font-size: .9rem; margin-top: 3px; }

/* ─────────────────────────────────
   VOICES (TESTIMONIALS)
───────────────────────────────── */
.voices {
  background: var(--white);
  padding: 96px 0;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.voice-card {
  background: var(--ivory);
  border: var(--bdr-greige);
  border-radius: var(--r-lg);
  padding: 28px 22px 22px;
  position: relative;
  box-shadow: var(--sh-xs);
  transition: box-shadow .2s, transform .2s;
}
.voice-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.voice-card::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 24px;
  width: 14px;
  height: 14px;
  background: var(--ivory);
  border-right: var(--bdr-greige);
  border-bottom: var(--bdr-greige);
  transform: rotate(45deg);
}
.voice-quote {
  color: var(--gold-dark);
  font-size: 1rem;
  margin-bottom: 12px;
}
.voice-card p {
  font-size: .85rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.voice-attr {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .06em;
  text-align: right;
}

/* ─────────────────────────────────
   FAQ
───────────────────────────────── */
.faq {
  background: var(--bg-section2);
  padding: 96px 0;
}
.faq-list {
  max-width: 760px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: var(--bdr-greige);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xs);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.faq-q:hover { background: var(--ivory); }
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: .7rem;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
}
.faq-q span:not(.faq-icon) {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}
.faq-a {
  display: none;
  padding: 0 24px 22px 64px;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: .85rem;
  line-height: 1.9;
  color: var(--text-mid);
}

/* ─────────────────────────────────
   PRICE
───────────────────────────────── */
.price {
  background: var(--white);
  padding: 96px 0;
}
.price-group-title {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-align: center;
  margin: 48px 0 24px;
  padding: 8px 24px;
  display: inline-block;
  background: var(--gold-pale);
  border-radius: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.price-group-title.ibj { background: var(--ibj-pale); color: var(--ibj-blue); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}
.price-card {
  background: var(--ivory);
  border: var(--bdr-greige);
  border-radius: var(--r-lg);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--sh-sm);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.price-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.price-card.recommend-price {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-pale) 100%);
  border: var(--bdr-gold2);
  box-shadow: var(--sh-md);
}
.price-card.best-price {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #f2e8d0 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--sh-lg);
}
.price-card.ibj-price {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ibj-pale) 100%);
}
.price-card.premium-price {
  border: 2px solid var(--ibj-blue);
  box-shadow: var(--sh-md);
}

.price-recommend-label,
.price-best-label,
.price-premium-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: -1px;
  right: 16px;
  letter-spacing: .06em;
}
.price-recommend-label { background: var(--gold); color: #fff; }
.price-recommend-label.ibj { background: var(--ibj-blue); }
.price-best-label { background: var(--gold-dark); color: #fff; }
.price-premium-label { background: var(--ibj-blue); color: #fff; }

.price-card-header { margin-bottom: 16px; }
.price-months {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.price-total {
  font-size: .82rem;
  color: var(--text-mid);
  letter-spacing: .04em;
}
.price-monthly {
  margin-bottom: 4px;
}
.price-num {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-dark);
}
.price-unit {
  font-size: .8rem;
  color: var(--text-mid);
  margin-left: 4px;
}
.price-per {
  font-size: .72rem;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.btn-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 10px 28px;
  border-radius: 30px;
  box-shadow: 0 3px 12px rgba(196,163,90,.4);
  transition: transform .2s;
  width: 100%;
}
.btn-price:hover { opacity: 1; transform: translateY(-2px); }
.btn-price.ibj {
  background: linear-gradient(135deg, var(--ibj-blue), #6a8aac);
  box-shadow: 0 3px 12px rgba(76,100,128,.4);
}
.price-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 20px;
  line-height: 1.8;
}

/* ─────────────────────────────────
   CONTACT
───────────────────────────────── */
.contact {
  background: var(--ivory-deep);
  padding: 96px 0;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--sh-md);
  border: var(--bdr-greige);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: .04em;
}
.required {
  font-size: .68rem;
  background: var(--gold);
  color: #fff;
  padding: 1px 7px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: var(--bdr-greige);
  border-radius: var(--r-sm);
  background: var(--ivory);
  font-family: var(--f-sans);
  font-size: .88rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%239c8e84'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .87rem;
  color: var(--text-mid);
  cursor: pointer;
}
.radio-label input { width: auto; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-family: var(--f-sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .1em;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(196,163,90,.45);
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,163,90,.55); }

.form-submitted {
  text-align: center;
  padding: 48px 36px;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.submit-icon { font-size: 3rem; color: var(--gold); margin-bottom: 16px; }
.form-submitted h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; }
.form-submitted p { font-size: .88rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
.submit-contact-info p {
  font-size: .85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 6px;
}
.submit-contact-info i { color: var(--gold-dark); }

.contact-direct { }
.contact-direct h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--sh-sm);
  border: var(--bdr-greige);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.btn-line-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--line-green);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 3px 12px rgba(6,199,85,.35);
  transition: transform .2s;
}
.btn-line-large:hover { opacity: 1; transform: translateY(-2px); }
.ci-link {
  font-size: .88rem;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ci-sub { font-size: .75rem; color: var(--text-light); margin-top: 6px; }

/* ─────────────────────────────────
   FINAL CTA
───────────────────────────────── */
.final-cta {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/34873689/pexels-photo-34873689.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,42,38,.68);
}
.final-cta .container {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  justify-content: center;
}
.final-cta-card {
  background: rgba(250,248,244,.13);
  border: 1px solid rgba(196,163,90,.45);
  border-radius: var(--r-xl);
  padding: 60px 64px;
  text-align: center;
  max-width: 640px;
  width: 100%;
  backdrop-filter: blur(10px);
}
.final-cta-title {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--ivory);
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.final-cta-sub {
  font-size: .93rem;
  line-height: 1.95;
  color: rgba(250,248,244,.82);
  margin-bottom: 36px;
}
.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────
   FOOTER
───────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  padding: 64px 0 36px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.footer-logo .logo-re { color: var(--gold-light); }
.footer-logo .logo-life { color: rgba(250,248,244,.85); }

.footer-tagline {
  font-size: .82rem;
  color: rgba(250,248,244,.5);
  letter-spacing: .08em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.footer-nav a {
  font-size: .75rem;
  color: rgba(250,248,244,.6);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .04em;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold-light); opacity: 1; }
.footer-company {
  text-align: center;
  margin-top: 8px;
}
.footer-company h4 {
  font-size: .85rem;
  color: rgba(250,248,244,.75);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: .06em;
}
.footer-contact-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-contact-row span {
  font-size: .8rem;
  color: rgba(250,248,244,.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact-row i { color: var(--gold); }
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(250,248,244,.1);
  margin-top: 8px;
}
.footer-copyright p {
  font-size: .72rem;
  color: rgba(250,248,244,.35);
  letter-spacing: .06em;
  text-align: center;
}

/* ─────────────────────────────────
   MOBILE MENU OVERLAY
───────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(250,248,244,.97);
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 64px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: .08em;
  padding: 12px 32px;
  display: block;
  text-align: center;
  border-bottom: 1px solid rgba(215,205,195,.4);
  width: 200px;
}
.mobile-nav-overlay a:hover { color: var(--gold-dark); opacity: 1; }
.mobile-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ─────────────────────────────────
   RESPONSIVE — TABLET  ≤ 1024px
───────────────────────────────── */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }

  .definition-cards { grid-template-columns: repeat(2, 1fr); }
  .overview-grid    { grid-template-columns: repeat(3, 1fr); }
  .work-grid        { grid-template-columns: repeat(3, 1fr); }
  .voices-grid      { grid-template-columns: repeat(2, 1fr); }
  .data-charts-wrap { grid-template-columns: 1fr; }
  .roadmap-timeline { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .roadmap-arrow    { display: none; }
  .ibj-compare      { grid-template-columns: 1fr; }
  .course-cards-wrap { grid-template-columns: 1fr 1fr; }
  .price-cards      { grid-template-columns: repeat(3, 1fr); }
}

/* ─────────────────────────────────
   RESPONSIVE — MOBILE ≤ 640px
───────────────────────────────── */
@media (max-width: 640px) {
  :root { --sec-pad: 72px 0; }
  html { font-size: 15px; }

  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .sp-only { display: inline; }

  .header-inner { padding: 0 18px; }
  .logo-tagline { display: none; }

  /* Hero */
  .hero-content { padding: 80px 18px 48px; }
  .hero-card { padding: 32px 24px 28px; border-radius: var(--r-lg); }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns a { width: 100%; text-align: center; justify-content: center; }

  /* Definition */
  .definition-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* For Whom */
  .for-whom-grid { grid-template-columns: 1fr; gap: 10px; }
  .for-whom-closing { padding: 24px 20px; }

  /* Empathy */
  .empathy-grid { grid-template-columns: 1fr; gap: 10px; }
  .empathy-message { padding: 22px 20px; }

  /* Future */
  .future-image-row { grid-template-columns: 1fr; gap: 28px; }
  .future-img-wrap { aspect-ratio: 4/3; }

  /* Essence */
  .essence-card { padding: 40px 24px; border-radius: var(--r-lg); }

  /* Root Cause */
  .root-flow { max-width: 100%; }

  /* Branch */
  .branch-compare { grid-template-columns: 1fr; }
  .branch-arrow-h { transform: rotate(90deg); text-align: center; }

  /* No Goal */
  .no-goal-content { grid-template-columns: 1fr; }
  .no-goal-arrow { transform: rotate(90deg); text-align: center; }

  /* Overview */
  .overview-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Timetable */
  .timetable-wrap { padding-left: 22px; }
  .tt-time { min-width: 78px; font-size: .8rem; }

  /* Chat BA */
  .ba-wrap { grid-template-columns: 1fr; gap: 10px; }
  .ba-arrow { transform: rotate(90deg); text-align: center; }
  .chat-case { padding: 22px 18px; }

  /* Work */
  .work-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Pillar */
  .pillar-body { grid-template-columns: 1fr; }
  .pillar-desc { border-right: none; border-bottom: var(--bdr-greige); }
  .pillar-header { padding: 20px 20px; }
  .pillar-desc, .pillar-results { padding: 20px 20px; }
  .pillar-evidence { padding: 14px 20px; }

  /* Roadmap */
  .roadmap-timeline { grid-template-columns: 1fr; }
  .roadmap-summary { flex-direction: column; align-items: center; gap: 12px; }
  .roadmap-point { width: 100%; max-width: 280px; }

  /* Data */
  .data-numbers { grid-template-columns: 1fr 1fr; gap: 10px; }
  .data-charts-wrap { grid-template-columns: 1fr; }
  .data-bar-label { width: 56px; font-size: .7rem; }

  /* Highspec */
  .highspec-def { grid-template-columns: 1fr; }
  .hs-arrow { transform: rotate(90deg); text-align: center; }
  .hs-logic-grid { grid-template-columns: 1fr; }

  /* Course Cards */
  .course-cards-wrap { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }

  /* Cases */
  .cases-grid { grid-template-columns: 1fr; }
  .case-ba-row { grid-template-columns: 1fr; }
  .case-ba-arrow { transform: rotate(90deg); text-align: center; }

  /* Voices */
  .voices-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Final CTA */
  .final-cta-card { padding: 40px 24px; border-radius: var(--r-lg); }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns a { width: 100%; justify-content: center; }

  /* Self limit */
  .self-limit-grid { grid-template-columns: 1fr; }

  /* IBJ */
  .ibj-compare { grid-template-columns: 1fr; }
}

/* ================================================================
   TEXT VISIBILITY FIX v2 — 全色被り一括修正（最終版）
   ================================================================ */

/* ━━━ 花帯テキスト ━━━ */
.nature-strip-overlay {
  background: linear-gradient(135deg,
    rgba(28,18,6,.72) 0%,
    rgba(18,12,4,.55) 50%,
    rgba(28,18,6,.72) 100%) !important;
}
.nature-strip-text span {
  color: #fdf6e3 !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.7), 0 0 32px rgba(0,0,0,.45) !important;
}
.nature-strip-accent {
  color: #fff8dc !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.7), 0 0 32px rgba(0,0,0,.45) !important;
}

/* ━━━ 幹と根（tree）テキスト ━━━ */
.tree-point strong { color: #fff !important; }
.tree-point p      { color: rgba(255,248,230,.95) !important; }
.tree-desc         { color: rgba(255,250,238,.97) !important; }

/* ━━━ 写真オーバーレイ上のテキスト（daily / pillars / tree） ━━━ */
.daily-photo-overlay .section-label,
.daily-photo-overlay .section-label.light,
.pillars-photo-overlay .section-label,
.pillars-photo-overlay .section-label.light,
.tree-section .section-label,
.tree-section .section-label.light {
  color: rgba(255,240,180,.98) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.55) !important;
}
.daily-photo-overlay .section-title,
.daily-photo-overlay .section-title.light,
.pillars-photo-overlay .section-title,
.pillars-photo-overlay .section-title.light,
.tree-section .section-title,
.tree-section .section-title.light {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.65), 0 0 44px rgba(0,0,0,.3) !important;
}

/* ━━━ 暗カード内テキスト全般 ━━━ */
/* root-message / self-limit-message */
.root-message p,
.self-limit-message p { color: rgba(255,250,235,.97) !important; }

/* essence-text（本質セクション） */
.essence-text { color: rgba(255,250,235,.97) !important; }

/* no-goal-card（ゴールなし設計） */
.no-goal-card h3   { color: rgba(255,250,235,.98) !important; }
.no-goal-card p    { color: rgba(255,248,230,.95) !important; }

/* branch-card.good */
.branch-card.good li { color: rgba(255,250,235,.97) !important; }

/* pillar-evidence */
.pillar-evidence   { color: rgba(255,250,235,.95) !important; }
.pillar-num        { color: rgba(196,163,90,.85) !important; }
.pillar-evidence i { color: rgba(196,163,90,.88) !important; }

/* phase4（ロードマップ暗フェーズ） */
.phase4 li { color: rgba(255,248,230,.96) !important; }

/* empathy-card（共感カード） */
.empathy-card p { color: rgba(255,250,235,.97) !important; }

/* ba-box.after（Before/After アフター） */
.ba-box.after p { color: rgba(255,250,235,.96) !important; }

/* IBJ highlight */
.ibj-card.highlight-ibj .ibj-purpose,
.ibj-card.highlight-ibj .ibj-meeting { color: rgba(255,250,235,.95) !important; }
.ibj-card.highlight-ibj .ibj-list li { color: rgba(255,250,235,.95) !important; }

/* hs-good（ハイスペック定義良い方） */
.hs-good p { color: rgba(255,250,235,.97) !important; }

/* ━━━ work-note ━━━ */
.work-note {
  color: var(--text-dark) !important;
  font-size: .95rem !important;
  font-weight: 500 !important;
  border: 1.5px solid rgba(196,163,90,.45) !important;
}

/* ━━━ 明るい背景上のテキスト統一 ━━━ */
.work-card h3,
.work-card p,
.overview-card h3,
.overview-card p,
.def-card p       { color: var(--text-dark) !important; }

.for-whom-list li  { color: var(--text-dark) !important; font-size: .9rem !important; }
.future-item strong { color: var(--gold-dark) !important; }
.future-item p     { color: var(--text-mid) !important; }
.empathy-message p { color: var(--text-dark) !important; font-size: .95rem !important; }
.definition-main   { color: var(--text-dark) !important; }
.definition-main strong { color: var(--gold-dark) !important; }

/* ━━━ pillars-photo-overlay の全子要素 ━━━ */
.pillars-photo-overlay * { text-shadow: 0 2px 14px rgba(0,0,0,.6); }
.pillars-photo-overlay p { color: rgba(255,248,230,.97) !important; }
.pillars-photo-overlay h2 { color: #fff !important; }

/* ================================================================
   WHITE-ON-WHITE FIX — 白背景上の見えにくいテキスト 完全修正
   ================================================================ */

/* ── pillar-header（ベージュ背景）の文字 ── */
.pillar-header .pillar-title  { color: var(--text-dark) !important; }
.pillar-header .pillar-num    { color: var(--gold) !important; }
.pillar-header .pillar-basis  { color: var(--gold-dark) !important; }

/* ── pillar-desc / pillar-results（白背景）の文字 ── */
.pillar-goal          { color: var(--text-dark) !important; }
.pillar-content p     { color: var(--text-dark) !important; font-weight: 600 !important; }
.pillar-content li    { color: var(--text-mid) !important; }
.pillar-change        { color: var(--text-mid) !important; }
.pillar-example       { color: var(--text-mid) !important; }
.pillar-evidence      { color: var(--text-mid) !important; }
.pillar-evidence i    { color: var(--gold) !important; }

/* ── essence-card（白半透明背景）の文字 ── */
.essence-card .section-label { color: var(--gold-dark) !important; }
.essence-card .section-title { color: var(--text-dark) !important; }
.essence-text                { color: var(--text-mid) !important; }
.essence-text strong         { color: var(--gold-dark) !important; }

/* ── root-message（ベージュ背景）の文字 ── */
.root-message p      { color: var(--text-dark) !important; }
.root-message strong { color: var(--gold-dark) !important; }

/* ── phase4 ロードマップ（ベージュ背景に変更済み）の文字 ── */
.phase4 .roadmap-phase-inner h3 { color: var(--text-dark) !important; }
.phase4 .roadmap-theme           { color: var(--gold-dark) !important; }
.phase4 li                       { color: var(--text-mid) !important; }

/* ── ba-box.after（ベージュ背景）の文字 ── */
.ba-box.after p          { color: var(--text-dark) !important; }
.ba-box.after .ba-label  { color: var(--gold-dark) !important; }

/* ── ibj highlight（ベージュ背景）の文字 ── */
.ibj-card.highlight-ibj h3         { color: var(--text-dark) !important; }
.ibj-card.highlight-ibj .ibj-list li { color: var(--text-mid) !important; }
.ibj-card.highlight-ibj .ibj-purpose,
.ibj-card.highlight-ibj .ibj-meeting { color: var(--text-mid) !important; }

/* ── data-card highlight（ベージュ背景）の文字 ── */
.data-card.highlight-data .data-num   { color: var(--gold-dark) !important; }
.data-card.highlight-data .data-label { color: var(--text-mid) !important; }
.data-card.highlight-data .data-unit  { color: var(--gold-dark) !important; }

/* ── hs-good（ベージュ背景）の文字 ── */
.hs-good h3 { color: var(--gold-dark) !important; }
.hs-good p  { color: var(--text-dark) !important; }

/* ── self-card（白背景）の文字 ── */
.self-card h3 { color: var(--text-dark) !important; }
.self-card p  { color: var(--text-mid) !important; }

/* ── def-card（白背景）の文字 ── */
.def-card p { color: var(--text-mid) !important; font-size: .86rem !important; }

/* ── overview-card（白背景）の文字 ── */
.overview-card h3 { color: var(--text-dark) !important; }
.overview-card p  { color: var(--text-mid) !important; }

/* ── voice-card（白背景）の文字 ── */
.voice-text   { color: var(--text-dark) !important; }
.voice-meta   { color: var(--text-light) !important; }

/* ── price-card（白背景）の文字 ── */
.price-name      { color: var(--text-dark) !important; }
.price-desc      { color: var(--text-mid)  !important; }
.price-includes li { color: var(--text-mid) !important; }

/* ── faq（白背景）の文字 ── */
.faq-q-text { color: var(--text-dark) !important; }
.faq-a p    { color: var(--text-mid)  !important; }

/* ── work-card（白背景）の文字 ── */
.work-card h3 { color: var(--text-dark) !important; }
.work-card p  { color: var(--text-mid)  !important; }
.work-method  { color: var(--gold-dark) !important; }

/* ── course-card など比較表（白背景）── */
.compare-th   { color: var(--text-dark) !important; }
.compare-td   { color: var(--text-mid)  !important; }

/* ── roadmap-phase-inner（白・ベージュ背景）── */
.phase1 li,
.phase2 li,
.phase3 li { color: var(--text-mid) !important; }
.phase1 .roadmap-phase-inner h3,
.phase2 .roadmap-phase-inner h3,
.phase3 .roadmap-phase-inner h3 { color: var(--text-dark) !important; }

/* ── roadmap-point（ベージュ背景）── */
.roadmap-point.highlight .roadmap-point-label { color: var(--gold-dark) !important; }
.roadmap-point.highlight .roadmap-point-value { color: var(--gold-dark) !important; }

/* ── case-card（白背景）── */
.case-name    { color: var(--text-dark) !important; }
.case-before p,
.case-after p { color: var(--text-mid)  !important; }

/* ── contact-section（白背景）── */
.form-label   { color: var(--text-dark) !important; }

/* ── for-whom-lead ── */
.for-whom-lead { color: var(--text-mid) !important; }

/* ── section-label:not(.light) を統一 ── */
.section-label:not(.light) { color: var(--gold-dark) !important; }

/* ── section-title（明るい背景）を統一 ── */
section:not(.tree-section):not(.future-essence):not(.empathy):not(.no-goal):not(.branch-limit) .section-title:not(.light) {
  color: var(--text-dark) !important;
}

/* ── voice / price / course / faq 追加修正 ── */
.voice-quote          { color: var(--gold-dark) !important; }
.voice-card p         { color: var(--text-dark) !important; }
.voice-attr           { color: var(--text-mid)  !important; }

.price-card.featured .price-months        { color: var(--text-dark)  !important; }
.price-card.featured .price-amount        { color: var(--gold-dark)  !important; }
.price-card.featured .price-tag-recommend { color: var(--gold-dark)  !important; }

.ibj-months12 .course-months   { color: #fff !important; }
.ibj-months12 .course-subtitle { color: rgba(255,255,255,.92) !important; }

.faq-q-text { color: var(--text-dark) !important; }
.faq-a p    { color: var(--text-mid)  !important; }

.roadmap-point-label { color: var(--text-mid)  !important; }
.roadmap-point-value { color: var(--text-dark) !important; }
.roadmap-point.highlight .roadmap-point-label { color: var(--gold-dark) !important; }
.roadmap-point.highlight .roadmap-point-value { color: var(--gold-dark) !important; }

/* ━━━ branch-card.good 完全確定（最終） ━━━ */
.branch-card.good                    { background: linear-gradient(135deg, #1e1a14, #2e2418) !important; }
.branch-card.good li                 { color: #fff !important; font-size: .88rem !important; }
.branch-card.good li i               { color: var(--gold-light) !important; }
.branch-card.good .branch-label      { color: var(--gold-light) !important; background: rgba(196,163,90,.18) !important; }
.branch-card.good .branch-result     { color: rgba(255,248,220,.95) !important; background: rgba(196,163,90,.14) !important; border: none !important; }
.branch-card.good .branch-result strong { color: #fff !important; }

/* ━━━ tree-point 完全確定（最終） ━━━ */
.tree-section .tree-point            { background: rgba(255,248,235,.08) !important; border: 1px solid rgba(196,163,90,.32) !important; }
.tree-section .tree-point strong     { color: #fff !important; font-size: .93rem !important; }
.tree-section .tree-point p          { color: rgba(255,248,230,.96) !important; font-size: .85rem !important; line-height: 1.8 !important; }
.tree-section .tree-point-icon       { background: rgba(196,163,90,.3) !important; color: var(--gold-light) !important; }


/* ================================================================
   GOLD QUOTE BAR — 写真帯の代替デザインテキストブロック
   ================================================================ */
.gold-quote-bar {
  background: linear-gradient(135deg, #f8f1e4 0%, #f2e8d0 50%, #f8f1e4 100%);
  border-top: 1px solid rgba(196,163,90,.3);
  border-bottom: 1px solid rgba(196,163,90,.3);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gold-quote-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-quote-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-quote-text {
  font-family: var(--f-serif);
  font-size: clamp(1.15rem, 2.8vw, 1.7rem);
  color: var(--gold-dark);
  letter-spacing: .08em;
  line-height: 1.9;
  margin: 0;
}

/* ================================================================
   BRANCH-CARD.GOOD / TREE-POINT 確定上書き（最優先）
   ================================================================ */
.branch-card.good                    { background: linear-gradient(135deg, #1e1a14, #2e2418) !important; }
.branch-card.good li                 { color: rgba(255,250,235,.97) !important; }
.branch-card.good li i               { color: var(--gold-light) !important; }
.branch-card.good .branch-label      { color: var(--gold-light) !important; }
.branch-card.good .branch-result     { color: var(--gold-light) !important; background: rgba(196,163,90,.18) !important; }

.tree-section .tree-point            { background: rgba(255,248,235,.07) !important; border-color: rgba(196,163,90,.3) !important; }
.tree-section .tree-point strong     { color: #fff !important; }
.tree-section .tree-point p          { color: rgba(255,248,230,.95) !important; }
.tree-section .tree-point-icon       { background: rgba(196,163,90,.28) !important; color: var(--gold-light) !important; }

/* ================================================================
   EMPATHY SECTION — 写真背景 最終確定
   ================================================================ */
/* 元のbase backgroundを上書き */
.empathy-bg {
  background: linear-gradient(135deg, #0e0c0a 0%, #1a1410 50%, #100e0c 100%) !important;
  position: relative !important;
  padding: 120px 0 110px !important;
  overflow: hidden !important;
}
/* ::before に写真を設定（物思いにふける女性/窓/ダーク） */
.empathy-bg::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: url('https://images.pexels.com/photos/7258480/pexels-photo-7258480.jpeg?auto=compress&cs=tinysrgb&w=1920') !important;
  background-size: cover !important;
  background-position: center 25% !important;
  opacity: .38 !important;
  filter: grayscale(15%) !important;
  z-index: 0 !important;
}
/* ::after にグラデーションオーバーレイ */
.empathy-bg::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    160deg,
    rgba(10,6,4,.88) 0%,
    rgba(18,12,8,.72) 40%,
    rgba(22,14,8,.62) 60%,
    rgba(10,6,4,.90) 100%
  ) !important;
  z-index: 1 !important;
}
.empathy-bg > .container { position: relative !important; z-index: 2 !important; }

/* ================================================================
   GOLD QUOTE BAR — 写真帯デザイン（ボケ背景）
   ================================================================ */
.gold-quote-bar {
  background: none !important;
  background-color: #0a0806 !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 260px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.gold-quote-bar::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: url('https://images.pexels.com/photos/754194/pexels-photo-754194.jpeg?auto=compress&cs=tinysrgb&w=1920') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  opacity: .55 !important;
  filter: sepia(30%) saturate(1.4) !important;
  z-index: 0 !important;
}
.gold-quote-bar::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    135deg,
    rgba(8,5,2,.78) 0%,
    rgba(20,14,6,.60) 50%,
    rgba(8,5,2,.78) 100%
  ) !important;
  z-index: 1 !important;
}
.gold-quote-text {
  position: relative !important;
  z-index: 2 !important;
  font-family: var(--f-serif) !important;
  font-size: clamp(1.2rem, 3vw, 1.85rem) !important;
  color: #fff8e6 !important;
  letter-spacing: .1em !important;
  line-height: 1.95 !important;
  text-align: center !important;
  padding: 60px 32px !important;
  text-shadow: 0 2px 20px rgba(196,163,90,.6), 0 4px 40px rgba(0,0,0,.8) !important;
}

/* ================================================================
   見えにくいテキスト項目 — 最終修正
   不安処理・感情の受容 / 自己価値・境界線の構築 etc.
   ================================================================ */
/* branch-card.bad (白背景) */
.branch-card.bad { background: linear-gradient(135deg, #fdf8f2, #f8f2e8) !important; border: 1px solid rgba(150,120,100,.2) !important; }
.branch-card.bad li { color: var(--text-mid) !important; font-size: .87rem !important; }
.branch-card.bad .branch-label { color: var(--text-mid) !important; font-weight: 600 !important; }
.branch-card.bad .branch-result { background: rgba(200,60,60,.08) !important; color: #7a3030 !important; border-radius: var(--r-sm) !important; }

/* branch-card.good (暗背景) — さらに確実に白文字 */
.branch-card.good { background: linear-gradient(135deg, #141008, #241c10) !important; }
.branch-card.good li { color: #fff !important; font-size: .88rem !important; line-height: 1.8 !important; }
.branch-card.good li i { color: #e8c96a !important; }
.branch-card.good .branch-label { color: #e8c96a !important; font-weight: 700 !important; font-size: .78rem !important; }
.branch-card.good .branch-result { color: #f0d890 !important; background: rgba(196,163,90,.22) !important; border: 1px solid rgba(196,163,90,.3) !important; padding: 10px 14px !important; border-radius: 6px !important; font-size: .84rem !important; line-height: 1.75 !important; }
.branch-card.good .branch-arrow-h { color: #e8c96a !important; }

/* 感情・思考・行動 (tree-point) さらに強化 */
.tree-section .tree-desc { color: rgba(255,248,230,.97) !important; font-size: .94rem !important; line-height: 2.05 !important; }
.tree-section .tree-point strong { color: #ffffff !important; font-size: .94rem !important; }
.tree-section .tree-point p { color: rgba(255,248,230,.96) !important; font-size: .84rem !important; line-height: 1.82 !important; }

/* empathy-card テキスト (6カード) */
.empathy-card p { color: rgba(255,252,238,.97) !important; font-size: .92rem !important; }
.empathy-message p { color: rgba(255,250,230,.98) !important; }
.empathy-message strong { color: #f0d890 !important; }

/* ================================================================
   DEFINITION SECTION — 写真パネル削除後の全幅レイアウト
   ================================================================ */
.def-split-container { padding-left: 0 !important; max-width: 900px !important; margin: 0 auto !important; }
.def-text-col { width: 100% !important; padding: 80px 48px !important; text-align: center !important; }
.def-text-col .section-title,
.def-text-col .definition-main { text-align: center !important; }
.def-text-col .def-highlight-box { max-width: 680px; margin-left: auto !important; margin-right: auto !important; }
.def-photo-panel { display: none !important; }

/* ================================================================
   SECTION PHOTO BACKGROUNDS — 各セクション写真背景一括設定
   ================================================================ */

/* ── root-cause（無意識のパターン）── */
.root-cause {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.root-cause::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/9154932/pexels-photo-9154932.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  opacity: .14;
  filter: grayscale(30%);
  z-index: 0;
}
.root-cause::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(253,249,242,.97) 0%,
    rgba(251,246,238,.94) 50%,
    rgba(253,249,242,.97) 100%
  );
  z-index: 1;
}
.root-cause > .container { position: relative; z-index: 2; }
/* root-cause内テキスト色はライトbg上 — 既存色（dark/mid）を維持 */

/* ── self-limit（自己流の限界）── */
.self-limit {
  position: relative;
  overflow: hidden;
}
.self-limit::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/19546295/pexels-photo-19546295.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  opacity: .12;
  filter: grayscale(20%) sepia(15%);
  z-index: 0;
}
.self-limit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250,247,242,.97) 0%,
    rgba(248,244,238,.95) 50%,
    rgba(250,247,242,.97) 100%
  );
  z-index: 1;
}
.self-limit > .container { position: relative; z-index: 2; }

/* ── overview（5つの機能）── */
.overview {
  position: relative;
  overflow: hidden;
}
.overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/6633771/pexels-photo-6633771.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  opacity: .10;
  filter: grayscale(25%) sepia(20%);
  z-index: 0;
}
.overview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(58,46,36,.0) 0%,
    rgba(58,46,36,.0) 100%
  );
  z-index: 1;
}
.overview > .container { position: relative; z-index: 2; }

/* ── roadmap（9ヶ月ロードマップ）── */
.roadmap {
  position: relative !important;
  overflow: hidden !important;
}
.roadmap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/14354487/pexels-photo-14354487.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 50%;
  background-attachment: fixed;
  opacity: .12;
  filter: grayscale(20%) sepia(10%);
  z-index: 0;
}
.roadmap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(253,251,247,.98) 0%,
    rgba(251,248,242,.96) 50%,
    rgba(253,251,247,.98) 100%
  );
  z-index: 1;
}
.roadmap > .container { position: relative; z-index: 2; }

/* ── highspec（ハイスペック戦略）── */
.highspec {
  position: relative;
  overflow: hidden;
}
.highspec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/16106092/pexels-photo-16106092.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  opacity: .13;
  filter: grayscale(15%) sepia(25%);
  z-index: 0;
}
.highspec::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(252,249,244,.97) 0%,
    rgba(250,246,238,.95) 50%,
    rgba(252,249,244,.97) 100%
  );
  z-index: 1;
}
.highspec > .container { position: relative; z-index: 2; }

/* ── five-pillars（5本柱）── */
.five-pillars {
  position: relative;
  overflow: hidden;
}
.five-pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/7256740/pexels-photo-7256740.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
  opacity: .07;
  filter: grayscale(30%) sepia(20%);
  z-index: 0;
}
.five-pillars > .container { position: relative; z-index: 1; }

/* ── branch-limit（テクニックの限界）── */
.branch-limit {
  position: relative;
  overflow: hidden;
}
.branch-limit::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/2488344/pexels-photo-2488344.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  opacity: .08;
  filter: grayscale(40%) sepia(10%);
  z-index: 0;
}
.branch-limit > .container { position: relative; z-index: 2; }

/* ── ibj-section（2つの選択肢）── */
.ibj-section {
  position: relative;
  overflow: hidden;
}
.ibj-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/27171027/pexels-photo-27171027.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  opacity: .10;
  filter: grayscale(25%) sepia(20%);
  z-index: 0;
}
.ibj-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(252,250,246,.97) 0%,
    rgba(250,247,240,.95) 50%,
    rgba(252,250,246,.97) 100%
  );
  z-index: 1;
}
.ibj-section > .container { position: relative; z-index: 2; }

/* ── モバイル：fixed backgroundを解除（パフォーマンス対策）── */
@media (max-width: 768px) {
  .root-cause::before,
  .self-limit::before,
  .overview::before,
  .roadmap::before,
  .highspec::before,
  .five-pillars::before,
  .branch-limit::before,
  .ibj-section::before {
    background-attachment: scroll;
  }
}

/* ================================================================
   SELF-LIMIT MESSAGE — 文字色・背景 最終確定
   ================================================================ */
.self-limit-message {
  background: linear-gradient(135deg, #1e1810 0%, #2e2216 50%, #1e1810 100%) !important;
  border: 1px solid rgba(196,163,90,.35) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,.18), inset 0 1px 0 rgba(196,163,90,.2) !important;
}
.self-limit-message p {
  font-size: clamp(1rem, 2vw, 1.12rem) !important;
  line-height: 2.15 !important;
  color: rgba(255,252,238,1) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.3) !important;
}
.self-limit-message strong {
  color: #f0d060 !important;
  font-weight: 700 !important;
}
