/* ============================================================
   中国政経塾 — メインスタイルシート
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink:        #1a1a18;
  --ink-mid:    #3d3d38;
  --ink-light:  #7a7a72;
  --cream:      #f5f2ea;
  --cream-dark: #ece8dc;
  --gold:       #b8962e;
  --gold-light: #d4b050;
  --red:        #c0392b;
  --white:      #ffffff;
  --border:     rgba(26,26,24,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }

/* ── PROGRESS BAR ── */
#progressBar {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gold);
  z-index: 9999; width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(245,242,234,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 0.5px solid transparent;
  transition: background 0.5s, border-color 0.5s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(245,242,234,0.93);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--white);
  transition: color 0.5s;
}
nav.scrolled .nav-logo { color: var(--ink); }
.nav-logo span { color: #e8604a; }
nav.scrolled .nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.8); transition: color 0.2s;
}
nav.scrolled .nav-links a { color: var(--ink-mid); }
.nav-links a:hover { color: var(--gold) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; width: 100%; height: 100vh;
  min-height: 600px; overflow: hidden;
  display: flex; align-items: center;
}
.hero-video-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1c2a3a 0%, #0e1520 50%, #1a1008 100%);
  z-index: 0;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(10,10,8,0.78) 0%, rgba(10,10,8,0.32) 65%, rgba(10,10,8,0.10) 100%),
    linear-gradient(to top,   rgba(10,10,8,0.65) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 72px; max-width: 780px;
}

/* eyebrow */
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.32em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 28px;
  min-height: 1.4em;
  display: flex; align-items: center; gap: 14px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 36px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

/* メインタイトル（タイプライター） */
.hero-site-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 80px; font-weight: 300;
  line-height: 1; letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
  min-height: 1.1em;
}

/* タグライン（タイプライター） */
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; font-style: italic;
  color: var(--gold-light);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  min-height: 1.5em;
}

/* 肩書き */
.hero-title {
  font-size: 12px; color: rgba(255,255,255,0.6);
  line-height: 2.3; letter-spacing: 0.07em;
  border-left: 2px solid var(--gold); padding-left: 18px;
  margin-bottom: 52px; opacity: 0;
}

/* CTA */
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--white); padding: 14px 30px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer; opacity: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.hero-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold); color: var(--gold);
}

/* タイプライターカーソル */
.cursor {
  display: inline-block; width: 3px; height: 0.82em;
  background: var(--gold); vertical-align: middle;
  margin-left: 2px;
  animation: cursorBlink 0.85s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; } 50% { opacity: 0; }
}

/* スクロールヒント */
.hero-scroll {
  position: absolute; bottom: 36px; left: 72px;
  display: flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,0.3);
  font-size: 9px; letter-spacing: 0.25em; z-index: 3;
  opacity: 0;
  animation: fadeUp 0.7s ease 3.8s forwards;
}
.hero-scroll::before {
  content: '';
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.65); opacity: 0.4; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink); padding: 13px 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerRoll 36s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 52px; font-size: 11px; letter-spacing: 0.14em;
  color: rgba(245,242,234,0.55);
}
.ticker-item .tag {
  font-size: 9px; letter-spacing: 0.2em; color: var(--gold);
  border: 1px solid rgba(184,150,46,0.4); padding: 2px 8px; flex-shrink: 0;
}
@keyframes tickerRoll {
  0% { transform: translateX(0); } 100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  background: var(--white);
  border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; gap: 48px;
  padding: 48px 64px; cursor: pointer;
  transition: background 0.3s, padding-left 0.4s ease;
}
.about-strip:hover { background: #faf8f2; padding-left: 80px; }
.about-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--cream-dark); border: 1px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif; font-size: 28px; color: var(--ink-mid);
}
.about-text { flex: 1; }
.about-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 400; margin-bottom: 7px;
}
.about-desc { font-size: 13px; color: var(--ink-light); line-height: 1.95; }
.about-more {
  font-size: 11px; letter-spacing: 0.16em; color: var(--gold);
  flex-shrink: 0; display: flex; align-items: center; gap: 8px;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 96px 64px; }
.section-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 56px; padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border);
}
.section-label {
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--red); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px; font-weight: 300; letter-spacing: -0.01em; line-height: 1.3;
}
.section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300;
  color: var(--cream-dark); line-height: 1; letter-spacing: -0.04em;
}
.see-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; color: var(--ink-mid);
  margin-top: 32px; border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.see-all:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   REPORTS
   ============================================================ */
.reports-section { background: var(--cream); }
.reports-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 1px; background: var(--border); border: 0.5px solid var(--border);
}
.report-card {
  background: var(--white); padding: 36px;
  cursor: pointer; transition: background 0.25s;
}
.report-card:hover { background: #fdf9f0; }
.report-card.featured {
  background: var(--ink); padding: 44px;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 380px; position: relative; overflow: hidden;
}
.report-card.featured::before {
  content: '中'; position: absolute; top: -30px; right: -15px;
  font-family: 'Noto Serif JP', serif;
  font-size: 260px; font-weight: 700;
  color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none;
}
.report-card.featured:hover { background: #22221e; }
.report-tag {
  display: inline-block; font-size: 9px; letter-spacing: 0.18em;
  padding: 4px 10px; background: rgba(184,150,46,0.12); color: var(--gold);
  margin-bottom: 18px;
}
.report-tag.hot { background: var(--red); color: #fff; }
.report-date { font-size: 11px; letter-spacing: 0.1em; color: var(--ink-light); margin-bottom: 12px; }
.report-card.featured .report-date { color: rgba(245,242,234,0.4); }
.report-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px; font-weight: 400; line-height: 1.75; color: var(--ink); margin-bottom: 14px;
}
.report-card.featured .report-title { font-size: 22px; color: var(--cream); }
.report-excerpt { font-size: 12px; color: var(--ink-light); line-height: 1.95; }

/* ============================================================
   YOUTUBE
   ============================================================ */
.youtube-section { background: var(--ink); }
.youtube-section .section-label { color: var(--gold-light); }
.youtube-section .section-title { color: var(--cream); }
.youtube-section .section-num { color: rgba(255,255,255,0.05); }
.youtube-section .section-head { border-bottom-color: rgba(255,255,255,0.08); }
.yt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.yt-card { cursor: pointer; }
.yt-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.yt-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.7; transition: opacity 0.3s;
}
.yt-card:hover .yt-thumb { border-color: rgba(184,150,46,0.5); }
.yt-card:hover .yt-thumb img { opacity: 0.5; }
.yt-play-btn {
  position: relative; z-index: 1;
  width: 52px; height: 52px;
  border: 1.5px solid rgba(255,255,255,0.45); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.yt-card:hover .yt-play-btn { border-color: var(--gold); background: rgba(184,150,46,0.15); }
.yt-play-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.8); margin-left: 3px; }
.yt-card:hover .yt-play-btn svg { fill: var(--gold); }
.yt-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; font-weight: 400; color: var(--cream); line-height: 1.85; margin-bottom: 10px;
}
.yt-meta { font-size: 11px; color: rgba(245,242,234,0.35); letter-spacing: 0.08em; }
.yt-see-all { color: rgba(245,242,234,0.4); border-color: rgba(245,242,234,0.15); }
.yt-see-all:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   SEMINAR
   ============================================================ */
.seminar-section { background: var(--cream-dark); }
.seminar-card {
  background: var(--white); border: 0.5px solid var(--border);
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  padding: 40px 48px; margin-bottom: 16px; cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}
.seminar-card:hover { box-shadow: 4px 4px 0 var(--gold-light); transform: translate(-2px,-2px); }
.seminar-card.ended { opacity: 0.55; cursor: default; }
.seminar-card.ended:hover { box-shadow: none; transform: none; }
.seminar-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 9px; letter-spacing: 0.18em;
  padding: 5px 12px; margin-bottom: 14px; font-weight: 500;
}
.seminar-badge.live { background: var(--red); color: #fff; }
.seminar-badge.live::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #fff;
  animation: livePulse 1.5s ease infinite;
}
.seminar-badge.ended-badge { background: #d0cfc6; color: #888; }
@keyframes livePulse {
  0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.35; transform:scale(.65); }
}
.seminar-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px; font-weight: 400; line-height: 1.65; margin-bottom: 14px;
}
.seminar-meta { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; color: var(--ink-light); }
.seminar-meta span { display: flex; align-items: center; gap: 6px; }
.apply-btn {
  background: var(--ink); color: var(--cream);
  border: none; padding: 16px 36px;
  font-size: 11px; letter-spacing: 0.18em;
  font-family: inherit; cursor: pointer;
  transition: background 0.3s; white-space: nowrap;
}
.apply-btn:hover { background: var(--red); }
.apply-btn:disabled { background: #ccc; color: #888; cursor: not-allowed; }

/* ============================================================
   MEDIA
   ============================================================ */
.media-section { background: var(--white); }
.media-list { list-style: none; }
.media-item {
  display: flex; align-items: center; gap: 36px;
  padding: 26px 0; border-bottom: 0.5px solid var(--border);
  cursor: pointer; transition: padding-left 0.3s;
}
.media-item:hover { padding-left: 14px; }
.media-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 300; color: var(--ink-light);
  min-width: 64px; letter-spacing: 0.06em;
}
.media-outlet {
  font-size: 9px; letter-spacing: 0.2em; color: var(--gold);
  min-width: 100px; font-weight: 500; text-transform: uppercase;
}
.media-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 400; line-height: 1.65; flex: 1; color: var(--ink);
}
.media-arrow {
  color: var(--ink-light); font-size: 18px; flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.media-item:hover .media-arrow { transform: translateX(4px); color: var(--gold); }

/* ============================================================
   BOOKS
   ============================================================ */
.books-section { background: var(--cream); }
.books-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.book-card { cursor: pointer; }
.book-cover {
  width: 100%; aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; position: relative; overflow: hidden;
  margin-bottom: 18px; transition: transform 0.35s;
}
.book-card:hover .book-cover { transform: translateY(-6px); }
.book-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cover-1 { background: #1e2d40; }
.cover-2 { background: #2d1e1e; }
.cover-3 { background: #1e2d22; }
.cover-4 { background: #2d2a1a; }
.book-deco {
  position: absolute; top: 12px; right: 12px;
  font-family: 'Noto Serif JP', serif;
  font-size: 56px; font-weight: 700; color: rgba(255,255,255,0.06);
  line-height: 1; pointer-events: none;
}
.book-line { width: 24px; height: 1px; background: rgba(184,150,46,0.5); margin-bottom: 10px; position: relative; z-index: 1; }
.book-cover-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.7; position: relative; z-index: 1;
}
.book-title-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px; font-weight: 400; line-height: 1.75; margin-bottom: 6px; color: var(--ink);
}
.book-pub { font-size: 11px; color: var(--ink-light); margin-bottom: 12px; }
.amazon-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.14em; color: var(--gold);
  border-bottom: 1px solid rgba(184,150,46,0.25); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.amazon-link:hover { border-color: var(--gold); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-section .section-label { color: var(--gold-light); }
.contact-section .section-title { color: var(--cream); }
.contact-section .section-num { color: rgba(255,255,255,0.04); }
.contact-section .section-head { border-bottom-color: rgba(255,255,255,0.08); }
.contact-lead { font-size: 13px; color: rgba(245,242,234,0.5); line-height: 2.2; margin-top: 20px; }
.cf7-form { display: flex; flex-direction: column; gap: 18px; padding-top: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 10px; letter-spacing: 0.2em; color: rgba(245,242,234,0.4); text-transform: uppercase; }
.form-input,
.form-textarea,
.form-select {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.14);
  color: var(--cream); padding: 12px 16px; font-size: 13px;
  font-family: inherit; outline: none; border-radius: 0; -webkit-appearance: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(184,150,46,0.55); background: rgba(255,255,255,0.07);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(245,242,234,0.22); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select option { background: var(--ink); color: var(--cream); }
.form-submit {
  background: var(--gold); color: var(--ink);
  border: none; padding: 16px 40px;
  font-size: 11px; letter-spacing: 0.22em;
  font-family: inherit; cursor: pointer; font-weight: 500;
  transition: background 0.3s; align-self: flex-start; margin-top: 4px;
}
.form-submit:hover { background: var(--gold-light); }

/* セミナーモーダル内フォーム */
.seminar-modal-form .form-input,
.seminar-modal-form .form-select {
  background: #f0ede5; border-color: var(--border); color: var(--ink);
}
.seminar-modal-form .form-input:focus,
.seminar-modal-form .form-select:focus { border-color: var(--gold); background: #fff; }
.sm-submit { background: var(--ink) !important; color: var(--cream) !important; }
.sm-submit:hover { background: var(--red) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #111110; padding: 44px 64px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 0.5px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; letter-spacing: 0.06em; color: rgba(245,242,234,0.5);
}
.footer-logo span { color: var(--red); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 10px; letter-spacing: 0.12em; color: rgba(245,242,234,0.3); transition: color 0.2s; }
.footer-links a:hover { color: rgba(245,242,234,0.7); }
.footer-copy { font-size: 10px; color: rgba(245,242,234,0.2); letter-spacing: 0.06em; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(15,15,12,0.85); z-index: 2000;
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--cream); max-width: 740px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  padding: 56px 60px; position: relative;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 22px;
  cursor: pointer; color: var(--ink-light); line-height: 1; transition: color 0.2s;
}
.modal-close:hover { color: var(--ink); }
.modal-name { font-family: 'Noto Serif JP', serif; font-size: 40px; font-weight: 300; margin-bottom: 4px; }
.modal-sub {
  font-size: 13px; color: var(--ink-light); letter-spacing: 0.08em;
  padding-bottom: 32px; margin-bottom: 32px; border-bottom: 0.5px solid var(--border);
}
.modal-body { font-size: 14px; line-height: 2.1; color: var(--ink-mid); }
.modal-body p + p { margin-top: 18px; }
.modal-note {
  margin-top: 32px; padding: 24px 28px; background: var(--cream-dark);
  font-size: 13px; line-height: 2; color: var(--ink-light);
}
.modal-note strong {
  display: block; margin-bottom: 6px;
  font-size: 13px; font-weight: 500; color: var(--ink-mid); letter-spacing: 0.06em;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .hero-content { padding: 0 48px; }
  .hero-site-title { font-size: 60px; }
  section { padding: 72px 32px; }
  .about-strip { padding: 36px 32px; }
  .reports-grid { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: 1fr 1fr; }
  .books-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 36px 32px; }
}
@media (max-width: 680px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px; }
  .hero-site-title { font-size: 44px; }
  .hero-tagline { font-size: 18px; }
  section { padding: 56px 20px; }
  .about-strip { padding: 28px 20px; gap: 20px; }
  .about-avatar { width: 60px; height: 60px; font-size: 22px; }
  .yt-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr 1fr; }
  .seminar-card { grid-template-columns: 1fr; gap: 20px; }
  .media-item { gap: 16px; }
  .media-outlet { min-width: 60px; font-size: 8px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; }
  .modal-box { padding: 36px 24px; }
}

/* ============================================================
   ARCHIVE & SINGLE 共通
   ============================================================ */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 64px 96px;
}
.page-wrap-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 64px 96px;
}
.archive-head {
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border);
}
.archive-head .section-label { margin-bottom: 10px; }
.archive-head .section-title { font-family: 'Noto Serif JP', serif; font-size: 40px; font-weight: 300; }
.archive-head .archive-count { font-size: 12px; color: var(--ink-light); margin-top: 10px; letter-spacing: 0.08em; }

/* ── 記事グリッド ── */
.archive-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  margin-bottom: 48px;
}
.archive-grid.col2 { grid-template-columns: 1fr 1fr; }
.archive-grid.col3 { grid-template-columns: repeat(3, 1fr); }
.archive-grid.col4 { grid-template-columns: repeat(4, 1fr); }
.archive-list { list-style: none; margin-bottom: 48px; }

/* ── ページネーション ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-size: 13px;
  border: 0.5px solid var(--border);
  color: var(--ink-mid);
  transition: all 0.2s;
}
.pagination a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pagination .current { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ── シングル記事 ── */
.single-head { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 0.5px solid var(--border); }
.single-tag { display: inline-block; font-size: 9px; letter-spacing: 0.18em; padding: 4px 10px; background: rgba(184,150,46,0.12); color: var(--gold); margin-bottom: 16px; }
.single-title { font-family: 'Noto Serif JP', serif; font-size: 32px; font-weight: 300; line-height: 1.6; margin-bottom: 16px; }
.single-meta { display: flex; gap: 24px; font-size: 12px; color: var(--ink-light); letter-spacing: 0.08em; flex-wrap: wrap; }
.single-eyecatch { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 40px; display: block; }
.single-body { font-size: 15px; line-height: 2.1; color: var(--ink-mid); }
.single-body p { margin-bottom: 1.6em; }
.single-body h2 { font-family: 'Noto Serif JP', serif; font-size: 22px; font-weight: 400; margin: 2em 0 0.8em; padding-left: 16px; border-left: 3px solid var(--gold); }
.single-body h3 { font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 400; margin: 1.6em 0 0.6em; }
.single-body a { color: var(--gold); border-bottom: 1px solid rgba(184,150,46,0.3); }
.single-back { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.14em; color: var(--ink-mid); margin-top: 48px; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.single-back:hover { color: var(--gold); border-color: var(--gold); }

/* ── REPORT カード ── */
.r-card { background: var(--white); padding: 32px; cursor: pointer; transition: background 0.2s; }
.r-card:hover { background: #fdf9f0; }
.r-card .report-tag { margin-bottom: 12px; }
.r-card .report-date { font-size: 11px; color: var(--ink-light); letter-spacing: 0.08em; margin-bottom: 10px; }
.r-card .report-title { font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--ink); margin-bottom: 10px; }
.r-card .report-excerpt { font-size: 12px; color: var(--ink-light); line-height: 1.9; }
.r-card-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; margin-bottom: 18px; }

/* ── SEMINAR カード ── */
.s-card { background: var(--white); padding: 36px 40px; cursor: pointer; transition: background 0.2s, box-shadow 0.2s, transform 0.2s; }
.s-card:hover { background: #fdf9f0; box-shadow: 4px 4px 0 var(--gold-light); transform: translate(-2px,-2px); }
.s-card.ended { opacity: 0.55; cursor: default; }
.s-card.ended:hover { box-shadow: none; transform: none; background: var(--white); }
.s-card-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.s-card-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; margin-bottom: 20px; }

/* ── MEDIA 一覧行 ── */
.m-item { display: flex; align-items: center; gap: 32px; padding: 24px 0; border-bottom: 0.5px solid var(--border); cursor: pointer; transition: padding-left 0.3s; }
.m-item:hover { padding-left: 12px; }
.m-item-thumb { width: 100px; height: 66px; object-fit: cover; flex-shrink: 0; }
.m-item-thumb-ph { width: 100px; height: 66px; background: var(--cream-dark); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--ink-light); }
.m-item-date { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--ink-light); min-width: 60px; }
.m-item-outlet { font-size: 9px; letter-spacing: 0.18em; color: var(--gold); min-width: 90px; text-transform: uppercase; }
.m-item-type { font-size: 9px; padding: 2px 8px; border: 0.5px solid var(--border); color: var(--ink-light); letter-spacing: 0.1em; white-space: nowrap; }
.m-item-title { font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 400; line-height: 1.6; flex: 1; color: var(--ink); }
.m-item-arrow { color: var(--ink-light); font-size: 16px; flex-shrink: 0; transition: transform 0.2s, color 0.2s; }
.m-item:hover .m-item-arrow { transform: translateX(4px); color: var(--gold); }

/* シングル: メディア */
.single-media-info { background: var(--cream-dark); padding: 24px 28px; margin-bottom: 32px; display: flex; gap: 32px; flex-wrap: wrap; }
.single-media-info dl { display: flex; flex-direction: column; gap: 4px; }
.single-media-info dt { font-size: 10px; letter-spacing: 0.15em; color: var(--ink-light); }
.single-media-info dd { font-size: 14px; color: var(--ink); font-weight: 400; }
.media-ext-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.14em; color: var(--white); background: var(--ink); padding: 12px 24px; margin-top: 24px; transition: background 0.3s; }
.media-ext-link:hover { background: var(--gold); color: var(--ink); }

/* ── BOOK カード ── */
.b-card { cursor: pointer; }
.b-card .book-cover { width: 100%; aspect-ratio: 3/4; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; position: relative; overflow: hidden; margin-bottom: 16px; transition: transform 0.3s; }
.b-card:hover .book-cover { transform: translateY(-5px); }
.b-card .book-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.b-card-title { font-family: 'Noto Serif JP', serif; font-size: 14px; font-weight: 400; line-height: 1.7; margin-bottom: 6px; color: var(--ink); }
.b-card-pub { font-size: 11px; color: var(--ink-light); margin-bottom: 10px; }

/* シングル: 書籍 */
.single-book-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; margin-bottom: 40px; }
.single-book-cover { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; box-shadow: 4px 6px 24px rgba(0,0,0,0.15); }
.single-book-cover-ph { width: 100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; }
.single-book-info { display: flex; flex-direction: column; gap: 12px; }
.single-book-info dl { display: grid; grid-template-columns: 80px 1fr; gap: 8px; align-items: baseline; }
.single-book-info dt { font-size: 10px; letter-spacing: 0.15em; color: var(--ink-light); text-transform: uppercase; }
.single-book-info dd { font-size: 14px; color: var(--ink); }

@media (max-width: 1024px) {
  .page-wrap, .page-wrap-narrow { padding: 100px 32px 72px; }
  .archive-grid.col3 { grid-template-columns: 1fr 1fr; }
  .archive-grid.col4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .page-wrap, .page-wrap-narrow { padding: 88px 20px 56px; }
  .archive-grid.col2, .archive-grid.col3, .archive-grid.col4 { grid-template-columns: 1fr; }
  .s-card-inner { grid-template-columns: 1fr; }
  .single-book-wrap { grid-template-columns: 1fr; }
  .m-item { gap: 16px; }
  .m-item-thumb, .m-item-thumb-ph { width: 72px; height: 48px; }
  .m-item-outlet { min-width: 60px; }
  .single-title { font-size: 24px; }
}

/* ============================================================
   TOP メディアセクション — PC: 媒体名|カテゴリ|日付|タイトル|→
   ============================================================ */
.top-media-list { list-style: none; }

/* PC レイアウト */
.top-media-item {
  display: grid;
  grid-template-columns: 130px 80px 100px 1fr 28px;
  align-items: center;
  gap: 0 20px;
  padding: 22px 0;
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
  transition: padding-left 0.3s;
}
.top-media-item:hover { padding-left: 10px; }

.top-media-outlet {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-media-type {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  border: 0.5px solid var(--border);
  padding: 3px 6px;
  text-align: center;
  white-space: nowrap;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-media-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.top-media-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-media-item:hover .top-media-title { color: var(--gold); }
.top-media-item:hover .media-arrow { transform: translateX(4px); color: var(--gold); }

/* 書籍カード — 画像外テキストなし版 */
.book-card { cursor: pointer; }
.book-card .book-cover {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.book-card:hover .book-cover { transform: translateY(-5px); }
.book-card .amazon-link { display: inline-flex; align-items: center; gap: 6px; }

/* SP: 媒体名 + カテゴリバッジ を上段、タイトルを下段の2行レイアウト */
@media (max-width: 768px) {
  .top-media-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 6px 12px;
    padding: 18px 0;
    padding-left: 0 !important;
  }
  /* 上段左: 媒体名 */
  .top-media-outlet {
    grid-column: 1;
    grid-row: 1;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  /* 上段左に日付を媒体名の後ろに inline で表示 */
  .top-media-date {
    display: inline;
    font-size: 11px;
    color: var(--ink-light);
    margin-left: 8px;
  }
  /* 上段右: カテゴリバッジ */
  .top-media-type {
    grid-column: 2;
    grid-row: 1;
    font-size: 9px;
    padding: 2px 6px;
  }
  /* 下段: タイトル（2行まで表示） */
  .top-media-title {
    grid-column: 1 / 3;
    grid-row: 2;
    font-size: 13px;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.6;
  }
  /* 矢印は非表示（タップ領域が広いので不要） */
  .media-arrow { display: none; }
}



/* ============================================================
   モーダル フェードイン
   ============================================================ */
.modal-overlay.active .modal-box {
  animation: modalSlideIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* モーダル内テキストをフェードで順番に出す */
.modal-name {
  opacity: 0;
  animation: modalTextFade 0.5s ease 0.15s forwards;
}
.modal-sub {
  opacity: 0;
  animation: modalTextFade 0.5s ease 0.25s forwards;
}
.modal-body {
  opacity: 0;
  animation: modalTextFade 0.6s ease 0.38s forwards;
}
@keyframes modalTextFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* モーダルが閉じているときはアニメーションをリセット */
.modal-overlay:not(.active) .modal-name,
.modal-overlay:not(.active) .modal-sub,
.modal-overlay:not(.active) .modal-body {
  opacity: 0;
  animation: none;
}

/* ============================================================
   YouTube モーダルプレイヤー
   ============================================================ */
#ytModal .yt-modal-box {
  background: #0e0e0e;
  width: 90%;
  max-width: 900px;
  padding: 0;
  border-radius: 0;
  animation: modalSlideIn 0.35s cubic-bezier(0.16,1,0.3,1);
}
.yt-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  background: #0e0e0e;
}
.yt-modal-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  flex: 1;
}
.yt-modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.yt-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   YouTube カルーセル
   PC: 3枚表示 / SP: 1枚表示 / 自動ループ
   ============================================================ */
.yt-carousel-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
}
.yt-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.yt-slide {
  flex: 0 0 calc((100% - 56px) / 3); /* PC: 3枚 */
  min-width: 0;
}
.yt-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.yt-nav-btn {
  width: 40px; height: 40px;
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.yt-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.yt-dots { display: flex; gap: 8px; }
.yt-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.yt-dot.active { background: var(--gold); transform: scale(1.3); }

@media (max-width: 680px) {
  .yt-slide {
    flex: 0 0 100%; /* SP: 1枚 */
  }
  .yt-carousel-track { gap: 0; }
}

/* ============================================================
   セミナー情報テーブル
   ============================================================ */
.seminar-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
  font-size: 14px;
}
.seminar-info-table th,
.seminar-info-table td {
  padding: 14px 16px;
  border-bottom: 0.5px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}
.seminar-info-table th {
  width: 160px;
  color: var(--ink-light);
  font-weight: 400;
  font-size: 13px;
  white-space: nowrap;
  background: var(--cream-dark);
}
.seminar-info-table td { color: var(--ink); }

/* ============================================================
   書籍詳細 — 書影を切り取らず全表示
   ============================================================ */
.single-book-cover-wrap {
  width: 240px;
  flex-shrink: 0;
}
.single-book-cover-img {
  width: 100%;
  height: auto;           /* 縦横比を保持 */
  object-fit: contain;    /* 切り取らずに収める */
  display: block;
  box-shadow: 4px 6px 24px rgba(0,0,0,0.15);
  background: #f0ede5;    /* 余白部分の背景 */
}

/* 書籍情報テーブル */
.book-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 13px;
}
.book-info-table th,
.book-info-table td {
  padding: 10px 12px;
  border-bottom: 0.5px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.book-info-table th {
  width: 80px;
  color: var(--ink-light);
  font-weight: 400;
  white-space: nowrap;
}
.book-info-table td { color: var(--ink); }

@media (max-width: 680px) {
  .single-book-cover-wrap { width: 100%; max-width: 240px; margin: 0 auto 32px; }
}

/* ============================================================
   Contact Form 7 カスタムスタイル
   ============================================================ */
.cf7-form-wrap { display: flex; flex-direction: column; gap: 28px; }
.cf7-field-group { display: flex; flex-direction: column; gap: 8px; }
.cf7-label { font-size: 13px; font-weight: 500; color: var(--ink-mid); letter-spacing: 0.06em; display: flex; align-items: center; gap: 8px; }
.cf7-required { font-size: 10px; letter-spacing: 0.12em; color: var(--white); background: var(--red); padding: 2px 7px; font-weight: 400; }
.cf7-checkboxes .wpcf7-list-item { display: block; margin: 0 0 10px 0; }
.cf7-checkboxes .wpcf7-list-item label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); cursor: pointer; }
.cf7-checkboxes input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.cf7-form-wrap input[type="text"],
.cf7-form-wrap input[type="email"],
.cf7-form-wrap input[type="tel"],
.cf7-form-wrap textarea {
  width: 100%; background: var(--white); border: 0.5px solid var(--border);
  color: var(--ink); padding: 14px 18px; font-size: 14px; font-family: inherit;
  outline: none; border-radius: 0; -webkit-appearance: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cf7-form-wrap input[type="text"]:focus,
.cf7-form-wrap input[type="email"]:focus,
.cf7-form-wrap input[type="tel"]:focus,
.cf7-form-wrap textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,46,0.12); }
.cf7-form-wrap textarea { min-height: 160px; resize: vertical; }
.cf7-privacy-group { background: var(--cream-dark); padding: 24px 28px; gap: 16px; }
.cf7-privacy-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.06em; }
.cf7-privacy-body { font-size: 12px; color: var(--ink-light); line-height: 1.9; }
.cf7-checkbox-single { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); cursor: pointer; font-weight: 500; }
.cf7-checkbox-single input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.cf7-submit-wrap { display: flex; justify-content: flex-start; }
.cf7-form-wrap input[type="submit"], .cf7-form-wrap .wpcf7-submit {
  background: var(--ink); color: var(--cream); border: none;
  padding: 16px 48px; font-size: 13px; letter-spacing: 0.2em;
  font-family: inherit; cursor: pointer; font-weight: 500;
  transition: background 0.3s; border-radius: 0;
}
.cf7-form-wrap input[type="submit"]:hover, .cf7-form-wrap .wpcf7-submit:hover { background: var(--gold); color: var(--ink); }
.cf7-form-wrap .wpcf7-not-valid-tip { font-size: 12px; color: var(--red); margin-top: 4px; letter-spacing: 0.04em; }
.cf7-form-wrap .wpcf7-not-valid { border-color: var(--red) !important; }
.wpcf7-response-output { font-size: 13px; padding: 14px 20px !important; border-radius: 0 !important; margin: 16px 0 0 !important; letter-spacing: 0.04em; }
/* ダーク背景（TOPのContactセクション）用 */
.contact-section .cf7-label { color: rgba(245,242,234,0.7); }
.contact-section .cf7-form-wrap input[type="text"],
.contact-section .cf7-form-wrap input[type="email"],
.contact-section .cf7-form-wrap input[type="tel"],
.contact-section .cf7-form-wrap textarea { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: var(--cream); }
.contact-section .cf7-form-wrap input::placeholder,
.contact-section .cf7-form-wrap textarea::placeholder { color: rgba(245,242,234,0.25); }
.contact-section .cf7-privacy-group { background: rgba(255,255,255,0.05); }
.contact-section .cf7-privacy-title { color: var(--cream); }
.contact-section .cf7-privacy-body { color: rgba(245,242,234,0.5); }
.contact-section .cf7-checkbox-single { color: var(--cream); }
.contact-section .cf7-checkboxes .wpcf7-list-item label { color: rgba(245,242,234,0.85); }

/* ============================================================
   Contact Form 7 ダーク背景対応 追加修正
   ============================================================ */

/* チェックボックスのラベルテキスト */
.contact-section .wpcf7-list-item-label,
.contact-section .wpcf7-list-item label,
.contact-section .wpcf7-list-item span {
  color: rgba(245,242,234,0.85) !important;
  font-size: 14px;
}

/* お問い合わせ種別のチェックボックスグループ全体 */
.contact-section .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}
.contact-section .wpcf7-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* 同意チェックボックス */
.contact-section .wpcf7-acceptance .wpcf7-list-item-label {
  color: rgba(245,242,234,0.85) !important;
}
.contact-section .wpcf7-acceptance input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
}

/* プライバシーポリシーボックス */
.contact-section .cf7-privacy-group {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  padding: 20px 24px;
}
.contact-section .cf7-privacy-title {
  color: var(--cream) !important;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.contact-section .cf7-privacy-body {
  color: rgba(245,242,234,0.55) !important;
  font-size: 12px;
  line-height: 1.9;
}

/* フォームラベル（必須バッジ含む） */
.contact-section .cf7-label {
  color: rgba(245,242,234,0.65) !important;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 入力フィールド */
.contact-section .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]) {
  background: rgba(255,255,255,0.07) !important;
  border: 0.5px solid rgba(255,255,255,0.18) !important;
  color: var(--cream) !important;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
}
.contact-section .wpcf7-form-control:focus {
  border-color: rgba(184,150,46,0.6) !important;
  background: rgba(255,255,255,0.1) !important;
}
.contact-section .wpcf7-form-control::placeholder {
  color: rgba(245,242,234,0.25) !important;
}
.contact-section textarea.wpcf7-form-control {
  min-height: 150px;
  resize: vertical;
}

/* 送信ボタン */
.contact-section .wpcf7-submit {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border: none;
  padding: 15px 44px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.3s;
  margin-top: 8px;
}
.contact-section .wpcf7-submit:hover {
  background: var(--gold-light) !important;
}

/* エラーメッセージ */
.contact-section .wpcf7-not-valid-tip {
  color: #ff8080 !important;
  font-size: 12px;
  margin-top: 4px;
}
.contact-section .wpcf7-response-output {
  border-color: rgba(255,255,255,0.2) !important;
  color: rgba(245,242,234,0.7) !important;
  background: rgba(255,255,255,0.05);
  padding: 14px 20px !important;
  margin-top: 16px !important;
  font-size: 13px;
}

/* ============================================================
   CF7 チェックボックス ラベル強制表示（ダーク背景対応）
   ============================================================ */

/* CF7が出力する全パターンのラベルを白系に強制 */
.contact-section .wpcf7 span,
.contact-section .wpcf7 label,
.contact-section .wpcf7 .wpcf7-list-item,
.contact-section .wpcf7 .wpcf7-list-item label,
.contact-section .wpcf7 .wpcf7-list-item-label {
  color: rgba(245,242,234,0.88) !important;
  font-size: 14px !important;
  font-family: 'Noto Sans JP', sans-serif !important;
}

/* チェックボックス本体とラベルの横並び */
.contact-section .wpcf7-checkbox .wpcf7-list-item,
.contact-section .wpcf7-acceptance .wpcf7-list-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
}

.contact-section .wpcf7-checkbox input[type="checkbox"],
.contact-section .wpcf7-acceptance input[type="checkbox"] {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  accent-color: var(--gold) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

/* ============================================================
   CF7 チェックボックス上下の余分な背景を除去
   ============================================================ */
.contact-section .wpcf7-form-controls-wrap,
.contact-section .wpcf7-checkbox,
.contact-section span.wpcf7-checkbox,
.contact-section .wpcf7-form-control-wrap {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

/* チェックボックスグループ全体の余白リセット */
.contact-section .wpcf7-list-item {
  margin-left: 0 !important;
  background: transparent !important;
}
