/*
 * Kobe-Kita Gyoseishoshi Office — Vanilla CSS
 * Tailwind / shadcn 非依存。CSS変数 + セマンティッククラス。
 *
 * Brand
 *  - Navy (Primary)        : #0A1A33 — ロゴ船体・字色・ボーダー
 *  - Slate Accent          : #243042 — 縦線・下罫の繊細なアクセント
 *  - Off White / Slate     : #F8F9FA / #F0F2F4
 *
 * Typography
 *  - Body   : Noto Sans JP, 16px, 1.85
 *  - H1     : 900 / -0.02em
 *  - H2/H3  : 800-700 / -0.02em
 *  - 14px以下不可
 *
 * Box Model
 *  - Shadow 全廃。区切りは 1px ボーダーまたは背景切替。
 *  - border-radius は 0 または 2px 上限。
 */


/* === Design tokens =================================================== */
:root {
  /* Brand color — モノクロームの深ネイビー × 中性スレート（GOLD廃止） */
  --c-navy:        #0A1A33;   /* Base navy（黒に近い深紺）*/
  --c-navy-deep:   #04101D;   /* さらに深い基底 */
  --c-navy-soft:   #1F3A5C;
  /* 旧 gold トークンは互換のため残し、すべてスレート/ネイビー系に再配色 */
  --c-gold:        #243042;   /* Accent slate（ネイビーから一段下のスレート）*/
  --c-gold-light:  #a8eed9;   /* Light slate（暗背景上で読める淡いスレート）*/
  --c-gold-deep:   #04101D;   /* Hover 時の最深ネイビー */

  /* Surface — ベージュ感を抜いた中性グレー */
  --c-bg:          #F8F9FA;
  --c-bg-alt:      #F0F2F4;
  --c-bg-warm:     #ECEEF1;
  --c-white:       #ffffff;

  /* Text */
  --c-text:        #1A2733;
  --c-text-soft:   #4F5B68;
  --c-text-mute:   #6B7782;

  /* Lines */
  --c-line:        #D8DCE0;
  --c-line-strong: #0A1A33;

  /* Typography */
  --ff-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --ff-mincho: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;

  /* Layout */
  --container: 1100px;
  --section-y: 40px;
  --section-y-lg: 60px;

  /* Misc */
  --radius: 0px;
  --radius-soft: 2px;
}

/* === Reset / Base ===================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
strong, b { font-weight: 700; }

/* 日本語の文字詰め（プロポーショナルメトリクス） */
p, li, dd, dt, blockquote, .heading__title, .heading__sub,
.about-text-body, .info-card__lead, .law-notice__body,
.intro-body, .service-content__body, .service-content__list,
.menu-row__name, .menu-row__price, .office-row__value, .office-foot,
.faq-q__text, .faq-a__body, .blog-row__title {
  font-feature-settings: "palt" 1, "pkna" 1;
}

/* 見出しの「塊感」 */
h2, .heading__title { letter-spacing: -0.04em; }
.heading--service .heading__title { letter-spacing: -0.04em; }

img, svg, iframe { display: block; max-width: 100%; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.35; letter-spacing: -0.02em; }
strong { font-weight: 700; }

.white {color: #fff !important;}
/* === Layout helpers =================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .container { padding-left: 32px; padding-right: 32px; }
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--c-bg);
}
.section--alt   { background: #F9F6F0; }
.section--warm  { background: var(--c-bg-warm); }
.section--white { background: var(--c-white); }
.section--navy  { background: var(--c-navy); color: var(--c-white); }
@media (min-width: 768px) {
  .section { padding-top: var(--section-y-lg); padding-bottom: var(--section-y-lg); }
}

/* セクションのリズム（重要度に応じた強弱） */
.section--lg { padding-top: 64px; padding-bottom: 64px; }
.section--xl { padding-top: 80px; padding-bottom: 80px; }
.section--sm { padding-top: 36px; padding-bottom: 36px; }
@media (min-width: 768px) {
  .section--lg { padding-top: 96px; padding-bottom: 96px; }
  .section--xl { padding-top: 128px; padding-bottom: 128px; }
  .section--sm { padding-top: 56px; padding-bottom: 56px; }
}

/* 区切り線（情報の物理的な仕切り） */
.section-divider {
  background: var(--c-bg);
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.section-divider--alt { background: var(--c-bg-alt); }
.section-divider span {
  display: block;
  width: 100px;
  height: 1px;
  background: rgba(10, 26, 51, 0.18);
}

/* Mincho */
.mincho { font-family: var(--ff-mincho); font-feature-settings: "palt"; }

/* Section heading (centered, underlined) ---------------------------- */
.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.heading__en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.heading__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.015em;
  line-height: 1.5;
}
.heading__rule {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--c-gold);
  margin: 14px 0;
}
.heading__sub {
  font-size: 15px;
  color: var(--c-text-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.85;
  max-width: 720px;
}
@media (min-width: 768px) {
  .heading        { margin-bottom: 40px; }
  .heading__title { font-size: 30px; }
}

/* Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 0;
  transition: background-color .2s, color .2s, border-color .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-navy);
  color: var(--c-white);
  border-bottom: 2px solid var(--c-gold);
}
.btn--primary:hover { background: var(--c-navy-deep); border-bottom-color: var(--c-gold-light); }
.btn--ghost {
  border: 1px solid var(--c-navy);
  border-bottom: 2px solid var(--c-gold);
  color: var(--c-navy);
}
.btn--ghost:hover { background: var(--c-navy); color: var(--c-white); border-color: var(--c-navy); border-bottom-color: var(--c-gold-light); }
/* btn--gold は「ブラスの線で締めたネイビー塗り」へ。面塗りを避ける */
.btn--gold {
  background: var(--c-navy);
  color: var(--c-white);
  border-bottom: 2px solid var(--c-gold);
}
.btn--gold:hover { background: var(--c-navy-deep); border-bottom-color: var(--c-gold-light); }
.btn--block { width: 100%; }
.btn .arrow { width: 14px; height: 14px; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* === Site Header ====================================================== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--c-line);
  transition: padding .25s ease, background-color .25s ease;
}
.site-header.site-header--scrolled {
  position: fixed;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  animation: site-header-slide-down .3s ease-out both;
}
.site-header.site-header--scrolled .site-header__top    { display: none; }
.site-header.site-header--scrolled .site-header__main   { padding-top: 10px; padding-bottom: 10px; }
.site-header.site-header--scrolled .site-logo svg       { width: 34px; height: 34px; }
.site-header.site-header--scrolled .site-logo__name     { font-size: 17px; }
.site-header.site-header--scrolled .site-header__phone  { font-size: 18px; }
@keyframes site-header-slide-down {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.site-header__top {
  background: #06151F;     /* navy-deep */
  color: var(--c-white);
  height: 40px;
}
.site-header__top-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100%;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
}
.site-header__top-left,
.site-header__top-right,
.site-header__h1 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__top-left  i,
.site-header__top-right i,
.site-header__h1 i { color: var(--c-gold-light); margin-right: 4px; }

/* SEO H1（トップバー右側に配置 / 視覚は小さな本文サイズ） */
.site-header__h1 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  line-height: 1.4;
}
.site-header__h1-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .site-header__h1 { font-size: 12px; }
  .site-header__h1-icon { width: 16px; height: 16px; }
}
@media (max-width: 767px) {
  .site-header__top { height: auto; padding: 8px 0; }
  .site-header__top-inner { font-size: 12px; flex-direction: column; gap: 2px; align-items: flex-start; padding: 0 16px; }
}

.site-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

/* --- Logo ------------------------------------------------------- */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}
.site-logo__mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--c-navy);
}
.site-logo__mark img,
.site-logo__mark svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.site-logo__name {
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 19px;
  color: var(--c-navy);
  letter-spacing: 0.12em;
  white-space: nowrap;
  display: block;
}
.site-logo__en {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  margin-top: 4px;
  font-weight: 700;
  white-space: nowrap;
}

/* --- Nav -------------------------------------------------------- */
.site-nav {
  display: none;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
@media (min-width: 1100px) { .site-nav { display: flex; } }

/* WordPress wp_nav_menu のデフォルト <li> 出力をフラット化 */
.site-nav li,
.site-nav .menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
}
.site-nav a,
.site-nav__link {
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}
.site-nav a:hover,
.site-nav__link:hover { color: var(--c-gold-deep); }
.site-nav .current-menu-item > a {
  color: var(--c-gold-deep);
  border-bottom: 2px solid var(--c-gold);
}

.site-nav__cta {
  margin-left: 12px;
  padding: 10px 22px;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  border-bottom: 2px solid var(--c-gold);
  text-decoration: none;
}
.site-nav__cta:hover { background: var(--c-navy-deep); border-bottom-color: var(--c-gold-light); }

/* --- Mobile burger button ------------------------------------- */
.site-nav__menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  color: var(--c-navy);
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--c-line);
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
  margin-left: auto;
}
.site-nav__menu:hover { background: var(--c-bg-alt); }
.site-nav__menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 0;
  transition: transform .25s ease, opacity .2s ease;
}
@media (min-width: 1100px) { .site-nav__menu { display: none; } }

/* バーガーが開いた時の "X" 形 */
body.kk-drawer-open .site-nav__menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.kk-drawer-open .site-nav__menu-bar:nth-child(2) {
  opacity: 0;
}
body.kk-drawer-open .site-nav__menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === Mobile drawer ============================================= */
.kk-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}
.kk-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 33, 0);
  transition: background-color .3s ease;
  cursor: pointer;
}
.kk-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 360px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  border-left: 1px solid var(--c-line);
  overflow-y: auto;
  z-index: 2;
}
.kk-drawer__backdrop { z-index: 1; }
body.kk-drawer-open .kk-drawer { visibility: visible; pointer-events: auto; }
body.kk-drawer-open .kk-drawer__backdrop { background: rgba(8, 22, 33, 0.45); }
body.kk-drawer-open .kk-drawer__panel { transform: translateX(0); }

.kk-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-line);
}
.kk-drawer__brand {
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  letter-spacing: 0.1em;
}
.kk-drawer__close {
  background: transparent;
  border: 0;
  color: var(--c-navy);
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
}
.kk-drawer__close:hover { color: var(--c-gold-deep); }

.kk-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.kk-drawer__nav a,
.kk-drawer__nav .menu-item a {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-line);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.kk-drawer__nav a:hover { background: var(--c-bg-alt); color: var(--c-gold-deep); }
.kk-drawer__nav li,
.kk-drawer__nav .menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kk-drawer__nav .current-menu-item > a { color: var(--c-gold-deep); }

.kk-drawer__contact {
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid var(--c-line);
  background: var(--c-bg-alt);
}
.kk-drawer__contact-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
  margin-bottom: 8px;
}
.kk-drawer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  color: var(--c-navy);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  text-decoration: none;
}
.kk-drawer__phone i { color: var(--c-gold-deep); font-size: 16px; }
.kk-drawer__hours {
  font-size: 12px;
  color: var(--c-text-soft);
  margin-bottom: 16px;
}
.kk-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--c-gold);
  color: var(--c-navy);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: 1px solid var(--c-gold);
}
.kk-drawer__cta:hover { background: var(--c-gold-deep); color: #fff; }

body.kk-drawer-open { overflow: hidden; }

/* === Header right contact (phone + CTA) =========================== */
.site-header__contact {
  display: none;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
@media (min-width: 1280px) {
  .site-header__contact { display: flex; }
}
.site-header__phone-block {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--c-navy);
  line-height: 1.05;
  white-space: nowrap;
  text-decoration: none;
}
.site-header__phone i { color: var(--c-gold-deep); font-size: 16px; }
.site-header__phone:hover { color: var(--c-gold-deep); }
.site-header__phone-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
  margin-bottom: 4px;
  white-space: nowrap;
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  border: 0;
  border-bottom: 2px solid var(--c-gold);
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__cta:hover { background: var(--c-navy-deep); border-bottom-color: var(--c-gold-light); }
.site-header__cta i { font-size: 13px; }

/* 1100-1280px: 電話番号は表示しつつラベルを隠す */
@media (min-width: 1100px) and (max-width: 1279px) {
  .site-header__contact { display: flex; }
  .site-header__phone-label { display: none; }
  .site-header__phone { font-size: 18px; }
  .site-header__cta { display: none; }
}

/* === Hero: 写真左 + Navy 斜めスライス右 + Pill CTA =================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 892 / 760;
  max-height: 100vh;
  min-height: 580px;
}
@media (max-width: 767px) {
  .hero__stage {
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
  }
}
/* マウス追従パララックスのラッパ（スライドを内包） */
.hero__bg-wrap {
  position: absolute;
  inset: -16px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.hero__bg-slides {
  position: absolute;
  inset: 0;
}

/* 各スライド：opacity による fade in/out */
.hero__bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.3s cubic-bezier(.22, .61, .36, 1);
}
.hero__bg-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* スライドごとに別方向の Ken Burns で単調感を回避 */
  animation: hero-ken-burns 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__bg-slide:nth-child(2) img { animation-name: hero-ken-burns-2; animation-duration: 22s; }
.hero__bg-slide:nth-child(3) img { animation-name: hero-ken-burns-3; animation-duration: 20s; }

@keyframes hero-ken-burns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.12) translate(-18px, -10px); }
}
@keyframes hero-ken-burns-2 {
  from { transform: scale(1.10) translate(-12px, 6px); }
  to   { transform: scale(1.04) translate(8px, -8px); }
}
@keyframes hero-ken-burns-3 {
  from { transform: scale(1.06) translate(10px, -8px); }
  to   { transform: scale(1.12) translate(-6px, 10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-slide img { animation: none; transform: scale(1.04); }
}

/* 右側に navy の斜めスライス（純色） */
.hero__slice {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10,26,51,0) 0%,
    rgba(10,26,51,0) 28%,
    rgba(10,26,51,.55) 44%,
    var(--c-navy) 56%,
    var(--c-navy) 100%);
  clip-path: none;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .hero__slice {
    background: linear-gradient(to right,
      rgba(10,26,51,0) 0%,
      rgba(10,26,51,0) 18%,
      rgba(10,26,51,.55) 38%,
      var(--c-navy) 52%,
      var(--c-navy) 100%);
  }
}
@media (max-width: 768px) {
  .hero__slice { background: var(--c-navy); }
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
}
.hero__copy {
  margin-left: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 200px 22px 56px;
}
@media (min-width: 768px) {
  .hero__copy { width: 48%; padding: calc(var(--kk-header-h, 80px) + 40px) 36px 80px; }
}
@media (min-width: 1024px) {
  .hero__copy { width: 44%; padding: calc(var(--kk-header-h, 140px) + 110px) 56px 80px; }
}
@media (max-width: 767px) {
  .hero__content { position: relative; inset: auto; display: block; }
  .hero__copy { position: relative; }
}

.hero__badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #c1daff;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
}
.hero__badge .dot { width: 5px; height: 5px; background: var(--c-gold); }

.hero__title {
  color: var(--c-white);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero__title em {
  font-style: normal;
  color: var(--c-gold-light);
  font-weight: 600;
  letter-spacing: -0.03em;
  display: inline-block;
  position: relative;
  padding: 0 .04em;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0.04em;
  height: 4px;
  background: rgba(36, 48, 66, 0.32);
  z-index: -1;
}

.hero__lead {
  margin-top: 18px;
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.95;
  font-weight: 500;
  max-width: 460px;
}
.hero__lead strong { color: var(--c-gold-light); font-weight: 700; }

.hero__pills {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}
/* 4 つの場合は 2 カラム × 2 行 */
.hero__pills--grid {
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 560px;
}
@media (min-width: 640px) {
  .hero__pills--grid { grid-template-columns: 1fr 1fr; }
}
.hero__pill {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-white);
  color: var(--c-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 18px 22px;
  border-radius: 0;
  letter-spacing: 0.02em;
  transition: background-color .2s, transform .2s;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
}
.hero__pill span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}
.hero__pill:hover { background: var(--c-bg); transform: translateX(2px); }
.hero__pill .arrow { width: 16px; height: 16px; color: var(--c-navy); transition: transform .2s; flex-shrink: 0; margin-left: 8px; }
.hero__pill:hover .arrow { transform: translateX(4px); }

/* === Service: 詳細を見るリンク ======================================= */
.service-content__more {
  margin-top: 18px;
}
.service-content__more a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}
.service-content__more a:hover {
  color: var(--c-gold-deep);
  border-bottom-color: var(--c-gold-deep);
}

/* === Consultation Band（深ネイビーの相談バナー）======================= */
.consultation-band {
  background: var(--c-navy-deep);
  color: #FFFFFF;
  padding: 64px 0;
  border-top: 1px solid var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
}
.consultation-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
  align-items: center;
}
@media (min-width: 900px) {
  .consultation-band__inner {
    grid-template-columns: 1.4fr auto;
    gap: 56px;
    text-align: left;
  }
}
.consultation-band__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.45;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.consultation-band__lead {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.consultation-band__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media (min-width: 900px) { .consultation-band__feats { justify-content: flex-start; } }
.consultation-feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(36, 48, 66, 0.55);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}
.consultation-feat i { color: var(--c-gold-light); }

.consultation-band__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media (min-width: 900px) {
  .consultation-band__cta { align-items: stretch; min-width: 260px; }
}
.consultation-band__hours {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-gold-light);
  font-weight: 700;
}
.consultation-band__phone {
  font-family: var(--ff-mincho);
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1.1;
}
.consultation-band__phone i { color: var(--c-gold-light); font-size: 22px; }
.consultation-band__phone:hover { color: var(--c-gold-light); }
.consultation-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: #47a99e80;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  border: 1px solid var(--c-gold);
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease;
  margin-top: 6px;
}
.consultation-band__btn:hover { background: var(--c-gold); color: var(--c-navy-deep); }

/* === Hero JS-driven entrance ======================================== */
/* タイトル：1 文字ずつ rise + blur out */
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition:
    opacity .75s cubic-bezier(.22,.61,.36,1),
    transform .85s cubic-bezier(.22,.61,.36,1),
    filter .65s ease-out;
  transition-delay: calc(var(--i) * 32ms + 280ms);
}
.hero.hero--ready .hero__title .char {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* バッジ・リード・ピル：カスケードで遅れて入る */
.hero__badge,
.hero__lead,
.hero__pills {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .7s cubic-bezier(.22,.61,.36,1),
    transform .7s cubic-bezier(.22,.61,.36,1);
}
.hero.hero--ready .hero__badge { transition-delay: 80ms;  opacity: 1; transform: none; }
.hero.hero--ready .hero__lead  { transition-delay: 760ms; opacity: 1; transform: none; }
.hero.hero--ready .hero__pills { transition-delay: 900ms; opacity: 1; transform: none; }

/* Pill 個別の段階遅延 */
.hero__pill {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity .55s ease-out,
    transform .55s cubic-bezier(.22,.61,.36,1),
    background-color .2s,
    transform .2s;
}
.hero.hero--ready .hero__pill          { opacity: 1; transform: none; }
.hero.hero--ready .hero__pill:nth-child(1) { transition-delay: 1020ms; }
.hero.hero--ready .hero__pill:nth-child(2) { transition-delay: 1100ms; }
.hero.hero--ready .hero__pill:nth-child(3) { transition-delay: 1180ms; }
.hero.hero--ready .hero__pill:nth-child(4) { transition-delay: 1260ms; }
.hero.hero--ready .hero__pill:hover    { transform: translateX(2px); }

@media (prefers-reduced-motion: reduce) {
  .hero__title .char,
  .hero__badge,
  .hero__lead,
  .hero__pills,
  .hero__pill {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* === Law Notice: 警告バッジ + 引用ブロック型 ========================= */
.law-notice {
  background: #F9F6F0;       /* ごく薄いゴールド */
  color: #0A1A33;
  padding: 80px 0;
  border-top: 1px solid #E8DFC9;
  border-bottom: 1px solid #E8DFC9;
}
@media (max-width: 767px) {
  .law-notice { padding: 56px 0; }
}
.law-notice__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.law-notice__warning {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C0392B;
  color: #ffffff;
  padding: 10px 22px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  position: relative;
}
.law-notice__warning::before,
.law-notice__warning::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #C0392B;
}
.law-notice__warning i { font-size: 14px; }

.law-notice__quote {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #0A1A33;
  border-top: 2px solid #0A1A33;
  border-bottom: 2px solid #0A1A33;
  padding: 28px 16px;
  line-height: 1.45;
  margin: 0;
  max-width: 820px;
}
.law-notice__quote::before { content: ""; }

.law-notice__body {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.9;
  color: #0A1A33;
  letter-spacing: 0.005em;
  text-align: justify;
}
.law-notice__body strong { font-weight: 800; }

.law-notice__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #0A1A33;
  background: transparent;
  color: #0A1A33;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}
.law-notice__cta:hover { background: #0A1A33; color: #fff; }

/* === Concept ========================================================== */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 768px) {
  .concept-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.concept-grid__media { position: relative; }
.concept-grid__media::before {
  content: "";
  position: absolute;
  inset: -12px -12px auto auto;
  width: 60%;
  height: 60%;
  background: var(--c-gold);
  opacity: 0.14;
  z-index: 0;
}
.concept-grid__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}
.concept-grid__frame img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.05);
  will-change: transform;
}
.concept-grid__copy p {
  font-size: 16px;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 18px;
}
.concept-grid__copy strong { color: var(--c-navy); border-bottom: 2px solid var(--c-gold); padding: 0 1px; }

/* === Service: 隣り合うパネル + 16:9 画像 ============================== */
/* セクション見出しの override（Service だけ左揃え + 80px ネイビー罫） */
.heading--service {
  align-items: flex-start;
  text-align: left;
  margin: 0 auto 36px;
  max-width: 1100px;
  padding: 0 20px;
}
.heading--service .heading__en    { letter-spacing: 0.2em; color: var(--c-gold-deep); font-style: italic; font-family: var(--ff-mincho); font-size: 16px; margin-bottom: 10px; text-transform: none; }
.heading--service .heading__title { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.4; }
.heading--service .heading__rule  { width: 80px; height: 2px; background: var(--c-navy); margin: 18px 0 12px; }
.heading--service .heading__sub   { font-size: 14px; color: #64748B; max-width: none; letter-spacing: 0.02em; }

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #E2E8F0;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--c-white);
}
@media (min-width: 768px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 4 項目のときの 2×2 グリッド */
@media (min-width: 768px) {
  .service-grid--2x2 { grid-template-columns: 1fr 1fr; }
}

.service-panel {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}
.service-panel:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  /* 3列レイアウト時 */
  .service-grid:not(.service-grid--2x2) .service-panel        { border-bottom: 0; border-right: 1px solid #E2E8F0; }
  .service-grid:not(.service-grid--2x2) .service-panel:last-child { border-right: 0; }
  /* 2x2 レイアウト時 */
  .service-grid--2x2 .service-panel { border-right: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; }
  .service-grid--2x2 .service-panel:nth-child(2n) { border-right: 0; }
  .service-grid--2x2 .service-panel:nth-last-child(-n+2) { border-bottom: 0; }
}
.service-panel:hover { background: #F8FAFC; }

/* カテゴリーバッジ（信頼の基盤・安心の入り口 等） */
.service-content__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-navy);
  padding: 5px 10px;
  border: 1px solid var(--c-navy);
  border-bottom-width: 2px;
  border-bottom-color: var(--c-gold);
  margin-bottom: 14px;
  line-height: 1.2;
}

/* 16:9 画像フレーム（隙間なく最上部に / parallax 用 overflow hidden） */
.service-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid #E2E8F0;
}
.service-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

/* コンテンツ領域 — 数字を背景に大きく薄く */
.service-content {
  position: relative;
  padding: 32px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-content__no {
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: var(--ff-mincho);
  font-size: 96px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(14, 42, 61, 0.055);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.service-content > *:not(.service-content__no) {
  position: relative;
  z-index: 1;
}
.service-content__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.02em;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 16px;
}
.service-content__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.service-content__list {
  margin-top: auto;
}
.service-content__list .service-list-item {
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-navy);
  font-weight: 500;
  padding: 6px 0 6px 1.2em;
  text-indent: -1.2em;
  border-bottom: 1px dotted #E2E8F0;
}
.service-content__list .service-list-item:last-child { border-bottom: 0; }
.service-content__list .service-list-item::before {
  content: "■";
  color: #243042;
  margin-right: 0.5em;
  font-size: 0.8em;
}

/* === AI Knowledge Section（背景画像 + ソリッド・ネイビーカード）======== */
.ai-knowledge-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 640px;
  /* 落ち着いた書斎・神戸の街並みを想起させる仮画像 */
  background: url("../img/hero-3.jpg") no-repeat center center / cover;
  padding: 64px 0;
  overflow: hidden;
}
.ai-knowledge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 29, 0.62);
  pointer-events: none;
}

.ai-knowledge-section .content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
}

.info-card {
  width: 100%;
  max-width: 600px;
  background-color: #04101D;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 56px 44px;
  box-shadow: none;
  color: #FFFFFF;
}
@media (max-width: 720px) {
  .info-card { padding: 40px 26px; }
  .ai-knowledge-section { padding: 0; }
  .ai-knowledge-section .content-wrapper { padding: 0; }
}

/* 見出し：左の縦線を撤廃し、タイトル直下の 2px 下罫で締める */
.info-card__en {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.info-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.info-card__rule {
  display: block;
  width: 64px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
  margin: 16px 0 24px;
}
.info-card__lead {
  font-size: 17px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.info-card__lead strong { color: #FFFFFF; font-weight: 700; }

/* 戦略的法務の3軸 */
.strategic-axes {
  display: flex;
  flex-direction: column;
}
.axis-item {
  position: relative;
  padding: 20px 0 22px 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.axis-item:first-child { border-top: 0; padding-top: 4px; }
.axis-item__no {
  position: absolute;
  left: 0;
  top: 22px;
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  line-height: 1;
}
.axis-item:first-child .axis-item__no { top: 6px; }
.axis-item__title {
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 8px;
}
.axis-item__desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}

.info-card__cta {
  margin-top: 36px;
}
.info-card__cta .cta-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2px solid var(--c-gold);
}
.info-card__cta .cta-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: var(--c-gold-light);
}

.info-card__cta {
  margin-top: 40px;
}
.cta-button {
  display: inline-block;
  background-color: var(--c-navy);
  color: #FFFFFF;
  padding: 16px 44px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.16em;
  border-radius: 0;
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border: 0;
  border-bottom: 2px solid var(--c-gold);
  cursor: pointer;
  text-decoration: none;
}
.cta-button:hover {
  background-color: var(--c-gold-light);
  border-bottom-color: var(--c-gold-light);
}

/* === Menu (price table) =============================================== */
.menu-table {
  max-width: 880px;
  margin: 0 auto;
  border-top: 2px solid var(--c-navy);
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 768px) {
  .menu-row { grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
}
.menu-row:hover { background: var(--c-bg-warm); }
.menu-row__name { font-size: 16px; font-weight: 600; color: var(--c-navy); }
.menu-row__price { font-size: 17px; font-weight: 800; color: var(--c-navy); letter-spacing: 0.02em; text-align: right; }
.menu-note {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--c-text-soft);
}

/* === Introduction: 経営者bg + 白パネル ============================== */
.introduction-section {
  position: relative;
  background:
    url("../img/ceo-bg.jpg") no-repeat center center / cover;
}
.introduction-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 51, 0.45);
  pointer-events: none;
}
.introduction-section .container {
  position: relative;
  z-index: 1;
}
.intro-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--c-line);
  padding: 40px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .intro-panel { padding: 56px 48px; }
}
@media (min-width: 1024px) {
  .intro-panel { padding: 64px 64px; }
}
.intro-panel .heading {
  margin-bottom: 36px;
}

/* === Introduction ===================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: none;
  margin: 0;
}
@media (min-width: 900px) {
  .intro-grid { grid-template-columns: minmax(280px, 360px) 1fr; gap: 56px; }
}
.intro-card { background: var(--c-white); border: 1px solid var(--c-line); padding: 18px; }
.intro-card img { width: 100%; height: auto; }

/* 1) 資格ラベル（小・先頭） */
.intro-card__qual {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-gold-deep);
  letter-spacing: 0.18em;
  margin: 22px 0 6px;
  padding-left: 12px;
  border-left: 2px solid var(--c-gold);
  line-height: 1.4;
}

/* 2) 名前（最大・主役） */
.intro-card__name {
  font-size: 30px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.08em;
  line-height: 1.25;
}
.intro-card__name-en {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-gold-deep);
  letter-spacing: 0.24em;
  margin-top: 6px;
}

/* 3) 資格枠（中・1pxボーダー） */
.intro-card__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.credential-frame {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--c-navy);
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  background: var(--c-white);
  line-height: 1.3;
}

/* 4) 兼務（小・補足） */
.intro-card__corp {
  font-size: 13px;
  color: var(--c-text-soft);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  line-height: 1.85;
}
.intro-card__corp-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
  display: block;
  margin-bottom: 4px;
}
.intro-card__corp-sub {
  display: block;
  font-size: 12px;
  color: var(--c-text-mute);
  margin-top: 4px;
  line-height: 1.7;
}

.intro-headline {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  padding-bottom: 14px;
  margin-bottom: 22px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  position: relative;
}
.intro-headline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px;
  height: 2px;
  background: var(--c-gold);
}
@media (min-width: 768px) { .intro-headline { font-size: 26px; } }
.intro-body p {
  font-size: 16px;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 18px;
}
.intro-body strong { color: var(--c-navy); border-bottom: 2px solid var(--c-gold); padding: 0 1px; }

/* === FAQ ============================================================== */
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--c-line); }
.faq-item { border-bottom: 1px solid var(--c-line); background: var(--c-white); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--c-bg-alt); }
.faq-q__mark { font-family: var(--ff-mincho); font-size: 22px; font-weight: 800; color: var(--c-gold); line-height: 1; padding-top: 2px; flex-shrink: 0; }
.faq-q__text { flex: 1; font-size: 16px; font-weight: 600; color: var(--c-navy); line-height: 1.65; }
.faq-q__icon {
  flex-shrink: 0;
  padding-top: 4px;
  color: var(--c-navy);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.faq-item.is-open .faq-q__icon { transform: rotate(180deg); }

/* スムース開閉：max-height アニメーション */
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.22,.61,.36,1);
  background: var(--c-bg-alt);
}
.faq-item.is-open .faq-a {
  border-top: 1px solid var(--c-line);
}
.faq-a__inner {
  display: flex;
  gap: 14px;
  padding: 18px 18px 24px 50px;
}
.faq-a__mark {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text-mute);
  line-height: 1;
  padding-top: 2px;
  margin-left: -36px;
  flex-shrink: 0;
}
.faq-a__body { font-size: 16px; line-height: 2; color: var(--c-text); flex: 1; }
.faq-a__body strong { color: var(--c-navy); }

/* === Blog list & banner =============================================== */
.banner-online {
  max-width: 1000px;
  margin: 0 auto 32px;
  padding: 24px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  background: var(--c-navy);
  color: var(--c-white);
  border-top: 2px solid var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
}
@media (min-width: 768px) {
  .banner-online { grid-template-columns: 64px 1fr; padding: 26px 32px; gap: 22px; }
}
.banner-online__icon {
  width: 60px; height: 60px;
  border: 1px solid var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold-light);
}
.banner-online__title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.banner-online__title em { color: var(--c-gold-light); font-style: normal; }
.banner-online__lead {
  font-size: 15px;
  margin-top: 4px;
  color: rgba(255,255,255,0.85);
}

.blog-list {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--c-white);
  border: 1px solid var(--c-line);
}
.blog-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-line);
}
.blog-list .blog-row:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .blog-row { grid-template-columns: 120px 1fr 16px; gap: 24px; }
}
.blog-row:hover { background: var(--c-bg-alt); }
.blog-row__date { font-family: ui-monospace, "SF Mono", "Menlo", monospace; font-size: 14px; font-weight: 700; color: var(--c-gold); letter-spacing: 0.04em; }
.blog-row__title { font-size: 16px; font-weight: 600; color: var(--c-navy); line-height: 1.7; }
.blog-row:hover .blog-row__title { color: var(--c-navy-soft); }
.blog-row__chev { display: none; color: var(--c-gold); }
@media (min-width: 768px) { .blog-row__chev { display: block; } }

/* === Office =========================================================== */
.office-block { max-width: 980px; margin: 0 auto; }
.office-subtitle {
  font-family: var(--ff-mincho);
  font-size: 21px;
  font-weight: 800;
  color: var(--c-navy);
  padding-bottom: 12px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.office-subtitle::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 56px;
  height: 2px;
  background: var(--c-gold);
}
.office-table { border-top: 2px solid var(--c-navy); }
.office-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 768px) {
  .office-row { grid-template-columns: 180px 1fr; gap: 28px; }
}
.office-row__label { font-size: 13px; font-weight: 800; color: var(--c-text-mute); letter-spacing: 0.18em; }
.office-row__value { font-size: 16px; color: var(--c-navy); line-height: 1.85; }
.office-row__value strong { color: var(--c-navy); padding: 0 1px; }
.office-phone { font-size: 22px; font-weight: 800; letter-spacing: 0.04em; color: var(--c-navy); }
.office-map { aspect-ratio: 16 / 9; border: 1px solid var(--c-line); background: var(--c-bg-alt); margin-top: 24px; }
.office-map iframe { width: 100%; height: 100%; border: 0; }
.office-foot { font-size: 16px; line-height: 2; color: var(--c-text); margin-top: 28px; }

/* === About: スプリットレイアウト（左：強キャッチ + 画像 / 右：高密度） */
.about-professional {
  padding: 100px 0;
  background-color: #FFFFFF;
  color: #0A1A33;
}
@media (max-width: 767px) {
  .about-professional { padding: 64px 0; }
}
.about-pro__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-pro__split { display: block; }
@media (min-width: 900px) {
  .about-pro__split {
    display: flex;
    gap: 64px;
    align-items: flex-start;
  }
  .about-pro__left  { width: 44%; flex-shrink: 0; }
  .about-pro__right { flex: 1; min-width: 0; }
}

/* --- 左カラム ------------------------------------------------------ */
.about-lead {
  display: block;
  font-size: 15px;
  color: #243042;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.about-pro__hero-block {
  position: relative;
  padding: 32px 28px 32px 0;
  margin-bottom: 36px;
}
.about-pro__hero-bg {
  position: absolute;
  top: 14px;
  left: -16px;
  right: 24px;
  bottom: -14px;
  background: #F5F6F8;
  z-index: 0;
}
.about-pro__hero-title {
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: #0A1A33;
}
@media (max-width: 767px) {
  .about-pro__hero-title { font-size: 30px; }
}

.about-pro__media {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #EEEEEE;
  margin-bottom: 28px;
}
.about-pro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transform: scale(1.06);
  will-change: transform;
}
@media (max-width: 899px) {
  .about-pro__media { max-width: 200px; aspect-ratio: 4 / 5; margin-bottom: 36px; }
}

/* --- 右カラム ------------------------------------------------------ */
.about-text-body {
  font-size: 16px;
  line-height: 1.9;
  text-align: justify;
  color: #0A1A33;
  margin-bottom: 22px;
  letter-spacing: 0.005em;
}
.about-text-body--big {
  font-size: 17px;
  font-weight: 700;
}
.about-text-body strong { font-weight: 800; color: #0A1A33; }

/* 法改正の強調ボックス */
.law-notice-box {
  border: 1px solid #243042;
  padding: 24px;
  margin: 32px 0;
  background: linear-gradient(to right, rgba(36, 48, 66, 0.05), rgba(36, 48, 66, 0.02));
  border-radius: 0;
}
.law-notice-box p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #0A1A33;
  margin: 0;
  text-align: justify;
}
.law-notice-box strong { font-weight: 800; }

/* ROI 重視のゴールド太アンダーライン */
.gold-underline {
  position: relative;
  font-weight: 800;
  white-space: nowrap;
}
.gold-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #243042;
  opacity: 0.3;
  pointer-events: none;
}

/* H3：ダブルライセンス見出し（4px ネイビー縦罫） */
.qualification-h3 {
  font-size: 19px;
  font-weight: 800;
  color: #0A1A33;
  border-left: 4px solid #0A1A33;
  padding-left: 14px;
  margin: 36px 0 16px;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* インライン資格タグ */
.qualification-tag {
  display: inline-block;
  border-bottom: 2px solid #0A1A33;
  padding-bottom: 2px;
  font-weight: 800;
  margin-right: 1em;
  letter-spacing: 0.04em;
}

.contact-card {
  max-width: 880px;
  margin: 56px auto 0;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-navy);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .contact-card { grid-template-columns: 1fr 1px 1fr; padding: 40px; gap: 36px; }
}
.contact-card__sep { background: var(--c-line); }
.contact-card__phone-label { font-size: 12px; font-weight: 800; letter-spacing: 0.22em; color: var(--c-gold); margin-bottom: 8px; }
.contact-card__phone {
  font-family: var(--ff-mincho);
  font-size: 32px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  display: block;
}
.contact-card__phone:hover { color: var(--c-gold-deep); }
.contact-card__hours { font-size: 14px; color: var(--c-text-soft); margin-top: 12px; line-height: 1.85; }

/* === Footer =========================================================== */
.site-footer { background: var(--c-navy); color: rgba(255,255,255,0.78); }
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 1024px) {
  .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 64px 32px; }
}
.site-footer__brand-name { font-family: var(--ff-mincho); font-size: 22px; font-weight: 800; color: var(--c-white); letter-spacing: 0.14em; }
.site-footer__brand-en {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--c-gold-light);
    margin-top: 6px;
    margin-bottom: 18px;
}
.site-footer__addr { font-size: 14px; line-height: 1.95; color: rgba(255,255,255,0.78); }
.site-footer__phone { display: block; margin-top: 18px; font-size: 22px; font-weight: 800; color: var(--c-white); letter-spacing: 0.04em; }
.site-footer__phone:hover { color: var(--c-gold-light); }
.site-footer__hours { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.85; }
.site-footer__cta {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 24px;
  background: transparent;
  color: var(--c-white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid var(--c-gold);
  text-decoration: none;
}
.site-footer__cta:hover { background: var(--c-gold-light); border-bottom-color: var(--c-gold-light); transition: background-color 0.3s ease, border-color 0.3s ease;}
.site-footer__nav { display: flex; flex-direction: column; gap: 10px; }
.site-footer__nav button { text-align: left; font-size: 15px; color: rgba(255,255,255,0.78); display: inline-flex; align-items: center; gap: 10px; }
.site-footer__nav button::before { content: ""; width: 6px; height: 6px; background: var(--c-gold); flex-shrink: 0; }
.site-footer__nav button:hover { color: var(--c-white); }
.site-footer__copy { border-top: 1px solid rgba(255,255,255,0.12); padding: 18px 20px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.55); }

/* === Floating actions ================================================= */
.fab-stack { position: fixed; bottom: 16px; right: 12px; z-index: 40; display: flex; flex-direction: column; gap: 8px; }
.fab-line { width: 48px; height: 48px; background: #06C755; color: var(--c-white); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.fab-top { width: 48px; height: 48px; background: var(--c-white); border: 1px solid var(--c-line); color: var(--c-navy); display: flex; align-items: center; justify-content: center; }
.fab-line:hover { filter: brightness(1.08); }
.fab-top:hover { background: var(--c-bg-alt); }
.fab-line__label { font-size: 9px; font-weight: 800; margin-top: 2px; letter-spacing: 0.04em; }

/* === Utility ========================================================== */
.center { text-align: center; }
.cta-row { margin-top: 36px; display: flex; justify-content: center; }
.gold-line { display: block; width: 36px; height: 2px; background: var(--c-gold); margin-top: 12px; }

/* === Blog Management Insights News（最新記事 3列パネル）======================== */
.insights-section {
  background: #f9f6f0;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .insights-grid { grid-template-columns: repeat(3, 1fr); }
}

.insights-panel {
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.25s ease;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
}
.insights-panel:hover { background: #F8FAFC; }

.insights-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #EEEEEE;
}
.insights-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.insights-panel:hover .insights-thumb img { transform: scale(1.04); }

.insights-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.insights-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.insights-cat {
  display: inline-block;
  background: #0A1A33;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 0;
}
.insights-date {
  font-size: 12px;
  font-weight: 700;
  color: #243042;
  letter-spacing: 0.04em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.insights-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A1A33;
  line-height: 1.55;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.insights-excerpt {
  font-size: 14.5px;
  line-height: 1.75;
  color: #4F5B68;
  letter-spacing: 0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.insights-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* === Contact Page ==================================================== */
.contact-page { background: var(--c-bg); }

/* --- Page Header（全幅 bg + 濃紺グラデオーバーレイ）--- */
.contact-hero {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact-hero { height: 540px; }
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 51, 0.88) 0%, rgba(4, 16, 29, 0.62) 100%);
  z-index: 1;
}
.contact-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 24px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}
.contact-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}
.contact-hero__en {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
  text-transform: uppercase;
}

/* --- Body wrapper（トップと完全同幅）--- */
.contact-body {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 64px; }
}

/* --- 左カラム --- */
.contact-left__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.65;
  color: var(--c-navy);
  border-left: 3px solid var(--c-gold);
  padding-left: 14px;
  margin: 0 0 22px;
}
@media (min-width: 768px) {
  .contact-left__title { font-size: 24px; }
}
.contact-left__lead {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--c-text);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.contact-left__lead strong { color: var(--c-navy); font-weight: 800; }

.contact-info-box {
  margin-top: 32px;
  border: 1px solid var(--c-gold);
  background: var(--c-white);
  padding: 30px 28px 28px;
}
.contact-info-box__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
  margin: 0 0 10px;
}
.contact-info-box__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mincho);
  font-size: 32px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-decoration: none;
}
.contact-info-box__phone i { font-size: 22px; color: var(--c-gold); }
.contact-info-box__phone:hover { color: var(--c-navy-deep); }
.contact-info-box__hours {
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.85;
  margin: 8px 0 22px;
}
.contact-info-box__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: #06C755;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-decoration: none;
  border: 0;
  border-bottom: 2px solid #04A248;
  transition: background-color .25s ease, opacity .25s ease;
}
.contact-info-box__line i { font-size: 17px; }
.contact-info-box__line:hover { background: #04A248; }

/* --- 右カラム：フォーム --- */
.contact-form-area {
  background: #F8FAFC;
  border: 1px solid var(--c-line);
  padding: 40px;
}
@media (max-width: 599px) {
  .contact-form-area { padding: 28px 22px; }
}
.contact-form-area__intro {
  font-size: 16px;
  color: var(--c-text-soft);
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
  letter-spacing: 0.01em;
  line-height: 1.85;
}
.contact-form-area__intro strong { color: var(--c-navy); font-weight: 800; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) {
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}
.contact-form__label {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-navy);
}
.contact-form__required {
  color: #C0392B;
  font-weight: 800;
  margin-left: 4px;
  letter-spacing: 0;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 0;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--c-navy);
  letter-spacing: 0.01em;
  transition: border-color 0.3s ease;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 0;
  border-color: var(--c-gold);
}
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.85;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--c-navy) 50%),
    linear-gradient(135deg, var(--c-navy) 50%, transparent 50%);
  background-position: calc(100% - 22px) center, calc(100% - 16px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.contact-form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.contact-form__check input { width: auto; }
.contact-form__check a {
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-gold);
  text-decoration: none;
}

/* 送信ボタン：100%幅、ネイビー塗り、白文字、hover opacity 0.9 */
.contact-form__submit {
  width: 100%;
  background: var(--c-navy);
  color: #FFFFFF;
  border: 0;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2em;
  cursor: pointer;
  font-family: inherit;
  border-radius: 0;
  transition: opacity 0.3s ease;
  margin-top: 6px;
}
.contact-form__submit:hover { opacity: 0.9; }
.contact-form__submit:active { opacity: 0.85; }

/* === Price Page ====================================================== */
.price-page { background: var(--c-bg); }

/* --- Page Header（720px / 全幅 bg + 濃紺グラデ）--- */
.price-hero {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .price-hero { height: 540px; }
}
.price-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.price-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 51, 0.88) 0%, rgba(4, 16, 29, 0.62) 100%);
  z-index: 1;
}
.price-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 24px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}
.price-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}
.price-hero__sub {
  margin: 14px 0 0;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}
.price-hero__en {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  text-transform: uppercase;
}

/* --- Body wrapper（トップと完全同幅）--- */
.price-body {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px;
}
.price-intro {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--c-text-soft);
  letter-spacing: 0.01em;
  margin: 0 0 48px;
  max-width: 880px;
}

/* --- カテゴリー --- */
.price-cat { margin-bottom: 56px; }
.price-cat:last-of-type { margin-bottom: 0; }

.price-cat__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.015em;
  line-height: 1.5;
  border-left: 4px solid var(--c-gold);
  padding: 4px 0 4px 16px;
  margin: 0 0 22px;
}
@media (min-width: 768px) {
  .price-cat__title { font-size: 26px; padding-left: 18px; }
}

/* --- 料金リスト --- */
.price-list {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid #E2E8F0;
  flex-wrap: wrap;
}
.price-row:last-child { border-bottom: 0; }
@media (max-width: 599px) {
  .price-row { padding: 18px 20px; gap: 4px; align-items: flex-start; flex-direction: column; }
}

.price-row__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.01em;
  line-height: 1.65;
  flex: 1;
  min-width: 0;
}
.price-row__amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1.2;
}
@media (max-width: 599px) {
  .price-row__amount { font-size: 19px; padding-top: 4px; }
}

/* --- お約束ボックス --- */
.price-policy {
  margin-top: 56px;
  background: #F8FAFC;
  border: 1px solid var(--c-navy);
  border-radius: 0;
  padding: 32px;
  box-shadow: none;
}
@media (max-width: 599px) {
  .price-policy { padding: 24px 22px; }
}
.price-policy__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 768px) {
  .price-policy__title { font-size: 20px; }
}
.price-policy__body {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0;
}
.price-policy__body strong { color: var(--c-navy); font-weight: 800; }

/* --- 下部 CTA --- */
.price-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* === About Page ====================================================== */
.about-page {
  background: #FAF9F6;  /* わずかに温かみのあるオフホワイト */
}

/* --- Page Header（720px / 全幅 bg + 濃紺グラデ）--- */
.about-hero {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-hero { height: 540px; }
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 51, 0.88) 0%, rgba(4, 16, 29, 0.62) 100%);
  z-index: 1;
}
.about-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 24px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}
.about-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}
.about-hero__sub {
  margin: 14px 0 0;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}
.about-hero__en {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  text-transform: uppercase;
}

/* --- Body wrapper（トップと完全同幅）--- */
.about-body {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* セクション共通：見出し（下罫の繊細なアンダーライン） */
.about-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--c-navy);
  margin: 0 0 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
@media (min-width: 768px) {
  .about-section-title { font-size: 28px; }
}
.about-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 2px;
  background: var(--c-gold);
}

/* --- メインプロフィール（6fr : 4fr） --- */
.about-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 64px;
}
@media (min-width: 900px) {
  .about-profile {
    grid-template-columns: 6fr 4fr;
    gap: 64px;
  }
}
.about-profile__text {
  order: 2;
}
.about-profile__media {
  order: 1;
}
@media (min-width: 900px) {
  .about-profile__text  { order: 1; }
  .about-profile__media { order: 2; }
}
.about-profile__role {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
  padding-left: 14px;
  border-left: 2px solid var(--c-gold);
  margin-bottom: 16px;
  line-height: 1.4;
}
.about-profile__name {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: var(--c-navy);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0 0 22px;
}
.about-profile__name-ruby {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--c-text-soft);
  margin-top: 10px;
}
.about-profile__statement {
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.01em;
  line-height: 1.85;
  padding-left: 18px;
  border-left: 3px solid var(--c-gold);
  margin: 0 0 18px;
}
.about-profile__statement strong { font-weight: 800; }
.about-profile__lead {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--c-text-soft);
  margin: 0;
  letter-spacing: 0.01em;
}
.about-profile__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid var(--c-line);
}

/* --- 3つの証明（静かなテキストレイアウト）--- */
.about-proofs {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 64px;
}
.proof-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (min-width: 768px) {
  .proof-item { padding-left: 28px; }
}
.proof-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .proof-item__title { font-size: 20px; }
}
.proof-item__desc {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0;
}
.proof-item__desc strong { color: var(--c-navy); font-weight: 800; }

/* --- 旧ヒストリー (11/9/2 番号レイアウト) --- */
.about-history {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 64px;
}
.about-history__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.history-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 32px 4px;
  border-bottom: 1px solid var(--c-line);
  align-items: center;
}
@media (max-width: 767px) {
  .history-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 4px;
  }
}
.history-item__num {
  font-family: var(--ff-mincho);
  font-size: 72px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.04em;
  line-height: 0.92;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
@media (max-width: 767px) {
  .history-item__num { font-size: 56px; }
}
.history-item__num-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
}
.history-item__body {
  min-width: 0;
}
.history-item__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--c-gold-deep);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.history-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin: 0 0 10px;
}
.history-item__desc {
  font-size: 15px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0;
}
.history-item__desc strong { color: var(--c-navy); font-weight: 800; }

/* --- 代表挨拶 hero（左揃えタイポグラフィ）--- */
.about-message__hero {
  font-family: var(--ff-mincho);
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: var(--c-navy);
  margin: 0 0 36px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--c-line);
  text-align: left;
  position: relative;
}
.about-message__hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 2px;
  background: var(--c-gold);
}
.about-message__body p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.02em;
  margin: 0 0 22px;
}
.about-message__body p:last-child { margin-bottom: 0; }
.about-message__body strong {
  color: var(--c-navy);
  font-weight: 800;
}

/* --- 旧 代表挨拶（quote ブロック）--- */
.about-message__quote {
  position: relative;
  padding: 28px 32px 28px 56px;
  margin: 0 0 32px;
  background: #FFFFFF;
  border: 1px solid var(--c-line);
}
@media (max-width: 599px) {
  .about-message__quote { padding: 24px 22px 24px 48px; }
}
.about-message__quote::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 14px;
  font-family: var(--ff-mincho);
  font-size: 72px;
  color: var(--c-gold);
  font-weight: 800;
  line-height: 1;
}
.about-message__quote p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text);
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}
.about-message__quote p:last-child { margin-bottom: 0; }
.about-message__quote strong {
  color: var(--c-navy);
  font-weight: 800;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 1px;
}
.about-message__sign {
  font-size: 14px;
  color: var(--c-text-soft);
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.85;
  margin: 0;
}
.about-message__sign-name {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.08em;
  display: inline-block;
  margin-top: 4px;
}

/* --- 下部 CTA --- */
.about-cta {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

/* === Office Page (事務所紹介) ======================================= */
.office-page {
  background: #FAF9F6;  /* 温かみのあるオフホワイト */
}

/* --- Page Header（720px / 全幅 + 暗オーバーレイ）--- */
.office-hero {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .office-hero { height: 540px; }
}
.office-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.office-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 51, 0.78) 0%, rgba(4, 16, 29, 0.55) 100%);
  z-index: 1;
}
.office-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 24px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}
.office-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}
.office-hero__sub {
  margin: 14px 0 0;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}
.office-hero__en {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  text-transform: uppercase;
}

/* --- Body --- */
.office-body {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

/* セクション共通：見出し + 80×2px スレートアクセント */
.office-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.015em;
  line-height: 1.5;
  margin: 0 0 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
@media (min-width: 768px) {
  .office-section-title { font-size: 26px; }
}
.office-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 2px;
  background: var(--c-gold);
}

/* --- 事務所概要（dl データグリッド）--- */
.office-summary {
  margin-bottom: 72px;
}
.office-summary__list {
  margin: 0;
  border-top: 2px solid var(--c-navy);
  background: #FFFFFF;
  border-left: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
}
.office-summary__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 720px) {
  .office-summary__row {
    grid-template-columns: 200px 1fr;
    gap: 28px;
  }
}
.office-summary__row dt {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-text-mute);
  align-self: center;
}
.office-summary__row dd {
  font-size: 16px;
  color: var(--c-navy);
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin: 0;
}
.office-summary__row dd strong { color: var(--c-navy); font-weight: 800; padding-bottom: 1px; }
.office-summary__tel {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  text-decoration: none;
}

/* --- 対話と戦略（応接室 + テキスト 2カラム）--- */
.office-dialogue {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 900px) {
  .office-dialogue { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.office-dialogue__media {
  position: relative;
}
.office-dialogue__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--c-line);
}
.office-dialogue__caption {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-text-mute);
  margin: 12px 0 0;
}
.office-dialogue__copy .office-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: -0.015em;
}
@media (min-width: 768px) {
  .office-dialogue__copy .office-section-title { font-size: 26px; }
}
.office-dialogue__copy p {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}
.office-dialogue__copy p:last-child { margin: 0; }
.office-dialogue__copy strong { color: var(--c-navy); font-weight: 800; }

/* --- 代表プロフィール（実体）--- */
.office-rep {
  margin-bottom: 80px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--c-line);
}
.office-rep__body p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  max-width: 880px;
}
.office-rep__body p:last-of-type { margin-bottom: 0; }
.office-rep__body strong { color: var(--c-navy); font-weight: 800; padding-bottom: 1px; }
.office-rep__cta {
  margin-top: 28px;
}

/* --- アクセスマップ + 案内 --- */
.office-access {
  margin-bottom: 0;
}
.office-access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .office-access__grid { grid-template-columns: 7fr 5fr; gap: 40px; }
}
.office-access__map {
  aspect-ratio: 16 / 11;
  width: 100%;
  border: 1px solid var(--c-line);
  background: var(--c-bg-alt);
  overflow: hidden;
}
.office-access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  /* グレースケール風（落ち着き）*/
  filter: grayscale(0.65) contrast(0.95);
}
.office-access__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.office-access__row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.office-access__row:last-child { border-bottom: 0; }
.office-access__row > i {
  color: var(--c-gold);
  font-size: 15px;
  margin-top: 4px;
}
.office-access__row strong {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
  margin-bottom: 4px;
}
.office-access__row a {
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-gold);
  text-decoration: none;
  padding-bottom: 1px;
}

/* 下部 CTA */
.office-cta {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

/* === Service Page (4 つの架け橋) ==================================== */
.service-page { background: #FAF9F6; }

/* --- Page Header（720px / 全幅 + 暗オーバーレイ）--- */
.service-hero {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-hero { height: 540px; }
}
.service-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 51, 0.86) 0%, rgba(4, 16, 29, 0.6) 100%);
  z-index: 1;
}
.service-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 24px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}
.service-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}
.service-hero__sub {
  margin: 16px 0 0;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
}
.service-hero__en {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  text-transform: uppercase;
}

/* --- Body --- */
.service-body {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.service-intro {
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 56px;
  max-width: 880px;
}
.service-intro strong {
  color: var(--c-navy);
  font-weight: 800;
  padding-bottom: 1px;
}

/* --- 4 つの架け橋（2×2 パネル）--- */
.bridge-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--c-line);
  background: #FFFFFF;
}
@media (min-width: 900px) {
  .bridge-grid { grid-template-columns: 1fr 1fr; }
}
.bridge-panel {
  padding: 0;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  transition: background-color 0.25s ease;
}
.bridge-panel:hover { background: #F8FAFC; }
.bridge-panel:hover .bridge-panel__media img { transform: scale(1.04); }
.bridge-panel:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .bridge-panel:nth-child(2n) { border-right: 0; }
  .bridge-panel { border-right: 1px solid var(--c-line); }
  /* 4要素時：下段（3-4番目）の border-bottom を消す */
  .bridge-panel:nth-last-child(-n+2) { border-bottom: 0; }
  .bridge-panel { border-bottom: 1px solid var(--c-line); }
}

/* 16:9 画像（パネル最上部） */
.bridge-panel__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
  background: #EEEEEE;
}
.bridge-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* 中身 */
.bridge-panel__body {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 599px) {
  .bridge-panel__body { padding: 26px 22px; }
}

.bridge-panel__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.bridge-panel__no {
  font-family: var(--ff-mincho);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 0.06em;
  line-height: 1;
  flex-shrink: 0;
}
.bridge-panel__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.015em;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .bridge-panel__title { font-size: 21px; }
}

.bridge-panel__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}

.bridge-panel__items {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.bridge-panel__items li {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: 0.01em;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px dotted var(--c-line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.bridge-panel__items li:last-child { border-bottom: 0; }
.bridge-panel__items li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--c-gold);
  margin-top: 9px;
  flex-shrink: 0;
}

.bridge-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--c-navy);
  background: transparent;
  border: 1px solid var(--c-navy);
  border-bottom: 2px solid var(--c-gold);
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.bridge-panel__cta:hover {
  background: var(--c-navy);
  color: #FFFFFF;
  border-bottom-color: var(--c-gold-light);
}
.bridge-panel__cta .arrow { width: 14px; height: 14px; }

/* --- 3つの提供価値（フルブリード bg + 半透明白パネル）--- */
.service-values {
  position: relative;
  width: 100%;
  padding: 96px 24px;
  overflow: hidden;
  margin-top: 0;
}
@media (max-width: 767px) {
  .service-values { padding: 64px 20px; }
}
.service-values__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.service-values__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.service-values__panel {
  background: rgba(255, 255, 255, 0.86);  /* 薄い白 → 背景が透けて見える */
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 56px 48px;
}
@media (max-width: 599px) {
  .service-values__panel { padding: 40px 28px; }
}

.service-values__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.015em;
  line-height: 1.5;
  margin: 0 0 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
@media (min-width: 768px) {
  .service-values__title { font-size: 26px; }
}
.service-values__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 2px;
  background: var(--c-gold);
}
.service-values__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-text-soft);
  letter-spacing: 0.01em;
  margin: 18px 0 36px;
}

.value-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .value-list { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.value-item {
  border-left: 3px solid var(--c-gold);
  padding: 6px 0 6px 22px;
}
.value-item__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--c-gold-deep);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.value-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin: 0 0 10px;
}
.value-item__desc {
  font-size: 15px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0;
}
.value-item__desc strong { color: var(--c-navy); font-weight: 800; }

/* --- 下部 CTA --- */
.service-cta-wrap {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.service-cta {
  display: flex;
  justify-content: center;
}

/* === Service Detail Page (汎用：service/license/...) ================== */
.service-detail-page { background: #FAF9F6; }

/* --- Header (720px) --- */
.service-detail-hero {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-detail-hero { height: 540px; }
}
.service-detail-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.service-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 51, 0.86) 0%, rgba(4, 16, 29, 0.6) 100%);
  z-index: 1;
}
.service-detail-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 24px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}
.service-detail-hero__breadcrumb {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.service-detail-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
}
.service-detail-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 4.4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.45;
  color: #FFFFFF;
  margin: 0;
}
.service-detail-hero__sub {
  margin: 16px 0 0;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
}

/* --- Body --- */
.service-detail-body {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

/* セクション見出し共通 */
.sd-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.015em;
  line-height: 1.55;
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
@media (min-width: 768px) {
  .sd-section-title { font-size: 26px; }
}
.sd-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 2px;
  background: var(--c-gold);
}

/* 1. メッセージ */
.sd-message {
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-line);
}
.sd-message p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  max-width: 880px;
}
.sd-message p:last-child { margin-bottom: 0; }
.sd-message strong {
  color: var(--c-navy);
  font-weight: 800;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 1px;
}

/* 2. メニュー詳細 */
.sd-menus {
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-line);
}
.sd-menu {
  background: #FFFFFF;
  border: 1px solid var(--c-line);
  margin-bottom: 18px;
}
.sd-menu:last-child { margin-bottom: 0; }
.sd-menu__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line);
}
.sd-menu__no {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  flex-shrink: 0;
}
.sd-menu__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .sd-menu__title { font-size: 19px; }
}
.sd-menu__detail {
  margin: 0;
  padding: 4px 0;
}
.sd-menu__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 720px) {
  .sd-menu__row { grid-template-columns: 140px 1fr; gap: 24px; }
}
.sd-menu__row:last-child { border-bottom: 0; }
.sd-menu__row dt {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
  align-self: center;
}
.sd-menu__row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.sd-menu__row dd strong { color: var(--c-navy); font-weight: 800; }

/* 3. 料金表 */
.sd-pricing {
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-line);
}
.sd-pricing__wrap {
  border: 1px solid var(--c-line);
  background: #FFFFFF;
  overflow-x: auto;
}
.sd-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  background: #FFFFFF;
}
.sd-pricing-table thead th {
  background: var(--c-navy);
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 12px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-gold);
  white-space: nowrap;
}
.sd-pricing-table tbody td {
  padding: 16px;
  border-bottom: 1px solid var(--c-line);
  vertical-align: middle;
  color: var(--c-navy);
  line-height: 1.6;
}
.sd-pricing-table tbody tr:last-child td { border-bottom: 0; }
.sd-pricing-table tbody tr:nth-child(even) td { background: #FBFBFC; }
.sd-pricing-table__amount {
  font-family: var(--ff-mincho);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.sd-pricing__note {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* 4. 流れ（Step 1-5） */
.sd-flow {
  margin-bottom: 72px;
}
.sd-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.sd-flow__item {
  position: relative;
  padding: 26px 0 26px 56px;
  border-bottom: 1px solid var(--c-line);
}
.sd-flow__item:last-child { border-bottom: 0; }
.sd-flow__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  bottom: -1px;
  width: 2px;
  background: var(--c-gold);
}
.sd-flow__item:last-child::before { bottom: auto; height: 50%; }
.sd-flow__step {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--c-gold-deep);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sd-flow__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin: 0 0 8px;
}
.sd-flow__desc {
  font-size: 15px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0;
}

/* 3つの経営視点（左 3px スレート縦罫の高密度テキスト） */
.sd-perspective {
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-line);
}
.perspective-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.perspective-item {
  border-left: 3px solid var(--c-gold);
  padding: 4px 0 4px 24px;
}
@media (min-width: 768px) {
  .perspective-item { padding-left: 28px; }
}
.perspective-item__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--c-gold-deep);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.perspective-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .perspective-item__title { font-size: 20px; }
}
.perspective-item__desc {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0;
}
.perspective-item__desc strong { color: var(--c-navy); font-weight: 800; }

/* 齋藤先生の約束（quote ブロック / 白背景） */
.sd-promise {
  margin-bottom: 72px;
  background: #FFFFFF;
  border: 1px solid var(--c-line);
}
.sd-promise__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 48px;
}
@media (max-width: 599px) {
  .sd-promise__inner { padding: 40px 28px; }
}
.sd-promise__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--c-gold-deep);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sd-promise__quote {
  position: relative;
  margin: 0 0 24px;
  padding: 0 0 0 56px;
  border: 0;
}
@media (max-width: 599px) {
  .sd-promise__quote { padding-left: 44px; }
}
.sd-promise__quote::before {
  content: "“";
  position: absolute;
  top: -16px;
  left: 0;
  font-family: var(--ff-mincho);
  font-size: 80px;
  color: var(--c-gold);
  font-weight: 800;
  line-height: 1;
}
.sd-promise__quote p {
  font-family: var(--ff-mincho);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.02em;
  line-height: 1.95;
  margin: 0;
}
.sd-promise__quote strong {
  font-weight: 800;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 1px;
}
.sd-promise__sign {
  font-size: 14px;
  color: var(--c-text-soft);
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.85;
  margin: 0;
}
.sd-promise__sign-name {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.08em;
  display: inline-block;
  margin-top: 4px;
}

/* 主要補助金グリッド（2x2） */
.sd-fundgrid-wrap {
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-line);
}
.fund-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--c-line);
  background: #FFFFFF;
}
@media (min-width: 800px) {
  .fund-grid { grid-template-columns: 1fr 1fr; }
}
.fund-panel {
  position: relative;
  padding: 32px 28px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.fund-panel:last-child { border-bottom: 0; }
@media (min-width: 800px) {
  .fund-panel { border-right: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
  .fund-panel:nth-child(2n) { border-right: 0; }
  .fund-panel:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 599px) {
  .fund-panel { padding: 26px 22px; }
}
.fund-panel__no {
  font-family: var(--ff-mincho);
  font-size: 26px;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.fund-panel__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 768px) {
  .fund-panel__title { font-size: 19px; }
}
.fund-panel__desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}
.fund-panel__edge {
  margin-top: auto;
  padding: 16px 18px;
  background: var(--c-bg-alt);
  border-left: 3px solid var(--c-gold);
}
.fund-panel__edge-label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--c-gold-deep);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fund-panel__edge p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0;
}
.fund-panel__edge p strong { color: var(--c-navy); font-weight: 800; }

/* コンプライアンス（深ネイビーバンド） */
.sd-compliance {
  background: var(--c-navy);
  color: #FFFFFF;
  padding: 56px 24px;
  margin-bottom: 72px;
  border-top: 2px solid var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
}
.sd-compliance__inner {
  max-width: 880px;
  margin: 0 auto;
}
.sd-compliance__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--c-gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sd-compliance__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  line-height: 1.6;
  margin: 0 0 18px;
}
.sd-compliance p {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.01em;
  margin: 0;
}
.sd-compliance p strong { color: #FFFFFF; font-weight: 800; }

/* 「対話」セクション（応接室の写真 + テキスト） */
.sd-dialogue {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 900px) {
  .sd-dialogue { grid-template-columns: 6fr 5fr; gap: 56px; }
}
.sd-dialogue__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--c-line);
}
.sd-dialogue__copy p {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}
.sd-dialogue__copy p strong {
  color: var(--c-navy);
  font-weight: 800;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 1px;
}
.sd-dialogue__cta { margin-top: 24px; }

/* sd-section-title の代替（dialogue 内などで小さめに） */
.sd-section-title.sd-section-title--alt {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .sd-section-title.sd-section-title--alt { font-size: 26px; }
}

/* 5. CTA バンド（深ネイビー塗り + ブラスアクセント） */
.sd-cta-band {
  margin-top: 24px;
  background: var(--c-navy);
  color: #FFFFFF;
  border-top: 2px solid var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
}
.sd-cta-band__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
}
.sd-cta-band__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  line-height: 1.6;
  margin: 0 0 14px;
}
.sd-cta-band__lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}
.sd-cta-band__lead strong { color: #FFFFFF; font-weight: 800; }
.sd-cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.sd-cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mincho);
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
.sd-cta-band__phone i { font-size: 20px; color: var(--c-gold-light); }
.sd-cta-band__phone:hover { color: var(--c-gold-light); }
.sd-cta-band__hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.18em;
  margin: 0;
}

/* === Privacy Policy Page ============================================= */
.privacy-page { background: #FAF9F6; }

/* --- Page Header (720px) --- */
.privacy-hero {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .privacy-hero { height: 540px; }
}
.privacy-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.privacy-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 51, 0.86) 0%, rgba(4, 16, 29, 0.6) 100%);
  z-index: 1;
}
.privacy-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 24px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}
.privacy-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}
.privacy-hero__sub {
  margin: 16px 0 0;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
}
.privacy-hero__en {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  text-transform: uppercase;
}

/* --- Body（max-width 900px 中央）--- */
.privacy-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.privacy-lead {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-line);
}

/* セクション */
.privacy-sec {
  margin-bottom: 36px;
}
.privacy-sec:last-of-type { margin-bottom: 0; }
.privacy-sec__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.01em;
  line-height: 1.55;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-gold);
}
@media (min-width: 768px) {
  .privacy-sec__title { font-size: 20px; }
}
.privacy-sec p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}
.privacy-sec p:last-child { margin-bottom: 0; }
.privacy-sec p strong { color: var(--c-navy); font-weight: 800; }

.privacy-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.privacy-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-text);
  letter-spacing: 0.01em;
  padding: 12px 0 12px 22px;
  position: relative;
  border-bottom: 1px solid var(--c-line);
}
.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 1px;
  background: var(--c-gold);
}
.privacy-list li strong { color: var(--c-navy); font-weight: 800; }

.privacy-link {
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 1px;
  text-decoration: none;
}
.privacy-link:hover { color: var(--c-gold-deep); }

/* メタ（制定・改定日）+ 署名 */
.privacy-meta {
  margin: 56px 0 24px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-text-mute);
}
.privacy-sign {
  margin: 0;
  text-align: right;
  font-size: 14px;
  color: var(--c-text-soft);
  letter-spacing: 0.04em;
  line-height: 1.85;
}
.privacy-sign__name {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.08em;
  display: inline-block;
  margin-top: 4px;
}

/* === Header offset for non-hero pages =============================
 * .site-header は position: absolute / top: 0 でドキュメント上部に被さるため、
 * ヒーローを持たないページ（single / archive / search / 404 / page.php）では
 * 最初のコンテンツが隠れる。これを padding-top で逃がす。
 * ================================================================== */
body.single .site-main,
body.archive .site-main,
body.search .site-main,
body.error404 .site-main,
body.page-template-default .site-main {
  padding-top: 120px;
}
@media (max-width: 767px) {
  body.single .site-main,
  body.archive .site-main,
  body.search .site-main,
  body.error404 .site-main,
  body.page-template-default .site-main {
    padding-top: 140px;
  }
}
/* スティッキー要素のスクロール時オフセット（固定ヘッダ分） */
:root { --kk-header-h: 80px; }
@media (max-width: 767px) { :root { --kk-header-h: 120px; } }
[id] { scroll-margin-top: calc(var(--kk-header-h) + 12px); }

/* === Blog Index Page (お役立ち情報一覧) ============================== */
.blog-page { background: #FAF9F6; }

.blog-hero {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}
@media (max-width: 767px) { .blog-hero { height: 360px; } }
.blog-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.blog-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 51, 0.86) 0%, rgba(4, 16, 29, 0.62) 100%);
  z-index: 1;
}
.blog-hero__inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px 0; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  color: #FFFFFF;
}
.blog-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}
.blog-hero__sub {
  margin: 16px 0 0;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
}
.blog-hero__en {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  text-transform: uppercase;
}

/* Category filter pills */
.blog-filter {
  background: #FFFFFF;
  border-bottom: 1px solid var(--c-line);
}
.blog-filter__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-filter__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--c-navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-navy);
  text-decoration: none;
  background: transparent;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.blog-filter__pill:hover { background: #F8FAFC; }
.blog-filter__pill.is-active {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #FFFFFF;
}
.blog-filter__pill.is-active .blog-filter__count {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.45);
}
.blog-filter__count {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-mute);
  padding: 2px 7px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* Body 2-col grid */
.blog-body {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 960px) {
  .blog-grid { grid-template-columns: 7fr 3fr; }
}

.blog-main {
  background: #FFFFFF;
  padding: 48px 32px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
@media (max-width: 599px) { .blog-main { padding: 32px 22px; } }
@media (min-width: 1200px) { .blog-main { padding: 56px 48px; } }

.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
@media (min-width: 720px) { .blog-cards { grid-template-columns: 1fr 1fr; } }

.blog-card {
  background: #FFFFFF;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 720px) {
  .blog-card { border-right: 1px solid var(--c-line); }
  .blog-card:nth-child(2n) { border-right: 0; }
}
.blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--c-navy);
  height: 100%;
  transition: background-color .25s ease;
}
.blog-card__link:hover { background: #FAF9F6; }
.blog-card__link:hover .blog-card__thumb img { transform: scale(1.04); }
.blog-card__link:hover .blog-card__title { color: var(--c-gold-deep); }

.blog-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #EEEEEE;
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 1;
  display: inline-block;
  padding: 5px 12px;
  background: var(--c-gold);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.blog-card__body {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-card__date {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-gold-deep);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.blog-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.005em;
  line-height: 1.6;
  margin: 0;
  transition: color .2s ease;
}
@media (min-width: 768px) { .blog-card__title { font-size: 18px; } }
.blog-card__excerpt {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--c-text-soft);
  letter-spacing: 0.01em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ページネーション */
.blog-pagination {
  margin: 48px 0 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  text-decoration: none;
  border: 1px solid var(--c-line);
  background: #FFFFFF;
  letter-spacing: 0.04em;
  transition: background-color .2s, color .2s, border-color .2s;
}
.blog-pagination .page-numbers:hover { background: #F8FAFC; }
.blog-pagination .page-numbers.current {
  background: var(--c-navy);
  color: #FFFFFF;
  border-color: var(--c-navy);
  border-bottom: 2px solid var(--c-gold);
}
.blog-pagination .page-numbers.dots { border: 0; background: transparent; }

.blog-empty {
  font-size: 15px;
  color: var(--c-text-soft);
  text-align: center;
  padding: 80px 20px;
}
.blog-empty a { color: var(--c-navy); border-bottom: 1px solid var(--c-gold); padding-bottom: 1px; text-decoration: none; }

/* Sidebar */
.blog-side {
  background: #FAF9F6;
  padding: 36px 28px;
}
@media (max-width: 599px) { .blog-side { padding: 28px 22px; } }
@media (min-width: 960px) {
  .blog-side__sticky { position: sticky; top: calc(var(--kk-header-h) + 16px); }
}

/* 著者ミニプロフィール */
.author-mini__link {
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: var(--c-navy);
  align-items: flex-start;
}
.author-mini__photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.author-mini__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.author-mini__body {
  display: flex; flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.author-mini__name {
  font-family: var(--ff-mincho);
  font-size: 17px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.06em;
  transition: color .2s ease;
}
.author-mini__qual {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-gold-deep);
}
.author-mini__bio {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin-top: 4px;
}
.author-mini__link:hover .author-mini__name { color: var(--c-gold-deep); }

/* LINE 登録バナー */
.side-line {
  margin-bottom: 36px;
  padding: 24px 22px 26px;
  background: #06C755;
  color: #FFFFFF;
  border-bottom: 2px solid #04A248;
}
.side-line__label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.side-line__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.side-line__desc {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}
.side-line__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #FFFFFF;
  color: #06C755;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background-color .25s ease;
}
.side-line__btn:hover { background: #F4FFF7; }
.side-line__btn i { font-size: 18px; }

/* === Single Article Page (2 カラム) ================================== */
.single-page { background: #FAF9F6; }

/* パンくず（フル幅 / 1px 区切り） */
.single-breadcrumb {
  background: #FFFFFF;
  border-bottom: 1px solid var(--c-line);
}
.single-breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  font-size: 12.5px;
  color: var(--c-text-mute);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow-x: auto;
}
.single-breadcrumb__inner a {
  color: var(--c-text-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.single-breadcrumb__inner a:hover { border-bottom-color: var(--c-gold); color: var(--c-navy); }
.single-breadcrumb__inner .sep { margin: 0 10px; color: var(--c-line); }
.single-breadcrumb__inner .current { color: var(--c-navy); font-weight: 700; }

/* グリッド（7:3） */
.single-article {
  max-width: 1200px;
  margin: 0 auto;
}
.single-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}
@media (min-width: 960px) {
  .single-grid { grid-template-columns: 7fr 3fr; }
}

/* === Main (左) === */
.single-main {
  background: #FFFFFF;
  padding: 56px 32px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
@media (max-width: 599px) {
  .single-main { padding: 36px 22px; }
}
@media (min-width: 1200px) {
  .single-main { padding: 64px 56px; }
}

.single-main__head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.single-main__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  background: var(--c-gold);
  padding: 5px 12px;
  text-decoration: none;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.single-main__cat:hover { background: var(--c-gold-deep); }

.single-main__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--c-navy);
  margin: 0 0 18px;
}
@media (min-width: 768px) {
  .single-main__title { font-size: 28px; }
}

.single-main__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  color: var(--c-text-mute);
  letter-spacing: 0.06em;
}
.single-main__meta time,
.single-main__meta .meta-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.single-main__meta i { color: var(--c-gold); font-size: 11px; }

.single-main__authority {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--c-text);
  letter-spacing: 0.01em;
  background: #FAF9F6;
  border-left: 3px solid var(--c-gold);
  padding: 14px 18px;
  margin: 0 0 32px;
}
.single-main__authority strong { color: var(--c-navy); font-weight: 800; }

.single-main__thumb {
  margin: 0 0 32px;
  border: 1px solid var(--c-line);
}
.single-main__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

/* 本文タイポ（ミニマル / brass 縦線見出し） */
.wp-article {
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.wp-article > * + * { margin-top: 1.5em; }
.wp-article p { margin: 0; margin-bottom: 20px;}
.wp-article h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.6;
  border-left: 4px solid var(--c-gold);
  padding: 4px 0 4px 16px;
  margin: 2.4em 0 1em;
}
.wp-article h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.005em;
  line-height: 1.6;
  border-left: 3px solid var(--c-gold);
  padding-left: 14px;
  margin: 2em 0 .8em;
}
.wp-article h4 { font-size: 16px; font-weight: 800; color: var(--c-navy); margin: 1.6em 0 .6em; }
.wp-article a {
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-gold);
  text-decoration: none;
  padding-bottom: 1px;
}
.wp-article a:hover { color: var(--c-gold-deep); }
.wp-article ul, .wp-article ol { padding-left: 1.5em; margin: 16px 0; }
.wp-article ul li, .wp-article ol li { margin-bottom: .1em; line-height: 1.5; }
.wp-article strong { color: var(--c-navy); font-weight: 800; }
.wp-article blockquote {
  border-left: 3px solid var(--c-gold);
  background: #FAF9F6;
  padding: 18px 22px;
  margin: 1.5em 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-text);
}
.wp-article img { max-width: 100%; height: auto; border: 1px solid var(--c-line); }
.wp-article hr { border: 0; border-top: 1px solid var(--c-line); margin: 2.5em 0; }
.wp-article table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 14.5px; }
.wp-article th, .wp-article td { border: 1px solid var(--c-line); padding: 12px 14px; text-align: left; line-height: 1.7; }
.wp-article th { background: #F6F8FA; color: var(--c-navy); font-weight: 800; letter-spacing: 0.04em; }

/* 著者プロフィール */
.single-author {
  margin: 56px 0 0;
  padding: 28px;
  border: 1px solid var(--c-line);
  background: #FAF9F6;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 600px) {
  .single-author { grid-template-columns: 140px 1fr; gap: 28px; align-items: start; }
}
.single-author__photo img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 1px solid var(--c-line);
}
@media (max-width: 599px) {
  .single-author__photo img { width: 100px; height: 100px; }
}
.single-author__label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--c-gold-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.single-author__name {
  font-family: var(--ff-mincho);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}
.single-author__qual {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-gold-deep);
  margin: 0 0 12px;
}
.single-author__bio {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}
.single-author__bio strong { color: var(--c-navy); font-weight: 800; }
.single-author__links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  margin: 0;
  flex-wrap: wrap;
}
.single-author__links a {
  color: var(--c-navy);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 1px;
}
.single-author__links a:hover { color: var(--c-gold-deep); }

/* 関連記事 */
.single-related {
  margin: 56px 0 0;
}
.single-related__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.single-related__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 56px;
  height: 2px;
  background: var(--c-gold);
}
.single-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
@media (min-width: 768px) {
  .single-related__grid { grid-template-columns: repeat(4, 1fr); }
}
.related-card {
  background: #FFFFFF;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background-color .25s ease;
}
.related-card:hover { background: #FAF9F6; }
.related-card:hover .related-card__title { color: var(--c-gold-deep); }
.related-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #EEEEEE;
  border-bottom: 1px solid var(--c-line);
}
.related-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.related-card:hover .related-card__thumb img { transform: scale(1.05); }
.related-card__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.related-card__cat {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-gold-deep);
  text-transform: uppercase;
}
.related-card__title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.005em;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  transition: color .2s ease;
}
.related-card__date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-text-mute);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* 前/次 */
.single-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 48px 0 0;
}
.single-prevnext__col {
  border: 1px solid var(--c-line);
  background: #FFFFFF;
}
.single-prevnext__col--right { text-align: right; }
.single-prevnext__link {
  display: block;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--c-navy);
}
.single-prevnext__link:hover { background: #FAF9F6; }
.single-prevnext__label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-gold-deep);
  margin-bottom: 6px;
}
.single-prevnext__title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.55;
}

/* === Sidebar (右 3) === */
.single-side {
  background: #FAF9F6;
  padding: 36px 28px;
}
@media (max-width: 599px) {
  .single-side { padding: 28px 22px; }
}
@media (min-width: 960px) {
  .single-side__sticky {
    position: sticky;
    top: calc(var(--kk-header-h) + 16px);  /* 固定ヘッダ高 + 余白 */
  }
}

.side-sec {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-line);
}
.side-sec:last-of-type { border-bottom: 0; }
.side-sec__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-navy);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.side-sec__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 2px;
  background: var(--c-gold);
}

/* 人気記事ランキング */
.ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ranking-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--c-line);
}
.ranking-item:last-child { border-bottom: 0; }
.ranking-item__no {
  font-family: var(--ff-mincho);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  line-height: 1;
  align-self: center;
}
.ranking-item__link {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: var(--c-navy);
  min-width: 0;
}
.ranking-item__thumb {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  flex-shrink: 0;
}
.ranking-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ranking-item__title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--c-navy);
  letter-spacing: 0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ranking-item__link:hover .ranking-item__title { color: var(--c-gold-deep); }

/* カテゴリーナビ */
.cat-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cat-nav__item {
  border-bottom: 1px dotted var(--c-line);
}
.cat-nav__item:last-child { border-bottom: 0; }
.cat-nav__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  text-decoration: none;
  color: var(--c-navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.cat-nav__item a:hover { color: var(--c-gold-deep); }
.cat-nav__name { flex: 1; }
.cat-nav__count {
  font-size: 11px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 700;
  color: var(--c-text-mute);
  letter-spacing: 0;
}

/* スティッキー CTA */
.side-cta {
  background: var(--c-navy);
  color: #FFFFFF;
  padding: 28px 24px;
  border-top: 2px solid var(--c-gold);
}
.side-cta__label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--c-gold-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.side-cta__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.side-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-bottom: 4px;
}
.side-cta__phone i { color: var(--c-gold-light); font-size: 16px; }
.side-cta__phone:hover { color: var(--c-gold-light); }
.side-cta__hours {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 18px;
}
.side-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2px solid var(--c-gold);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background-color .25s ease;
}
.side-cta__btn:hover { background: rgba(255, 255, 255, 0.06); }

/* === Reveal animations (Vanilla JS / Intersection Observer) ========= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1),
              transform .8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Article body (single post .entry-content-inner)
   ============================================================ */
.entry-content-inner { line-height: 1.9; color: #333; }
.entry-content-inner h2 {
  font-size: 1.6rem;
  color: var(--c-navy);
  border-left: 4px solid var(--c-gold);
  padding: 10px 0 10px 20px;
  margin: 60px 0 30px;
  background-color: #FAF9F6;
}
.entry-content-inner h3 {
  font-size: 1.3rem;
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 8px;
  margin: 40px 0 20px;
}
.entry-content-inner blockquote {
  background-color: #FAF9F6;
  border-left: 3px solid var(--c-gold);
  margin: 30px 0;
  padding: 20px 30px;
  font-style: italic;
}
.entry-content-inner .table-wrapper { overflow-x: auto; margin: 30px 0; }
.entry-content-inner table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--c-navy);
}
.entry-content-inner th,
.entry-content-inner td {
  padding: 15px;
  border-bottom: 1px solid #E0E0E0;
  text-align: center;
}
.entry-content-inner th { background-color: #FAF9F6; font-weight: 700; }
.entry-content-inner .highlight-red { color: #D32F2F; font-weight: 700; }
.entry-content-inner .cta-section {
  background-color: var(--c-navy);
  color: #fff;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}
.entry-content-inner .cta-button {
  display: inline-block;
  background-color: var(--c-gold);
  color: #fff;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 20px;
  transition: .3s;
}
.entry-content-inner .cta-button:hover { opacity: .85; }
.entry-content-inner .entry-figure { margin: 28px 0 36px; }
.entry-content-inner .entry-figure img { width: 100%; height: auto; display: block; }
.entry-content-inner .math { font-family: 'Times New Roman', serif; font-style: italic; font-weight: 700; color: var(--c-gold); }
.entry-content-inner .highlight-box {
  background-color: #f0f4f8;
  padding: 25px;
  margin: 30px 0;
  border: 1px solid #d1d9e6;
}
.entry-content-inner ul { padding-left: 1.4em; margin: 16px 0 24px; }
.entry-content-inner ul li { margin-bottom: 8px; line-height: 1.8; }

/* ============================================================
   Article TOC (kk-toc) — clean simple list (h2 only)
   ============================================================ */
.kk-toc {
    background: #fff;
    border: 1px solid var(--c-line);
    border-top: 3px solid var(--c-navy);
    padding: 22px 32px 12px;
    width: 80%;
    margin: 0 auto;
}
.kk-toc__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .35em;
  color: var(--c-navy);
  margin: 0 0 8px;
  padding-left: 4px;
}
.kk-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kk-toc__item {
  margin: 0;
  border-bottom: 1px solid #eef0f2;
}
.kk-toc__item:last-child { border-bottom: 0; }
.kk-toc__item > a {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 4px;
  color: var(--c-navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  transition: color .2s ease;
}
.kk-toc__num {
  font-size: 15px;
  font-weight: 600;
  color: #9aa3ad;
  text-align: left;
  letter-spacing: .04em;
}
.kk-toc__title { color: inherit; }
.kk-toc__item > a:hover { color: var(--c-gold); }
.kk-toc__item > a:hover .kk-toc__num { color: var(--c-gold); }

@media (max-width: 599px) {
  .kk-toc { padding: 18px 18px 8px; margin-bottom: 36px; width: 100%;}
  .kk-toc__label { font-size: 15px; letter-spacing: .3em; }
  .kk-toc__item > a {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 8px 2px;
    font-size: 15px;
  }
  .wp-article .kk-toc__list {
    padding-left: 0;
  }
  .wp-article .kk-toc__label {
    margin-bottom: 0;
  }
}

html { scroll-behavior: smooth; }
.entry-content-inner h2[id],
.entry-content-inner h3[id] { scroll-margin-top: calc(var(--kk-header-h) + 16px); }

.entry-content-inner .info-box {
  background-color: #fff;
  border: 2px solid var(--c-navy);
  padding: 25px;
  margin: 30px 0;
}
.entry-content-inner .info-box strong {
  color: var(--c-navy);
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.entry-content-inner .warning-box {
  background-color: #fff8f0;
  border-left: 4px solid #c0392b;
  padding: 20px 24px;
  margin: 30px 0;
}
.entry-content-inner .warning-box strong {
  display: block;
  color: #c0392b;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.entry-content-inner .ng-list {
  background-color: #FAF9F6;
  border: 1px solid var(--c-line);
  padding: 20px 24px;
  margin: 30px 0;
}
.entry-content-inner .ng-list ul { margin: 0; padding-left: 1.4em; }
.entry-content-inner .ng-list li { color: #555; }
.entry-content-inner .ng-list li::marker { content: "× "; color: #c0392b; font-weight: 700; }
.entry-content-inner .point-box {
  background-color: var(--c-navy);
  color: #fff;
  padding: 24px 28px;
  margin: 40px 0;
  border-left: 4px solid var(--c-gold);
}
.entry-content-inner .point-box strong { color: #fff; font-size: 1.05rem; display: inline-block; margin-bottom: 8px; }
.entry-content-inner .info-table th { width: 32%; }
.entry-content-inner h4 {
  font-size: 1.08rem;
  color: var(--c-navy);
  margin: 28px 0 12px;
  padding-left: 14px;
  position: relative;
  font-weight: 700;
}
.entry-content-inner h4::before {
  content: "";
  position: absolute;
  left: 0; top: .35em;
  width: 4px; height: 1em;
  background: var(--c-gold);
}

/* Author registration number */
.single-author__regno {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
  letter-spacing: .03em;
}

/* ============================================================
   HTML Sitemap page (page-sitemap.php)
   ============================================================ */
.sitemap-page { background: var(--c-bg); }

.sitemap-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sitemap-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}
.sitemap-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,51,.55) 0%, rgba(10,26,51,.85) 100%);
}
.sitemap-hero__inner {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.sitemap-hero__en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.sitemap-hero__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 18px;
}
.sitemap-hero__sub {
  font-size: 14px;
  line-height: 1.9;
  opacity: .9;
  margin: 0;
}
@media (max-width: 599px) {
  .sitemap-hero { height: 280px; }
}

.sitemap-body { padding: 80px 24px 100px; }
.sitemap-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 56px;
}
@media (max-width: 599px) {
  .sitemap-body { padding: 56px 18px 72px; }
  .sitemap-inner { gap: 40px; }
}

.sitemap-sec {
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 32px 36px;
}
@media (max-width: 599px) {
  .sitemap-sec { padding: 24px 20px; }
}
.sitemap-sec__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: .04em;
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
}
.sitemap-sec__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: .04em;
  line-height: 1;
}
.sitemap-sec__catlink {
  color: var(--c-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.sitemap-sec__catlink:hover { border-bottom-color: var(--c-gold); }
.sitemap-sec__count {
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: .12em;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.sitemap-list li { margin: 0; }
.sitemap-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  color: var(--c-navy);
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.6;
  border-bottom: 1px dashed var(--c-line);
  transition: color .2s, padding-left .2s;
}
.sitemap-list a::before {
  content: "";
  flex: 0 0 auto;
  width: 8px; height: 1px;
  background: #9aa3ad;
  transition: width .2s, background-color .2s;
}
.sitemap-list a:hover {
  color: var(--c-gold);
  padding-left: 8px;
}
.sitemap-list a:hover::before { width: 16px; background: var(--c-gold); }
.sitemap-list li:last-child a { border-bottom: 0; }

/* 記事リスト用：日付 + タイトル */
.sitemap-list--articles a { gap: 16px; }
.sitemap-list--articles a::before { display: none; }
.sitemap-list__date {
  flex: 0 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: .04em;
  min-width: 78px;
}
.sitemap-list__title {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* sitemap ページのメイン領域上部余白（ヘッダーと重ねない） */
body.page-template-page-sitemap .site-main { padding-top: 0; }

/* ============================================================
   Contact form result / reCAPTCHA notice
   ============================================================ */
.contact-form-result {
  border: 2px solid var(--c-line);
  padding: 28px 32px;
  margin-bottom: 40px;
  background: #fff;
}
.contact-form-result.is-success {
  border-color: #1f7a3e;
  background: #eef7f0;
}
.contact-form-result.is-error {
  border-color: #c0392b;
  background: #fdf2f0;
}
.contact-form-result__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 10px;
  color: var(--c-navy);
}
.contact-form-result.is-success .contact-form-result__title { color: #1f7a3e; }
.contact-form-result.is-error   .contact-form-result__title { color: #c0392b; }
.contact-form-result__message {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 8px;
  color: var(--c-navy);
}
.contact-form-result__sub {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  margin: 12px 0 0;
}
.contact-form__recaptcha-notice {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.6;
  margin-top: 16px;
  text-align: center;
}
.contact-form__recaptcha-notice a {
  color: var(--c-navy);
  text-decoration: underline;
}
/* reCAPTCHA badge を控えめに */
.grecaptcha-badge {
  visibility: visible;
  opacity: 0.7;
}

