/* ============================================
   MFWORK（古川真理）公式サイト 共通スタイル
   ============================================ */
:root {
  --navy: #1b2a4a;
  --navy-dark: #131f38;
  --accent: #2e7d8f;
  --accent-light: #e8f3f5;
  --gold: #c9a45c;
  --text: #2b3242;
  --text-sub: #6b7280;
  --bg: #fafbfc;
  --white: #ffffff;
  --line: #e4e8ee;
  --radius: 10px;
  --shadow: 0 2px 14px rgba(27, 42, 74, 0.08);
  --font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.02em;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.85; }
ul { list-style: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.3;
}
.site-logo small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.08em;
}
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}
.global-nav a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.global-nav a.current { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.nav-toggle { display: none; }

/* ---------- Hero (TOP) ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #24406b 55%, var(--accent) 130%);
  color: var(--white);
  padding: 96px 24px 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.hero-inner { max-width: 1072px; margin: 0 auto; position: relative; z-index: 1; }
.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: #a8c4d8;
  margin-bottom: 20px;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero .hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #dce8f0;
  margin-bottom: 28px;
  font-weight: 600;
}
.hero .hero-lead {
  color: #c3d4e2;
  font-size: 0.95rem;
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Page hero (下層ページ) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #24406b 70%, var(--accent) 140%);
  color: var(--white);
  padding: 60px 24px 52px;
  text-align: center;
}
.page-hero .en {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: #a8c4d8;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.page-hero h1 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-outline { border: 2px solid rgba(255, 255, 255, 0.7); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--white); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .en {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.section-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  color: var(--navy);
  font-weight: 700;
}
.section-head p.desc { margin-top: 14px; color: var(--text-sub); font-size: 0.95rem; }

/* ---------- Problems (お悩み) ---------- */
.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.problem-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.problem-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.problem-message {
  text-align: center;
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 2;
}

/* ---------- Flow diagram (導線) ---------- */
.funnel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 32px 0;
}
.funnel .step {
  background: var(--white);
  border: 2px solid var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 8px;
  white-space: nowrap;
}
.funnel .arrow { color: var(--accent); font-weight: 700; padding: 0 4px; }
.funnel-note {
  text-align: center;
  color: var(--text-sub);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
}
.funnel-note strong { color: var(--accent); }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
}
.card .num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 14px; line-height: 1.5; }
.card p { font-size: 0.9rem; color: var(--text-sub); flex: 1; }
.card .more { margin-top: 18px; font-weight: 700; font-size: 0.88rem; }

/* ---------- Service detail ---------- */
.service-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  margin-bottom: 36px;
}
.service-block .num {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.2em;
}
.service-block h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin: 6px 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent-light);
}
.service-block .lead { margin-bottom: 20px; font-size: 0.95rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li {
  background: var(--accent-light);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
}
.service-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-sub);
  background: var(--bg);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 4px;
}

/* ---------- Service detail: 商品化パーツ ---------- */
.service-sub {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 26px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-sub::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.rec-list { display: grid; gap: 8px; }
.rec-list li {
  font-size: 0.93rem;
  padding-left: 1.6em;
  position: relative;
}
.rec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 12px;
}
.price-box .price-main {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.price-box .price-main small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-left: 10px;
}
.price-box dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; font-size: 0.9rem; }
.price-box dt { font-weight: 700; color: var(--accent); white-space: nowrap; }
.price-box dd { margin: 0; }
.service-cta { margin-top: 26px; text-align: center; }
.service-cta .btn { padding: 12px 32px; font-size: 0.9rem; }

/* ---------- Trust bar (TOP) ---------- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); padding: 36px 0 32px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  text-align: center;
}
.trust-grid .t-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.trust-grid .t-num em { font-style: normal; color: var(--accent); }
.trust-grid .t-label { font-size: 0.82rem; color: var(--text-sub); line-height: 1.6; }
.trust-note { text-align: center; font-size: 0.75rem; color: var(--text-sub); margin-top: 20px; }

/* ---------- Case CTA ---------- */
.case-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.case-cta a {
  font-size: 0.87rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.case-cta a.primary { background: var(--accent); color: var(--white); }
.case-cta a:hover { opacity: 0.85; }

/* ---------- About: stance ---------- */
.stance {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--gold);
  padding: 34px 36px;
}
.stance h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 16px; }
.stance p { font-size: 0.97rem; margin-bottom: 1em; }
.stance p:last-child { margin-bottom: 0; }

/* ---------- Price ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.price-table th { background: var(--navy); color: var(--white); font-weight: 700; }
.price-table td.price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.price-caption { margin-top: 16px; font-size: 0.85rem; color: var(--text-sub); }

/* ---------- Case study ---------- */
.case-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  margin-bottom: 36px;
}
.case-block .case-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.case-block h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 24px; }
.case-lead {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 2;
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 28px;
}
.case-figure {
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.case-figure img { width: 100%; display: block; }
.case-figure figcaption {
  font-size: 0.8rem;
  color: var(--text-sub);
  padding: 10px 16px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.growth-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  padding: 16px 0 4px;
}
.gc-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 120px;
}
.gc-value { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.gc-fill { width: 64px; background: var(--accent); border-radius: 4px 4px 0 0; }
.gc-fill.zero { background: var(--line); border-radius: 2px; }
.gc-label { font-size: 0.76rem; color: var(--text-sub); text-align: center; line-height: 1.5; }
.gc-mult {
  align-self: center;
  margin-bottom: 70px;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  white-space: nowrap;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 8px 0 4px;
}
.case-stats .stat {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}
.case-stats .stat .num {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}
.case-stats .stat .label {
  font-size: 0.8rem;
  color: var(--text-sub);
}
.case-voice {
  background: var(--bg);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 18px 22px;
  font-size: 0.95rem;
  line-height: 2;
  margin: 0;
}
.case-voice footer {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-sub);
}
.case-summary {
  margin-top: 24px;
  border-top: 1px dashed var(--line);
  padding-top: 20px;
  font-size: 0.95rem;
}
.case-summary strong { color: var(--accent); }
.case-step { margin-bottom: 20px; }
.case-step h4 {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-step h4::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 2px;
}
.case-step p, .case-step ul { font-size: 0.95rem; color: var(--text); }
.case-step ul li { padding-left: 1.2em; position: relative; }
.case-step ul li::before { content: "・"; position: absolute; left: 0; color: var(--accent); }

/* ---------- About ---------- */
.profile-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 40px;
  margin-bottom: 36px;
}
.profile-head {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 28px;
}
.profile-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  border: 4px solid var(--accent-light);
  box-shadow: var(--shadow);
}
.profile-name { font-size: 1.5rem; color: var(--navy); font-weight: 700; }
.profile-name small { display: block; font-size: 0.8rem; color: var(--text-sub); letter-spacing: 0.15em; margin-top: 2px; }
.profile-title { color: var(--accent); font-weight: 700; font-size: 0.95rem; margin: 10px 0 24px; }
.profile-card p { margin-bottom: 1em; font-size: 0.97rem; }
.profile-policy {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.exp-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.exp-grid li::before { content: "◆"; color: var(--gold); font-size: 0.7rem; margin-top: 6px; }

/* ---------- Steps (FLOW) ---------- */
.flow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  counter-reset: flow;
}
.flow-steps li {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 16px 22px;
  text-align: center;
  position: relative;
  counter-increment: flow;
}
.flow-steps li .step-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.flow-steps li .step-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.flow-steps li p { font-size: 0.8rem; color: var(--text-sub); margin-top: 8px; line-height: 1.7; }

/* ---------- Column ---------- */
.column-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 32px;
  margin-bottom: 24px;
  display: block;
  color: var(--text);
  transition: transform 0.15s ease;
}
.column-card:hover { transform: translateY(-3px); opacity: 1; }
.column-card .col-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  background: var(--accent);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.column-card h3 { color: var(--navy); font-size: 1.05rem; line-height: 1.7; margin-bottom: 8px; }
.column-card p { font-size: 0.88rem; color: var(--text-sub); }

/* ---------- Contact form ---------- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 40px;
}
.form-row { margin-bottom: 26px; }
.form-row label.field-label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.required {
  background: #c0392b;
  color: var(--white);
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 700;
}
.optional {
  background: #9aa3b0;
  color: var(--white);
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 700;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="url"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccd3dd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--bg);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 2px solid var(--accent);
  background: var(--white);
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
}
.checkbox-grid input { accent-color: var(--accent); width: 16px; height: 16px; }
.form-submit { text-align: center; margin-top: 36px; }
.form-submit button {
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.form-note { font-size: 0.83rem; color: var(--text-sub); margin-top: 16px; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #24406b 70%, var(--accent) 140%);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-band h2 { font-size: clamp(1.25rem, 3vw, 1.6rem); margin-bottom: 20px; line-height: 1.8; }
.cta-band p { color: #c3d4e2; max-width: 620px; margin: 0 auto 32px; font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #b8c2d0;
  padding: 56px 24px 28px;
  font-size: 0.88rem;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand strong { color: var(--white); font-size: 1.05rem; display: block; margin-bottom: 6px; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav a { color: #b8c2d0; }
.footer-nav a:hover { color: var(--white); }
.sns-links { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.sns-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
}
.sns-links a:hover { opacity: 0.85; }
.sns-links img { height: 16px; width: auto; display: block; }
.profile-sns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.profile-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.profile-sns img { height: 18px; width: auto; display: block; }
.copyright {
  text-align: center;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: #7c8899;
}

/* ---------- Legal pages ---------- */
.legal h2 {
  color: var(--navy);
  font-size: 1.15rem;
  margin: 40px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}
.legal p, .legal li { font-size: 0.95rem; }
.legal ul { margin: 10px 0; }
.legal ul li { padding-left: 1.2em; position: relative; margin-bottom: 6px; }
.legal ul li::before { content: "・"; position: absolute; left: 0; color: var(--accent); }
.legal table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow); }
.legal table th, .legal table td { border: 1px solid var(--line); padding: 14px 18px; font-size: 0.92rem; text-align: left; }
.legal table th { background: var(--accent-light); color: var(--navy); width: 32%; }
.legal .note { font-size: 0.83rem; color: var(--text-sub); margin-top: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .global-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .global-nav.open { display: block; }
  .global-nav ul { flex-direction: column; gap: 0; padding: 12px 0; }
  .global-nav ul li { width: 100%; text-align: center; }
  .global-nav a { display: block; padding: 12px; }
  .nav-cta { margin: 10px 24px; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    color: var(--navy);
    line-height: 1;
  }
  .service-block, .case-block, .profile-card, .contact-form { padding: 28px 22px; }
  .profile-head { flex-direction: column; text-align: center; gap: 20px; }
  .profile-head .profile-title { margin-bottom: 0; }
  .price-box { padding: 18px 18px; }
  .price-box dl { grid-template-columns: 1fr; gap: 4px; }
  .price-box dt { margin-top: 10px; }
  .price-box dt:first-child { margin-top: 0; }
  .price-box .price-main small { display: block; margin: 6px 0 0; }
  .case-cta a { flex: 1 1 100%; text-align: center; }
  .section { padding: 56px 0; }
}
