@charset "UTF-8";
/* =========================================
   もふもふ不動産 公式LP
   Theme: ダークネイビー × ゴールド
========================================= */
:root {
  --navy-950: #060b16;
  --navy-900: #080f1e;
  --navy-800: #0b1426;
  --navy-700: #101d33;
  --navy-600: #182a47;
  --gold: #c9a227;
  --gold-light: #e8c55f;
  --gold-pale: #f4e3ae;
  --gold-grad: linear-gradient(135deg, #e8c55f 0%, #c9a227 50%, #a37d1a 100%);
  --gold-text-grad: linear-gradient(120deg, #f4e3ae 0%, #e8c55f 40%, #c9a227 100%);
  --text: #eaedf3;
  --text-dim: #9aa3b5;
  --line: rgba(201, 162, 39, 0.25);
  --line-dim: rgba(201, 162, 39, 0.12);
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --en: "Cormorant Garamond", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.9;
  letter-spacing: 0.03em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.pc-only { display: inline; }

::selection { background: rgba(201, 162, 39, 0.4); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* 金のグラデーション文字 */
.gold-text {
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- ふわっと浮き上がるフェードイン ---------- */
.fade {
  opacity: 0;
  transform: translateY(48px) scale(0.985);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade.is-visible { opacity: 1; transform: none; }
/* カード群は少しずつ遅らせて出す */
.cards .fade:nth-child(2), .channels__grid .fade:nth-child(2) { transition-delay: 0.1s; }
.cards .fade:nth-child(3), .channels__grid .fade:nth-child(3) { transition-delay: 0.2s; }
.cards .fade:nth-child(4), .channels__grid .fade:nth-child(4) { transition-delay: 0.3s; }
.cards .fade:nth-child(5), .channels__grid .fade:nth-child(5) { transition-delay: 0.4s; }
.channels__grid .fade:nth-child(6) { transition-delay: 0.5s; }

/* ---------- ボタン ---------- */
.btn {
  position: relative;
  display: inline-block;
  padding: 17px 44px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.btn--gold {
  background: var(--gold-grad);
  color: var(--navy-900);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
}
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201, 162, 39, 0.55); }
.btn--gold:hover::after { left: 130%; }
.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.btn--outline:hover { background: rgba(201, 162, 39, 0.14); transform: translateY(-2px); }
.btn--small { padding: 10px 28px; font-size: 13px; }
.btn--large { padding: 21px 72px; font-size: 17px; }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled {
  background: rgba(6, 11, 22, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-dim);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo { display: flex; align-items: baseline; gap: 10px; }
.header__logo-en {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.14em;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; white-space: nowrap; }
.nav a:not(.nav__cta) { position: relative; padding: 4px 0; transition: color 0.3s ease; }
.nav a:not(.nav__cta):hover { color: var(--gold-light); }
.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--gold-grad);
  color: var(--navy-900);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 2px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4); }
.nav-toggle { display: none; }

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 24px 110px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(201, 162, 39, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 40% at 12% 85%, rgba(24, 42, 71, 0.85), transparent 70%),
    radial-gradient(ellipse 45% 40% at 88% 80%, rgba(201, 162, 39, 0.05), transparent 70%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-800) 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 100%);
}
.hero__inner { position: relative; max-width: 920px; }
.hero__avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto 28px;
  border-radius: 50%;
  padding: 4px;
  background: var(--gold-grad);
  box-shadow: 0 0 44px rgba(201, 162, 39, 0.35);
  animation: floatY 5.5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 44px rgba(201, 162, 39, 0.35); }
  50% { transform: translateY(-10px); box-shadow: 0 18px 56px rgba(201, 162, 39, 0.45); }
}
/* 背景に漂う光 */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.16;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero__orb--1 { width: 380px; height: 380px; top: 12%; left: -6%; }
.hero__orb--2 { width: 300px; height: 300px; bottom: 8%; right: -4%; animation-duration: 15s; animation-delay: -4s; }
.hero__orb--3 { width: 220px; height: 220px; top: 55%; left: 18%; opacity: 0.1; animation-duration: 10s; animation-delay: -8s; }
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
  100% { transform: translate(-24px, 26px) scale(0.95); }
}
.hero__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--navy-900);
}
.hero__eyebrow {
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "―";
  color: var(--gold);
  margin: 0 14px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(6, 11, 22, 0.6);
}
.hero__lead {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 52px;
}
.hero__lead strong { color: var(--gold-light); font-size: 1.15em; }
.hero__stats {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero__stat {
  padding: 4px 40px;
  border-right: 1px solid var(--line);
}
.hero__stat:last-child { border-right: none; }
.hero__stat em {
  display: block;
  font-family: var(--en);
  font-style: normal;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__stat em small { font-size: 18px; font-family: var(--sans); margin-left: 2px; }
.hero__stat > span { font-size: 12px; color: var(--text-dim); letter-spacing: 0.12em; }
.hero__stat .count {
  font-size: inherit;
  font-family: inherit;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- メディア掲載マーキー ---------- */
.marquee {
  overflow: hidden;
  background: var(--navy-900);
  border-top: 1px solid var(--line-dim);
  padding: 18px 0;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--navy-900), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--navy-900), transparent); }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee__track i {
  font-style: normal;
  font-size: 8px;
  color: var(--gold);
  opacity: 0.6;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 実績バッジ帯 ---------- */
.badges {
  background:
    radial-gradient(ellipse 50% 100% at 50% 0%, rgba(201, 162, 39, 0.06), transparent 70%),
    var(--navy-950);
  border-top: 1px solid var(--line-dim);
  border-bottom: 1px solid var(--line-dim);
  padding: 56px 24px;
}
.badges__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.badge { padding: 0 32px; border-right: 1px solid var(--line-dim); }
.badge:last-child { border-right: none; }
.badge__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 10px;
}
.badge__label::before { content: "◆"; font-size: 8px; vertical-align: 2px; margin-right: 10px; opacity: 0.7; }
.badge__label::after { content: "◆"; font-size: 8px; vertical-align: 2px; margin-left: 10px; opacity: 0.7; }
.badge__value { font-family: var(--serif); font-size: 16px; line-height: 1.75; }
.badge__value strong {
  font-size: 1.3em;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.badge__year { font-family: var(--en); font-size: 14px; color: var(--text-dim); margin-top: 8px; letter-spacing: 0.15em; }

/* ---------- セクション共通 ---------- */
.section { padding: 96px 24px; position: relative; overflow: hidden; }
.section__inner { max-width: 1100px; margin: 0 auto; position: relative; }
/* 背景の大型英字ウォーターマーク */
.section__bg-en {
  position: absolute;
  top: 44px;
  right: -20px;
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(90px, 15vw, 200px);
  letter-spacing: 0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 39, 0.09);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__eyebrow::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--gold);
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 22px;
}
.section__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 2px;
  background: var(--gold-grad);
}
.section__lead { color: var(--text-dim); margin-bottom: 44px; max-width: 720px; }

/* ---------- プロフィール ---------- */
.profile {
  background:
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(24, 42, 71, 0.55), transparent 70%),
    var(--navy-800);
}
.profile__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  margin-top: 48px;
  align-items: start;
}
.profile__photo-frame {
  position: relative;
  border: 1px solid var(--line);
  padding: 12px;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.06), transparent 60%);
}
.profile__photo-frame::before {
  content: "";
  position: absolute;
  top: -10px; left: -10px;
  width: 56px; height: 56px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.profile__photo-frame::after {
  content: "";
  position: absolute;
  bottom: -10px; right: -10px;
  width: 56px; height: 56px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.profile__photo-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.95);
}
.profile__name {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 24px;
  text-align: center;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.profile__name span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
  letter-spacing: 0.12em;
  margin-top: 6px;
}
.profile__body p { margin-bottom: 1.4em; }
.timeline { margin-top: 44px; border-left: 1px solid var(--line); }
.timeline li {
  position: relative;
  padding: 0 0 24px 34px;
  display: flex;
  gap: 20px;
  font-size: 14.5px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -5px; top: 10px;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.6);
}
.timeline time {
  font-family: var(--en);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-light);
  min-width: 56px;
  line-height: 1.65;
  letter-spacing: 0.05em;
}
.timeline div { color: var(--text-dim); }

/* ---------- カード共通 ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  background: linear-gradient(170deg, var(--navy-700) 0%, rgba(16, 29, 51, 0.55) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  padding: 42px 34px;
  box-shadow: 0 12px 32px rgba(6, 11, 22, 0.35);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--gold-grad);
  opacity: 0.35;
  transition: opacity 0.35s ease;
}
.card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 26px 56px rgba(6, 11, 22, 0.6), 0 0 32px rgba(201, 162, 39, 0.08);
}
.card:hover::before { opacity: 1; }
.card__num {
  font-family: var(--en);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.card__num::after {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--line);
  vertical-align: 4px;
  margin-left: 12px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.card p { font-size: 14px; color: var(--text-dim); }
.card__tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--gold-grad);
  padding: 2px 10px;
  border-radius: 2px;
  margin-left: 10px;
  vertical-align: 3px;
  white-space: nowrap;
}

/* ---------- 専門領域 ---------- */
.expertise {
  background:
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(24, 42, 71, 0.5), transparent 70%),
    var(--navy-950);
}

/* ---------- メディア実績 ---------- */
.media { background: var(--navy-800); }
.media__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 48px;
  margin-bottom: 56px;
}
.media__list li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line-dim);
  font-size: 14.5px;
  transition: color 0.3s ease;
}
.media__list li:hover { color: var(--gold-pale); }
.media__list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 24px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.book {
  position: relative;
  display: flex;
  gap: 56px;
  background: linear-gradient(160deg, var(--navy-700), rgba(16, 29, 51, 0.5));
  border: 1px solid var(--line);
  padding: 56px;
  align-items: center;
}
.book::before {
  content: "BOOK";
  position: absolute;
  top: 22px; right: 28px;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.6;
}
.book__cover { flex-shrink: 0; width: 168px; }
.book__cover img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 8px 8px 28px rgba(6, 11, 22, 0.6);
}
.book-placeholder {
  aspect-ratio: 0.7;
  background: linear-gradient(160deg, var(--navy-600), var(--navy-800));
  border: 1px solid var(--line);
  box-shadow: 8px 8px 28px rgba(6, 11, 22, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-dim);
}
.book__label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 10px;
}
.book__body h3 { font-family: var(--serif); font-size: 23px; margin-bottom: 6px; }
.book__pub { font-size: 13px; color: var(--gold-light); margin-bottom: 14px; letter-spacing: 0.08em; }
.book__body > p:not(.book__label):not(.book__pub) { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }

/* ---------- 発信メディア ---------- */
.channels {
  background:
    radial-gradient(ellipse 50% 45% at 100% 0%, rgba(24, 42, 71, 0.5), transparent 70%),
    var(--navy-950);
}
.channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.channel {
  position: relative;
  background: linear-gradient(170deg, var(--navy-700) 0%, rgba(16, 29, 51, 0.55) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  padding: 34px 30px 44px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.channel:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 18px 44px rgba(6, 11, 22, 0.55);
}
.channel h3 {
  font-family: var(--en);
  font-size: 21px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.channel p { font-size: 13.5px; color: var(--text-dim); }
.channel__arrow {
  position: absolute;
  right: 22px; bottom: 18px;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.channel:hover .channel__arrow {
  transform: translateX(4px);
  background: var(--gold-grad);
  color: var(--navy-900);
  border-color: transparent;
}

/* ---------- ニュース ---------- */
.news {
  background:
    radial-gradient(ellipse 50% 45% at 100% 0%, rgba(24, 42, 71, 0.5), transparent 70%),
    var(--navy-950);
}
.news-list-section { background: var(--navy-800); padding-top: 40px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, var(--navy-700) 0%, rgba(16, 29, 51, 0.55) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  box-shadow: 0 12px 32px rgba(6, 11, 22, 0.35);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}
.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 26px 56px rgba(6, 11, 22, 0.6);
}
.news-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-900);
  border-bottom: 1px solid var(--line-dim);
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card__thumb img { transform: scale(1.06); }
.news-card__thumb--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--navy-600), var(--navy-900));
}
.news-card__thumb--ph span {
  font-family: var(--en);
  font-size: 34px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.45;
}
.news-card__body { padding: 22px 24px 26px; }
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.news-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  border: 1px solid var(--line);
  padding: 2px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.news-card__meta time {
  font-family: var(--en);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}
.news-card__title {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__more { margin-top: 44px; }

/* ---------- ニュースのカテゴリフィルタ ---------- */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.news-filter__btn {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-pale);
  background: rgba(201, 162, 39, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-filter__btn:hover { border-color: var(--gold); }
.news-filter__btn.is-active {
  background: var(--gold-grad);
  color: var(--navy-900);
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

/* ---------- 記事ページ ---------- */
.article {
  padding: 170px 24px 110px;
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(201, 162, 39, 0.07), transparent 70%),
    var(--navy-800);
}
.article__inner { max-width: 780px; margin: 0 auto; }
.article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.article__meta time {
  font-family: var(--en);
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}
.article__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 600;
  line-height: 1.6;
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.article__hero {
  margin: 0 0 40px;
  border: 1px solid var(--line-dim);
  background: var(--navy-900);
  overflow: hidden;
}
.article__hero img { width: 100%; max-height: 480px; object-fit: contain; }
.article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.6em;
  font-size: 14px;
}
.article__content th,
.article__content td {
  border: 1px solid var(--line-dim);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.article__content tr:first-child td,
.article__content th {
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-pale);
  white-space: nowrap;
}
.article__content h2 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
  margin: 56px 0 20px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}
.article__content h2:first-child { margin-top: 0; }
.article__content h3 {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold-pale);
  margin: 36px 0 12px;
  padding-left: 14px;
  border-left: 2px solid var(--line);
}
.article__content p { margin: 0 0 1.6em; font-size: 15.5px; line-height: 2; }
.article__content h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--gold-light);
  margin: 30px 0 12px;
}
.article__content ul, .article__content ol { margin: 0 0 1.6em; padding-left: 1.4em; }
.article__content li { margin-bottom: 0.5em; line-height: 1.9; }

/* タイトル直下の署名(byline) */
.article__byline {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 18px 0 26px; text-decoration: none;
}
.article__byline img {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gold); object-fit: cover;
}
.article__byline-body { display: flex; flex-direction: column; gap: 2px; }
.article__byline-name { font-size: 0.85rem; color: var(--text); font-weight: 500; }
.article__byline-cred { font-size: 0.75rem; color: var(--text-dim); }
.article__byline:hover .article__byline-name { color: var(--gold-light); }
.article__content a {
  color: var(--gold-light);
  border-bottom: 1px solid var(--line);
  transition: opacity 0.3s ease;
}
.article__content a:hover { opacity: 0.7; }
.article__content img {
  margin: 10px 0 18px;
  border: 1px solid var(--line-dim);
  background: var(--navy-900);
}
.article__figure { margin: 10px 0 28px; }
.article__figure img {
  max-width: 100%;
  width: 100%;
  border: 1px solid var(--line-dim);
  background: #fff;
}

/* ---------- 画像のクリック拡大(ライトボックス) ---------- */
.is-zoomable { cursor: zoom-in; transition: opacity 0.3s ease; }
.is-zoomable:hover { opacity: 0.92; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 8, 16, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(94vw, 1400px);
  max-height: 90vh;
  width: auto;
  height: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--line-dim);
  background: #fff;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(6, 11, 22, 0.6);
  color: var(--gold-light);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lightbox__close:hover { background: rgba(201, 162, 39, 0.2); }
.article__figure figcaption {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
}
.article__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 10px 0 28px;
}
.article__gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0;
  border: 1px solid var(--line-dim);
  background: var(--navy-900);
}
.yt-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 10px 0 28px;
  border: 1px solid var(--line-dim);
  background: var(--navy-900);
  overflow: hidden;
  cursor: pointer;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border: 0;
  transition: transform 0.4s ease;
}
.yt-facade:hover img { transform: scale(1.04); }
.yt-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(6, 11, 22, 0.55);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.yt-facade__play::before {
  content: '';
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 5px;
}
.yt-facade:hover .yt-facade__play {
  background: rgba(201, 162, 39, 0.85);
  transform: translate(-50%, -50%) scale(1.06);
}
.yt-facade:hover .yt-facade__play::before { border-color: transparent transparent transparent var(--navy-900); }
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article__content ul, .article__content ol { margin: 0 0 1.3em 1.4em; }
.article__content li { margin-bottom: 0.4em; font-size: 15px; }
.article__nav {
  display: flex;
  gap: 20px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line-dim);
  flex-wrap: wrap;
}
.page-hero.page-hero--compact { padding: 180px 24px 24px; }
.page-hero.page-hero--compact .hero__lead { margin-bottom: 0; }

/* メディア実績リストのリンク化 */
.media__list li { padding: 0; }
.media__list li a {
  display: block;
  padding: 13px 28px 13px 30px;
  position: relative;
  transition: color 0.3s ease;
}
.media__list li a::after {
  content: "→";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.media__list li a:hover { color: var(--gold-pale); }
.media__list li a:hover::after { opacity: 1; transform: translate(4px, -50%); }

/* ---------- LINE公式 ---------- */
.line-section {
  background:
    radial-gradient(ellipse 50% 45% at 0% 0%, rgba(6, 199, 85, 0.06), transparent 70%),
    var(--navy-800);
}
.line-books {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
/* 電子書籍プレゼント: 「本の表紙」風カード */
.line-book {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  aspect-ratio: 3 / 3.9;
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  padding: 34px 22px 20px;
  background:
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(201, 162, 39, 0.12), transparent 70%),
    linear-gradient(160deg, var(--navy-600) 0%, var(--navy-800) 90%);
  border: 1px solid var(--line);
  box-shadow: 10px 12px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.line-book::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--line-dim);
  pointer-events: none;
}
.line-book:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: var(--gold);
  box-shadow: 14px 18px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 162, 39, 0.1);
}
.line-book__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 16px;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
  white-space: nowrap;
  z-index: 1;
}
.line-book__num {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 14px;
}
.line-book h3 {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.7;
  margin: auto 0;
}
.line-book__desc {
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 14px 0 16px;
}
.line-book__get {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  border-top: 1px solid var(--line-dim);
  padding-top: 12px;
}
.line-banner {
  display: block;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(6, 11, 22, 0.5);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.line-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(6, 11, 22, 0.65), 0 0 32px rgba(6, 199, 85, 0.12);
}
.line-banner img { width: 100%; display: block; }
.line-cta { margin-top: 40px; text-align: center; }
.btn--line {
  background: linear-gradient(135deg, #08d95d 0%, #06c755 50%, #05a648 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.35);
  padding: 20px 64px;
  font-size: 16px;
}
.btn--line::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn--line:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(6, 199, 85, 0.5); }
.btn--line:hover::after { left: 130%; }
.line-note {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 20px;
}

/* ---------- メンバーシップ ---------- */
.membership {
  background:
    radial-gradient(ellipse 55% 50% at 100% 100%, rgba(201, 162, 39, 0.07), transparent 70%),
    var(--navy-900);
}
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, var(--navy-700) 0%, rgba(16, 29, 51, 0.55) 100%);
  border: 1px solid rgba(201, 162, 39, 0.18);
  padding: 44px 38px;
  box-shadow: 0 12px 32px rgba(6, 11, 22, 0.35);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.plan:hover { transform: translateY(-8px); box-shadow: 0 26px 56px rgba(6, 11, 22, 0.6); }
.plan--featured {
  border: 1px solid rgba(201, 162, 39, 0.55);
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201, 162, 39, 0.1), transparent 70%),
    linear-gradient(170deg, var(--navy-600) 0%, var(--navy-700) 100%);
}
.plan__badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--gold-grad);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 18px;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
}
.plan__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.plan__price {
  font-family: var(--en);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan__price small {
  font-family: var(--sans);
  font-size: 13px;
  -webkit-text-fill-color: var(--text-dim);
  margin-right: 10px;
  letter-spacing: 0.1em;
}
.plan__desc { font-size: 14px; color: var(--text-dim); margin-bottom: 20px; }
.plan__features { border-top: 1px solid var(--line-dim); padding-top: 20px; margin-bottom: 8px; flex-grow: 1; }
.plan__features li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 14px;
  color: var(--text);
}
.plan__features li::before {
  content: "◆";
  position: absolute;
  left: 2px;
  top: 7px;
  font-size: 9px;
  color: var(--gold);
}
.plan .btn { margin-top: 24px; width: 100%; text-align: center; }
.plans__note {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 24px;
  max-width: 900px;
  line-height: 1.8;
}
.membership__cta {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ---------- メンバーシップ詳細ページ ---------- */
.page-hero {
  position: relative;
  padding: 200px 24px 120px;
  text-align: center;
  overflow: hidden;
}
.page-hero .hero__bg { position: absolute; inset: 0; z-index: -1; }
.page-hero__inner { position: relative; max-width: 860px; margin: 0 auto; }
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 26px;
}
.plans-section { background: var(--navy-800); }
.plans--large { max-width: none; }
.contents-section {
  background:
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(24, 42, 71, 0.5), transparent 70%),
    var(--navy-950);
}
.steps-section { background: var(--navy-800); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  background: linear-gradient(170deg, var(--navy-700) 0%, rgba(16, 29, 51, 0.55) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(6, 11, 22, 0.35);
}
.step__num {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--navy-900);
  font-family: var(--en);
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}
.step h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 13.5px; color: var(--text-dim); }
.steps__note { margin-top: 28px; }
.steps__note p { font-size: 12.5px; color: var(--text-dim); }
.text-link { color: var(--gold-light); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: opacity 0.3s ease; }
.text-link:hover { opacity: 0.7; }

/* ---------- 中間CTA帯 ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 55% 120% at 50% 0%, rgba(201, 162, 39, 0.1), transparent 70%),
    var(--navy-900);
  border-top: 1px solid var(--line-dim);
  border-bottom: 1px solid var(--line-dim);
  padding: 64px 24px;
}
.cta-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__en {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 8px;
}
.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
}

/* ---------- モバイル追従CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 16px; right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 90;
  display: none;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy-900);
  background: var(--gold-grad);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(6, 11, 22, 0.6), 0 4px 16px rgba(201, 162, 39, 0.4);
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.is-shown { transform: translateY(0); }

/* ---------- お仕事のご依頼 ---------- */
.services { background: var(--navy-800); }
.cards--services { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards--services .card h3 { color: var(--gold-pale); }

/* ---------- お問い合わせ ---------- */
.contact {
  position: relative;
  padding: 110px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(201, 162, 39, 0.15), transparent 70%),
    var(--navy-950);
  border-top: 1px solid var(--line-dim);
}
.contact .section__eyebrow { justify-content: center; }
.contact .section__eyebrow::before { display: none; }
.contact .section__title { padding-bottom: 0; }
.contact .section__title::after { display: none; }
.contact__inner {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 29, 51, 0.55), rgba(8, 15, 30, 0.3));
  padding: 72px 48px;
  position: relative;
}
.contact__inner::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px solid var(--line-dim);
  pointer-events: none;
}
.contact__lead { color: var(--text-dim); margin: 20px 0 44px; }
.contact__note { font-size: 12.5px; color: var(--text-dim); margin-top: 26px; }

/* ---------- フッター ---------- */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line-dim);
  padding: 60px 24px 44px;
  text-align: center;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.2em;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.footer__sns { display: flex; justify-content: center; gap: 30px; margin: 30px 0; font-size: 13px; }
.footer__sns a { color: var(--text-dim); transition: color 0.3s ease; letter-spacing: 0.08em; }
.footer__sns a:hover { color: var(--gold-light); }
.footer__copy { font-size: 12px; color: var(--text-dim); }

/* =========================================
   レスポンシブ
========================================= */
@media (max-width: 900px) {
  .profile__grid { grid-template-columns: 1fr; gap: 48px; }
  .profile__photo { max-width: 300px; margin: 0 auto; }
  .badges__inner { grid-template-columns: 1fr; gap: 32px; }
  .badge { border-right: none; padding: 0; }
  .badge + .badge { border-top: 1px solid var(--line-dim); padding-top: 32px; }
  .channels__grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .line-books { grid-template-columns: 1fr; }
}

/* ナビ → ハンバーガー(TOPは8項目あり、これ以下の幅ではフルナビが収まらない) */
@media (max-width: 1080px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(6, 11, 22, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    font-size: 16px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid var(--line);
  }
  .nav.is-open { transform: translateX(0); }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
    padding: 6px;
  }
  .nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--gold-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .pc-only { display: none; }
  .hero__title br { display: none; }
  .section { padding: 64px 20px; }
  .section__bg-en { font-size: 88px; top: 28px; }
  .sticky-cta { display: block; }
  .cta-band { padding: 48px 20px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band .btn { width: 100%; }
  .marquee__track span { font-size: 12px; }

  .hero { padding: 96px 20px 60px; min-height: auto; }
  .hero__avatar { width: 88px; height: 88px; margin-bottom: 22px; }
  .hero__eyebrow { margin-bottom: 18px; font-size: 12px; }
  .hero__title { margin-bottom: 18px; }
  .hero__lead { font-size: 14px; margin-bottom: 30px; }
  .hero__scroll { display: none; }
  .hero__stats { margin-bottom: 34px; }
  .hero__stat { padding: 4px 16px; width: 50%; }
  .hero__stat:nth-child(2) { border-right: none; }
  .hero__stat em { font-size: 34px; }
  .hero__cta .btn { width: 100%; }

  .media__list { grid-template-columns: 1fr; margin-bottom: 56px; }
  .plans { grid-template-columns: 1fr; gap: 32px; }
  .btn--line { width: 100%; padding: 18px 24px; }
  .membership__cta .btn { width: 100%; text-align: center; }
  .steps { grid-template-columns: 1fr; }
  .page-hero { padding: 140px 20px 80px; }
  .page-hero.page-hero--compact { padding: 130px 20px 16px; }
  .section.news-list-section { padding-top: 32px; }
  .news-grid { grid-template-columns: 1fr; }
  .news__more .btn { width: 100%; text-align: center; }
  .article { padding: 120px 20px 80px; }
  .article__nav .btn { width: 100%; text-align: center; }
  .book { flex-direction: column; padding: 40px 24px; gap: 32px; text-align: center; }
  .book::before { right: 20px; top: 16px; }
  .channels__grid { grid-template-columns: 1fr; }
  .timeline li { flex-direction: column; gap: 2px; padding-left: 28px; }
  .contact { padding: 72px 20px; }
  .contact__inner { padding: 48px 24px; }
  .btn--large { padding: 18px 40px; font-size: 15px; width: 100%; }
  .footer { padding-bottom: 96px; } /* 追従CTAと重ならないように */
}

/* =========================================
   コンサルティング
========================================= */
.consulting {
  background:
    radial-gradient(ellipse 55% 50% at 0% 0%, rgba(201, 162, 39, 0.07), transparent 70%),
    var(--navy-950);
}
/* 対象/形式/費用の3ポイント */
.consult-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 760px;
  margin-bottom: 36px;
}
.consult-points--hero { margin: 0 auto 44px; }
.consult-point {
  background: linear-gradient(170deg, var(--navy-700) 0%, rgba(16, 29, 51, 0.55) 100%);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-top: 2px solid var(--gold);
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(6, 11, 22, 0.35);
}
.consult-point__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 6px;
}
.consult-point__value {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}
/* 領域チップ */
.consult-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.consult-tags li {
  font-size: 13px;
  color: var(--gold-pale);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 20px;
  background: rgba(201, 162, 39, 0.05);
}
/* こんな課題に(チェックリスト) */
.issues-section { background: var(--navy-800); }
.checklist { max-width: 820px; }
.checklist li {
  position: relative;
  padding: 16px 0 16px 44px;
  border-bottom: 1px solid var(--line-dim);
  font-size: 15px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 14px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
}
.issues-note {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold-pale);
}
/* 相談できる領域 */
.fields-section {
  background:
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(24, 42, 71, 0.5), transparent 70%),
    var(--navy-950);
}
.fields-note { margin-top: 32px; font-size: 13.5px; color: var(--text-dim); }
/* 実績サマリ */
.record-section { background: var(--navy-800); }
.hero__stats--left { justify-content: flex-start; margin: 12px 0 40px; }
.hero__stats--left .hero__stat { padding-left: 0; padding-right: 48px; }
.hero__stats--left .hero__stat + .hero__stat { padding-left: 48px; }
/* ご契約について */
.terms-section {
  background:
    radial-gradient(ellipse 50% 45% at 50% 0%, rgba(201, 162, 39, 0.06), transparent 70%),
    var(--navy-950);
}
.plan--single { max-width: 560px; }
/* サービスカード内リンク */
.card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}
.card__link:hover { opacity: 0.7; }
/* card__linkを持つカードは全面クリック可能に(ストレッチリンク) */
.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* ---------- 5つの専門領域 回遊セクション ---------- */
.explore {
  background: var(--navy-950);
  border-top: 1px solid var(--line-dim);
  padding: 56px 24px;
}
.explore__inner { max-width: 1100px; margin: 0 auto; }
.explore__title {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 28px;
}
.explore__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.explore__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.explore__tile {
  position: relative;
  display: block;
  background: linear-gradient(170deg, var(--navy-700) 0%, rgba(16, 29, 51, 0.55) 100%);
  border: 1px solid var(--line-dim);
  padding: 20px 18px 34px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.explore__tile::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--gold-grad);
  opacity: 0.3;
  transition: opacity 0.35s ease;
}
.explore__tile::after {
  content: "→";
  position: absolute;
  right: 16px;
  bottom: 10px;
  color: var(--gold);
  font-size: 14px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.explore__tile:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(6, 11, 22, 0.55);
}
.explore__tile:hover::before { opacity: 1; }
.explore__tile:hover::after { opacity: 1; transform: translateX(0); }
.explore__tile.is-current {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  pointer-events: none;
}
.explore__tile.is-current::before { opacity: 1; }
.explore__tile.is-current::after {
  content: "CURRENT";
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.25em;
  opacity: 0.9;
  transform: none;
}
.explore__num {
  display: block;
  font-family: var(--en);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.explore__name { display: block; font-size: 13px; font-weight: 500; line-height: 1.5; }

@media (max-width: 900px) {
  .explore__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .consult-points { grid-template-columns: 1fr; gap: 12px; }
  .consult-point { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
  .consult-point__label { margin-bottom: 0; }
  .hero__stats--left .hero__stat { padding: 4px 16px; width: 50%; }
  .hero__stats--left .hero__stat + .hero__stat { padding-left: 16px; }
  .checklist li { font-size: 14px; }
}

/* =========================================
   専門領域 詳細ページ
========================================= */
.feats-section { background: var(--navy-800); }
.feat {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-top: 1px solid var(--line-dim);
}
.feat:last-child { border-bottom: 1px solid var(--line-dim); }
.feat__company {
  font-family: var(--en);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feat__company span {
  font-family: var(--sans);
  font-size: 12px;
  -webkit-text-fill-color: var(--text-dim);
  margin-left: 6px;
}
.feat__period {
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin: 4px 0 12px;
}
.feat__role { font-size: 12.5px; color: var(--text-dim); line-height: 1.7; }
.feat__body h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 14px;
}
.feat__body p { color: var(--text); font-size: 15px; margin-bottom: 18px; }
.feat__body strong { color: var(--gold-pale); }
.feat__list { margin-bottom: 18px; }
.feat__list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px solid var(--line-dim);
}
.feat__list li::before {
  content: "◆";
  position: absolute;
  left: 2px;
  top: 10px;
  font-size: 9px;
  color: var(--gold);
}
/* 実績ブロックの引用画像(白の額装カード) */
.feat--withfig { grid-template-columns: 220px 1fr 280px; }
.feat__fig { align-self: start; }
.feat__fig-frame {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  box-shadow: 0 12px 32px rgba(6, 11, 22, 0.35);
}
/* 書影・製品などの「モノ」画像は額装なしの素のせ+影(資料系のみ白額装を使う) */
.feat__fig--book .feat__fig-frame {
  background: none;
  border: none;
  padding: 0;
  min-height: 0;
  box-shadow: none;
}
.feat__fig--book img {
  max-width: 210px;
  margin: 0 auto;
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 2px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.4);
}
.feat__fig-frame img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
}
.feat__fig figcaption {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.6;
}
/* ストーリー本文 */
.story { max-width: 780px; }
.story p { font-size: 15.5px; margin-bottom: 1.4em; }
.story strong { color: var(--gold-pale); }
/* ケーススタディ(課題/やったこと/結果) */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.case-item {
  background: linear-gradient(170deg, var(--navy-700) 0%, rgba(16, 29, 51, 0.55) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-top: 2px solid var(--gold);
  padding: 28px 26px;
  box-shadow: 0 12px 32px rgba(6, 11, 22, 0.35);
}
.case-item__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 10px;
}
.case-item p:last-child { font-size: 14px; color: var(--text); }
.case-item strong { color: var(--gold-pale); }
/* ビフォーアフター・単独図版 */
.re-fig { max-width: 720px; margin-top: 8px; }
.re-fig .feat__fig-frame img { max-height: 420px; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
}
/* 写真ストリップ(高さを揃え、幅は写真の縦横比なりに。縦横混在の写真ギャラリー用) */
.photo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}
.photo-strip figure { flex: 0 0 auto; margin: 0; max-width: 100%; }
.photo-strip .feat__fig-frame { min-height: 0; padding: 12px; }
.photo-strip .feat__fig-frame img { height: 300px; max-height: none; width: auto; }
/* キャプションはfigureの幅決定に寄与させず、写真の幅で折り返す */
.photo-strip figcaption { width: 0; min-width: 100%; font-size: 11.5px; color: var(--text-dim); margin-top: 10px; line-height: 1.6; }
.feat__fig-frame--label { position: relative; }
.feat__fig-frame--label::before {
  content: attr(data-label);
  position: absolute;
  top: -1px; left: -1px;
  background: var(--gold-grad);
  color: var(--navy-900);
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 4px 16px;
}

/* 特許カード */
.patent-section {
  background:
    radial-gradient(ellipse 50% 45% at 100% 0%, rgba(24, 42, 71, 0.5), transparent 70%),
    var(--navy-950);
}
.patent {
  max-width: 760px;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--navy-700) 0%, rgba(16, 29, 51, 0.55) 100%);
  padding: 40px 44px;
  box-shadow: 0 12px 32px rgba(6, 11, 22, 0.35);
  position: relative;
}
.patent::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px solid var(--line-dim);
  pointer-events: none;
}
.patent__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 10px;
}
.patent__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.patent__data { margin-bottom: 22px; }
.patent__data div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dim);
  font-size: 14px;
}
.patent__data dt { color: var(--gold-light); }
.patent__data dd { color: var(--text); }
.now-section { background: var(--navy-800); }

@media (max-width: 640px) {
  .feat, .feat--withfig { grid-template-columns: 1fr; gap: 18px; padding: 32px 0; }
  .feat__fig { max-width: 340px; }
  .case-grid { grid-template-columns: 1fr; gap: 14px; }
  .ba-grid { grid-template-columns: 1fr; }
  .photo-strip { gap: 20px; }
  .photo-strip .feat__fig-frame img { height: 220px; }
  .patent { padding: 28px 22px; }
  .patent__data div { grid-template-columns: 1fr; gap: 2px; }
  .patent__data dt { font-size: 12px; }
}

/* ---------- モーション低減設定への配慮 ---------- */
@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
  .hero__avatar, .hero__orb, .marquee__track, .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================
   投資講座 (/invest/ と旧ブログ記事)
========================================= */
.invest-list { padding: 140px 0 80px; }
.invest-list .section__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.invest-breadcrumb { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 12px; }
.invest-breadcrumb a { color: var(--gold-light); }
.invest-lead { color: var(--text-dim); max-width: 640px; margin: 0 auto 48px; text-align: center; }
.invest-tracks {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-bottom: 64px;
}
.invest-track {
  border: 1px solid var(--line); border-radius: 10px; padding: 28px 24px;
  background: var(--navy-700); transition: border-color 0.3s, transform 0.3s;
}
.invest-track:hover { border-color: var(--gold); transform: translateY(-4px); }
.invest-track__name { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-pale); }
.invest-track__count { font-size: 0.82rem; color: var(--text-dim); margin-top: 6px; }
.invest-level {
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold-pale);
  margin: 48px 0 20px; padding-left: 14px; border-left: 3px solid var(--gold);
}
.invest-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.invest-card {
  border: 1px solid var(--line-dim); border-radius: 10px; overflow: hidden;
  background: var(--navy-700); transition: border-color 0.3s, transform 0.3s;
}
.invest-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.invest-card__thumb { aspect-ratio: 16 / 9; background: var(--navy-600); overflow: hidden; }
.invest-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.invest-card:hover .invest-card__thumb img { transform: scale(1.06); }
.invest-card__body { padding: 18px 20px 22px; }
.invest-card__cat { font-size: 0.75rem; color: var(--gold-light); margin-bottom: 8px; }
.invest-card__level {
  margin-left: 8px; padding: 1px 8px; border: 1px solid var(--line);
  border-radius: 20px; font-size: 0.7rem; color: var(--text-dim);
}
.invest-card__title { font-size: 0.95rem; font-weight: 500; line-height: 1.6; }
/* 全13回ロードマップ(不動産投資講座の冒頭・build_invest.pyが生成) */
.roadmap {
  margin: 8px 0 56px; padding: 36px 32px;
  background: var(--navy-700); border: 1px solid var(--line); border-radius: 12px;
}
.roadmap__heading {
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold-pale); margin-bottom: 10px;
}
.roadmap__heading span {
  display: inline-block; margin-left: 12px; padding: 2px 12px;
  border: 1px solid var(--line); border-radius: 20px;
  font-family: var(--sans); font-size: 0.75rem; color: var(--gold-light); vertical-align: middle;
}
.roadmap__lead { font-size: 0.875rem; color: var(--text-dim); margin-bottom: 22px; }
.roadmap__list { list-style: none; counter-reset: none; }
.roadmap__list li + li { border-top: 1px solid var(--line-dim); }
.roadmap__list a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 8px; text-decoration: none; transition: background 0.2s;
}
.roadmap__list a:hover { background: rgba(201, 162, 39, 0.06); }
.roadmap__num {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold-grad); color: var(--navy-950);
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.roadmap__title { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.roadmap__list a:hover .roadmap__title { color: var(--gold-light); }
.roadmap__level {
  flex-shrink: 0; margin-left: auto; padding: 1px 10px;
  border: 1px solid var(--line); border-radius: 20px;
  font-size: 0.7rem; color: var(--text-dim);
}
@media (max-width: 600px) {
  .roadmap { padding: 26px 18px; }
  .roadmap__level { display: none; }
}

/* 書籍紹介カード(invest記事内) */
.book-box {
  display: flex; gap: 20px; align-items: center;
  margin: 24px 0 28px; padding: 20px 24px;
  background: var(--navy-700); border: 1px solid var(--line-dim); border-radius: 10px;
}
.book-box__img { flex-shrink: 0; }
.book-box__img img { width: 96px; height: auto; border: 1px solid var(--line-dim); background: #fff; }
.book-box__title { font-size: 0.95rem; font-weight: 500; line-height: 1.7; margin-bottom: 10px; }
.book-box__links { display: flex; gap: 10px; flex-wrap: wrap; }
.book-box__links a {
  padding: 4px 16px; border: 1px solid var(--line); border-radius: 20px;
  font-size: 0.8rem; color: var(--gold-light); text-decoration: none;
}
.book-box__links a:hover { background: rgba(201, 162, 39, 0.1); }
@media (max-width: 600px) {
  .book-box { flex-direction: column; text-align: center; }
}

/* この記事を書いた人(invest記事共通・build_invest.pyが挿入) */
.author-box {
  position: relative;
  display: flex; gap: 24px; align-items: center;
  margin: 64px 0 8px; padding: 34px 28px 28px;
  background: var(--navy-700); border: 1px solid var(--line); border-radius: 12px;
}
.author-box__photo { flex-shrink: 0; }
.author-box__photo img {
  width: 96px; height: 96px; border-radius: 50%;
  border: 2px solid var(--gold); object-fit: cover;
}
.author-box__label {
  position: absolute; top: -13px; left: 24px;
  padding: 3px 16px; background: var(--navy-950);
  border: 1px solid var(--gold); border-radius: 20px;
  font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold-light);
}
.author-box__name { font-family: var(--serif); font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }
.author-box__name span { font-size: 0.85rem; color: var(--text-dim); }
.author-box__text { font-size: 0.875rem; line-height: 1.9; color: var(--text-dim); margin-bottom: 10px; }
.author-box__link { font-size: 0.8rem; color: var(--gold-light); text-decoration: none; }
.author-box__link:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; padding: 24px 18px; }
}

/* タイトル直下に置く場合のコンパクト版(本文の読み始めを圧迫しないよう一回り小さく) */
.author-box--top {
  margin: 26px 0 40px; padding: 26px 24px 22px;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
}
.author-box--top .author-box__photo img { width: 76px; height: 76px; }
.author-box--top .author-box__name { font-size: 1.05rem; margin-bottom: 6px; }
.author-box--top .author-box__text { font-size: 0.8rem; line-height: 1.8; margin-bottom: 8px; }
@media (max-width: 600px) {
  .author-box--top { padding: 22px 16px 18px; }
}

.invest-cta {
  margin: 64px auto 0; max-width: 720px; text-align: center;
  border: 1px solid var(--line); border-radius: 12px; padding: 40px 32px;
  background: var(--navy-700);
}
.invest-cta__title { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-pale); margin-bottom: 12px; }
.invest-cta__text { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 24px; }
.invest-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 記事本文内の移植パーツ */
.article-toc {
  border: 1px solid var(--line-dim); border-radius: 10px;
  padding: 24px 28px; margin: 32px 0; background: var(--navy-700);
}
.article-toc__title { font-family: var(--serif); color: var(--gold-pale); margin-bottom: 10px; }
.article-toc ul { list-style: none; }
.article-toc ul ul { padding-left: 1.2em; }
.article-toc a { color: var(--text-dim); font-size: 0.9rem; }
.article-toc a:hover { color: var(--gold-light); }
.voice-box { display: flex; gap: 16px; align-items: flex-start; margin: 28px 0; }
.voice-box__icon { flex: 0 0 64px; text-align: center; }
.voice-box__icon img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line); }
.voice-box__icon figcaption { font-size: 0.7rem; color: var(--text-dim); margin-top: 4px; }
.voice-box__comment {
  position: relative; background: var(--navy-700); border: 1px solid var(--line-dim);
  border-radius: 10px; padding: 14px 18px; font-size: 0.92rem;
}
/* アフィリエイト・PR表記(景表法ステマ規制対応。広告を含む記事の冒頭に置く) */
.pr-note {
  display: inline-block;
  font-size: 12px;
  color: var(--text-dim);
  border: 1px solid var(--line-dim);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.article-box {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 20px 26px; margin: 32px 0; background: var(--navy-700);
}
.article-box__title { font-weight: 700; color: var(--gold-light); margin-bottom: 8px; font-size: 0.9rem; }
.article-box ul { list-style: none; }
.article-box a { color: var(--gold-pale); border-bottom: 1px solid var(--line); }
.yt-link {
  display: inline-block; padding: 10px 22px; border: 1px solid var(--line);
  border-radius: 30px; color: var(--gold-light); font-size: 0.9rem;
}
.yt-link:hover { border-color: var(--gold); }
@media (max-width: 640px) {
  .invest-list { padding: 110px 0 60px; }
  .invest-cta__buttons { flex-direction: column; align-items: center; }
}

/* =========================================
   運営者情報・プライバシーポリシー(.legal)
========================================= */
.legal { max-width: 820px; margin: 0 auto; }
.legal p, .legal li { color: var(--text-dim); font-size: 0.95rem; }
.legal p { margin-bottom: 16px; }
.legal h2 {
  font-family: var(--serif); font-size: 1.25rem; color: var(--gold-pale);
  margin: 44px 0 14px; padding-left: 14px; border-left: 3px solid var(--gold);
}
.legal .text-link { color: var(--gold-light); }
.legal__table div {
  display: grid; grid-template-columns: 170px 1fr; gap: 6px 28px;
  padding: 20px 4px; border-bottom: 1px solid var(--line-dim);
}
.legal__table div:first-child { border-top: 1px solid var(--line-dim); }
.legal__table dt { color: var(--gold-light); font-size: 0.88rem; letter-spacing: 0.06em; padding-top: 2px; }
.legal__table dd { color: var(--text); font-size: 0.95rem; }
.legal__note { font-size: 0.85rem; color: var(--text-dim); }
.legal__links { margin-top: 28px; }
.legal__date { margin-top: 48px; text-align: right; font-size: 0.85rem; opacity: 0.85; }
@media (max-width: 640px) {
  .legal__table div { grid-template-columns: 1fr; gap: 2px; padding: 16px 2px; }
}

/* フッターの規約リンク */
.footer__links { display: flex; justify-content: center; gap: 24px; margin-bottom: 22px; font-size: 12px; }
.footer__links a { color: var(--text-dim); opacity: 0.85; transition: color 0.3s ease; }
.footer__links a:hover { color: var(--gold-light); }

/* =========================================
   よくある質問(.faq)
========================================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line-dim); border-radius: 10px;
  background: var(--navy-700); margin-bottom: 14px;
  transition: border-color 0.3s ease;
}
.faq details[open] { border-color: var(--line); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 18px 52px 18px 22px; font-weight: 700; font-size: 0.98rem; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q."; color: var(--gold-light); font-family: var(--en); margin-right: 10px; }
.faq summary::after {
  content: "＋"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-weight: 400;
}
.faq details[open] summary::after { content: "－"; }
.faq .faq__a { padding: 0 22px 20px 22px; color: var(--text-dim); font-size: 0.93rem; }
