/*
  笹本和也 WRITING & WEB STUDIO — 共通スタイルシート
  デザイン仕様 04_デザイン仕様.md（ゲートC確定）に準拠
  --------------------------------------------------------
  配色：生成り#f5f1e8 / 深緑#2d4a3e / ゴールド#b08948 / インク#1f2a24 / 罫線#d4caaf
  フォント：Shippori Mincho（見出し）/ Zen Kaku Gothic New（本文）
*/

/* ══════════════════════════════════════════════
   CSS カスタムプロパティ
══════════════════════════════════════════════ */
:root {
  /* カラー */
  --bg:          #f5f1e8;
  --bg-alt:      #ebe4d3;
  --ink:         #1f2a24;
  --ink-soft:    #4a5550;
  --accent:      #2d4a3e;
  --accent-light: #5a7a6a;
  --gold:        #b08948;
  --line:        #d4caaf;
  --white:       #fbf8f0;

  /* リニューアル追加 */
  --table-head-bg:   var(--accent);
  --table-head-text: var(--white);
  --table-our-bg:    rgba(45,74,62,0.06);
  --table-our-border: var(--accent);
  --campaign-bg:     var(--accent);
  --campaign-text:   var(--white);
  --campaign-em:     var(--gold);
  --plan-border:     var(--accent);
  --plan-top-bar:    linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  --tag-bg:          var(--bg-alt);
  --tag-text:        var(--accent);

  /* フォント */
  --serif: 'Shippori Mincho', 'Yu Mincho', 'YuMincho', serif;
  --sans:  'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;

  /* タイポグラフィスケール */
  --fs-hero:    clamp(32px, 6vw, 60px);
  --fs-h1-page: clamp(26px, 4vw, 40px);
  --fs-h2:      clamp(24px, 4vw, 36px);
  --fs-h3:      clamp(18px, 2.5vw, 24px);
  --fs-h4:      17px;
  --fs-body:    18px;
  --fs-body-sm: 17px;
  --fs-small:   15px;
  --fs-label:   13px;

  /* 行間 */
  --lh-heading: 1.75;
  --lh-body:    1.95;
  --lh-loose:   2.1;

  /* 余白スケール */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   28px;
  --space-lg:   48px;
  --space-xl:   64px;
  --space-2xl:  96px;
  --section-pad:    90px;
  --section-pad-sp: 64px;

  /* レイアウト */
  --container:   1100px;
  --narrow:      780px;
  --content-pad: 32px;
  --content-pad-sp: 20px;

  /* 角丸 */
  --radius-sm: 2px;
  --radius-md: 4px;

  /* 影 */
  --shadow-sm: 0 4px 12px rgba(31,42,36,0.06);
  --shadow-md: 0 12px 28px rgba(31,42,36,0.08);
  --shadow-lg: 0 20px 40px rgba(31,42,36,0.10);

  /* アニメーション */
  --transition: 0.3s ease;
}

/* ══════════════════════════════════════════════
   リセット・ベース
══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* 紙のテクスチャノイズ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: multiply;
}

/* ══════════════════════════════════════════════
   レイアウト
══════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}
.narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

/* ══════════════════════════════════════════════
   グローバルナビ（ヘッダー）
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid rgba(45, 74, 62, 0.08);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--content-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: block;
}
.logo span {
  font-size: 13px;
  color: var(--ink-soft);
  margin-left: 8px;
  letter-spacing: 0.2em;
  font-family: var(--sans);
  font-weight: 400;
}
.site-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
/* 現在ページのアクティブ表示 */
.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--ink) !important; }
.nav-cta[aria-current="page"] {
  border-bottom: none !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--accent);
  line-height: 1;
  padding: 4px;
}

/* 旧式ナビでプロフィール項目はデスクトップ時は非表示（SP表示ルールが後勝ちになるよう前に置く） */
.nav-profile-old-sp { display: none; }

@media (max-width: 768px) {
  .site-nav ul {
    display: none;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: rgba(245, 241, 232, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 24px 32px 32px;
    border-bottom: 1px solid rgba(45, 74, 62, 0.08);
    box-shadow: 0 8px 24px rgba(31, 42, 36, 0.08);
    align-items: flex-start;
  }
  .site-nav ul.open { display: flex; }
  .site-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(45, 74, 62, 0.08);
  }
  .site-nav ul li:last-child {
    border-bottom: none;
    margin-top: 12px;
  }
  .site-nav ul li a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    letter-spacing: 0.05em;
  }
  .site-nav ul li a.nav-cta {
    display: inline-block;
    padding: 12px 24px !important;
  }
  .menu-toggle { display: block; }
  /* 旧式ナビSP限定表示（トップ・service・why用） */
  .nav-profile-old-sp { display: block; }
}

/* ══════════════════════════════════════════════
   フッター
══════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(251,248,240,0.6);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 60px;
  align-items: start;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1.8;
  color: rgba(251,248,240,0.55);
}
.footer-contact {
  font-size: 13px;
  margin-top: 16px;
  line-height: 2;
  color: rgba(251,248,240,0.55);
}
.footer-contact a {
  color: rgba(251,248,240,0.7);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-nav-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(251,248,240,0.35);
  text-transform: uppercase;
  font-family: var(--serif);
  margin-bottom: 4px;
}
.footer-nav a {
  font-size: 13.5px;
  color: rgba(251,248,240,0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  white-space: nowrap;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 20px var(--content-pad) 0;
  border-top: 1px solid rgba(251,248,240,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(251,248,240,0.4);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(251,248,240,0.5);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(251,248,240,0.8); }

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-nav-group { gap: 8px 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   パンくずリスト
══════════════════════════════════════════════ */
.breadcrumb {
  padding: 16px 0 8px;
  font-size: var(--fs-label);
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li + li::before {
  content: '›';
  color: var(--line);
}
.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink-soft); }

/* ══════════════════════════════════════════════
   下層ページヘッダー（ゲートC決定：生成り地＋深緑文字）
══════════════════════════════════════════════ */
.page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 108px 0 48px; /* ヘッダー固定分の上余白 */
}
.page-header .breadcrumb { padding: 0 0 16px; }
.page-header h1 {
  font-family: var(--serif);
  font-size: var(--fs-h1-page);
  font-weight: 500;
  color: var(--accent);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.page-header .page-lead {
  font-size: 17px;
  line-height: var(--lh-loose);
  color: var(--ink-soft);
  max-width: 660px;
}

@media (max-width: 768px) {
  .page-header { padding: 88px 0 36px; }
  .page-header h1 { font-size: clamp(22px, 5vw, 30px); }
}

/* ══════════════════════════════════════════════
   セクション共通
══════════════════════════════════════════════ */
section { padding: var(--section-pad) 0; position: relative; }
.section-tag {
  font-family: var(--serif);
  font-size: var(--fs-label);
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h2.section-title {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
}
.section-lead {
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
  color: var(--ink-soft);
  margin-bottom: 56px;
  max-width: 640px;
}

@media (max-width: 768px) {
  section { padding: var(--section-pad-sp) 0; }
  .section-lead { font-size: var(--fs-body-sm); }
}

/* ══════════════════════════════════════════════
   ボタン
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.15);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════
   ページ末尾CTAブロック（深緑背景型）
══════════════════════════════════════════════ */
.section-cta {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(176,137,72,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.section-cta h2 {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.section-cta .cta-lead {
  font-size: var(--fs-body);
  color: rgba(251,248,240,0.85);
  line-height: 2.2;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-cta .btn-cta {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  font-size: 17px;
  padding: 20px 40px;
}
.section-cta .btn-cta:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}
.section-cta .btn-cta:focus { outline-color: var(--gold); }
.cta-sub-links {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-sub-links a {
  color: rgba(251,248,240,0.75);
  text-decoration: none;
  font-size: var(--fs-small);
  border-bottom: 1px solid rgba(176,137,72,0.5);
  padding-bottom: 2px;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.cta-sub-links a:hover { color: var(--white); }

@media (max-width: 768px) {
  .section-cta { padding: 64px 0; }
}

/* ══════════════════════════════════════════════
   カード（汎用）
══════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════
   ブログ記事カード（横並び型）
══════════════════════════════════════════════ */
.post-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.post-card-thumb {
  width: 240px;
  flex-shrink: 0;
  background: var(--accent);
  overflow: hidden;
  aspect-ratio: 1200 / 630;
  align-self: flex-start;
}
.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card-body { padding: 28px 30px; }
.post-cat {
  display: inline-block;
  font-size: var(--fs-label);
  background: var(--bg-alt);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.post-card h3, .post-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.post-date {
  font-size: var(--fs-label);
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.post-excerpt {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .post-card { flex-direction: column; }
  .post-card-thumb { width: 100%; height: 180px; }
}

/* ══════════════════════════════════════════════
   FAQアコーディオン
══════════════════════════════════════════════ */
.faq-category-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  margin-top: 48px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 40px 24px 48px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  line-height: 1.85;
}
.faq-q::before {
  content: 'Q';
  position: absolute;
  left: 0; top: 22px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-q:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.faq-a {
  display: none;
  padding: 0 0 28px 48px;
  font-size: 16.5px;
  line-height: 2;
  color: var(--ink-soft);
  position: relative;
}
.faq-a::before {
  content: 'A';
  position: absolute;
  left: 0; top: -4px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent-light);
  font-weight: 700;
}
.faq-item.open .faq-a { display: block; animation: fadeUp 0.4s forwards; }
.faq-a .note {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.75;
}

/* ══════════════════════════════════════════════
   ステップリスト（制作の流れ）
══════════════════════════════════════════════ */
.flow-list {
  margin-top: 56px;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  left: 40px; top: 20px; bottom: 20px;
  width: 1px;
  background: var(--line);
}
.flow-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  padding: 24px 0;
  position: relative;
}
.flow-step {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.flow-step .num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.flow-step .step-label {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
  margin-top: 2px;
}
.flow-body { padding-top: 16px; }
.flow-body h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.flow-body p {
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.flow-body strong {
  color: var(--accent);
  font-weight: 700;
  background: linear-gradient(transparent 70%, rgba(176,137,72,0.15) 70%);
}
.flow-body .duration {
  display: inline-block;
  font-size: 13px;
  background: var(--bg-alt);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════
   お問い合わせフォーム（深緑背景上）
══════════════════════════════════════════════ */
.contact-form {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: left;
}
.contact-form .form-row { margin-bottom: 22px; }
.contact-form label {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-form label .opt {
  color: rgba(251,248,240,0.5);
  font-size: 12.5px;
  margin-left: 6px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--white);
  background: rgba(251,248,240,0.06);
  border: 1px solid rgba(176,137,72,0.35);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  line-height: 1.7;
  transition: border-color 0.25s, background 0.25s;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(251,248,240,0.35); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(251,248,240,0.1);
}
.contact-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.contact-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(251,248,240,0.8);
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-bottom: 26px;
}
.contact-form .form-consent input { margin-top: 5px; accent-color: var(--gold); flex-shrink: 0; }
.contact-form .form-consent a { color: var(--gold); text-decoration: underline; }
.contact-form .form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 17px 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  transition: all var(--transition);
}
.contact-form .form-submit:hover:not(:disabled) {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}
.contact-form .form-submit:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.contact-form .form-submit:disabled { opacity: 0.55; cursor: default; }
.contact-form .form-status {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.8;
  min-height: 1em;
}
.contact-form .form-status.ok { color: #cfe3d3; }
.contact-form .form-status.ng { color: #f0c9b0; }
.contact-divider {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(251,248,240,0.5);
  margin: 8px auto 32px;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-form .form-submit { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════
   プロフィール
══════════════════════════════════════════════ */
.profile-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.profile-photo {
  width: 280px;
  height: 360px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.profile-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.profile-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251,248,240,0.35);
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: var(--serif);
}
.profile-photo::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(176,137,72,0.4);
  pointer-events: none;
  z-index: 2;
}
.profile-text .name-jp {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.profile-text .name-en {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.profile-text .belief {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 2;
  color: var(--accent);
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.profile-text p {
  font-size: 16.5px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.profile-tag {
  font-size: 14px;
  background: var(--white);
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .profile-inner { grid-template-columns: 1fr; gap: 28px; }
  .profile-photo { width: 100%; max-width: 240px; height: 300px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════
   法定ページ（プライバシーポリシー・運営者情報）
══════════════════════════════════════════════ */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--content-pad) 100px;
}
.legal-wrap h2 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.legal-wrap p, .legal-wrap li {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
}
.legal-wrap ul { padding-left: 1.3em; margin: 10px 0; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap dl { margin: 8px 0; }
.legal-wrap dt {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--accent);
  margin-top: 24px;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.legal-wrap dd { margin: 6px 0 0; font-size: 16.5px; line-height: 1.85; }
.legal-wrap a { color: var(--accent); }
.legal-back {
  display: inline-block;
  margin-top: 48px;
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.legal-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════
   アニメーション
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  @keyframes fadeUp { from { opacity: 1; transform: none; } }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════
   モバイル共通調整
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { font-size: var(--fs-body-sm); }
  .container, .narrow { padding: 0 var(--content-pad-sp); }
}

/* ══════════════════════════════════════════════
   リニューアル追加コンポーネント
   （下層ページ共通）
══════════════════════════════════════════════ */

/* ── コンテナ ── */
.container-narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}
@media (max-width: 768px) {
  .container-narrow { padding: 0 var(--content-pad-sp); }
}

/* ── 視覚的に非表示（スクリーンリーダー向け） ── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── スキップリンク ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  font-size: 15px;
  z-index: 200;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── 新ヘッダー（.site-header 系） ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid rgba(45, 74, 62, 0.08);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--content-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.site-header__logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__logo span {
  font-size: 12px;
  color: var(--ink-soft);
  margin-left: 8px;
  letter-spacing: 0.2em;
  font-family: var(--sans);
  font-weight: 400;
}

/* ── グローバルナビ（.global-nav 系） ── */
.global-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.global-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14.5px;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.global-nav a:hover { color: var(--accent); }
.global-nav a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.global-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.global-nav .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
}
.global-nav .nav-cta:hover { background: var(--ink); }
.global-nav .nav-cta[aria-current="page"] {
  border-bottom: none;
}
.nav-profile-sp { display: none; }

/* ── ハンバーガーボタン ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--accent);
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-profile-sp { display: block; }
  .global-nav {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(245, 241, 232, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px var(--content-pad) 32px;
    border-bottom: 1px solid rgba(45,74,62,0.08);
    box-shadow: 0 8px 24px rgba(31,42,36,0.08);
    z-index: 40;
  }
  .global-nav.is-open { display: block; }
  .global-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .global-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(45,74,62,0.08);
  }
  .global-nav ul li:last-child { border-bottom: none; margin-top: 12px; }
  .global-nav a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
  }
  .global-nav .nav-cta {
    display: inline-block;
    padding: 12px 24px;
    margin: 0;
  }
  .site-header__inner { padding: 14px var(--content-pad-sp); }
}

/* ── 新フッター（.site-footer 系） ── */
.site-footer {
  background: var(--ink);
  color: rgba(251,248,240,0.6);
  padding: 64px 0 32px;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}
.site-footer__brand { grid-column: 1 / -1; }
.site-footer__logo {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.site-footer__logo span {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(251,248,240,0.6);
  margin-left: 8px;
}
.site-footer__catch {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(251,248,240,0.5);
  margin-top: 8px;
  line-height: 1.8;
}
.site-footer__nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.site-footer__nav a {
  font-size: 13.5px;
  color: rgba(251,248,240,0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.site-footer__nav a:hover { color: var(--white); }
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.site-footer__legal a {
  font-size: 12px;
  color: rgba(251,248,240,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer__legal a:hover { color: rgba(251,248,240,0.8); }
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer__contact a {
  font-size: 13px;
  color: rgba(251,248,240,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer__contact a:hover { color: var(--white); }
.site-footer__copy {
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(251,248,240,0.35);
  letter-spacing: 0.05em;
  padding-top: 20px;
  border-top: 1px solid rgba(251,248,240,0.1);
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 var(--content-pad-sp);
  }
  .site-footer__brand { grid-column: 1; }
}

/* ── ページヘッダー（下層共通）── */
.page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 108px 0 48px;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: var(--fs-h1-page);
  font-weight: 500;
  color: var(--accent);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  margin-top: 16px;
}
.page-header__lead {
  font-size: 17px;
  line-height: var(--lh-loose);
  color: var(--ink-soft);
  max-width: 660px;
}
@media (max-width: 768px) {
  .page-header { padding: 88px 0 36px; }
  .page-header h1 { font-size: clamp(22px, 5vw, 30px); }
}

/* ── セクション ── */
.section {
  padding: var(--section-pad) 0;
}
.section--alt { background: var(--bg-alt); }
.section-heading {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.section-lead {
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: var(--lh-loose);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section { padding: var(--section-pad-sp) 0; }
}

/* ── CTA セクション（深緑背景） ── */
.section-cta {
  background: var(--accent);
  text-align: center;
  padding: 90px var(--content-pad);
  position: relative;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(176,137,72,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.section-cta > * { position: relative; z-index: 1; }
.section-cta h2 {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}
.section-cta p {
  color: rgba(251,248,240,0.85);
  font-size: var(--fs-body);
  line-height: 2;
  margin-bottom: 36px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 20px 40px;
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid var(--gold);
}
.btn-cta:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-cta:focus { outline: 2px solid var(--gold); outline-offset: 3px; }
.cta-sublink {
  margin-top: 20px;
}
.cta-sublink a {
  color: rgba(251,248,240,0.65);
  font-size: var(--fs-small);
  text-decoration: none;
  border-bottom: 1px solid rgba(176,137,72,0.4);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.cta-sublink a:hover { color: var(--white); }
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .section-cta { padding: 64px var(--content-pad-sp); }
  .btn-cta { width: 100%; justify-content: center; max-width: 360px; }
}

/* ── ボタン（白地ページ用） ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid var(--accent);
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,42,36,0.15);
}
.btn-primary:focus { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent); color: var(--white); }

/* ── 制作の流れページ（.flow-list 新実装） ── */
.flow-list {
  list-style: none;
  position: relative;
  margin-top: 40px;
}
.flow-list::before {
  content: '';
  position: absolute;
  left: 32px; top: 32px; bottom: 32px;
  width: 1px;
  background: var(--line);
}
.flow-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  position: relative;
}
.flow-step {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.flow-num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.flow-label {
  font-size: 9px;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
  margin-top: 2px;
}
.flow-body { padding-top: 12px; }
.flow-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.flow-body p {
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.flow-note {
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--bg-alt);
  padding: 8px 14px;
  border-left: 2px solid var(--gold);
  margin-top: 10px;
}
.flow-note--free { color: var(--accent); font-weight: 500; }
.flow-duration-box {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.flow-duration-box strong { color: var(--accent); }
@media (max-width: 768px) {
  .flow-list::before { left: 24px; }
  .flow-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .flow-step { width: 48px; height: 48px; }
  .flow-num { font-size: 16px; }
  .flow-label { display: none; }
}

/* ── ブログ記事ページ（.article__ 系） ── */
.article__head {
  padding-top: 108px;
}
.article__cat {
  display: inline-block;
  font-size: var(--fs-label);
  background: var(--bg-alt);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.12em;
  margin-top: 16px;
  margin-bottom: 20px;
}
.article__title {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.article__meta {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.article__eyecatch {
  max-width: 980px;
  margin: 40px auto;
  padding: 0 var(--content-pad);
}
.article__eyecatch img {
  width: 100%; height: auto;
  border-radius: var(--radius-md);
  display: block;
}
.article__body {
  margin-bottom: 56px;
}
.article__body h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--accent);
  margin: 48px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  line-height: 1.6;
}
.article__body p {
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.article__lead {
  font-size: 19px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 2;
}
.article__divider {
  width: 60px; height: 1px;
  background: var(--gold);
  border: none;
  margin: 48px auto;
}
.article__quote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  background: var(--bg-alt);
  margin: 28px 0;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 2;
  font-size: 17px;
}
.article__close {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 2;
  color: var(--accent);
  text-align: center;
  margin: 40px 0;
}
.article__foot {
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.article__foot-heading {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  color: var(--accent);
  margin-bottom: 14px;
}
.article__foot p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.article__back {
  margin-top: 24px;
}
.article__back a {
  color: var(--ink-soft);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.article__back a:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 768px) {
  .article__head { padding-top: 88px; }
  .article__eyecatch { padding: 0 var(--content-pad-sp); }
  .article__title { font-size: clamp(22px, 5vw, 28px); }
}

/* ── ブログ一覧（.post-list / .post-card__ 系） ── */
.post-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.post-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.post-card__link {
  display: flex;
  text-decoration: none;
  color: inherit;
  background: var(--white);
}
.post-card__thumb {
  width: 240px;
  flex-shrink: 0;
  background: var(--accent);
  overflow: hidden;
  aspect-ratio: 1200 / 630;
  align-self: flex-start;
}
.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.post-card__body { padding: 28px 28px; flex: 1; }
.post-card__cat {
  display: inline-block;
  font-size: var(--fs-label);
  background: var(--bg-alt);
  color: var(--accent);
  padding: 3px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.post-card__title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 8px;
}
.post-card__date {
  display: block;
  font-size: var(--fs-label);
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.post-card__excerpt {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.85;
}
@media (max-width: 768px) {
  .post-card__link { flex-direction: column; }
  .post-card__thumb { width: 100%; height: 180px; }
}

/* ── FAQページ（.faq-category-heading / .faq-a hidden制御） ── */
.faq-category-heading {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  margin-top: 56px;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.faq-list {
  margin-bottom: 40px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 40px 22px 48px;
  font-family: var(--sans);
  font-size: 17.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.faq-q::before {
  content: 'Q';
  position: absolute;
  left: 0; top: 20px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent);
  transition: content var(--transition);
}
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-q:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.faq-a {
  padding: 0 0 24px 48px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
  position: relative;
}
.faq-a[hidden] { display: none; }
.faq-a:not([hidden]) { animation: fadeUp 0.3s forwards; }
.faq-a::before {
  content: 'A';
  position: absolute;
  left: 0; top: -2px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent-light);
  font-weight: 700;
}

/* ── お問い合わせフォーム（白地ページ版） ── */
.contact-form {
  max-width: 640px;
}
.form-field {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-required {
  display: inline-block;
  font-size: 12px;
  background: var(--accent);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 8px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.form-optional {
  font-size: 12px;
  color: var(--ink-soft);
  margin-left: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  line-height: 1.7;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,74,62,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-soft); opacity: 0.5; }
.form-textarea { min-height: 160px; resize: vertical; }
.form-field-error {
  display: block;
  font-size: 13px;
  color: #b53030;
  margin-top: 6px;
}
.form-field-error[hidden] { display: none; }
.form-field--privacy { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  cursor: pointer;
}
.form-checkbox { margin-top: 3px; accent-color: var(--accent); }
.form-checkbox-label a { color: var(--accent); }
.form-submit {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  padding: 17px 40px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.form-submit:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.form-submit:focus { outline: 2px solid var(--accent); outline-offset: 3px; }
.form-submit:disabled { opacity: 0.55; cursor: default; }
.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 14px;
}
.form-success {
  padding: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 40px;
}
.form-success[hidden] { display: none; }
.form-success__title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
}
.form-error {
  padding: 16px 20px;
  background: #fdf0f0;
  border: 1px solid #d4a0a0;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.form-error[hidden] { display: none; }
.form-error p { color: #b53030; font-size: 15px; }
.contact-alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.contact-alt-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.contact-alt-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-alt-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.contact-alt-tel a {
  font-size: 22px;
  color: var(--ink);
  font-family: var(--serif);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.contact-alt-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.8;
}
.contact-sublink {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
}
.contact-sublink a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
@media (max-width: 768px) {
  .contact-alt-grid { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-content: center; }
}

/* ── プロフィールページ（.profile-intro 等） ── */
.profile-intro {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.profile-intro .profile-photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 2/3;
}
.profile-photo__placeholder {
  width: 100%; height: 100%;
  min-height: 360px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251,248,240,0.4);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-family: var(--serif);
}
.profile-creed {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 2;
  color: var(--accent);
  padding: 16px 24px;
  border-left: 3px solid var(--gold);
  background: var(--bg-alt);
  margin-bottom: 28px;
}
.profile-intro__body { min-width: 0; }
.profile-intro__body .section-heading { margin-bottom: 16px; }
.profile-intro__body p { font-size: 16.5px; line-height: 2; color: var(--ink-soft); }
.career-timeline {
  list-style: none;
  position: relative;
  margin-top: 32px;
}
.career-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.career-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212,202,175,0.4);
}
.career-item:last-child { border-bottom: none; }
.career-item--current .career-role { color: var(--accent); }
.career-period {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-top: 4px;
  position: relative;
}
.career-period::before {
  content: '';
  position: absolute;
  left: -28px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 2px solid var(--bg);
}
.career-item--current .career-period::before {
  background: var(--accent);
}
.career-role {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.career-org {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.career-body p { font-size: 15.5px; line-height: 1.85; color: var(--ink-soft); }
.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tag {
  font-size: 14px;
  background: var(--white);
  color: var(--accent);
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}
.policy-list { list-style: none; margin-top: 24px; }
.policy-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.policy-item:first-child { border-top: 1px solid var(--line); }
.policy-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.policy-item p { font-size: 16px; color: var(--ink-soft); line-height: 1.9; }
@media (max-width: 768px) {
  .profile-intro { grid-template-columns: 1fr; gap: 28px; }
  .career-item { grid-template-columns: 56px 1fr; }
  .career-period::before { left: -24px; }
}

/* ── 法定ページ追加スタイル ── */
.legal-wrap {
  padding-top: 108px;
  padding-bottom: 80px;
}
.legal-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 34px);
  color: var(--accent);
  letter-spacing: 0.04em;
  margin: 16px 0 8px;
}
.legal-sub {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.legal-wrap > p {
  font-size: 16px;
  line-height: 1.95;
  margin-bottom: 16px;
}
.legal-wrap a { color: var(--accent); }
.operator-table { margin-top: 24px; }
.operator-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.operator-row:first-child { border-top: 1px solid var(--line); }
.operator-row dt {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.operator-row dd { font-size: 16px; line-height: 1.85; }
.operator-row dd a { color: var(--accent); text-decoration: none; }
.operator-row dd a:hover { text-decoration: underline; }
.operator-note {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.8;
}
@media (max-width: 600px) {
  .operator-row { grid-template-columns: 1fr; gap: 4px; }
  .legal-wrap { padding-top: 88px; }
}
