/* =====================================================
   Assist Gyosei — Main Stylesheet  v1.0.0
   高級ローファーム × エディトリアル誌デザイン
   絵文字ゼロ / SVGアイコンのみ
===================================================== */

/* ── CSS変数 ──────────────────────────────────── */
:root {
  --bg: #09090b;
  --s1: #111114;
  --s2: #18181c;
  --s3: #1f1f24;
  --b1: rgba(255,255,255,.06);
  --b2: rgba(255,255,255,.10);
  --b3: rgba(255,255,255,.16);
  --gold: #c8a96e;
  --gold2: #e2c98a;
  --goldrgb: 200,169,110;
  --ink: #f2ede6;
  --ink2: rgba(242,237,230,.65);
  --ink3: rgba(242,237,230,.35);
  --ink4: rgba(242,237,230,.18);
  --blue: #7ba7c4;
  --serif: 'Playfair Display','Noto Serif JP',Georgia,serif;
  --sans: 'Noto Sans JP','Hiragino Kaku Gothic ProN',sans-serif;
  --tw: 1320px;
  --nav-h: 68px;
}

/* ── リセット ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── ノイズテクスチャ ─────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .026;
}

/* ── グリッド背景 ─────────────────────────────── */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--b1) 1px, transparent 1px), linear-gradient(90deg, var(--b1) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 80%);
}

/* ── コンテナ ─────────────────────────────────── */
.wrap    { max-width: var(--tw); margin: 0 auto; padding: 0 56px; }
.wrap-sm { max-width: 920px; margin: 0 auto; padding: 0 56px; }

/* ── セクション共通 ──────────────────────────── */
.section { padding: 108px 0; }
.section-top { padding-top: 64px; }
.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.section-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.section-eyebrow span { font-size: .66rem; letter-spacing: .34em; color: var(--gold); text-transform: uppercase; font-weight: 300; }
.section-title { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 400; line-height: 1.15; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-lead { font-size: .92rem; color: var(--ink2); line-height: 2; max-width: 600px; }

/* ── ナビゲーション ──────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(9,9,11,.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--b1);
  transition: background .35s, border-color .35s;
}
#site-nav.scrolled { background: rgba(9,9,11,.94); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); border-bottom-color: var(--b2); }
.nav-logo { font-family: var(--serif); font-size: 1rem; letter-spacing: .05em; line-height: 1.2; }
.nav-logo small { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .28em; color: var(--gold); font-weight: 300; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: .77rem; letter-spacing: .13em; color: var(--ink2); position: relative; padding-bottom: 3px; transition: color .22s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .28s; }
.nav-links a:hover, .nav-links a.current-menu-item, .nav-links a.current_page_item { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.current-menu-item::after, .nav-links a.current_page_item::after { width: 100%; }
.nav-r { display: flex; align-items: center; gap: 16px; }
.lang-wrap { display: flex; gap: 3px; }
.lbtn { padding: 4px 10px; background: transparent; border: 1px solid var(--b2); color: var(--ink3); font-size: .65rem; letter-spacing: .12em; transition: all .2s; }
.lbtn:hover, .lbtn.on { border-color: var(--gold); color: var(--gold); background: rgba(var(--goldrgb),.1); }
.nav-consult { padding: 9px 22px; border: 1px solid var(--gold); color: var(--gold); background: transparent; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; transition: all .25s; }
.nav-consult:hover { background: var(--gold); color: var(--bg); }
.nav-menu-btn { display: none; background: none; border: none; color: var(--ink2); padding: 4px; flex-shrink: 0; }
.nav-menu-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }

/* ── モバイルメニュー ─────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 210;
  background: rgba(9,9,11,.97);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
#mobile-menu.open { display: flex; }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--ink2); font-size: 1.5rem; }
#mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--ink); }

/* ── ニューステッカー ─────────────────────────── */
.ticker-wrap {
  position: sticky; top: var(--nav-h); z-index: 100;
  border-bottom: 1px solid var(--b1);
  background: var(--s1); overflow: hidden; padding: 13px 0;
}
.ticker-inner { display: flex; animation: ticker 32s linear infinite; white-space: nowrap; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item { display: inline-flex; align-items: center; gap: 32px; padding: 0 32px; font-size: .7rem; letter-spacing: .18em; color: var(--ink3); }
.tick-sep { width: 4px; height: 4px; background: rgba(var(--goldrgb),.5); border-radius: 50%; flex-shrink: 0; }
.tick-new { padding: 2px 8px; background: rgba(var(--goldrgb),.12); font-size: .58rem; color: var(--gold); letter-spacing: .14em; margin-left: 6px; }

/* ── ボタン ──────────────────────────────────── */
.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center;
  padding: 15px 38px; background: var(--gold); color: var(--bg);
  border: none; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  transition: transform .25s, box-shadow .25s; cursor: pointer;
}
.btn-primary::after { content: ''; position: absolute; inset: 0; background: var(--gold2); transform: translateX(-101%); transition: transform .3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(var(--goldrgb),.35); }
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary { display: inline-flex; align-items: center; padding: 15px 38px; background: transparent; border: 1px solid var(--b3); color: var(--ink2); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; transition: all .25s; cursor: pointer; }
.btn-secondary:hover { border-color: var(--ink2); color: var(--ink); }

/* ── ヒーロー ─────────────────────────────────── */
.hero { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: center;
  width: 100%; max-width: var(--tw); margin: 0 auto; padding: 60px 56px;
}
.hero-badge { display: inline-flex; align-items: center; gap: 12px; padding: 7px 18px; border: 1px solid rgba(var(--goldrgb),.3); margin-bottom: 32px; opacity: 0; animation: slideIn .6s .3s forwards; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.4; transform:scale(.8); } }
.hero-badge-text { font-size: .65rem; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; }
.hero-h1 { font-family: var(--serif); font-size: clamp(3rem,5.5vw,5.8rem); font-weight: 400; line-height: 1.05; margin-bottom: 24px; opacity: 0; animation: fadeUp .7s .5s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1 .sub { display: block; font-family: var(--sans); font-size: .38em; font-weight: 300; color: var(--ink2); letter-spacing: .22em; margin-top: 16px; font-style: normal; }
.hero-desc { font-size: .9rem; color: var(--ink2); line-height: 2.1; max-width: 500px; margin-bottom: 44px; font-weight: 300; opacity: 0; animation: fadeUp .7s .7s forwards; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp .7s .9s forwards; }
.hero-panel { background: var(--s1); border: 1px solid var(--b2); overflow: hidden; opacity: 0; animation: fadeUp .7s 1.1s forwards; }
.hero-panel-head { padding: 24px 28px; border-bottom: 1px solid var(--b1); display: flex; align-items: center; justify-content: space-between; }
.hero-panel-title { font-size: .7rem; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
.hero-panel-badge { padding: 3px 10px; background: rgba(var(--goldrgb),.12); font-size: .62rem; color: var(--gold); }
.visa-items { padding: 8px 0; }
.visa-item { display: flex; align-items: center; gap: 0; padding: 14px 28px; border-bottom: 1px solid var(--b1); transition: background .2s; }
.visa-item:last-child { border-bottom: none; }
.visa-item:hover { background: var(--s2); }
.visa-item-num { font-family: var(--serif); font-size: .95rem; color: var(--ink4); min-width: 36px; }
.visa-item-body { flex: 1; }
.visa-item-name { font-size: .85rem; color: var(--ink); }
.visa-item-en { font-size: .65rem; color: var(--ink3); letter-spacing: .1em; margin-top: 1px; }
.visa-item-arrow { width: 20px; height: 1px; background: var(--b3); position: relative; transition: width .25s, background .25s; }
.visa-item-arrow::after { content: ''; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-right: 1px solid var(--b3); border-top: 1px solid var(--b3); transform: rotate(45deg); transition: border-color .25s; }
.visa-item:hover .visa-item-arrow { width: 28px; background: var(--gold); }
.visa-item:hover .visa-item-arrow::after { border-color: var(--gold); }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--b2); }
.hstat { padding: 20px 0; text-align: center; border-right: 1px solid var(--b1); }
.hstat:last-child { border-right: none; }
.hstat-num { font-family: var(--serif); font-size: 1.9rem; color: var(--gold); display: block; line-height: 1; margin-bottom: 5px; }
.hstat-label { font-size: .6rem; color: var(--ink3); letter-spacing: .14em; }

/* ── 選ばれる理由 ─────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--b1); margin-top: 56px; }
.why-card { background: var(--bg); padding: 40px 32px; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .4s; }
.why-card:hover::before { width: 100%; }
.why-num { font-family: var(--serif); font-size: 3rem; color: var(--b2); line-height: 1; margin-bottom: 20px; transition: color .3s; }
.why-card:hover .why-num { color: var(--b3); }
.why-icon { width: 36px; height: 36px; color: var(--gold); margin-bottom: 18px; }
.why-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-title { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 14px; font-weight: 400; }
.why-text { font-size: .82rem; color: var(--ink2); line-height: 1.95; }

/* ── フロー ──────────────────────────────────── */
.flow-section { background: var(--s1); border-top: 1px solid var(--b1); border-bottom: 1px solid var(--b1); }
.flow-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; margin-top: 56px; }
.flow-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.flow-step { text-align: center; padding: 0 20px; position: relative; }
.flow-step-num { width: 56px; height: 56px; border: 1px solid var(--b2); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; background: var(--bg); position: relative; z-index: 1; font-family: var(--serif); font-size: 1.1rem; color: var(--gold); transition: all .3s; }
.flow-step:hover .flow-step-num { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.flow-step-title { font-size: .85rem; color: var(--ink); margin-bottom: 10px; font-weight: 400; }
.flow-step-text { font-size: .75rem; color: var(--ink3); line-height: 1.8; }

/* ── お客様の声 ──────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--b1); margin-top: 56px; }
.testi-card { background: var(--bg); padding: 40px 36px; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testi-star { width: 14px; height: 14px; color: var(--gold); }
.testi-star svg { width: 100%; height: 100%; fill: currentColor; }
.testi-text { font-size: .85rem; color: var(--ink2); line-height: 2; margin-bottom: 28px; font-style: italic; }
.testi-divider { width: 32px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.testi-author { font-size: .78rem; color: var(--ink); font-weight: 500; }
.testi-origin { font-size: .68rem; color: var(--ink3); margin-top: 4px; letter-spacing: .1em; }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { margin-top: 48px; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--b1); }
.faq-q {
  width: 100%; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; color: var(--ink); text-align: left;
  font-family: var(--sans); font-size: .92rem; cursor: pointer;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); transition: transform .3s, opacity .3s; }
.faq-icon::before { width: 14px; height: 1px; top: 50%; left: 3px; transform: translateY(-50%); }
.faq-icon::after { width: 1px; height: 14px; left: 50%; top: 3px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s; }
.faq-a-inner { padding-bottom: 24px; font-size: .88rem; color: var(--ink2); line-height: 2; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── 言語対応 ─────────────────────────────────── */
.lang-flags { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--b1); margin-top: 48px; }
.lang-flag { background: var(--bg); padding: 36px 28px; text-align: center; }
.lang-flag-icon { width: 44px; height: 44px; background: rgba(var(--goldrgb),.1); border: 1px solid rgba(var(--goldrgb),.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.lang-flag-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.lang-flag-name { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.lang-flag-sub { font-size: .7rem; color: var(--ink3); letter-spacing: .12em; }

/* ── CTA バナー ──────────────────────────────── */
.cta-banner { background: linear-gradient(135deg,var(--s2) 0%,var(--s1) 100%); border-top: 1px solid var(--b2); border-bottom: 1px solid var(--b2); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 400; margin-bottom: 16px; }
.cta-banner p { font-size: .88rem; color: var(--ink2); margin-bottom: 40px; line-height: 2; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── フッター ─────────────────────────────────── */
footer { background: var(--s1); border-top: 1px solid var(--b1); padding: 72px 0 40px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 6px; }
.footer-brand-sub { font-size: .6rem; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; font-family: var(--sans); font-weight: 300; }
.footer-desc { font-size: .78rem; color: var(--ink3); line-height: 2; }
.footer-col h4 { font-size: .62rem; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col p, .footer-col address { display: block; font-size: .78rem; color: var(--ink3); margin-bottom: 10px; font-style: normal; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--b1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: .68rem; color: var(--ink4); letter-spacing: .1em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: .68rem; color: var(--ink4); transition: color .2s; }
.footer-links a:hover { color: var(--ink2); }

/* ── スクロールアニメーション ─────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── スティッキーCTA ─────────────────────────── */
.sticky-cta { position: fixed; bottom: 28px; right: 28px; z-index: 180; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; opacity: 0; transform: translateY(12px); transition: opacity .4s, transform .4s; pointer-events: none; }
.sticky-cta.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.sticky-btn { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; border: none; cursor: pointer; transition: all .25s; text-decoration: none; }
.sticky-btn.tel { background: var(--s2); border: 1px solid var(--b2); color: var(--ink2); }
.sticky-btn.tel:hover { border-color: var(--ink2); color: var(--ink); }
.sticky-btn.primary { background: var(--gold); color: var(--bg); }
.sticky-btn.primary:hover { background: var(--gold2); }
.sticky-icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── パンくず ─────────────────────────────────── */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 40px; font-size: .72rem; color: var(--ink3); }
.breadcrumb a { color: var(--ink3); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.bc-sep { color: var(--ink4); }

/* ── ブログ ──────────────────────────────────── */
.blog-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.bfilter { padding: 6px 18px; background: transparent; border: 1px solid var(--b2); color: var(--ink3); font-size: .7rem; letter-spacing: .12em; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.bfilter:hover, .bfilter.on { border-color: var(--gold); color: var(--gold); background: rgba(var(--goldrgb),.08); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--b1); }
.blog-card { background: var(--bg); display: flex; flex-direction: column; transition: background .25s; }
.blog-card:hover { background: var(--s2); }
.blog-card-top { height: 3px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: opacity .3s; }
.blog-card:hover .blog-card-top { opacity: 1; }
.blog-card-body { padding: 28px 28px 20px; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.blog-date { font-size: .68rem; color: var(--ink3); letter-spacing: .12em; }
.blog-cat { padding: 2px 10px; background: rgba(var(--goldrgb),.1); border: 1px solid rgba(var(--goldrgb),.2); font-size: .62rem; color: var(--gold); letter-spacing: .08em; }
.blog-title { font-family: var(--serif); font-size: 1rem; color: var(--ink); line-height: 1.5; margin-bottom: 12px; font-weight: 400; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: .8rem; color: var(--ink3); line-height: 1.9; }
.blog-footer { padding: 16px 28px 24px; display: flex; align-items: center; justify-content: space-between; }
.blog-read { font-size: .72rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; transition: letter-spacing .25s; text-decoration: none; }
.blog-read:hover { letter-spacing: .2em; }
.blog-src { font-size: .65rem; color: var(--ink4); }
.pagination { margin-top: 64px; }
.pagination-inner { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.pagination-inner .page-numbers { padding: 8px 14px; border: 1px solid var(--b2); font-size: .75rem; color: var(--ink3); transition: all .2s; text-decoration: none; }
.pagination-inner .page-numbers:hover, .pagination-inner .page-numbers.current { border-color: var(--gold); color: var(--gold); background: rgba(var(--goldrgb),.08); }

/* ── 記事詳細 ────────────────────────────────── */
.post-header { margin-bottom: 48px; }
.post-meta-top { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.post-title { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 400; line-height: 1.25; }
.post-thumbnail { margin-bottom: 48px; }
.post-thumbnail img { width: 100%; height: auto; border: 1px solid var(--b1); }
.post-content { font-size: .95rem; line-height: 2.2; color: var(--ink2); }
.post-content h2 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin: 2.5em 0 1em; font-weight: 400; border-left: 2px solid var(--gold); padding-left: 16px; }
.post-content h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin: 2em 0 .8em; font-weight: 400; }
.post-content p { margin-bottom: 1.6em; }
.post-content ul, .post-content ol { margin-bottom: 1.6em; padding-left: 1.5em; }
.post-content li { margin-bottom: .5em; list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-content strong { color: var(--ink); font-weight: 500; }
.post-content a { color: var(--gold); border-bottom: 1px solid rgba(var(--goldrgb),.3); }
.post-content a:hover { border-bottom-color: var(--gold); }
.post-content blockquote { border-left: 2px solid var(--gold); padding: 16px 20px; background: var(--s1); margin: 2em 0; color: var(--ink3); font-style: italic; }
.post-content table { width: 100%; border-collapse: collapse; margin: 2em 0; }
.post-content th, .post-content td { padding: 12px 16px; border: 1px solid var(--b2); font-size: .88rem; }
.post-content th { background: var(--s1); color: var(--gold); font-weight: 400; letter-spacing: .1em; text-align: left; }
.post-tags { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--b1); }
.post-nav { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--b1); }
.post-nav-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-nav-link { padding: 20px 24px; background: var(--s1); border: 1px solid var(--b1); display: block; transition: border-color .25s, background .25s; }
.post-nav-link:hover { border-color: var(--b2); background: var(--s2); }
.post-nav-link.next { text-align: right; }
.post-nav-label { font-size: .65rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 8px; }
.post-nav-title { font-size: .85rem; color: var(--ink2); line-height: 1.5; }

/* ── 取扱業務 ─────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--b1); }
.svc-card { background: var(--bg); padding: 44px 36px; position: relative; overflow: hidden; display: block; border: none; text-align: left; transition: background .28s; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .35s; }
.svc-card:hover { background: var(--s2); }
.svc-card:hover::before { width: 100%; }
.svc-num { font-family: var(--serif); font-size: 3.5rem; color: var(--b2); line-height: 1; margin-bottom: 24px; transition: color .28s; }
.svc-card:hover .svc-num { color: var(--b3); }
.svc-icon { width: 40px; height: 40px; margin-bottom: 20px; color: var(--gold); }
.svc-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-name { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-bottom: 14px; font-weight: 400; }
.svc-desc { font-size: .82rem; color: var(--ink2); line-height: 1.9; margin-bottom: 20px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag { padding: 3px 10px; border: 1px solid var(--b2); font-size: .62rem; color: var(--ink3); letter-spacing: .08em; transition: all .2s; }
.svc-card:hover .svc-tag { border-color: rgba(var(--goldrgb),.25); color: var(--gold); }

/* ── 事務所概要 ──────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; margin-top: 60px; }
.office-table { width: 100%; border-collapse: collapse; }
.office-table tr { border-bottom: 1px solid var(--b1); }
.office-table th { padding: 20px 24px 20px 0; text-align: left; font-size: .7rem; letter-spacing: .18em; color: var(--gold); font-weight: 300; text-transform: uppercase; vertical-align: top; white-space: nowrap; width: 130px; }
.office-table td { padding: 20px 0; font-size: .88rem; color: var(--ink2); line-height: 1.8; }
.profile-box { border-top: 2px solid var(--gold); padding-top: 28px; margin-top: 32px; }
.profile-name { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 6px; font-weight: 400; }
.profile-title { font-size: .72rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.profile-text { font-size: .83rem; color: var(--ink2); line-height: 2.1; }

/* ── お問い合わせフォーム ────────────────────── */
.contact-box { background: var(--s1); border: 1px solid var(--b2); padding: 40px; }
.contact-title { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 8px; font-weight: 400; }
.contact-sub { font-size: .78rem; color: var(--ink3); margin-bottom: 32px; line-height: 1.8; }
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-label { font-size: .66rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; }
.cf-input, .cf-select, .cf-textarea { padding: 12px 16px; background: var(--bg); border: 1px solid var(--b2); color: var(--ink); font-family: var(--sans); font-size: .88rem; outline: none; transition: border-color .2s; width: 100%; }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--gold); }
.cf-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(242,237,230,.35)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.cf-textarea { resize: vertical; min-height: 110px; line-height: 1.8; }
.cf-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--bg); border: none; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; transition: background .25s; margin-top: 8px; cursor: pointer; }
.cf-submit:hover { background: var(--gold2); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; }
.cf-privacy { font-size: .68rem; color: var(--ink3); line-height: 1.7; margin-top: 12px; }
.cf-notice { display: none; padding: 16px; font-size: .85rem; margin-top: 12px; line-height: 1.7; }
.cf-notice.success { background: rgba(100,180,120,.1); border-left: 2px solid #80c894; color: #80c894; }
.cf-notice.error   { background: rgba(180,60,60,.1);   border-left: 2px solid #c87070; color: #c87070; }
.cf-notice.show { display: block; }

/* ── マップ ──────────────────────────────────── */
.map-placeholder { height: 280px; background: var(--s2); border: 1px solid var(--b1); display: flex; align-items: center; justify-content: center; margin-top: 24px; font-size: .75rem; color: var(--ink3); letter-spacing: .2em; text-transform: uppercase; }

/* ── レスポンシブ ─────────────────────────────── */
@media (max-width: 1100px) {
  .wrap, .wrap-sm { padding: 0 32px; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 32px; }
  .hero-panel { display: none; }
  .svc-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lang-flags { grid-template-columns: repeat(2,1fr); }
  .flow-steps { grid-template-columns: repeat(3,1fr); gap: 32px; }
  .flow-steps::before { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  #site-nav { height: 60px; padding: 0 20px; }
  .nav-links, .nav-r .lang-wrap, .nav-consult { display: none; }
  .nav-menu-btn { display: block; }
  .wrap, .wrap-sm { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-top { padding-top: 40px; }
  .hero { min-height: calc(100vh - 60px); }
  .hero-inner { padding: 40px 20px; }
  .hero-h1 { font-size: 2.6rem; }
  .svc-grid, .why-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-box { padding: 28px 20px; }
  .post-nav-inner { grid-template-columns: 1fr; }
  .cta-banner { padding: 56px 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { text-align: center; justify-content: center; }
  .ticker-wrap { top: 60px; }
}
