/* ========================================
   つなぐたすける土木株式会社 HP
   Design: スタイリッシュ × 信頼感
   ======================================== */

/* ---------- Variables ---------- */
:root {
  --navy: #1B4332;
  --navy-light: #2D6A4F;
  --navy-dark: #0D2818;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-pale: #F5E6C8;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --gray-50: #FAFAF8;
  --gray-100: #F3F4F2;
  --gray-200: #E5E7E3;
  --gray-300: #D1D5CD;
  --gray-400: #9CA396;
  --gray-500: #6B7264;
  --gray-600: #4B5543;
  --gray-700: #374133;
  --gray-800: #1F2A1D;
  --text: #2D2D28;
  --text-light: #5A5A50;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }

/* ---------- Utility ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 56px;
  font-size: 20px;
}

/* ---------- Section common ---------- */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--navy);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.header {
  transition: transform 0.3s ease, box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

/* スクロール下方向時に自動非表示（モバイル中心） */
.header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.logo-sub {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 960px) {
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    font-size: 16px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
}

/* ヒーロー背景画像（PC: center/cover、モバイル: 上をカット＝下を見せる） */
.hero-with-bg {
  background-image: url('image/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--navy);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184,134,11,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(42,61,82,0.8) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-lead {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold-pale);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  line-height: 2;
  margin-bottom: 48px;
}

.hero-btn {
  font-size: 20px;
  padding: 20px 56px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 768px) {
  /* ヒーロー全体: 高さを4割ほど短縮（80→50svh）、上下を等量にカット */
  .hero {
    min-height: 50svh;
    align-items: flex-start;
    padding: 95px 20px 40px;
  }
  /* モバイル: PCと同じく上を多めにカット（下寄り表示） */
  .hero-with-bg {
    background-position: center 75%;
  }
  .hero-content { padding: 0; }
  .hero-lead {
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
  }
  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    line-height: 1.3;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 32px;
  }
  .hero-btn {
    font-size: 16px;
    padding: 14px 32px;
  }
  /* スクロールインジケータはモバイルでは非表示（CTAと干渉するため） */
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 88px 16px 36px; min-height: 48svh; }
  .hero-title { font-size: 30px; }
  .hero-sub { font-size: 15px; }
}

/* ---------- キャッチフレーズ（お客様の声・タイポ中心 V5.1+） ---------- */
.section-catch {
  padding: 48px 0 32px !important;
  background: var(--off-white);
}
.catch-block {
  text-align: center;
  position: relative;
}
.catch-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.85;
  position: relative;
  display: inline-block;
  padding: 0 36px;
}
.catch-text::before,
.catch-text::after {
  position: absolute;
  font-family: Georgia, serif;
  font-size: 56px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  font-style: normal;
}
.catch-text::before {
  content: "\201C";
  top: -8px;
  left: 0;
}
.catch-text::after {
  content: "\201D";
  bottom: -28px;
  right: 0;
}
@media (max-width: 768px) {
  .section-catch { padding: 36px 0 24px !important; }
  .catch-text {
    font-size: 19px;
    padding: 0 24px;
    text-align: left;
  }
  .catch-text::before { font-size: 42px; top: -6px; }
  .catch-text::after { font-size: 42px; bottom: -22px; }
}

/* ---------- 解決します（私たちの答え・カード型 V5.1+） ---------- */
.section-solution {
  padding: 48px 0 80px !important;
}
.solution-block {
  position: relative;
  text-align: center;
  padding: 48px 24px 44px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.solution-block::before {
  display: none;
}
.solution-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: 4px;
}
.solution-headline {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.solution-headline strong {
  color: var(--gold);
  font-weight: 800;
}
.solution-sub {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
}
@media (max-width: 768px) {
  .section-solution { padding: 36px 0 56px !important; }
  .solution-block {
    padding: 36px 22px 28px;
  }
  .solution-headline {
    font-size: 21px;
    line-height: 1.7;
  }
}

/* お悩みセクションとキャッチの間を詰める */
#problems { padding-bottom: 48px; }
@media (max-width: 768px) {
  #problems { padding-bottom: 32px; }
}

/* ---------- Problem → Solution Bridge メッセージ（V5.1+） ---------- */
.problem-bridge {
  position: relative;
  max-width: 700px;
  margin: 56px auto 0;
  padding: 40px 36px 36px;
  background:
    linear-gradient(135deg, rgba(184, 134, 11, 0.06) 0%, rgba(27, 40, 56, 0.03) 100%),
    var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(27, 40, 56, 0.08);
  text-align: center;
  border-top: 3px solid var(--gold);
}
.problem-bridge::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.4);
}
.problem-bridge-eyebrow {
  display: block;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  font-weight: 700;
}
.problem-bridge-headline {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 14px;
}
.problem-bridge-headline strong {
  background: linear-gradient(180deg, transparent 65%, rgba(184, 134, 11, 0.25) 65%);
  padding: 0 2px;
  font-weight: 800;
}
.problem-bridge-sub {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
}
@media (max-width: 768px) {
  .problem-bridge {
    padding: 32px 24px 28px;
    text-align: left;
    margin-top: 40px;
  }
  .problem-bridge::before {
    left: 24px;
    transform: none;
  }
  .problem-bridge-headline {
    font-size: 19px;
    line-height: 1.7;
  }
}

/* ---------- Problems ---------- */
.section-problems {
  background: var(--off-white);
}

.section-problems .section-title {
  margin-bottom: 48px;
}

.problem-list {
  max-width: 680px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  font-size: 16px;
  line-height: 1.7;
}

/* おしゃれなチェックマーク（金色グラデの円） */
.problem-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(184, 134, 11, 0.3);
}
.problem-check svg {
  width: 16px;
  height: 16px;
}

.problem-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-top: 2px;
}

.problem-list p {
  font-size: 15px;
  line-height: 1.7;
}

.problem-list strong {
  color: var(--navy);
}

.problem-answer {
  text-align: center;
}

.arrow-down {
  width: 2px;
  height: 40px;
  background: var(--gold);
  margin: 0 auto 24px;
  position: relative;
}

.arrow-down::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--gold);
}

.problem-answer-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
}

/* ---------- Reason ---------- */
.section-reason {
  background: var(--navy);
  color: var(--white);
}

.section-reason .section-title {
  color: var(--white);
  margin-bottom: 40px;
}

.reason-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.reason-content p {
  font-size: 17px;
  line-height: 2;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .section-reason [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .section-reason [style*="grid-template-columns"] .reason-content {
    text-align: center !important;
  }

  .section-reason [style*="grid-template-columns"] > div:last-child {
    max-width: 240px;
    margin: 0 auto;
  }
}

.reason-content strong {
  color: var(--gold-light);
}

.reason-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-pale);
  text-align: left;
}

/* ---------- Profile ---------- */
.section-profile {
  background: var(--white);
}

.section-profile .section-title {
  margin-bottom: 48px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.profile-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-400);
}

.profile-photo-placeholder svg {
  width: 48px;
  height: 48px;
}

.profile-photo-placeholder span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.profile-role {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}

.profile-name {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.profile-desc {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.9;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-detail-item h4 {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.profile-detail-item p,
.profile-detail-item li {
  font-size: 14px;
  color: var(--text);
}

.profile-detail-item ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-detail-item li::before {
  content: '・';
}

.strength-box {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}

.strength-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.strength-box p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
}

.strength-box strong {
  color: var(--navy);
}

@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-photo-placeholder {
    max-width: 240px;
    margin: 0 auto;
  }

  .strength-box {
    padding: 28px 24px;
  }
}

/* ---------- Plans ---------- */
.section-plans {
  background: var(--off-white);
}

.section-plans .section-title {
  margin-bottom: 8px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card-featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.plan-badge {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.plan-ume {
  background: #FFF0F0;
  color: #C14B4B;
}

.plan-take {
  background: #F0FFF0;
  color: #2E7D32;
}

.plan-matsu {
  background: #F0F4FF;
  color: #1565C0;
}

.plan-price {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
}

.price-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  color: var(--gray-500);
}

.plan-oneliner {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  min-height: 40px;
}

.plan-features {
  width: 100%;
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  text-align: left;
}

.feature-label {
  color: var(--gray-500);
  flex-shrink: 0;
  margin-right: 12px;
}

.feature-value {
  font-weight: 500;
  color: var(--navy);
  text-align: right;
}

.plan-note {
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
}

.plan-note a {
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
}

@media (max-width: 768px) {
  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Results ---------- */
.section-results {
  background: var(--white);
}

.section-results .section-title {
  margin-bottom: 8px;
}

.results-highlight {
  text-align: center;
  margin-bottom: 48px;
}

.results-highlight-num {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.results-highlight-unit {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}

.results-highlight-label {
  display: block;
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.1em;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.result-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition);
}

.result-card:hover {
  transform: translateY(-2px);
}

.result-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.result-number span {
  font-size: 18px;
}

.result-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--gold);
}

.result-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- Services ---------- */
.section-services {
  background: var(--off-white);
}

.section-services .section-title {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ========== プラン専用ページ（V5.1） ========== */
.plan-page-hero { position: relative; }
.plan-page-hero.plan-accent-1 .page-hero-overlay { background: linear-gradient(135deg, rgba(14, 124, 123, 0.92), rgba(44, 154, 153, 0.85)); }
.plan-page-hero.plan-accent-2 .page-hero-overlay { background: linear-gradient(135deg, rgba(184, 134, 11, 0.92), rgba(212, 168, 67, 0.85)); }
.plan-page-hero.plan-accent-3 .page-hero-overlay { background: linear-gradient(135deg, rgba(27, 40, 56, 0.95), rgba(42, 61, 82, 0.88)); }

.plan-page-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.plan-page-breadcrumb a {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
}
.plan-page-breadcrumb a:hover { color: #fff; }

.plan-page-price {
  margin-top: 28px;
  font-family: var(--font-serif);
  color: #fff;
  text-align: center;
}
.plan-page-price .price-num {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.plan-page-price .price-yen {
  font-size: 22px;
  margin-left: 4px;
  font-weight: 700;
}
.plan-page-price .price-unit {
  font-size: 16px;
  margin-left: 6px;
  opacity: 0.85;
}

.plan-spec-list {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
  max-width: 720px;
  margin: 32px auto 0;
}
.plan-spec-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--gray-200);
}
.plan-spec-item:last-child { border-bottom: none; }
.plan-spec-label {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.plan-spec-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .plan-spec-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 20px;
  }
  .plan-page-price .price-num { font-size: 48px; }
}

.plan-solve-list {
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  max-width: 720px;
}
.plan-solve-list li {
  position: relative;
  background: var(--white);
  padding: 16px 20px 16px 56px;
  margin-bottom: 12px;
  border-radius: 10px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  line-height: 1.75;
}
.plan-solve-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  line-height: 26px;
  font-weight: 700;
}
.plan-solve-list li strong { color: var(--navy); }

/* ========== 顧問とは vs コンサル比較（V5.1） ========== */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.vs-item {
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}
.vs-item h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.vs-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vs-item ul li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  line-height: 1.7;
}
.vs-consultant {
  background: var(--gray-50);
  color: var(--gray-600);
}
.vs-consultant h3 { color: var(--gray-600); }
.vs-consultant ul li::before {
  content: "−";
  position: absolute;
  left: 4px;
  color: var(--gray-400);
}
.vs-advisor {
  background: linear-gradient(135deg, #fffaf0 0%, #fff 100%);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.15);
}
.vs-advisor h3 { color: var(--gold); }
.vs-advisor ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 768px) {
  .vs-grid { gap: 10px; margin-top: 20px; }
  .vs-item { padding: 16px 12px; border-radius: 10px; }
  .vs-item h3 { font-size: 14px; margin-bottom: 10px; padding-bottom: 8px; }
  .vs-item ul li { font-size: 12px; line-height: 1.6; padding: 5px 0 5px 18px; }
  .vs-consultant ul li::before,
  .vs-advisor ul li::before { font-size: 12px; top: 5px; }
}

/* ========== 3プラン概要カード（V5.1） ========== */
.plan-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.plan-overview-card {
  position: relative;
  background: var(--white);
  padding: 32px 28px 28px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 5px solid var(--gold);
}
.plan-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plan-overview-card.plan-accent-1 { border-top-color: #0e7c7b; }
.plan-overview-card.plan-accent-2 { border-top-color: var(--gold); }
.plan-overview-card.plan-accent-3 { border-top-color: var(--navy); }
.plan-overview-featured {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.18);
  background: linear-gradient(180deg, #fffaf0 0%, #fff 60%);
}
.plan-overview-featured:hover {
  transform: translateY(-12px);
}
.plan-overview-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.plan-overview-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.plan-overview-icon svg { width: 30px; height: 30px; }
.plan-overview-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.plan-overview-price {
  font-family: var(--font-serif);
  margin-bottom: 12px;
}
.plan-overview-price .price-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
}
.plan-overview-price .price-unit {
  font-size: 13px;
  color: var(--text-light);
  margin-left: 4px;
}
.plan-overview-tagline {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  min-height: 3.4em;
}
.plan-overview-summary {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.plan-overview-summary li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--gray-200);
  color: var(--text);
}
.plan-overview-summary li:last-child { border-bottom: none; }
.plan-overview-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--gold);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.plan-overview-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}
.plan-overview-cta-1 { background: #0e7c7b; }
.plan-overview-cta-1:hover { background: #2c9a99; }
.plan-overview-cta-3 { background: var(--navy); }
.plan-overview-cta-3:hover { background: var(--navy-light); }
@media (max-width: 768px) {
  .plan-overview-grid { grid-template-columns: 1fr; }
  .plan-overview-featured { transform: none; }
  .plan-overview-featured:hover { transform: translateY(-4px); }
}

/* ========== V5.2: プランカード内 詳細ブロック ========== */
.plan-detail-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--gray-200);
}
.plan-detail-block:first-of-type {
  margin-top: 8px;
}
.plan-detail-heading {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--gold);
}
.plan-detail-lead {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}
.plan-detail-spec {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-detail-spec li {
  font-size: 13px;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px dotted var(--gray-200);
}
.plan-detail-spec li:last-child { border-bottom: none; }
.plan-detail-spec li > span:first-child {
  color: var(--text-light);
  font-weight: 500;
  flex-shrink: 0;
}
.plan-detail-spec li > span:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
}
.plan-detail-solve {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-detail-solve li {
  font-size: 13px;
  padding: 7px 0 7px 22px;
  position: relative;
  line-height: 1.6;
  color: var(--text);
}
.plan-detail-solve li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
}
.plan-overview-card .plan-overview-cta {
  margin-top: auto;
  padding-top: 14px;
  padding-bottom: 14px;
}
.plan-overview-card .plan-detail-block:last-of-type {
  margin-bottom: 24px;
}
.plan-target-line {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 6px 12px;
  margin: 0 0 12px;
}
.plan-target-line .plan-target-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid var(--gray-200);
}

/* ========== プラン別メインCTA（V5.0+ 標準パターン: 詳細直下・中央・大型） ========== */
.plan-cta-row {
  text-align: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed var(--gray-200);
}
.plan-cta {
  min-width: 360px;
  max-width: 90%;
  font-size: 18px !important;
  padding: 18px 40px !important;
  border-radius: 10px !important;
  letter-spacing: 0.02em;
  border: none !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.plan-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.plan-cta-1 { background: linear-gradient(135deg, #0e7c7b, #2c9a99) !important; }
.plan-cta-1:hover { background: linear-gradient(135deg, #2c9a99, #4ab8b6) !important; }
.plan-cta-2 { background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important; }
.plan-cta-2:hover { background: linear-gradient(135deg, var(--gold-light), #e0b964) !important; }
.plan-cta-3 { background: linear-gradient(135deg, var(--navy), var(--navy-light)) !important; }
.plan-cta-3:hover { background: linear-gradient(135deg, var(--navy-light), #3d5573) !important; }

.plan-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .plan-cta {
    min-width: 0;
    width: 100%;
    font-size: 16px !important;
    padding: 16px 24px !important;
  }
}

/* ========== recruit.html: 募集詳細ページ（シンプル版） ========== */
.recruit-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.recruit-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}
.recruit-list li:last-child { border-bottom: none; }
.recruit-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.recruit-list li strong { color: var(--navy); }

/* ========== contact.html: 選択中プラン表示バナー ========== */
.selected-plan-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  margin: 0 auto 24px;
  max-width: 720px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.25);
}
.selected-plan-banner strong {
  display: inline-block;
  margin-left: 6px;
  font-size: 17px;
}
.selected-plan-banner small {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 4px;
  font-weight: 400;
}

/* ========== お客様の声グリッド（results.html／V5.0+） ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ========== 全カードグリッドのモバイル統一: PC横／モバイル縦 ========== */
@media (max-width: 768px) {
  .plan-cards,
  .results-grid,
  .service-areas-grid,
  .program-cards,
  .reasons-grid,
  .feature-grid,
  .testimonials-grid,
  .qual-grid,
  .recruit-cards,
  .training-features {
    grid-template-columns: 1fr !important;
  }
}

/* ========== モバイルで中央寄せ→左寄せに変更（V5.1+） ========== */
/* 改行 <br> 入りの中央寄せテキストはモバイルだと改行位置がバランス悪いので左寄せに */
@media (max-width: 768px) {
  .contact-lead,
  .contact-free,
  .cta-text,
  /* 各ページの「こんな方におすすめ」など inline style center 本文 */
  .section p[style*="text-align: center"],
  .section p[style*="text-align:center"],
  /* コンテナdivに inline でcenter指定されている場合（index #reason 等）も左寄せに */
  .section .container[style*="text-align: center"],
  .section .container[style*="text-align:center"],
  .section .container > div[style*="text-align: center"],
  .section .container > div[style*="text-align:center"],
  /* 代表の思い等の中央寄せ本文 */
  #vision-summary .vision-text {
    text-align: left !important;
  }
  /* セクションタイトル・サブタイトル・ヒーロータイトル・CTA内タイトルは中央のまま */
  .section-title,
  .section-subtitle,
  .page-hero-title,
  .page-hero-sub,
  .hero-title,
  .hero-sub,
  .hero-lead,
  .section-cta .section-title,
  .results-highlight,
  .results-highlight-num,
  .results-highlight-label {
    text-align: center !important;
  }
  /* CTA行の中身（ボタン）は中央配置のまま、ボタン内テキストは中央 */
  .section-cta .container,
  .plan-cta-row {
    text-align: center !important;
  }
}

/* ========== 詳細実績カード（数字+具体説明 V5.0+） ========== */
.result-detail-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  padding: 32px 36px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--gold);
}
.result-detail-card:hover {
  box-shadow: var(--shadow-md);
}
.result-detail-num {
  text-align: center;
  padding: 20px 12px;
  background: linear-gradient(135deg, #fafaf7 0%, #f5f0e0 100%);
  border-radius: 12px;
}
.result-detail-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-detail-icon svg {
  width: 100%;
  height: 100%;
}
.result-detail-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.result-detail-unit {
  font-size: 32px;
  margin-left: 4px;
}
.result-detail-arrow {
  font-size: 36px;
  color: var(--gold);
  margin: 0 8px;
  vertical-align: middle;
  font-weight: 700;
}
.result-detail-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}
.result-detail-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.55;
}
.result-detail-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}
.result-changes {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.result-changes li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.result-changes li:last-child { border-bottom: none; }
.result-changes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
}
.result-changes li strong { color: var(--navy); }
@media (max-width: 768px) {
  .result-detail-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 20px;
  }
  .result-detail-number { font-size: 48px; }
  .result-detail-unit { font-size: 24px; }
  .result-detail-body h3 { font-size: 17px; }
}

/* ========== 定性的実績カード（results.html／V5.0+） ========== */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.qual-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.qual-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.qual-figure {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 16px 12px;
  margin-bottom: 16px;
}
.qual-figure svg {
  width: 100%;
  height: 80px;
}
.qual-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
  min-height: 3em;
}
.qual-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}
@media (max-width: 768px) {
  .qual-grid { grid-template-columns: 1fr; }
}

/* ========== 縦並び＆主力強調レイアウト（V5.0+） ========== */
.services-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}
.services-stack .service-card {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.services-stack .service-card-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 36px;
}

/* 主力サービス（顧問） */
.service-card-featured {
  border: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(184, 134, 11, 0.18);
  background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
}
.service-card-featured:hover {
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.28);
  transform: translateY(-4px);
}
.service-card-featured .service-card-row { padding: 44px 40px; }
.service-card-featured h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--navy);
}
.service-card-featured p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.service-icon-large {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.35);
}
.service-icon-large svg { width: 44px; height: 44px; }
.service-badge {
  position: absolute;
  top: 0; right: 32px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: 0 0 6px 6px;
}
.service-bullets {
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}
.service-bullets strong { color: var(--navy); }
.service-bullets ul {
  list-style: disc;
  padding-left: 22px;
  margin-top: 6px;
}
.service-bullets li { margin-bottom: 4px; }
.service-cta-large {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  background: var(--gold);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
}
.service-card-featured:hover .service-cta-large { background: var(--gold-light); }

/* 副次サービス（技術サポート） */
.service-card-secondary {
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.service-card-secondary .service-card-row {
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 32px;
}
.service-card-secondary h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.service-card-secondary p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
}
.service-icon-small {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon-small svg { width: 30px; height: 30px; }

@media (max-width: 768px) {
  .services-stack .service-card-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 22px !important;
  }
  .service-icon-large { width: 64px; height: 64px; }
  .service-icon-large svg { width: 32px; height: 32px; }
  .service-card-featured h3 { font-size: 22px; }
  .service-card-featured p { font-size: 15px; }
  .service-badge { right: 16px; padding: 6px 12px; font-size: 11px; }
}

/* 代表の思い・写真付きレイアウト */
.vision-summary-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 32px;
}
.vision-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.vision-photo-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text);
}
.vision-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.vision-text {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
}
@media (max-width: 768px) {
  .vision-summary-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .vision-photo { max-width: 220px; margin: 0 auto; }
  .vision-text { text-align: left; }
}

.service-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card .service-link {
  display: inline-block;
  margin-top: 8px;
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  transition: color var(--transition);
}

.service-link:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact ---------- */
.section-contact {
  background: var(--navy);
  color: var(--white);
}

.section-contact .section-title {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.contact-free {
  text-align: center;
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 48px;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}

.required {
  background: #E53935;
  color: var(--white);
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 15px;
  transition: border-color var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-large {
  display: block;
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 13px;
  margin-top: 4px;
}

.footer-address,
.footer-tel {
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.85;
  line-height: 1.6;
}

/* ============================================
   採用バナー（ユーザー提供デザイン版・原画忠実再現）
   斜め深緑帯 + ゴールド線 + 白背景 + 深緑CTA
   ============================================ */
.recruit-banner-wrap {
  background: #f0f0f0;
  padding: 0;
}

.recruit-banner {
  max-width: none;
  margin: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* 上部メインエリア（横並び） */
.recruit-banner-main {
  position: relative;
  display: flex;
  min-height: 220px;
}

/* 左側：斜めの深緑背景 */
.recruit-banner-bg-angle {
  position: absolute;
  top: 0;
  left: -20%;
  width: 22%;
  height: 100%;
  background: #00331a;
  transform: skewX(-20deg);
  z-index: 1;
}

/* 斜め背景の右端ゴールド線 */
.recruit-banner-bg-angle-border {
  position: absolute;
  top: 0;
  left: 2%;
  width: 0;
  height: 100%;
  border-left: 6px solid #c08f32;
  transform: skewX(-20deg);
  z-index: 2;
}

/* 1.1 左側テキスト（中央揃え） */
.recruit-banner-text-left {
  position: relative;
  z-index: 10;
  width: 48%;
  padding: 28px 24px 28px 48px;
  box-sizing: border-box;
  text-align: center;
}

.recruit-banner-catch {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  position: relative;
  display: inline-block;
}

.recruit-banner-catch::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #c08f32;
}

.recruit-banner-headline {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  color: #00331a;
  margin: 0 0 16px;
}

.recruit-banner-headline-gold {
  color: #c08f32;
}

.recruit-banner-sub {
  background: #00331a;
  color: #fff;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
}

/* 1.2 右側 features */
.recruit-banner-features {
  flex: 1;
  display: flex;
  padding: 24px 24px;
  box-sizing: border-box;
  border-left: 1px solid #e0e0e0;
  position: relative;
  z-index: 5;
  background: #fff;
}

.recruit-banner-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.recruit-banner-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100px;
  width: 1px;
  background: #e0e0e0;
}

.recruit-banner-icon {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

/* 握手アイコン（中堅）は枠は72pxで揃え、SVGだけ縮小して上下位置を揃える */
.recruit-banner-feature--mid .recruit-banner-icon svg {
  width: 84%;
  height: 84%;
}

.recruit-banner-icon svg {
  width: 100%;
  height: 100%;
}

.recruit-banner-feature-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.recruit-banner-feature-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* 2. CTA エリア（縦積み・中央寄せ） */
.recruit-banner-cta {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: #1a1a1a;
}

.recruit-banner-cta-headline {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #00331a;
}

.recruit-banner-cta-sub {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 720px;
}

.recruit-banner-cta-meta {
  font-size: 12px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: #777;
  max-width: 720px;
}

.recruit-banner-cta-button {
  background: linear-gradient(to right, #b78731, #e5b258, #b78731);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruit-banner-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.recruit-banner-cta-arrow {
  font-size: 22px;
  font-weight: 900;
}

/* ===== モバイル ===== */
@media (max-width: 900px) {
  .recruit-banner-wrap {
    padding: 0;
  }
  .recruit-banner-main {
    flex-direction: column;
    min-height: 0;
  }
  .recruit-banner-bg-angle {
    width: 100%;
    height: 200px;
    left: 0;
    transform: none;
  }
  .recruit-banner-bg-angle-border {
    display: none;
  }
  .recruit-banner-text-left {
    width: 100%;
    padding: 28px 20px;
    color: #fff;
  }
  .recruit-banner-catch {
    font-size: 15px;
    color: #fff;
    margin: 0 0 14px;
  }
  .recruit-banner-catch::after {
    background: #c08f32;
  }
  .recruit-banner-headline {
    font-size: 24px;
    color: #fff;
  }
  .recruit-banner-headline-gold {
    color: #ffd57a;
  }
  .recruit-banner-sub {
    background: #c08f32;
    font-size: 13px;
    padding: 6px 14px;
  }
  .recruit-banner-features {
    padding: 18px 8px 4px;
    gap: 4px;
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }
  .recruit-banner-feature {
    padding: 0 6px;
  }
  .recruit-banner-feature:not(:last-child)::after {
    height: 60px;
  }
  .recruit-banner-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }
  .recruit-banner-feature-title {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .recruit-banner-feature-desc {
    font-size: 11px;
    line-height: 1.5;
  }
  .recruit-banner-cta {
    padding: 24px 16px;
    gap: 6px;
  }
  .recruit-banner-cta-headline {
    font-size: 16px;
  }
  .recruit-banner-cta-sub {
    font-size: 13px;
  }
  .recruit-banner-cta-meta {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .recruit-banner-cta-button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 15px;
    padding: 12px 20px;
  }
}

.footer-tel a {
  color: inherit;
  text-decoration: none;
}

.footer-tel a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-sns {
  display: flex;
  gap: 16px;
}

.sns-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.sns-link svg {
  width: 18px;
  height: 18px;
}

.sns-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-sns {
    justify-content: center;
  }
}

/* ---------- Animations ---------- */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive fine-tune ---------- */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 26px;
  }
  /* 旧 .hero min-height: 100svh はモバイル長すぎ問題の原因のため削除 */
  /* min-height は前段の @media block (行380付近) で 50svh を採用 */
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .hero-title {
    font-size: 30px;
  }

  .results-highlight-num {
    font-size: 56px;
  }

  .price-num {
    font-size: 40px;
  }
}

/* ========================================
   Sub Page Common
   ======================================== */

/* ---------- Page Hero (Sub Pages) ---------- */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy) url('image/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
  padding-top: 72px;
  box-sizing: border-box;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 40, 0.75);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.page-hero-sub {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  margin-top: 6px;
}

.page-hero-vision-label {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin: 18px 0 10px;
  padding: 4px 18px;
  border: 1px solid rgba(184, 134, 11, 0.7);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .page-hero {
    height: auto;
    min-height: 260px;
    padding-top: 88px;
    padding-bottom: 28px;
  }
  .page-hero-title {
    font-size: 28px;
  }
  .page-hero-sub {
    font-size: 16px;
  }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--gray-500);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--gray-300);
}

/* ---------- Sub Page CTA ---------- */
.section-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.section-cta .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.9;
}

/* ========================================
   Plans Detail Page
   ======================================== */

/* ---------- Plan Detail Section ---------- */
.plan-detail-section {
  padding: 80px 0;
  position: relative;
}

.plan-detail-section:nth-child(even) {
  background: var(--off-white);
}

/* プランごとの上部カラー帯 */
.plan-detail-section[class*="plan-accent-"]::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.plan-accent-1::before { background: linear-gradient(90deg, #0e7c7b, #4cb5b3); }
.plan-accent-2::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.plan-accent-3::before { background: linear-gradient(90deg, var(--navy), var(--navy-light)); }

/* プランアイコン円 */
.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
.plan-icon svg {
  width: 28px;
  height: 28px;
}
.plan-icon-1 { background: linear-gradient(135deg, #0e7c7b, #2c9a99); }
.plan-icon-2 { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.plan-icon-3 { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }

.plan-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.plan-detail-header .plan-badge {
  margin-bottom: 0;
  flex-shrink: 0;
}

.plan-detail-header h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
}

.plan-detail-header .plan-price {
  margin-left: auto;
  margin-bottom: 0;
  font-size: 18px;
  white-space: nowrap;
}

.plan-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.plan-detail-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.plan-detail-box h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
}

.plan-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
}

.plan-check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M8.5 13.3L5.2 10l1.1-1.1 2.2 2.2 4.8-4.8 1.1 1.1z'/%3E%3C/svg%3E");
  background-size: contain;
}

.plan-detail-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.plan-detail-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-detail-info-item .info-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.plan-detail-info-item .info-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.plan-target {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--navy);
}

.plan-target strong {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 4px;
}

.plan-options {
  margin-top: 20px;
}

.plan-options h4 {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.plan-options ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plan-options li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}

.plan-options li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .plan-detail-header {
    flex-wrap: wrap;
  }
  .plan-detail-header .plan-price {
    margin-left: 0;
    width: 100%;
  }
  .plan-detail-grid {
    grid-template-columns: 1fr;
  }
  .plan-detail-info {
    grid-template-columns: 1fr;
  }
}

/* ---------- Plan Compare Table ---------- */
.plan-compare-section {
  padding: 80px 0;
  background: var(--white);
}

.plan-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 16px;
}

.plan-compare-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 18px 14px;
  font-weight: 700;
  text-align: center;
  font-size: 17px;
}

.plan-compare-table thead th:first-child {
  background: var(--navy-light);
  text-align: left;
}

.plan-compare-table thead th.featured {
  background: var(--gold);
  position: relative;
}

.plan-compare-table tbody td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
  vertical-align: middle;
}

.plan-compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--navy);
  background: var(--gray-50);
}

.plan-compare-table tbody td.featured {
  background: rgba(184, 134, 11, 0.04);
}

.plan-compare-table .check {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

.plan-compare-table .dash {
  color: var(--gray-300);
}

.plan-compare-wrapper {
  overflow-x: auto;
}

/* ---------- Document Option ---------- */
.document-option-section {
  padding: 80px 0;
  background: var(--off-white);
}

.document-option-content {
  max-width: 740px;
  margin: 0 auto;
}

.document-option-desc {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 32px;
}

.document-option-table-wrapper {
  overflow-x: auto;
  margin-bottom: 28px;
}

.document-option-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.document-option-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
}

.document-option-table thead th:first-child {
  background: var(--navy-light);
  text-align: left;
}

.document-option-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
  vertical-align: middle;
}

.document-option-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--navy);
  background: var(--gray-50);
}

.document-option-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.document-option-example {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.document-option-example h4 {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 8px;
}

.document-option-example p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

.document-option-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
  .document-option-examples {
    grid-template-columns: 1fr;
  }
}

/* ---------- Flow Steps ---------- */
.flow-section {
  padding: 80px 0;
  background: var(--off-white);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.flow-step {
  text-align: center;
  position: relative;
}

.flow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.flow-step h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

.flow-step::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--gold-pale);
}

.flow-step:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .flow-step::after {
    top: auto;
    bottom: -17px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 740px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  user-select: none;
}

.faq-question::before {
  content: 'Q';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--gray-400);
  border-radius: 2px;
  transition: transform var(--transition);
}

.faq-toggle::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px 68px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
}

/* ========================================
   Training Page
   ======================================== */

/* ---------- Training Features ---------- */
.training-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.training-feature-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.training-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.training-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.training-feature-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.training-feature-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .training-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Program List ---------- */
.program-section {
  padding: 80px 0;
  background: var(--off-white);
}

.program-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.program-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.program-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}

.program-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.program-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .program-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Training Flow ---------- */
.training-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.training-flow-step {
  text-align: center;
  position: relative;
}

.training-flow-step .flow-step-num {
  margin-bottom: 12px;
}

.training-flow-step h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}

.training-flow-step p {
  font-size: 13px;
  color: var(--text-light);
}

.training-flow-step::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--gold-pale);
}

.training-flow-step:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .training-flow {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .training-flow-step::after {
    top: auto;
    bottom: -15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* ---------- Testimonial ---------- */
.testimonial-section {
  padding: 80px 0;
  background: var(--off-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-text::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.testimonial-author {
  font-size: 13px;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Video Section ---------- */
.video-section {
  padding: 80px 0;
  text-align: center;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-wrapper img {
  width: 100%;
  display: block;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background var(--transition);
}

.video-wrapper:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.35);
}

/* 動画＋写真の2カラムグリッド */
.video-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.video-photo-grid .video-wrapper {
  max-width: none;
  width: 100%;
}

.seminar-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.seminar-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 12;
}

.media-caption {
  display: block;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 13px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-decoration: none;
}

.video-wrapper {
  text-decoration: none;
}

@media (max-width: 768px) {
  .video-photo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .seminar-photo img {
    aspect-ratio: auto;
  }
}

/* ========================================
   Technical Page
   ======================================== */

/* ---------- Tech Features ---------- */
.tech-features {
  background: var(--off-white);
  padding: 80px 0;
}

.tech-features-content {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.tech-features-content p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-light);
  margin-top: 24px;
}

.tech-features-content strong {
  color: var(--navy);
}

/* ---------- Service Areas ---------- */
.service-areas {
  padding: 80px 0;
  background: var(--white);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-areas-grid.service-areas-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.service-area-pricing {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-200);
}
.service-area-price {
  font-size: 14px !important;
  color: var(--navy) !important;
  font-weight: 600;
  margin: 0 0 6px;
}
.service-area-note {
  font-size: 12px !important;
  color: var(--text-light);
  line-height: 1.7 !important;
  margin: 0 0 14px;
}

.section-sub-heading {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  text-align: left;
}
.section-sub-lead {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}
.training-record-text {
  font-size: 16px;
  line-height: 2.0;
  color: var(--text);
  text-align: center;
  background: var(--off-white);
  padding: 24px;
  border-radius: 8px;
  margin: 0;
}

.tech-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.tech-support-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 22px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.tech-support-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 10px;
}
.tech-support-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 8px;
}
.tech-support-card p.tech-support-meta {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 6px;
}
.tech-support-card .menu-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: var(--gold);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .service-areas-grid.service-areas-2col {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .tech-support-grid {
    grid-template-columns: 1fr;
  }
}

.service-area-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.service-area-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.service-area-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-area-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .service-areas-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Case Studies ---------- */
.case-section {
  padding: 80px 0;
  background: var(--off-white);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.case-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.case-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}

.case-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Vision Page
   ======================================== */

/* ---------- Vision Message ---------- */
.vision-message {
  padding: 80px 0;
  background: var(--white);
}

.vision-message-inner {
  max-width: 740px;
  margin: 0 auto;
}

.vision-message h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
  margin-top: 48px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.vision-message h3:first-child {
  margin-top: 0;
}

.vision-lead {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 2.0;
  color: var(--text);
  text-align: center;
  margin: 0 0 56px;
  padding: 24px 16px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.vision-lead + h3 {
  margin-top: 0;
}

.vision-message p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 20px;
}

.vision-message strong {
  color: var(--navy);
}

.vision-highlight {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  border-left: 4px solid var(--gold);
}

.vision-highlight p {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.8;
}

/* ---------- Mission / Vision ---------- */
.mission-section {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.mission-card h3 {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.mission-card p {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.7;
}

.mission-grid.mission-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}

.mission-card .mission-goal {
  margin-bottom: 0;
}

.mission-divider {
  border: none;
  border-top: 1px dashed var(--gray-200);
  margin: 20px auto;
  width: 50%;
}

.mission-card .mission-action {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.85;
  text-align: left;
  margin: 0;
}

.vision-statement {
  text-align: center;
  margin-top: 40px;
}

.vision-statement p {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin: 0;
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .mission-grid.mission-grid-3 {
    grid-template-columns: 1fr;
  }
  .vision-statement p {
    font-size: 22px;
  }
}

/* ---------- Values Grid ---------- */
.values-section {
  padding: 80px 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--gold);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Sub Page Profile (vision.html) ---------- */
.sub-profile-section {
  padding: 80px 0;
  background: var(--off-white);
}

/* ---------- More Link ---------- */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  transition: color var(--transition);
  margin-top: 16px;
}

.more-link:hover {
  color: var(--gold-light);
}

.more-link::after {
  content: '\2192';
  transition: transform var(--transition);
}

.more-link:hover::after {
  transform: translateX(4px);
}

/* ========================================
   News
   ======================================== */

/* ---------- Common ---------- */
.news-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.news-tag-info {
  background: rgba(184, 134, 11, 0.1);
  color: var(--gold);
}

.news-tag-blog {
  background: rgba(46, 125, 50, 0.08);
  color: #3a7d3e;
}

/* ---------- News Section (Top Page) ---------- */
.section-news {
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  display: block;
  padding: 24px 0;
  border-top: 2px solid var(--gray-200);
  transition: border-color var(--transition);
}

.news-card:hover {
  border-top-color: var(--gold);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.news-card-meta time {
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.news-card-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.7;
}

.news-card:hover .news-card-title {
  color: var(--gold);
}

.news-card-excerpt {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .news-card {
    padding: 20px 0;
  }
}

/* ---------- News List Page ---------- */
.news-list-section {
  padding: 80px 0;
  background: var(--white);
}

.news-list-item {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  scroll-margin-top: 100px;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
  border-radius: 8px;
}

a.news-list-item {
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
}

a.news-list-item:hover {
  background: var(--off-white);
}

a.news-list-item:hover .news-list-title {
  color: var(--gold);
}

.news-list-item:first-child {
  padding-top: 0;
}

.news-list-meta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 120px;
  padding-top: 2px;
}

.news-list-meta time {
  font-size: 14px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.news-list-body {
  flex: 1;
}

.news-list-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.7;
}

.news-list-excerpt {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 2;
}

@media (max-width: 768px) {
  .news-list-item {
    flex-direction: column;
    gap: 10px;
    padding: 28px 0;
  }

  .news-list-meta {
    flex-direction: row;
    align-items: center;
  }
}

/* ========================================
   Blog
   ======================================== */

/* ---------- Blog Tag (Column) ---------- */
.news-tag-column {
  background: rgba(21, 101, 192, 0.08);
  color: #1565C0;
}

/* ---------- Blog Article Hero ---------- */
.blog-article-hero {
  padding: 140px 0 48px;
  background: var(--off-white);
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-article-meta time {
  font-size: 14px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.blog-article-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .blog-article-hero {
    padding: 110px 0 36px;
  }
  .blog-article-title {
    font-size: 24px;
  }
  /* ブログの左右余白を広げる（読みやすさ向上） */
  .blog-article-hero .container,
  .blog-article-body .container,
  .blog-nav-section .container,
  .blog-article-related .container,
  .news-list-section .container,
  #blog-preview .container {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  /* ブログ記事本文（.blog-article-body 直下に .vision-message-inner が来るパターン） */
  .blog-article-body {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}

/* ---------- Blog Article Body ---------- */
.blog-article-body {
  padding: 64px 0;
  background: var(--white);
}

/* ---------- Blog Nav (Prev/Next) ---------- */
.blog-nav-section {
  padding: 48px 0;
  background: var(--off-white);
}

.blog-nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-nav-prev a,
.blog-nav-next a {
  display: block;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-nav-prev a:hover,
.blog-nav-next a:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-nav-next a {
  text-align: right;
}

.blog-nav-label {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.blog-nav-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .blog-nav-links {
    grid-template-columns: 1fr;
  }
}

/* ---------- Blog List Link Styles ---------- */
.news-list-title a {
  color: inherit;
  transition: color var(--transition);
}

.news-list-title a:hover {
  color: var(--gold);
}

/* ---------- Blog Cards (Top Page) ---------- */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--gold);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.blog-card-meta time {
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 10px;
}

.blog-card:hover .blog-card-title {
  color: var(--gold);
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Company Table ---------- */
.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.company-table th,
.company-table td {
  padding: 20px 16px;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 160px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}

.company-table td {
  color: var(--text);
}

@media (max-width: 768px) {
  .company-table th,
  .company-table td {
    display: block;
    padding: 8px 0;
  }

  .company-table th {
    padding-top: 20px;
    padding-bottom: 0;
    font-size: 13px;
    color: var(--gray-500);
  }

  .company-table td {
    padding-bottom: 20px;
  }
}

/* ========================================
   カラバリ切替UI（has-color-switcherがbodyに付いた時のみ機能）
   ======================================== */
body.has-color-switcher .theme-switcher {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: rgba(15, 23, 30, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
}
body.has-color-switcher .theme-switcher-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
body.has-color-switcher .theme-switcher-inner::-webkit-scrollbar { display: none; }
body.has-color-switcher .theme-switcher-label {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-right: 8px;
  flex-shrink: 0;
}
body.has-color-switcher .theme-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
body.has-color-switcher .theme-btn:hover { background: rgba(255,255,255,0.12); }
body.has-color-switcher .theme-btn.active {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(255,255,255,0.08);
}
body.has-color-switcher .theme-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
body.has-color-switcher .theme-swatch-sub {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: -6px;
  border: 1px solid rgba(255,255,255,0.2);
}
body.has-color-switcher .theme-name {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
body.has-color-switcher .theme-btn.active .theme-name { color: #fff; }
body.has-color-switcher .header { top: 49px !important; }
body.has-color-switcher .page-hero, body.has-color-switcher .hero { padding-top: 49px; }
@media (max-width: 768px) {
  body.has-color-switcher .theme-switcher-inner { gap: 5px; padding: 8px 12px; }
  body.has-color-switcher .theme-name { font-size: 10px; }
  body.has-color-switcher .theme-btn { padding: 4px 8px; gap: 3px; }
  body.has-color-switcher .theme-swatch { width: 13px; height: 13px; }
  body.has-color-switcher .theme-swatch-sub { width: 10px; height: 10px; margin-left: -4px; }
  body.has-color-switcher .theme-switcher-label { margin-right: 4px; font-size: 10px; }
}

/* ========== ブログ最新3件（トップページ・V5.3） ========== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.blog-preview-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-preview-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.blog-preview-meta time {
  font-weight: 600;
  letter-spacing: 0.03em;
}
.blog-preview-title {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  line-height: 1.6;
  margin: 0 0 12px;
  font-weight: 700;
}
.blog-preview-excerpt {
  font-size: 13px;
  color: var(--text);
  line-height: 1.85;
  margin: 0 0 16px;
  flex: 1;
}
.blog-preview-card .more-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-top: auto;
}

/* タイトル内リンク（カード全体リンクが使えない場合用） */
.blog-preview-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.blog-preview-title a:hover {
  color: var(--gold);
}

/* ブログカード内のSNSリンク */
.blog-preview-sns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--gray-200);
}
.blog-sns-label {
  font-size: 11px;
  color: var(--text-light);
  margin-right: 4px;
}
.blog-sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--navy);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.blog-sns-icon svg {
  width: 14px;
  height: 14px;
}
.blog-sns-icon:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
}
