/* ===== 弁護士プロフィール（トップ） ===== */
#lawyer-intro { background: var(--navy); }
#lawyer-intro .lawyer-intro-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; gap: 56px; align-items: flex-end;
}
.lawyer-intro-photo-wrap {
  flex-shrink: 0; width: 220px;
  align-self: flex-end;
}
.lawyer-intro-photo { width: 100%; height: auto; display: block; }
.lawyer-intro-body { flex: 1; padding-bottom: 8px; }
.lawyer-intro-en {
  display: block; font-family: Georgia, serif;
  font-size: .72rem; letter-spacing: .22em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 10px;
}
.lawyer-intro-name {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: #fff;
  font-weight: 400; letter-spacing: .1em; margin-bottom: 20px;
}
.lawyer-intro-kana { font-size: .65em; color: #8ba0c0; letter-spacing: .06em; margin-left: 8px; }
.lawyer-intro-text {
  font-size: .9rem; color: #b0bcd0; line-height: 2; margin-bottom: 20px;
}
.lawyer-intro-career {
  list-style: none; margin-bottom: 24px;
}
.lawyer-intro-career li {
  font-size: .82rem; color: #8ba0c0; padding: 3px 0 3px 14px;
  position: relative; border-bottom: 1px solid rgba(255,255,255,.06);
}
.lawyer-intro-career li::before {
  content: "—"; position: absolute; left: 0; color: var(--gold); font-size: .7em; top: 6px;
}
.lawyer-intro-link {
  display: inline-block; font-size: .83rem; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  letter-spacing: .06em; transition: opacity .2s;
}
.lawyer-intro-link:hover { opacity: .7; color: var(--gold); }
@media (max-width: 768px) {
  #lawyer-intro .lawyer-intro-inner { flex-direction: column; gap: 0; align-items: center; }
  .lawyer-intro-photo-wrap { width: 160px; }
  .lawyer-intro-body { padding: 24px 0 0; }
}

/* ===== お知らせ ===== */
#news { background: var(--light); padding: 64px 24px; }
.news-inner { max-width: 1100px; margin: 0 auto; }
.news-header {
  display: flex; align-items: baseline; gap: 20px; margin-bottom: 32px;
  border-bottom: 2px solid var(--navy); padding-bottom: 14px;
}
.news-header .en { font-family: Georgia, serif; font-size: .78rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; }
.news-header h2 { font-size: 1.3rem; color: var(--navy); font-weight: 700; letter-spacing: .1em; }
.news-header a { margin-left: auto; font-size: .85rem; color: var(--gold); letter-spacing: .06em; border-bottom: 1px solid var(--gold); }
.news-list { list-style: none; }
.news-list li {
  display: flex; align-items: baseline; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.news-list li:last-child { border-bottom: none; }
.news-date { flex-shrink: 0; color: var(--gold); font-family: Georgia, serif; font-size: .88rem; letter-spacing: .06em; }
.news-tag {
  flex-shrink: 0; background: var(--navy); color: #fff;
  font-size: .72rem; padding: 3px 10px; border-radius: 2px; letter-spacing: .06em;
}
.news-title a { color: var(--text-sub); transition: color .2s; }
.news-title a:hover { color: var(--navy); }

/* ===== ブログ一覧 ===== */
#blog-list { background: #fff; }
.blog-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1100px; margin: 0 auto;
}
.blog-card {
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.blog-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, #1b2a4a 0%, #2c4070 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: Georgia, serif; font-size: 2rem; letter-spacing: .1em;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.blog-card-date { font-size: .78rem; color: var(--gold); font-family: Georgia, serif; }
.blog-card-tag {
  font-size: .68rem; background: var(--light); color: var(--navy);
  padding: 2px 8px; border: 1px solid var(--border); border-radius: 2px;
}
.blog-card-title { font-size: 1rem; color: var(--navy); font-weight: 700; margin-bottom: 10px; letter-spacing: .04em; line-height: 1.6; }
.blog-card-excerpt { font-size: .85rem; color: var(--text-sub); flex: 1; }
.blog-card-more { margin-top: 16px; font-size: .82rem; color: var(--gold); border-bottom: 1px solid var(--gold); display: inline-block; align-self: flex-start; }

/* ===== ブログ記事本文 ===== */
#blog-article { background: #fff; }
.article-wrap { max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.article-date { font-size: .82rem; color: var(--gold); font-family: Georgia, serif; }
.article-tag {
  font-size: .72rem; background: var(--navy); color: #fff;
  padding: 2px 10px; border-radius: 2px;
}
.article-title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--navy); font-weight: 700; letter-spacing: .06em; margin-bottom: 32px; line-height: 1.6; }
.article-body { font-size: .95rem; color: #333; line-height: 2; }
.article-body h2 { font-size: 1.2rem; color: var(--navy); border-left: 3px solid var(--gold); padding-left: 12px; margin: 40px 0 16px; }
.article-body h3 { font-size: 1rem; color: var(--navy); margin: 28px 0 10px; font-weight: 700; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 1.4em; margin-bottom: 18px; }
.article-body li { margin-bottom: 6px; }
.article-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.article-back { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gold); border-bottom: 1px solid var(--gold); margin-top: 48px; }

/* ===== リセット & 基本 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro", serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.8;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== カラー変数 ===== */
:root {
  --navy:   #1b2a4a;
  --gold:   #b8922a;
  --light:  #f7f5f0;
  --border: #d9d3c6;
  --text-sub: #555;
}

/* ===== ヘッダー ===== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(27, 42, 74, 0.97);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  border-bottom: 2px solid var(--gold);
}
.logo {
  display: flex; align-items: baseline; gap: 10px;
  color: #fff;
}
.logo-ja { font-size: 1.2rem; letter-spacing: .1em; }
.logo-en { font-size: .75rem; color: var(--gold); letter-spacing: .12em; font-family: Georgia, serif; }
nav { display: flex; gap: 32px; }
nav a {
  color: #ccc; font-size: .85rem; letter-spacing: .08em;
  transition: color .2s;
}
nav a:hover, nav a.active { color: var(--gold); }
.btn-contact {
  background: var(--gold); color: #fff;
  padding: 8px 22px; border-radius: 2px;
  font-size: .85rem; letter-spacing: .06em;
  transition: background .2s;
}
.btn-contact:hover { background: #9a7520; color: #fff; }

/* ===== ハンバーガー（スマホ用） ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; }

/* ===== ページ上部バナー（サブページ用） ===== */
.page-banner {
  margin-top: 68px;
  background: linear-gradient(135deg, #1b2a4a 0%, #2c4070 60%, #1b2a4a 100%);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner .en {
  display: block; font-family: Georgia, serif;
  font-size: .8rem; letter-spacing: .2em; color: var(--gold);
  margin-bottom: 10px; text-transform: uppercase;
  position: relative;
}
.page-banner h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff; font-weight: 400; letter-spacing: .12em;
  position: relative;
}
.page-banner .divider {
  width: 40px; height: 2px; background: var(--gold);
  margin: 14px auto 0; position: relative;
}

/* ===== ヒーロー ===== */
#hero {
  margin-top: 68px;
  padding: 28px 40px 24px;
  background: #0a1628;
  position: relative; overflow: hidden;
}
#hero::before { display: none; }
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  opacity: 1;
  transition: opacity 1s ease;
}
.hero-bg-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  transform-origin: center center;
  animation: heroZoom 30s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.25); }
}
/* テキスト等を動画の上に重ねる */
#hero .hero-layout { position: relative; z-index: 10; transform: translateZ(0); }
#hero .hero-scroll { position: static; }
/* 動画上のテキストを読みやすくするオーバーレイ */
#hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,.62) 0%,
    rgba(20,40,80,.45) 60%,
    rgba(10,22,40,.55) 100%);
  pointer-events: none;
}
.hero-layout {
  display: flex;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}
#hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; text-align: center; padding: 0; flex: 0 0 auto; max-width: 560px; }
.hero-catchcopy {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: #fff; font-weight: 400; letter-spacing: .12em; line-height: 1.4;
  margin-bottom: 6px;
}
.hero-catchcopy em {
  font-style: normal; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}
.hero-sub {
  color: #b0bcd0; font-size: clamp(.85rem, 1.4vw, 1rem);
  max-width: 600px; margin: 0 auto 10px; letter-spacing: .06em;
}
/* ヒーロー価値提案 */
.hero-value-prop {
  display: inline-block;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.9);
  letter-spacing: .12em;
  line-height: 1.8;
  margin-bottom: 10px;
  padding: 7px 24px;
  border: 1px solid rgba(192,168,96,.4);
  border-radius: 2px;
}
.hero-value-prop em {
  font-style: normal;
  color: #c0a860;
  font-weight: 700;
}

/* ヒーロー お悩みボックス */
.hero-troubles-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(192,168,96,.4);
  border-radius: 4px;
  padding: 10px 18px;
  margin: 0 auto 10px;
  max-width: 580px;
  text-align: left;
}
.hero-target {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: #c0a860;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.5;
}
.hero-troubles {
  list-style: none;
  font-size: clamp(.82rem, 1.3vw, .93rem);
  color: #b0bcd0;
  letter-spacing: .04em;
}
.hero-troubles li {
  padding: 2px 0 2px 16px;
  position: relative;
}
.hero-troubles li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #c0a860;
  font-size: .6em;
  top: 7px;
}

/* CTAボタン 強調アニメーション */
.btn-cta-pulse {
  box-shadow: 0 0 0 0 rgba(184,146,42,.7);
  animation: cta-pulse 2.4s infinite;
}
@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,146,42,.6); }
  60%  { box-shadow: 0 0 0 10px rgba(184,146,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,146,42,0); }
}

/* ===== サービスクイックリンク ===== */
#service-quick {
  background: #111d30;
  padding: 16px 24px;
}
.sq-inner { max-width: 1100px; margin: 0 auto; }
.sq-label {
  text-align: center;
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.sq-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}
.sq-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-top: 2px solid var(--gold);
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}
.sq-card:hover {
  background: rgba(184,146,42,.14);
  transform: translateY(-3px);
}
.sq-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0;
  flex-shrink: 0;
}
.sq-title {
  font-size: .78rem;
  color: #c8c4bc;
  letter-spacing: .05em;
  line-height: 1.55;
}

/* ヒーロー電話番号 */
.hero-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
  gap: 2px;
  cursor: pointer;
  transition: opacity .2s;
}
.hero-tel:hover { opacity: .8; }
.hero-tel-num {
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: #fff;
  letter-spacing: .1em;
}
.hero-tel-num::before {
  content: "☎ ";
  color: #c0a860;
  font-size: .8em;
}
.hero-tel-note {
  font-size: .73rem;
  color: #8ba0c0;
  letter-spacing: .08em;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: #fff;
  padding: 14px 40px; border-radius: 2px;
  font-size: 1rem; letter-spacing: .08em;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #9a7520; transform: translateY(-2px); }
.btn-outline {
  border: 1px solid #7a8eac; color: #b0bcd0;
  padding: 14px 40px; border-radius: 2px;
  font-size: 1rem; letter-spacing: .08em;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  color: #fff; font-size: .95rem; font-weight: 700; letter-spacing: .22em;
  margin-top: 24px;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.hero-scroll::after {
  content: "▼";
  font-size: 1.8rem;
  display: block;
  line-height: 1;
  animation: scrollDrop .9s ease-in-out infinite;
  text-shadow: 0 0 10px #fff, 0 0 22px #fff, 0 0 40px rgba(255,255,255,.6);
}
@keyframes scrollDrop {
  0%, 100% { transform: translateY(0);    opacity: .25; }
  50%       { transform: translateY(10px); opacity: 1;   }
}

/* ===== セクション共通 ===== */
section { padding: 80px 24px; }
.section-label { text-align: center; margin-bottom: 56px; }
.section-label .en {
  display: block; font-family: Georgia, serif;
  font-size: .8rem; letter-spacing: .2em; color: var(--gold);
  margin-bottom: 10px; text-transform: uppercase;
}
.section-label h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400; letter-spacing: .1em; color: var(--navy);
}
.section-label p {
  margin-top: 16px; color: var(--text-sub);
  font-size: .95rem; max-width: 560px; margin-inline: auto;
}
.section-header {
  text-align: center; margin-bottom: 56px;
}
.section-header .en {
  display: block; font-family: Georgia, serif;
  font-size: .8rem; letter-spacing: .2em; color: var(--gold);
  margin-bottom: 10px; text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400; letter-spacing: .1em; color: var(--navy);
}
.section-label-text {
  margin-top: 16px; color: var(--text-sub);
  font-size: .95rem; max-width: 560px; margin-inline: auto;
}
.divider { width: 40px; height: 2px; background: var(--gold); margin: 16px auto 0; }

/* ===== 強み ===== */
#strengths { background: var(--light); }
.strengths-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px; margin: 0 auto;
}
.strengths-grid-5 { max-width: 1100px; margin: 0 auto; }
.strengths-row-top {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.strengths-row-bottom {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  margin-top: 28px;
  max-width: calc((200% - 28px) / 3);
  margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) {
  .strengths-row-top, .strengths-row-bottom {
    grid-template-columns: 1fr; max-width: 100%;
  }
  .strengths-row-bottom { margin-top: 0; }
}
.strength-card {
  background: #fff; padding: 40px 32px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.strength-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.strength-icon {
  width: 52px; height: 52px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.strength-card h3 { font-size: 1.05rem; color: var(--navy); letter-spacing: .06em; margin-bottom: 12px; font-weight: 700; }
.strength-card p { font-size: .9rem; color: var(--text-sub); }

/* ===== 業務内容 ===== */
#services { background: #fff; }
.services-grid {
  display: grid; gap: 2px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1100px; margin: 0 auto;
  border: 1px solid var(--border);
}
.service-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background .2s;
}
.service-item:hover { background: var(--light); }
.service-item::before {
  content: attr(data-num);
  position: absolute; top: -10px; right: 14px;
  font-family: Georgia, serif; font-size: 3.5rem; color: var(--border); line-height: 1;
}
.service-item h3 { font-size: 1rem; color: var(--navy); letter-spacing: .08em; margin-bottom: 10px; font-weight: 700; }
.service-item ul { list-style: none; font-size: .85rem; color: var(--text-sub); }
.service-item ul li { padding: 3px 0; }
.service-item ul li::before { content: "─ "; color: var(--gold); }

/* ===== 業務内容アコーディオン ===== */
.service-accordion { max-width: 900px; margin: 0 auto; }
.service-acc-item { border-bottom: 1px solid var(--border); }
.service-acc-item:first-child { border-top: 1px solid var(--border); }
.service-acc-btn {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; gap: 20px;
  padding: 22px 4px; cursor: pointer; text-align: left;
  font-family: inherit; transition: background .15s;
}
.service-acc-btn:hover { background: var(--light); }
.service-acc-btn:hover .service-acc-title { color: var(--gold); }
.service-acc-num {
  flex-shrink: 0;
  font-family: Georgia, serif; font-size: 1.15rem;
  color: var(--gold); letter-spacing: .08em; width: 36px;
}
.service-acc-title {
  flex: 1; font-size: 1.05rem; color: var(--navy);
  letter-spacing: .08em; font-weight: 700; transition: color .2s;
}
.service-acc-arrow {
  flex-shrink: 0; font-size: 1.5rem; color: var(--gold);
  line-height: 1; width: 24px; text-align: center;
}
.service-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.service-acc-item.open .service-acc-body { max-height: 1000px; }
.service-acc-inner { padding: 4px 4px 32px; }
.service-acc-content {
  display: grid; gap: 32px;
  grid-template-columns: 1fr 240px;
}
.service-acc-text p {
  font-size: .93rem; color: var(--text-sub);
  line-height: 2; margin-bottom: 16px;
}
.service-acc-text p:last-child { margin-bottom: 0; }
.service-acc-list {
  list-style: none;
  background: var(--light);
  padding: 20px 24px;
  align-self: start;
  border-left: 3px solid var(--gold);
}
.service-acc-list li {
  font-size: .88rem; color: var(--text-sub);
  padding: 6px 0 6px 16px; position: relative;
  border-bottom: 1px solid var(--border);
}
.service-acc-list li:last-child { border-bottom: none; }
.service-acc-list li::before {
  content: "─"; position: absolute; left: 0; color: var(--gold);
}
@media (max-width: 768px) {
  .service-acc-content { grid-template-columns: 1fr; }
  .service-acc-item.open .service-acc-body { max-height: 1400px; }
}

/* ===== 料金 ===== */
#fee { background: var(--light); }
.fee-table { max-width: 860px; margin: 0 auto; border-collapse: collapse; width: 100%; }
.fee-table thead tr { background: var(--navy); color: #fff; }
.fee-table th, .fee-table td {
  padding: 16px 24px; font-size: .9rem; letter-spacing: .04em;
  border: 1px solid var(--border); text-align: left;
}
.fee-table th { font-weight: 400; letter-spacing: .1em; }
.fee-table tbody tr:nth-child(even) { background: #fff; }
.fee-table tbody tr:nth-child(odd) { background: #f0ede6; }
.fee-table .price { color: var(--gold); font-family: Georgia, serif; font-weight: 700; }
.fee-note { max-width: 860px; margin: 20px auto 0; font-size: .82rem; color: var(--text-sub); }

/* ===== 弁護士紹介 ===== */
#lawyer { background: #fff; }
.lawyer-card { max-width: 860px; margin: 0 auto; display: flex; gap: 48px; align-items: flex-start; }
.lawyer-photo {
  flex-shrink: 0; width: 280px; min-height: 360px;
  display: flex; align-items: flex-start; justify-content: center;
  color: #8898aa; font-size: .85rem; letter-spacing: .06em;
  border: 1px solid var(--border); flex-direction: column; gap: 8px;
  background: var(--light); overflow: hidden; padding: 0;
}
.lawyer-photo img { width: 100%; height: auto; display: block; object-position: top; }
.lawyer-info { flex: 1; }
.lawyer-info .title { font-size: .8rem; color: var(--gold); letter-spacing: .12em; margin-bottom: 6px; font-family: Georgia, serif; }
.lawyer-info h3 { font-size: 1.6rem; color: var(--navy); letter-spacing: .08em; margin-bottom: 20px; font-weight: 400; }
.lawyer-info p { font-size: .9rem; color: var(--text-sub); margin-bottom: 14px; }
.career-list { list-style: none; margin-top: 16px; font-size: .85rem; color: var(--text-sub); }
.career-list li { padding: 4px 0; padding-left: 14px; position: relative; }
.career-list li::before { content: ""; position: absolute; left: 0; top: 13px; width: 5px; height: 1px; background: var(--gold); }

/* ===== よくある質問 ===== */
#faq { background: var(--light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; cursor: pointer; }
.faq-q-badge {
  flex-shrink: 0; width: 28px; height: 28px; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: .9rem; border-radius: 2px; margin-top: 2px;
}
.faq-question p { font-size: .95rem; color: var(--navy); font-weight: 700; flex: 1; }
.faq-arrow { margin-left: auto; color: var(--gold); transition: transform .3s; flex-shrink: 0; font-size: 1.2rem; margin-top: 2px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s; }
.faq-answer-inner { display: flex; gap: 16px; padding: 0 0 20px; }
.faq-a-badge {
  flex-shrink: 0; width: 28px; height: 28px; background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: .9rem; border-radius: 2px; margin-top: 2px;
}
.faq-answer p { font-size: .9rem; color: var(--text-sub); flex: 1; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== アクセス ===== */
#access { background: #fff; }
.access-inner { max-width: 1000px; margin: 0 auto; display: flex; gap: 48px; flex-wrap: wrap; }
.access-info { flex: 1; min-width: 260px; }
.access-info h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 20px; letter-spacing: .08em; }
.access-row { display: flex; gap: 12px; margin-bottom: 12px; font-size: .9rem; }
.access-row .label { flex-shrink: 0; width: 72px; color: var(--gold); font-size: .8rem; letter-spacing: .06em; padding-top: 2px; }
.access-row .value { color: var(--text-sub); }

/* ===== お問い合わせ ===== */
#contact { background: var(--navy); }
#contact .section-label h2 { color: #fff; }
#contact .section-label p { color: #b0bcd0; }
.contact-form { max-width: 640px; margin: 0 auto; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: .82rem; color: #b0bcd0; letter-spacing: .08em; margin-bottom: 6px; }
.form-row .required {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: .68rem; padding: 1px 6px; border-radius: 2px; margin-left: 6px; vertical-align: middle;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid #3a5080; color: #fff; padding: 12px 16px; font-size: .9rem;
  border-radius: 2px; outline: none; transition: border-color .2s; font-family: inherit;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #4a6080; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row select option { background: var(--navy); }
.form-row textarea { height: 140px; resize: vertical; }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit-wrap { text-align: center; margin-top: 32px; }
.btn-submit {
  background: var(--gold); color: #fff; border: none; padding: 16px 60px;
  font-size: 1rem; letter-spacing: .1em; cursor: pointer; border-radius: 2px;
  font-family: inherit; transition: background .2s, transform .15s;
}
.btn-submit:hover { background: #9a7520; transform: translateY(-2px); }
.form-note { margin-top: 16px; font-size: .8rem; color: #5a7090; text-align: center; }

/* ===== フッター ===== */
footer { background: #111824; padding: 48px 24px 28px; color: #5a7090; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; padding-bottom: 28px; border-bottom: 1px solid #1f2f44;
}
.footer-brand .logo-ja { color: #ccc; font-size: 1.1rem; }
.footer-brand .logo-en { color: var(--gold); font-size: .7rem; }
.footer-brand p { font-size: .82rem; color: #4a6080; margin-top: 10px; max-width: 280px; }
.footer-links { display: flex; gap: 48px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { font-size: .82rem; color: #4a6080; transition: color .2s; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-links ul .footer-nav-title { font-size: .72rem; color: #3a5070; letter-spacing: .12em; margin-bottom: 12px; font-family: Georgia, serif; }
.footer-bottom {
  max-width: 1100px; margin: 20px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .75rem;
}

/* ===== ヒーロー右パネル（対応分野） ===== */
.hero-services-panel {
  width: 240px;
  flex-shrink: 0;
  padding-top: 32px;
  position: relative;
}
.hero-services-label {
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--gold);
  font-family: Georgia, serif;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}
.hero-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.hero-svc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--gold);
  padding: 11px 6px;
  text-align: center;
  color: #c8c4bc;
  font-size: .72rem;
  letter-spacing: .04em;
  line-height: 1.5;
  transition: background .2s, transform .15s;
}
.hero-svc-btn:hover {
  background: rgba(184,146,42,.16);
  transform: translateY(-2px);
  color: #fff;
}
.hero-svc-icon {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-services-more {
  display: block;
  text-align: center;
  font-size: .73rem;
  color: var(--gold);
  margin-top: 10px;
  letter-spacing: .08em;
  transition: opacity .2s;
  border-bottom: 1px solid rgba(184,146,42,.4);
  padding-bottom: 2px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hero-services-more:hover { opacity: .7; color: var(--gold); }
@media (max-width: 960px) {
  .hero-services-panel { display: none; }
  .hero-inner { max-width: none; }
  .hero-layout { display: block; }
  #hero { padding: 28px 24px 24px; }
}

/* ===== ヒーロー専門性バッジ ===== */
.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-badge {
  border: 1px solid rgba(192,168,96,.5);
  color: #c0a860;
  font-size: .75rem;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(192,168,96,.08);
}
.hero-badge-accent {
  background: rgba(192,168,96,.2);
  border-color: #c0a860;
  font-weight: 700;
}

/* ===== 実績数値バー ===== */
#stats-bar {
  background: #0e1624;
  border-top: 1px solid rgba(192,168,96,.2);
  border-bottom: 1px solid rgba(192,168,96,.2);
  padding: 28px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
}
.stat-unit {
  font-size: .65em;
  letter-spacing: .08em;
  color: #c0a860;
}
.stat-label {
  font-size: .72rem;
  color: #6a88a8;
  letter-spacing: .08em;
  text-align: center;
}

/* ===== 対応分野カード ===== */
#service-cards {
  background: var(--light);
  padding: 80px 24px;
}
.svc-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border-top: 3px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-top-color: var(--gold);
}
.svc-featured {
  border-top: 3px solid var(--gold);
  background: linear-gradient(160deg, #fff 70%, #faf8f2 100%);
  grid-column: span 1;
}
.svc-featured:hover {
  box-shadow: 0 8px 40px rgba(184,146,42,.18);
}
.svc-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 20px;
}
.svc-card-num {
  font-family: Georgia, serif;
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .1em;
}
.svc-card-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.svc-featured .svc-card-icon { background: var(--gold); }
.svc-card h3 {
  font-size: .98rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.5;
}
.svc-card p {
  font-size: .84rem;
  color: var(--text-sub);
  line-height: 1.8;
  flex: 1;
}
.svc-card-more {
  font-size: .78rem;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
  letter-spacing: .04em;
}
.svc-bottom-links {
  max-width: 1100px;
  margin: 32px auto 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.svc-link-btn {
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 10px 28px;
  border-radius: 2px;
  font-size: .85rem;
  letter-spacing: .08em;
  transition: background .2s, color .2s;
}
.svc-link-btn:hover { background: var(--navy); color: #fff; }

/* ===== フローティングCTA ===== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta-contact {
  background: var(--gold);
  color: #fff;
  padding: 13px 22px;
  border-radius: 3px;
  font-size: .88rem;
  letter-spacing: .06em;
  box-shadow: 0 4px 20px rgba(184,146,42,.5);
  white-space: nowrap;
  transition: background .2s, transform .15s;
  display: block;
}
.floating-cta-contact:hover { background: #9a7520; transform: translateY(-2px); color: #fff; }
.floating-cta-tel {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: .83rem;
  letter-spacing: .05em;
  box-shadow: 0 3px 14px rgba(0,0,0,.35);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}
.floating-cta-tel:hover { background: #2c4070; color: #fff; }

/* ===== ページ末尾CTA ===== */
.page-cta-section {
  background: linear-gradient(135deg, #1b2a4a 0%, #2c4070 100%);
  padding: 64px 24px;
  text-align: center;
}
.page-cta-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #fff;
  font-weight: 400;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.page-cta-section p {
  color: #b0bcd0;
  font-size: .93rem;
  margin-bottom: 32px;
  letter-spacing: .04em;
}
.page-cta-btns {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.page-cta-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: opacity .2s;
}
.page-cta-tel:hover { opacity: .8; }
.page-cta-tel-num {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: .1em;
  color: #fff;
}
.page-cta-tel-num::before {
  content: "☎ ";
  color: var(--gold);
  font-size: .8em;
}
.page-cta-tel-note {
  font-size: .72rem;
  color: #8ba0c0;
  letter-spacing: .08em;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav, .btn-contact { display: none; }
  .hamburger { display: flex; }
  .lawyer-card { flex-direction: column; }
  .lawyer-photo { width: 100%; min-height: 0; }
  .footer-links { gap: 24px; }
  .form-row-2col { grid-template-columns: 1fr; }
  .sq-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-troubles-box { padding: 14px 16px; }
  .floating-cta { bottom: 20px; right: 14px; }
  .floating-cta-contact, .floating-cta-tel { font-size: .8rem; padding: 11px 16px; }
  .page-cta-btns { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 16px; }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
.sp-only { display: none; }
@media (max-width: 480px) {
  .sp-only { display: inline; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ===== サイドバーCTA（PC） ===== */
.section-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.section-with-sidebar .service-accordion,
.section-with-sidebar .fee-table,
.section-with-sidebar .fee-note {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.cta-sidebar {
  position: sticky;
  top: 100px;
}
.cta-sidebar-card {
  background: var(--navy);
  border: 1px solid rgba(184,146,42,.3);
  padding: 28px 20px;
  text-align: center;
}
.cta-sidebar-label {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .16em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 10px;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}
.cta-sidebar-title {
  font-size: .96rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.7;
  margin-bottom: 12px;
}
.cta-sidebar-body {
  font-size: .8rem;
  color: #8ba0c0;
  line-height: 1.8;
  margin-bottom: 20px;
}
.cta-sidebar-body strong { color: #c0a860; }
.cta-sidebar-btn {
  display: block;
  background: var(--gold);
  color: #fff;
  padding: 13px 16px;
  font-size: .85rem;
  letter-spacing: .08em;
  border-radius: 2px;
  margin-bottom: 14px;
  transition: background .2s, transform .15s;
}
.cta-sidebar-btn:hover { background: #9a7520; color: #fff; transform: translateY(-2px); }
.cta-sidebar-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  transition: opacity .2s;
}
.cta-sidebar-tel:hover { opacity: .8; }
.cta-sidebar-tel-num {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: #fff;
}
.cta-sidebar-tel-num::before {
  content: "☎ ";
  color: var(--gold);
  font-size: .8em;
}
.cta-sidebar-tel-note {
  font-size: .68rem;
  color: #6a8aac;
  letter-spacing: .06em;
}
@media (max-width: 900px) {
  .section-with-sidebar {
    grid-template-columns: 1fr;
  }
  .cta-sidebar { display: none; }
}

/* ===== スマホ固定フッターCTA ===== */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    transform: translateY(100%);
  }
  .floating-cta.visible { transform: translateY(0); }
  .floating-cta-tel {
    flex: 1;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    padding: 14px 8px;
    font-size: .82rem;
    border-right: 1px solid rgba(255,255,255,.15);
  }
  .floating-cta-contact {
    flex: 1;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    padding: 14px 8px;
    font-size: .82rem;
  }
}

/* ===== Heroicons SVG アイコン調整 ===== */
/* 暗色サークル内（.strength-icon）→ 白ストローク */
.strength-icon { color: #fff; }
.strength-icon svg { flex-shrink: 0; }

/* ステップアイコン（approach cards） */
.step-icon svg, .step-icon-d svg { width: 28px; height: 28px; }

/* 統計カード */
.stat-icon svg { width: 32px; height: 32px; color: #c0a860; }
.stat-icon { font-size: 0; }   /* 旧font-sizeを無効化 */

/* fee.html Brain/Hand 大アイコン */
.fee-bh-icon { font-size: 0; }
.fee-bh-icon svg { width: 40px; height: 40px; color: rgba(255,255,255,.85); }

/* AI機能カードアイコン */
.ai-func-card-icon { font-size: 0; }
.ai-func-card-icon svg { width: 28px; height: 28px; color: #fff; }

/* KB・アーキテクチャアイコン */
.arch-kb-icon { font-size: 0; }
.arch-kb-icon svg { width: 28px; height: 28px; color: #c0a860; }
.arch-note-icon { font-size: 0; }
.arch-note-icon svg { width: 22px; height: 22px; color: #c0a860; }

/* pain-band インラインアイコン */
.pain-icon { font-size: 0; line-height: 0; }
.pain-icon svg { color: #c0a860; vertical-align: middle; }

/* サービスページ課題アイコン */
.sv-ch-icon { font-size: 0; }
.sv-ch-icon svg { color: #c0a860; }

/* FAQカテゴリアイコン */
.faq-cat-icon { font-size: 0; }
.faq-cat-icon svg { color: var(--gold); }

/* 差別化ノートアイコン */
.diff-note-icon { font-size: 0; }
.diff-note-icon svg { width: 24px; height: 24px; color: var(--navy); }
.approach-note-icon { font-size: 0; }
.approach-note-icon svg { width: 24px; height: 24px; color: var(--navy); }

/* fee.html AI注記 */
.fee-bh-ai-note svg { color: #c0a860; flex-shrink: 0; }

/* ブログサムネイル数字ラベル内のアイコン */
.blog-card-thumb svg { display: none; }

/* svc-card-icon（トップページ対応分野） */
.svc-card-icon { font-size: 0; }
.svc-card-icon svg { width: 22px; height: 22px; color: #fff; }

/* hero-trust-item チェックマーク */
.ck { color: #c0a860; font-weight: 700; }

/* strength-card 内の div[style*="font-size:2rem"] SVG */
[style*="font-size:2rem"] svg, [style*="font-size: 2rem"] svg { 
  width: 28px; height: 28px; 
}

/* ===== 記事内CTA ===== */
.article-cta-block{background:linear-gradient(135deg,#1b2a4a 0%,#2c4070 100%);border-radius:6px;padding:36px 40px;margin:40px 0 32px;text-align:center;}
.article-cta-badge{display:inline-block;background:rgba(192,168,96,.18);border:1px solid rgba(192,168,96,.5);color:#c0a860;font-size:.72rem;padding:4px 16px;border-radius:20px;letter-spacing:.12em;font-family:Georgia,serif;margin-bottom:16px;}
.article-cta-title{font-family:'Noto Serif JP',serif;font-size:clamp(1.1rem,2.5vw,1.45rem);color:#fff;font-weight:700;line-height:1.55;margin-bottom:12px;letter-spacing:.06em;}
.article-cta-desc{font-size:.88rem;color:rgba(255,255,255,.68);line-height:1.9;max-width:540px;margin:0 auto 24px;}
.article-cta-btns{display:flex;justify-content:center;align-items:center;gap:24px;flex-wrap:wrap;}
.article-cta-tel{display:inline-flex;flex-direction:column;align-items:center;gap:2px;transition:opacity .2s;}
.article-cta-tel:hover{opacity:.8;}
.article-cta-tel-num{font-family:Georgia,serif;font-size:1.3rem;color:#fff;letter-spacing:.08em;}
.article-cta-tel-num::before{content:"☎ ";color:#c0a860;font-size:.8em;}
.article-cta-tel-note{font-size:.7rem;color:rgba(255,255,255,.5);letter-spacing:.06em;}
@media(max-width:600px){.article-cta-block{padding:28px 20px;}.article-cta-btns{flex-direction:column;gap:14px;}}
