@charset "UTF-8";
/* =========================================================
   terui-souzoku-theme メインスタイル（自己完結型）
   配色：濃藍 #16324f × 白 #ffffff × 銅赤 #a8572f
   ======================================================= */

:root {
	--navy: #16324f;        /* メイン濃藍 */
	--navy-d: #0f2236;      /* 濃藍ダーク */
	--navy-l: #2b5070;      /* 濃藍ライト */
	--copper: #a8572f;      /* アクセント銅赤 */
	--copper-d: #8c4624;
	--ink: #2b2b2b;         /* 本文 */
	--gray: #5d6671;        /* サブ文字 */
	--line: #dfe3e8;        /* 罫線 */
	--bg: #ffffff;
	--bg-alt: #f5f6f8;      /* セクション交互背景 */
	--bg-soft: #eef1f4;
	--gold: #c79a5b;        /* 補助の金（バッジ等） */
	--maxw: 1120px;
	--radius: 10px;
	--shadow: 0 10px 30px rgba(22,50,79,.10);
	--serif: "Noto Serif JP", serif;
	--sans: "Noto Sans JP", sans-serif;
}

/* ---------- リセット・基本 ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sans);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.85;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: .25s; }
a:hover { color: var(--copper); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.5; margin: 0; font-weight: 600; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

/* ---------- ボタン ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: .4em; padding: 14px 28px; border-radius: 8px;
	font-weight: 700; font-size: 15px; text-align: center;
	transition: .25s; cursor: pointer; line-height: 1.4;
	-webkit-appearance: none; appearance: none; border: none;
	font-family: var(--sans);
}
/* CF7送信ボタン（input[type=submit]）にも確実に適用 */
.contact-form-area input.wpcf7-submit { width: auto; }
.btn-cta { background: var(--copper); color: #fff; box-shadow: 0 6px 16px rgba(168,87,47,.30); }
.btn-cta:hover { background: var(--copper-d); color: #fff; transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); background: #fff; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border: 1.5px solid #fff; color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-tel-lg {
	flex-direction: column; gap: 2px; background: #fff; color: var(--navy);
	border: 1.5px solid var(--navy); padding: 11px 28px; border-radius: 8px;
}
.btn-tel-lg:hover { background: var(--bg-soft); color: var(--navy); }
.btn-tel-num { font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: .02em; }
.btn-tel-note { font-size: 12px; color: var(--gray); font-weight: 500; }

/* ---------- 情報バー ---------- */
.topbar { background: var(--navy-d); color: #dfe6ee; font-size: 12.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.topbar-msg { margin: 0; letter-spacing: .03em; }
.topbar-hours { margin: 0; color: #aebccb; }

/* ---------- ヘッダー ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(22,50,79,.10); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 78px; }
.brand-link { display: flex; flex-direction: row; align-items: center; gap: 12px; line-height: 1.2; }
.brand-logo { width: 46px; height: 46px; flex-shrink: 0; }
.brand-tx { display: flex; flex-direction: column; justify-content: center; gap: 2px; margin-top: -4px; }
.brand-sub { line-height: 1.1; }
.brand-name { line-height: 1.15; }
.brand-sub { font-size: 11px; color: var(--copper); letter-spacing: .18em; font-weight: 700; }
.brand-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.global-nav { margin-left: auto; }
.global-nav-list { display: flex; gap: 26px; }
.global-nav-list a { font-size: 15px; font-weight: 500; color: var(--navy); position: relative; padding: 6px 0; }
.global-nav-list a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--copper); transition: .25s; }
.global-nav-list a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-tel { display: flex; flex-direction: column; line-height: 1.2; text-align: right; }
.header-tel-label { font-size: 11px; color: var(--gray); }
.header-tel-num { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); }
.header-cta-btn { padding: 11px 20px; font-size: 14px; }

/* ハンバーガー */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SPナビ */
.sp-nav { position: fixed; inset: 0; top: 0; z-index: 90; background: var(--navy); color: #fff; padding: 100px 8% 40px; overflow-y: auto; }
.sp-nav-list { display: flex; flex-direction: column; }
.sp-nav-list a { display: block; color: #fff; font-size: 18px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.sp-nav-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

/* ---------- セクション共通 ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow { color: var(--copper); font-family: var(--serif); letter-spacing: .2em; font-size: 14px; font-weight: 600; margin: 0 0 8px; text-transform: uppercase; }
.section-title { font-size: 30px; color: var(--navy); }
.section-desc { margin-top: 14px; color: var(--gray); }
.section-action { text-align: center; margin-top: 40px; }

/* ---------- MV（画像・レスポンシブ） ---------- */
.mv { background: var(--navy-d); }
.mv-figure { margin: 0; }
.mv-figure img,
.mv-figure picture { display: block; width: 100%; height: auto; }
/* MV直下のCTA帯 */
.mv-cta-bar { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.mv-cta-inner { display: flex; align-items: center; justify-content: center; gap: 26px; padding: 20px 0; flex-wrap: wrap; }
.mv-cta-text { margin: 0; font-weight: 700; color: var(--navy); font-size: 16px; }
.mv-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; }
/* スクリーンリーダー専用（SEO・アクセシビリティ用の隠し見出し） */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- 強み ---------- */
.strengths-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.strength-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); position: relative; }
.strength-no { font-family: var(--serif); font-size: 34px; line-height: 1; color: var(--bg-soft); font-weight: 700; position: absolute; top: 18px; right: 22px; pointer-events: none; }
.strength-title { color: var(--navy); font-size: 20px; margin: 0 0 14px; padding-top: 26px; }
.strength-text { font-size: 14.5px; color: var(--gray); margin: 0; }

/* ---------- 取扱業務 ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.service-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; transition: .25s; border-left: 5px solid var(--copper); }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-title { color: var(--navy); font-size: 23px; margin-bottom: 8px; }
.service-lead { color: var(--gray); font-size: 14.5px; margin: 0 0 14px; }
.service-more { color: var(--copper); font-weight: 700; font-size: 14px; }

/* ---------- 解決事例 ---------- */
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.case-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); }
.case-cat { display: inline-block; background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; }
.case-title { color: var(--navy); font-size: 17px; line-height: 1.55; margin-bottom: 12px; }
.case-excerpt { color: var(--gray); font-size: 14px; margin: 0; }

/* ---------- お客様の声 ---------- */
.voice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.voice-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); position: relative; }
.voice-card::before { content: "\201C"; font-family: var(--serif); font-size: 64px; color: var(--bg-soft); position: absolute; top: 8px; right: 18px; line-height: 1; }
.voice-cat { display: inline-block; border: 1px solid var(--copper); color: var(--copper); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-bottom: 12px; }
.voice-title { color: var(--navy); font-size: 18px; margin-bottom: 6px; }
.voice-who { color: var(--gray); font-size: 13px; margin: 0 0 12px; }
.voice-body { color: var(--ink); font-size: 14px; margin: 0; }

/* ---------- ごあいさつ ---------- */
.greeting-inner { max-width: 820px; margin: 0 auto; }
.greeting-head { text-align: center; margin-bottom: 30px; }
.greeting-body { background: var(--bg-alt); border-radius: var(--radius); padding: 44px 46px; }
.greeting-body p { margin: 0 0 18px; }
.greeting-sign { font-family: var(--serif); font-size: 18px; color: var(--navy); text-align: right; font-weight: 600; }
.greeting-body .btn { margin-top: 8px; }

/* ---------- ごあいさつ 写真（トップ） ---------- */
.greeting-body { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.greeting-figure { margin: 0; }
.greeting-figure img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.greeting-figure figcaption { margin-top: 12px; text-align: center; font-family: var(--serif); color: var(--navy); font-weight: 600; font-size: 15px; }
.greeting-figure figcaption small { display: block; font-family: var(--sans); font-weight: 400; color: var(--gray); font-size: 12px; margin-top: 2px; }
.greeting-body-text p:first-child { margin-top: 0; }

/* ---------- 弁護士紹介 プロフィール写真 ---------- */
.attorney-intro { display: grid; grid-template-columns: 280px 1fr; gap: 34px; align-items: center; margin-bottom: 28px; }
.attorney-photo { margin: 0; }
.attorney-photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.attorney-photo figcaption { margin-top: 12px; text-align: center; font-family: var(--serif); color: var(--navy); font-weight: 600; font-size: 16px; }
.attorney-photo figcaption small { display: block; font-family: var(--sans); font-weight: 400; color: var(--gray); font-size: 12px; margin-top: 3px; }
.attorney-intro-text .greeting-name { margin-top: 0; margin-bottom: 6px; }
.attorney-belong { margin: 0 0 16px; color: var(--copper); font-weight: 700; font-size: 14.5px; }

/* ---------- 事務所（応接室）写真 ---------- */
.office-photo { margin: 0 0 32px; }
.office-photo img { width: 100%; height: auto; max-height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.office-photo figcaption { margin-top: 12px; text-align: center; color: var(--gray); font-size: 13.5px; }

/* ---------- 流れ ---------- */
.flow-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: flow; }
.flow-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; position: relative; }
.flow-no { display: inline-block; font-family: var(--serif); font-size: 13px; font-weight: 700; color: #fff; background: var(--copper); padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.flow-title { color: var(--navy); font-size: 17px; margin-bottom: 8px; }
.flow-text { color: var(--gray); font-size: 13.5px; margin: 0; }

/* ---------- アクセス ---------- */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.access-info { margin: 0; }
.access-info > div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.access-info dt { color: var(--navy); font-weight: 700; font-size: 14px; }
.access-info dd { margin: 0; color: var(--ink); font-size: 14.5px; }
.access-map iframe { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- CTA ---------- */
.cta-section { background: linear-gradient(120deg, var(--navy-d), var(--navy-l)); color: #fff; padding: 72px 0; }
.cta-inner { text-align: center; }
.cta-lead { color: #e8b06b; font-weight: 700; letter-spacing: .05em; margin: 0 0 8px; }
.cta-title { font-size: 30px; margin-bottom: 16px; }
.cta-text { margin: 0 0 30px; color: #dde6ef; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; align-items: stretch; }

/* ---------- フッター ---------- */
.site-footer { background: var(--navy-d); color: #c7d2de; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; padding: 56px 0 40px; flex-wrap: wrap; }
.footer-logo { width: 60px; height: 60px; background: #fff; border-radius: 10px; padding: 7px; margin: 0 0 14px; }
.footer-name { font-family: var(--serif); font-size: 22px; color: #fff; margin: 0 0 10px; }
.footer-brand p { margin: 0 0 6px; font-size: 14px; }
.footer-brand a { color: #c7d2de; }
.footer-brand a:hover { color: #fff; }
.footer-nav-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.footer-nav-list a { color: #c7d2de; font-size: 14px; }
.footer-nav-list a:hover { color: #fff; }
.footer-note { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.footer-note-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.footer-note-left { flex: 1 1 auto; min-width: 260px; }
.footer-disclaimer { font-size: 12px; color: #9fb0c1; margin: 0 0 6px; }
.copyright { font-size: 12.5px; color: #9fb0c1; margin: 0; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: #c7d2de; font-size: 12.5px; }
.footer-legal a:hover { color: #fff; }
@media (max-width: 640px) {
	.footer-note-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- SP固定CTAバー ---------- */
.sp-fixed-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; }
.sp-fixed-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 6px; color: #fff; font-weight: 700; font-size: 15px; }
.sp-fixed-tel { background: var(--navy); }
.sp-fixed-mail { background: var(--copper); }
.sp-fixed-icon { font-size: 20px; }
.sp-fixed-txt { display: flex; flex-direction: column; line-height: 1.2; }
.sp-fixed-txt small { font-size: 10px; font-weight: 500; opacity: .85; }

/* ---------- 内ページ共通（MV・パンくず） ---------- */
.page-hero { background: linear-gradient(120deg, var(--navy-d), var(--navy-l)); color: #fff; padding: 64px 0; text-align: center; }
.page-hero-sub { color: #e8b06b; font-family: var(--serif); letter-spacing: .2em; font-size: 14px; margin: 0 0 8px; text-transform: uppercase; }
.page-hero-title { font-size: 34px; }
.breadcrumb { background: var(--bg-alt); font-size: 13px; }
.breadcrumb .container { padding: 12px 0; }
.breadcrumb a { color: var(--gray); }
.breadcrumb-sep { margin: 0 8px; color: var(--line); }
.breadcrumb-current { color: var(--navy); }

/* 内ページ本文の汎用 */
.page-content { padding: 72px 0; }
.page-section { padding: 72px 0; }

/* ---------- 出現アニメーション ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   内ページ固有スタイル
   ======================================================= */
.narrow { max-width: 880px; }

/* 弁護士紹介 */
.greeting-full { font-size: 15.5px; }
.greeting-full p { margin: 0 0 18px; }
.greeting-name { font-family: var(--serif); font-size: 20px; color: var(--navy); font-weight: 600; }
.greeting-quotes { background: var(--bg-alt); border-left: 4px solid var(--copper); border-radius: 6px; padding: 18px 22px; margin: 0 0 18px; }
.greeting-quotes li { color: var(--navy); font-weight: 500; padding: 4px 0; }
.profile-block { margin-bottom: 40px; }
.profile-block:last-child { margin-bottom: 0; }
.block-title { font-size: 21px; color: var(--navy); border-bottom: 2px solid var(--navy); padding-bottom: 10px; margin-bottom: 20px; }
.career-list { margin: 0; }
.career-row { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.career-row dt { color: var(--copper); font-weight: 700; font-size: 14px; }
.career-row dd { margin: 0; font-size: 15px; }
.career-note { margin-top: 16px; font-size: 13.5px; color: var(--gray); }
.books-list li { position: relative; padding: 8px 0 8px 24px; font-size: 14.5px; border-bottom: 1px dashed var(--line); }
.books-list li::before { content: "■"; color: var(--copper); font-size: 10px; position: absolute; left: 0; top: 13px; }

/* 取扱業務（詳細） */
.services-toc { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 50px; }
.services-toc a { display: inline-block; background: #fff; border: 1.5px solid var(--navy); color: var(--navy); border-radius: 999px; padding: 8px 20px; font-size: 14px; font-weight: 700; }
.services-toc a:hover { background: var(--navy); color: #fff; }
.service-detail { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 40px; margin-bottom: 30px; box-shadow: var(--shadow); scroll-margin-top: 100px; }
.service-detail-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.service-detail-no { font-family: var(--serif); font-size: 34px; font-weight: 700; color: #fff; background: var(--copper); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.service-detail-title { font-size: 24px; color: var(--navy); }
.service-detail-lead { color: var(--copper); font-weight: 700; margin: 4px 0 0; font-size: 15px; }
.service-points { background: var(--bg-alt); border-radius: 8px; padding: 22px 26px; margin-bottom: 20px; }
.service-points-title { font-weight: 700; color: var(--navy); margin: 0 0 12px; }
.service-points ul { display: grid; gap: 8px; }
.service-points li { position: relative; padding-left: 26px; font-size: 14.5px; }
.service-points li::before { content: "✓"; color: var(--copper); font-weight: 700; position: absolute; left: 0; }
.service-detail-text { font-size: 15px; margin: 0; }
.service-note { display: flex; gap: 10px; align-items: flex-start; background: #fff5ef; border: 1px solid #f0c9b2; border-radius: 8px; padding: 16px 18px; margin: 20px 0 0; font-size: 14px; color: var(--copper-d); }
.service-note-mark { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--copper); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* 解決事例（詳細） */
.case-list { display: grid; gap: 26px; }
.case-detail { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 34px; box-shadow: var(--shadow); }
.case-detail-head { margin-bottom: 18px; }
.case-detail-title { font-size: 20px; color: var(--navy); margin-top: 10px; line-height: 1.5; }
.case-detail-body { margin: 0; }
.case-detail-body dt { color: #fff; background: var(--navy); display: inline-block; font-size: 13px; font-weight: 700; padding: 4px 14px; border-radius: 4px; margin: 16px 0 8px; }
.case-detail-body dt:first-child { margin-top: 0; }
.case-detail-body dd { margin: 0; font-size: 14.5px; }

/* カテゴリタグ（絞り込み）※解決事例・お客様の声で共用 */
.case-tags, .voice-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.case-tag, .voice-tag { -webkit-appearance: none; appearance: none; border: 1.5px solid var(--navy); background: #fff; color: var(--navy); font-family: var(--sans); font-weight: 700; font-size: 14px; padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: .2s; line-height: 1.2; }
.case-tag:hover, .voice-tag:hover { background: var(--bg-soft); }
.case-tag.is-active, .voice-tag.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ページャー ※解決事例・お客様の声で共用 */
.cases-pager, .voices-pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.pager-btn { -webkit-appearance: none; appearance: none; border: 1.5px solid var(--line); background: #fff; color: var(--navy); font-family: var(--sans); font-weight: 700; font-size: 14px; min-width: 44px; height: 44px; padding: 0 16px; border-radius: 8px; cursor: pointer; transition: .2s; line-height: 1; }
.pager-btn:hover:not(:disabled) { border-color: var(--navy); background: var(--navy); color: #fff; }
.pager-btn.is-current { background: var(--copper); border-color: var(--copper); color: #fff; cursor: default; }
.pager-btn:disabled { opacity: .4; cursor: default; }
@media (max-width: 640px) {
	.cases-pager, .voices-pager { gap: 6px; }
	.pager-btn { min-width: 38px; height: 40px; padding: 0 10px; font-size: 13px; }
}

/* お客様の声（詳細） */
.voice-list { display: grid; gap: 22px; }
.voice-detail { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow); }
.voice-detail-head { margin-bottom: 14px; }
.voice-detail-title { font-size: 20px; color: var(--navy); margin: 10px 0 4px; }
.voice-detail-meta { color: var(--gray); font-size: 13px; margin: 0; }
.voice-detail-body { font-size: 14.5px; margin: 0; }

/* お問い合わせ */
.contact-lead { font-size: 15.5px; margin-bottom: 28px; }
.contact-lead p { margin: 0 0 14px; }
.contact-tel-box { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px; text-align: center; margin-bottom: 36px; }
.contact-tel-label { margin: 0 0 8px; font-size: 14px; color: #cdd9e6; }
.contact-tel-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: #fff; display: inline-block; }
.contact-tel-num:hover { color: #e8b06b; }
.contact-tel-note { margin: 8px 0 0; font-size: 13px; color: #bccadb; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 38px; box-shadow: var(--shadow); }
.contact-form-area { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 38px; box-shadow: var(--shadow); }
.form-pending-note { font-size: 13px; color: var(--copper-d); background: #fff5ef; border: 1px solid #f0c9b2; border-radius: 6px; padding: 12px 16px; margin: 0 0 24px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 14.5px; }
.form-row .req { background: var(--copper); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 3px; margin-left: 6px; }
.form-row .opt { background: var(--bg-soft); color: var(--gray); font-size: 11px; padding: 2px 8px; border-radius: 3px; margin-left: 6px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; font-size: 15px; background: #fdfdfe; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(22,50,79,.10); }
.form-submit { text-align: center; margin-top: 28px; }

/* Contact Form 7（既存フォームデザインに統一） */
.contact-form-area .wpcf7-form-control-wrap { display: block; }
.contact-form-area input.wpcf7-form-control:not(.wpcf7-submit),
.contact-form-area select.wpcf7-form-control,
.contact-form-area textarea.wpcf7-form-control {
	width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px;
	font-family: inherit; font-size: 15px; background: #fdfdfe;
}
.contact-form-area input.wpcf7-form-control:not(.wpcf7-submit):focus,
.contact-form-area select.wpcf7-form-control:focus,
.contact-form-area textarea.wpcf7-form-control:focus {
	outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(22,50,79,.10);
}
/* 送信ボタンはボタンスタイルを優先（白背景の入力欄スタイルを上書き） */
.contact-form-area input.wpcf7-submit.btn-cta { width: auto; background: var(--copper); color: #fff; }
.contact-form-area input.wpcf7-submit.btn-cta:hover { background: var(--copper-d); }
/* 「その他」自由記述欄：初期非表示（JSで表示） */
.js-other-row { display: none; }
.form-consent { background: var(--bg-alt); border-radius: 8px; padding: 16px 20px; margin-bottom: 8px; text-align: center; font-size: 14.5px; }
.form-consent .wpcf7-list-item { margin: 0; }
.form-consent input[type="checkbox"] { width: auto; margin-right: 8px; transform: scale(1.2); vertical-align: middle; }
.form-consent a { color: var(--copper); text-decoration: underline; }
/* バリデーション・応答メッセージ */
.wpcf7-not-valid-tip { color: #c0392b; font-size: 13px; margin-top: 6px; font-weight: 700; }
.contact-form-area input.wpcf7-not-valid,
.contact-form-area select.wpcf7-not-valid,
.contact-form-area textarea.wpcf7-not-valid { border-color: #c0392b; background: #fdf3f2; }
.wpcf7-response-output { border-radius: 8px; padding: 14px 18px !important; margin: 20px 0 0 !important; font-size: 14px; }
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7-form.payment-required .wpcf7-response-output { border: 1px solid #e6b0aa !important; background: #fdf3f2; color: #a93226; }
.wpcf7-form.sent .wpcf7-response-output { border: 1px solid #a9d6c0 !important; background: #f0f9f5; color: #1e7a52; }
.wpcf7-spinner { margin: 0 0 0 10px; }

/* WPエディタ本文 */
.wp-content h2 { font-size: 22px; color: var(--navy); margin: 32px 0 14px; }
.wp-content h3 { font-size: 18px; color: var(--navy); margin: 24px 0 12px; }
.wp-content p { margin: 0 0 16px; }
.wp-content a { color: var(--copper); text-decoration: underline; }

@media (max-width: 640px) {
	.service-detail { padding: 26px 22px; }
	.service-detail-head { gap: 12px; }
	.service-detail-no { width: 48px; height: 48px; font-size: 26px; }
	.case-detail, .voice-detail, .contact-form, .contact-form-area { padding: 24px 20px; }
	.career-row { grid-template-columns: 76px 1fr; gap: 10px; }
	.contact-tel-num { font-size: 26px; }
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 980px) {
	.strengths-grid, .cases-grid, .voice-grid { grid-template-columns: 1fr 1fr; }
	.flow-list { grid-template-columns: 1fr 1fr; }
	.global-nav, .header-tel, .header-cta-btn { display: none; }
	.nav-toggle { display: flex; margin-left: auto; }
	.access-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	body { font-size: 15px; }
	.topbar { display: none; }
	.header-inner { height: 64px; }
	.brand-name { font-size: 19px; }
	.section { padding: 56px 0; }
	.section-title { font-size: 24px; }
	.mv-cta-inner { flex-direction: column; gap: 14px; padding: 18px 0; }
	.mv-cta-text { font-size: 14.5px; text-align: center; }
	.strengths-grid, .services-grid, .cases-grid, .voice-grid, .flow-list { grid-template-columns: 1fr; }
	.greeting-body, .attorney-intro { grid-template-columns: 1fr; gap: 20px; }
	.greeting-figure, .attorney-photo { max-width: 300px; margin-left: auto; margin-right: auto; }
	.greeting-body { padding: 30px 24px; }
	.cta-title, .page-hero-title { font-size: 24px; }
	.footer-inner { flex-direction: column; gap: 28px; }
	.sp-fixed-cta { display: flex; }
	body { padding-bottom: 62px; } /* 固定CTA分の余白 */
	.mv-cta-actions .btn, .cta-actions .btn { width: 100%; }
}
