/* ===================================================
   福山サービスセンターイトウ HP リニューアル v2
   共通スタイルシート
   =================================================== */

/* ---------- CSS変数 ---------- */
:root {
  --navy-900: #142039;
  --navy-700: #1f2d4f;
  --navy-overlay: rgba(20, 32, 57, 0.55);
  --navy-overlay-strong: rgba(20, 32, 57, 0.7);
  --gold-500: #c9a544;
  --gold-600: #b08e2e;
  --cream:    #fafaf7;
  --text:     #2a2a2a;
  --gray-300: #d4d4d0;
  --gray-500: #8a8a85;
  --white:    #ffffff;

  --container-max: 1200px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-cta: 0 4px 20px rgba(201, 165, 68, 0.4);
}

/* ---------- リセット ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---------- 共通レイアウト ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy {
  background: var(--navy-900);
  color: var(--white);
}

/* ---------- セクションタイトル(ゴールド下線) ---------- */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--navy-900);
}

.section--navy .section-title h2 { color: var(--white); }

.section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-500);
  margin: 12px auto 0;
}

.section-title p {
  margin-top: 20px;
  font-size: 16px;
  color: var(--gray-500);
}

.section--navy .section-title p { color: rgba(255, 255, 255, 0.85); }

/* ---------- ヘッダー(sticky) ---------- */
.site-header {
  background: var(--navy-900);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.site-logo .logo-sub {
  font-size: 11px;
  color: var(--gray-300);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.site-logo .logo-main {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.site-logo .logo-img {
  height: 38px;
  width: auto;
  max-width: none;
  display: block;
  margin-top: 4px;
  align-self: flex-start; /* flex親で横にstretchされないように */
  flex-shrink: 0;
  /* 黒ロゴをネイビーヘッダーに合わせて白に反転 */
  filter: invert(100%) brightness(110%);
}

@media (max-width: 768px) {
  .site-logo .logo-img { height: 30px; }
}

.site-nav { display: flex; align-items: center; }

.site-nav ul {
  display: flex;
  gap: 32px;
}

.site-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

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

.site-nav a.is-active {
  color: var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
}

/* ハンバーガー */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px auto;
  transition: all 0.3s ease;
}

/* ---------- フッター ---------- */
.site-footer {
  background: var(--navy-900);
  color: var(--white);
  padding: 64px 0 24px;
  text-align: center;
}

.site-footer .footer-info { margin-bottom: 32px; }

.site-footer .footer-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.site-footer .footer-info p {
  font-size: 14px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

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

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- CTA ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn--gold {
  background: var(--gold-500);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.btn--gold:hover {
  background: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 165, 68, 0.5);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
}

.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
}

.btn--ghost:hover {
  background: var(--navy-900);
  color: var(--white);
}

/* ---------- ヒーローセクション(TOP) ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/hero-top.jpg');
  background-size: cover;
  background-position: center;
  /* Fallback gradient */
  background-color: var(--navy-900);
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1530 0%, #1f2d4f 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 80px 24px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero .hero-sub {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero .hero-desc {
  font-size: clamp(13px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .hero { min-height: 720px; }
}

/* ---------- ページヘッダー(下層) ---------- */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero { min-height: 320px; }
}

.page-hero .hero-bg {
  background-image: url('https://images.unsplash.com/photo-1480796927426-f609979314bd?auto=format&fit=crop&w=2000&q=80');
}

.page-hero--services .hero-bg {
  background-image: url('/img/service-bus.jpg');
}

.page-hero--facilities .hero-bg {
  background-image: url('https://images.unsplash.com/photo-1551776235-dde6d4829808?auto=format&fit=crop&w=2000&q=80');
}

.page-hero--company .hero-bg {
  background-image: url('/img/company-exterior.jpg');
  background-position: center 60%;
}
/* 会社紹介ヘッダー: 看板を見せるためオーバーレイを薄め+左側だけ濃くする */
.page-hero--company .hero-overlay {
  background:
    linear-gradient(90deg, rgba(20,32,57,0.78) 0%, rgba(20,32,57,0.55) 45%, rgba(20,32,57,0.35) 100%);
}
.page-hero--company .page-hero-content {
  text-align: left;
  margin-left: 6%;
  max-width: 560px;
}
@media (max-width: 768px) {
  .page-hero--company .page-hero-content {
    text-align: center;
    margin-left: 0;
  }
  .page-hero--company .hero-overlay {
    background: rgba(20, 32, 57, 0.6);
  }
}

.page-hero--news .hero-bg {
  background-image: url('/img/news/2026-05.jpg');
  background-position: center 40%;
  background-size: cover;
}
.page-hero--news .hero-overlay {
  background: linear-gradient(135deg, rgba(20,32,57,0.78) 0%, rgba(20,32,57,0.62) 50%, rgba(20,32,57,0.42) 100%);
}

.page-hero--inquiry .hero-bg {
  background-image: url('/img/inquiry-hero.jpg');
  background-position: center 35%;
  background-size: cover;
}
/* お問合せヘッダー: ネイビーオーバーレイで文字読みやすく */
.page-hero--inquiry .hero-overlay {
  background: linear-gradient(135deg, rgba(20,32,57,0.78) 0%, rgba(20,32,57,0.55) 50%, rgba(20,32,57,0.42) 100%);
}
.page-hero--inquiry {
  min-height: 320px;
}

.page-hero .hero-overlay {
  background: var(--navy-overlay-strong);
}

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

.page-hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  color: var(--white);
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-500);
  margin: 16px auto 0;
}

.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 20px;
  line-height: 1.8;
}

/* ---------- カード共通 ---------- */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 14px rgba(201, 165, 68, 0.3);
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-900);
}

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

/* ---------- 画像プレースホルダ(フォールバック) ---------- */
.img-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #d4d4d0, #f0eee8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, #d4d4d0, #f0eee8);
}

/* ---------- TOP: 下部CTA ---------- */
.cta-block {
  text-align: center;
}

.cta-block h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.cta-block p {
  font-size: 16px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================================
   サービス紹介ページ
   =================================================== */

.service-card {
  position: relative;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

/* 「すべて無料手配」スタンプ(認可スタンプ風) */
.service-card--featured {
  border: 2px solid var(--gold-500);
  box-shadow: 0 4px 20px rgba(201, 165, 68, 0.18);
}
.service-card--featured:hover {
  box-shadow: 0 10px 32px rgba(201, 165, 68, 0.28);
  border-color: var(--gold-600);
}
.free-stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 92px;
  height: 92px;
  border: 3px solid #c0392b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(-12deg);
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.25);
  z-index: 3;
  pointer-events: none;
  font-feature-settings: "palt";
}
.free-stamp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px solid #c0392b;
  border-radius: 50%;
  opacity: 0.6;
}
.free-stamp .line1 {
  font-size: 12px;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
}
.free-stamp .line2 {
  font-size: 17px;
  font-weight: 900;
  color: #c0392b;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 768px) {
  .free-stamp {
    width: 78px;
    height: 78px;
  }
  .free-stamp .line1 { font-size: 10px; }
  .free-stamp .line2 { font-size: 14px; }
}

/* 「一部 有料手配」小バッジ(食事施設・観光施設) */
.partial-paid-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(20, 32, 57, 0.85);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .partial-paid-badge {
    font-size: 10px;
    padding: 4px 10px;
    top: 8px;
    left: 8px;
  }
}

.service-card .card-image {
  aspect-ratio: 16 / 10;
}

.service-card-body {
  padding: 24px;
  text-align: center;
  border-left: 4px solid var(--gold-500);
}

.service-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy-900);
}

.service-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ご利用の流れ */
.steps {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
}

.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  padding: 32px 16px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

/* Step本文内リンクスタイル */
.step-inline-link {
  color: var(--gold-600);
  font-weight: 700;
  border-bottom: 1.5px solid var(--gold-500);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.step-inline-link:hover {
  color: var(--navy-900);
  border-color: var(--navy-900);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(201, 165, 68, 0.35);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy-900);
}

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

.step-arrow {
  align-self: center;
  font-size: 24px;
  color: var(--gold-500);
  flex-shrink: 0;
  font-weight: 700;
}

/* プランセクション eyebrow */
.plan-eyebrow {
  font-size: 13px;
  color: var(--gold-600);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  margin-top: 0;
}

.plan-tagline {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0.04em;
  margin: 14px auto 8px;
  padding: 8px 20px;
  display: inline-block;
  background: linear-gradient(180deg, transparent 60%, rgba(201, 165, 68, 0.25) 60%);
}

/* プランカード */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--gold-500);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.plan-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy-900);
}

.plan-card .price {
  font-size: 44px;
  font-weight: 800;
  color: var(--gold-500);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.plan-card .price small {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.plan-card .plan-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 16px;
  line-height: 1.8;
}

.plan-highlight {
  max-width: 880px;
  margin: 32px auto 0;
  padding: 22px 28px;
  background: var(--gold-500);
  color: var(--white);
  border-radius: 8px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-cta);
}
.plan-highlight p {
  margin: 8px 0;
  line-height: 1.6;
}
.plan-highlight p:first-child { margin-top: 0; }
.plan-highlight p:last-child { margin-bottom: 0; }

/* 見出し */
.plan-highlight-heading {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 4px 0 14px;
  margin-bottom: 10px !important;
  border-bottom: 2px dashed rgba(255,255,255,0.6);
  text-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
@media (max-width: 600px) {
  .plan-highlight {
    padding: 18px 20px;
    font-size: 14px;
  }
}

.plan-conditions {
  max-width: 880px;
  margin: 24px auto 0;
  color: var(--gray-500);
  font-size: 13px;
}

.plan-conditions li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.plan-conditions li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* 目立つ条件ボックス */
.plan-conditions-box {
  max-width: 880px;
  margin: 32px auto 0;
  padding: 32px 36px;
  background: var(--white);
  border: 2px solid var(--navy-900);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(20, 32, 57, 0.08);
}

.plan-conditions-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-500);
  letter-spacing: 0.04em;
}

.plan-conditions-title svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-500);
  stroke-width: 2;
}

.plan-conditions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-conditions-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

.plan-conditions-list .cond-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-conditions-list .cond-text strong {
  color: var(--gold-600);
  font-weight: 700;
}

@media (max-width: 600px) {
  .plan-conditions-box {
    padding: 24px 20px;
  }
  .plan-conditions-list li {
    font-size: 15px;
    gap: 12px;
  }
  .plan-conditions-list .cond-num {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

/* ===================================================
   提携施設一覧ページ
   =================================================== */

.filter-group {
  margin-bottom: 32px;
}

.filter-group h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--text);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
}

.filter-btn.is-active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.filter-btn .count {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  background: rgba(0,0,0,.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.filter-btn.is-active .count {
  background: rgba(255,255,255,.25);
}

.filter-btn--sm {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  border-style: dashed;
}
.filter-btn--sm.is-active {
  border-style: solid;
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--white);
}

.filter-sub {
  font-size: 12px;
  color: var(--gray-500);
  margin: -8px 0 14px;
}

.facilities-filter .filter-group:last-child { margin-bottom: 0; }

/* タイトル下の吹き出し(提携施設一覧用) - 全画面で縦配置 */
.hero-title-with-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 0;
}
.hero-title-with-bubble > span:first-child {
  display: inline-block;
}
.title-bubble {
  display: inline-block;
  position: relative;
  background: var(--gold-500);
  color: var(--white);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: 0.04em;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(201, 165, 68, 0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
  text-align: center;
  max-width: 90%;
  animation: bubble-float 3.2s ease-in-out infinite;
  transform-origin: center;
}
/* 三角ポインタ:常に上向き */
.title-bubble::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-bottom-color: var(--gold-500);
  border-top: 0;
  filter: drop-shadow(0 -2px 1px rgba(201, 165, 68, 0.2));
}
@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* デスクトップ:吹き出しに余裕を */
@media (min-width: 1024px) {
  .hero-title-with-bubble { gap: 32px; }
  .title-bubble { padding: 18px 28px; }
}

/* モバイル微調整 */
@media (max-width: 480px) {
  .hero-title-with-bubble { gap: 22px; }
  .title-bubble {
    font-size: 13px;
    padding: 12px 18px;
    line-height: 1.55;
  }
}

/* ページヘッダーeyebrowバッジ */
.page-eyebrow {
  display: inline-block;
  background: var(--gold-500);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

/* 施設一覧の動的リスト(コンパクトカード) */
.result-count {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.result-count strong {
  color: var(--gold-600);
  font-size: 18px;
}

.facility-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.fl-card {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.fl-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-500);
  box-shadow: 0 6px 20px rgba(20, 32, 57, 0.08);
}
.fl-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.4;
}
.fl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 12px;
  color: var(--gray-500);
  align-items: center;
}
.fl-region {
  background: var(--cream);
  border: 1px solid var(--gray-300);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy-700);
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-500);
  font-size: 14px;
  grid-column: 1 / -1;
}

/* CTA バナー */
.facility-cta-banner {
  max-width: 820px;
  margin: 56px auto 0;
  background: var(--white);
  border: 2px dashed var(--gold-500);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.facility-cta-banner h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.facility-cta-banner h3 strong {
  color: var(--gold-600);
}
.facility-cta-banner p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.facility-cta-banner .btn {
  gap: 8px;
}
.facility-cta-banner .btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* 施設カード(旧構造、互換用) */
.facility-section { margin-bottom: 64px; }
.facility-section:last-child { margin-bottom: 0; }

.facility-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-500);
}

.facility-section-head h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
}

.facility-section-head a {
  font-size: 14px;
  color: var(--gold-600);
  font-weight: 700;
}

.facility-section-head a:hover { color: var(--gold-500); }

.facility-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.facility-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.facility-card .card-image {
  aspect-ratio: 4 / 3;
}

.facility-card-body {
  padding: 20px 24px;
  border-left: 4px solid var(--gold-500);
}

.facility-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy-900);
}

.facility-card .area {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.facility-card .specs {
  font-size: 13px;
  color: var(--text);
  padding-top: 12px;
  border-top: 1px solid var(--gray-300);
  line-height: 1.7;
}

/* ===================================================
   会社紹介ページ
   =================================================== */

.greeting {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.greeting-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.greeting-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
  line-height: 1.5;
}

.greeting-text p {
  font-size: 15px;
  line-height: 1.95;
  margin-bottom: 16px;
}

.greeting-text .signature {
  margin-top: 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-900);
}

.staff-photo {
  margin-top: 64px;
}

.staff-photo img {
  width: 100%;
  max-height: 600px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* 会社概要テーブル */
.company-table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.company-table th,
.company-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--gray-300);
  font-size: 15px;
  vertical-align: top;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table .company-link {
  color: var(--gold-600);
  font-weight: 700;
  border-bottom: 1.5px solid var(--gold-500);
  transition: color 0.2s, border-color 0.2s;
}
.company-table .company-link:hover {
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.company-table .company-link::after {
  content: '↗';
  margin-left: 4px;
  font-size: 0.85em;
}

.company-table th {
  width: 30%;
  background: var(--cream);
  color: var(--navy-900);
  font-weight: 700;
  border-left: 4px solid var(--gold-500);
}

/* ===================================================
   お問い合わせページ
   =================================================== */

.inquiry-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.form-row { margin-bottom: 24px; }

.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-900);
}

.label-required {
  background: var(--gold-500);
  color: var(--white);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
  margin-left: 6px;
}

.label-optional {
  background: var(--gray-300);
  color: var(--text);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
  margin-left: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 165, 68, 0.15);
}

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

.form-note {
  font-size: 13px;
  color: var(--gray-500);
  margin: 16px 0 24px;
  line-height: 1.7;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

/* 電話お問い合わせ */
.phone-contact {
  text-align: center;
  padding: 48px 24px;
  color: var(--white);
}

.phone-contact .phone-icon {
  font-size: 40px;
  color: var(--gold-500);
  margin-bottom: 8px;
}

.phone-contact .phone-number {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.phone-contact .phone-number a { color: var(--white); }

.phone-contact .phone-hours {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.phone-contact h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

/* ----- メール優先バナー(お問い合わせページ上部) ----- */
.email-priority-banner {
  background: var(--gold-500);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.email-priority-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.email-priority-banner .banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.email-priority-banner .banner-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(20, 32, 57, 0.18);
}
.email-priority-banner .banner-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold-600);
  stroke-width: 2;
}
.email-priority-banner .banner-text {
  flex: 1;
  color: var(--white);
}
.email-priority-banner .banner-lead {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.email-priority-banner .banner-lead strong {
  background: var(--white);
  color: var(--gold-600);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 800;
}
.email-priority-banner .banner-sub {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}
.email-priority-banner .banner-sub strong {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.email-priority-banner .banner-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--gold-600);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(20, 32, 57, 0.18);
  transition: all 0.2s;
}
.email-priority-banner .banner-btn:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
}
.email-priority-banner .banner-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
@media (max-width: 768px) {
  .email-priority-banner .banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .email-priority-banner .banner-text {
    text-align: center;
  }
}

/* ----- お問い合わせフォームの「推奨」 eyebrow ----- */
.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-500);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.form-eyebrow svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

/* ----- 電話お問い合わせ(補助・控えめ) ----- */
.phone-fallback {
  background: var(--cream);
  padding: 40px 0;
  border-top: 1px solid var(--gray-300);
}
.phone-fallback-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.phone-fallback-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.phone-fallback-label svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-500);
  stroke-width: 2;
}
.phone-fallback-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 4px;
  letter-spacing: 0.04em;
}
.phone-fallback-number a {
  color: var(--navy-900);
  text-decoration: none;
}
.phone-fallback-number a:hover {
  color: var(--gold-600);
}
.phone-fallback-hours {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0;
}

/* ===================================================
   レスポンシブ
   =================================================== */

/* タブレット ~1023px */
@media (max-width: 1023px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }

  .steps { flex-wrap: wrap; }

  .step {
    flex: 1 1 calc(50% - 24px);
    min-width: 200px;
  }

  .step-arrow { display: none; }

  .greeting {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .inquiry-types { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .inquiry-types { grid-template-columns: 1fr; }
}

/* お問合せカード内リンク */
.inquiry-types .card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-600);
  font-weight: 700;
  font-size: 13px;
  border-bottom: 1.5px solid var(--gold-500);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.inquiry-types .card-link:hover {
  color: var(--navy-900);
  border-color: var(--navy-900);
}

/* モバイル ~767px */
@media (max-width: 767px) {
  .section { padding: 60px 0; }

  .section-title { margin-bottom: 36px; }

  /* ハンバーガー */
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--navy-900);
    transition: max-height 0.3s ease;
  }

  .site-nav.is-open {
    max-height: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
  }

  .site-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

  .site-nav a {
    display: block;
    padding: 16px 24px;
  }

  .site-nav a.is-active {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero { min-height: 540px; }

  .cards-grid--4,
  .cards-grid--3,
  .cards-grid--2 { grid-template-columns: 1fr; }

  .plan-cards { grid-template-columns: 1fr; }

  .step { flex: 1 1 100%; }

  .contact-form { padding: 28px 20px; }

  .company-table th,
  .company-table td {
    padding: 14px 16px;
    font-size: 14px;
  }

  .company-table th { width: 38%; }

  .facility-section-head h2 { font-size: 18px; }

  .site-logo .logo-main { font-size: 14px; }
  .site-logo .logo-sub { font-size: 10px; }
}

/* ===================================================
   TOPページ限定の磨き上げスタイル (.page-home でスコープ)
   =================================================== */

/* セクション余白を拡張 */
.page-home .section { padding: 100px 0; }
@media (max-width: 768px) {
  .page-home .section { padding: 60px 0; }
}

/* セクションタイトル強化(ゴールド・フェード下線) */
.page-home .section-title h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
.page-home .section-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin: 16px auto 0;
}
.page-home .section-title p {
  font-size: 16px;
  color: #666;
  letter-spacing: 0.05em;
  margin-top: 18px;
}
.page-home .section-title { margin-bottom: 56px; }

/* ヒーロー文字をより上品に */
.page-home .hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}
.page-home .hero .hero-sub {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.page-home .hero .hero-desc {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.94);
}

/* アイコンバッジ(Lucide 線アイコン・ネイビー / 極薄背景円) */
.page-home .card-icon-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(20, 32, 57, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.page-home .card-icon-badge svg {
  width: 44px;
  height: 44px;
  color: var(--navy-900);
  stroke: var(--navy-900);
  stroke-width: 1.5;
}

/* COUPON ticket icon (wider aspect ratio) */
.page-home .card-icon-badge.card-icon-coupon {
  width: 110px;
  height: 80px;
  border-radius: 12px;
  background: rgba(20, 32, 57, 0.05);
}
.page-home .card-icon-badge.card-icon-coupon svg {
  width: 90px;
  height: 40px;
  color: var(--navy-900);
}

/* カード本体の磨き上げ */
.page-home .problem-card,
.page-home .solution-card,
.page-home .outcome-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(20, 32, 57, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(212, 212, 208, 0.4);
}
.page-home .problem-card:hover,
.page-home .solution-card:hover,
.page-home .outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(20, 32, 57, 0.12);
  border-color: var(--gold-500);
}
.page-home .problem-card h3,
.page-home .solution-card h3,
.page-home .outcome-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
  line-height: 1.5;
}
.page-home .problem-card p,
.page-home .solution-card p,
.page-home .outcome-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
}

/* カードグリッドの間隔調整 */
.page-home .cards-grid { gap: 28px; }

/* 「有料手配について」ボタン(サービス紹介ページ) */
.paid-plan-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.paid-plan-cta .btn {
  gap: 12px;
}
.paid-plan-cta .btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* CTAボタンの磨き上げ(光沢スイープ + 立体感) */
.page-home .btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: linear-gradient(135deg, #d9b659 0%, #c9a544 50%, #b08e2e 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(201, 165, 68, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.page-home .btn-cta-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.page-home .btn-cta-large:hover::before { left: 100%; }
.page-home .btn-cta-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 165, 68, 0.5);
  background: linear-gradient(135deg, #d9b659 0%, #c9a544 50%, #b08e2e 100%);
}
.page-home .btn-cta-large i { font-size: 18px; line-height: 1; }
.page-home .btn-cta-large svg {
  width: 18px;
  height: 18px;
  color: var(--white);
  stroke: var(--white);
  stroke-width: 2;
}

/* 下部CTA(ネイビー)に放射光のアクセントを追加 */
.page-home .section--navy {
  background: linear-gradient(135deg, #0a1530 0%, #1f2d4f 100%);
  position: relative;
  overflow: hidden;
}
.page-home .section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 165, 68, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(201, 165, 68, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.page-home .section--navy .container { position: relative; z-index: 1; }
.page-home .section--navy .cta-block h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-home .section--navy .cta-block p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

/* ===================================================
   会社紹介ページ:スタッフ紹介
   =================================================== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.staff-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(212, 212, 208, 0.5);
}

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

.staff-card-photo {
  width: 140px;
  height: 140px;
  margin: 28px auto 0;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #d4d4d0, #f0eee8);
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(20, 32, 57, 0.12);
}

.staff-card-photo img,
.staff-card-photo picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-card-body {
  text-align: center;
}

.staff-card-body {
  padding: 22px 22px 26px;
}

.staff-card .staff-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.staff-card .staff-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--gold-500);
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.staff-card .staff-meta {
  margin: 0;
  text-align: left;
  border-left: 3px solid var(--gold-500);
  padding: 4px 0 4px 14px;
  display: inline-block;
}

.staff-card .staff-meta dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.staff-card .staff-meta dt:first-child { margin-top: 0; }

.staff-card .staff-meta dd {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
  margin: 2px 0 0;
}

/* ===================================================
   会社紹介ページ:沿革(タイムライン)
   =================================================== */
.timeline-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 8px 0;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 110px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-500), rgba(201, 165, 68, 0.25));
  border-radius: 3px;
}

.t-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 18px 0;
}

.t-item::before {
  content: "";
  position: absolute;
  left: 102px;
  top: 30px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 165, 68, 0.15);
  z-index: 1;
}

.t-year {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold-600);
  line-height: 1.2;
  text-align: right;
  letter-spacing: 0.02em;
  padding-right: 8px;
}

.t-year span {
  display: inline-block;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 600;
  margin-left: 2px;
}

.t-body {
  background: var(--white);
  border-radius: 8px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 212, 208, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.t-body:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.t-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy-900);
  padding: 2px 10px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.t-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
  line-height: 1.5;
}

.t-desc {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

/* ===================================================
   会社紹介ページ:登録・認可
   =================================================== */
.license-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--navy-900);
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.license-stamp {
  position: absolute;
  top: -22px;
  right: 28px;
  width: 80px;
  height: 80px;
  border: 3px solid #c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #c0392b;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(-12deg);
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.18);
}

.license-item {
  padding: 0;
}

.license-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.license-title {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ===================================================
   会社紹介ページ:社内ギャラリー
   =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.gal-item {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.gal-item picture,
.gal-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: linear-gradient(135deg, #d4d4d0, #f0eee8);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gal-item:hover picture,
.gal-item:hover img {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.gal-item figcaption {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 8px;
  text-align: center;
  line-height: 1.5;
}

/* ---------- 会社紹介ページ:レスポンシブ ---------- */
@media (max-width: 1023px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .staff-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* タイムラインをモバイル用に調整 */
  .timeline-wrap::before { left: 18px; }
  .t-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 48px;
  }
  .t-item::before {
    left: 10px;
    top: 22px;
    width: 17px;
    height: 17px;
  }
  .t-year {
    text-align: left;
    font-size: 22px;
    padding-right: 0;
  }

  .license-card { padding: 40px 24px 32px; }
  .license-stamp {
    width: 64px;
    height: 64px;
    font-size: 18px;
    right: 16px;
    top: -18px;
  }

  .gal-item figcaption { font-size: 11.5px; }
}

/* ===================================================
   社長コラムページ
   =================================================== */
.news-section { padding: 80px 0; }

.news-archive {
  margin-top: 80px;
  border-top: 1px solid var(--gray-300);
  padding-top: 56px;
}
.news-archive-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 32px;
}
.news-year {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-600);
  letter-spacing: 0.04em;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-500);
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.news-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  transition: all 0.2s;
}
.news-card:hover {
  border-color: var(--gold-500);
  background: rgba(201,165,68,0.04);
}
.news-month {
  font-weight: 800;
  color: var(--navy-900);
  font-size: 14px;
}
.news-card-title {
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
}
.news-card-arrow {
  color: var(--gold-600);
  font-weight: 700;
}

/* 記事本体 */
/* news ページ:2カラム(サイドバー+本文) */
.news-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1180px;
}
.news-sidebar {
  position: sticky;
  top: 90px;
}
.news-sidebar-inner {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}
.news-sidebar-year-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-500);
}
.news-sidebar-months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.news-sidebar-months li { margin: 0; }
.news-sidebar-months a {
  display: block;
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--cream);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  transition: all 0.18s;
}
.news-sidebar-months a:hover {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
}
.news-sidebar-toggle {
  display: block;
  width: 100%;
  padding: 9px 8px;
  background: transparent;
  color: var(--gold-600);
  border: 1px dashed var(--gold-500);
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  margin-bottom: 12px;
}
.news-sidebar-toggle:hover {
  background: var(--cream);
  border-style: solid;
}
.news-sidebar-year--hidden { display: none; }

/* タブレット以下:サイドバーを上部に */
@media (max-width: 900px) {
  .news-container { grid-template-columns: 1fr; }
  .news-sidebar { position: static; }
}

.news-article {
  max-width: 820px;
  margin: 0 auto 32px;
  padding: 36px 36px 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  scroll-margin-top: 90px; /* sticky headerに被らないように */
}
.news-article--featured {
  margin-bottom: 80px;
  padding: 48px 36px 56px;
  border: 2px solid var(--gold-500);
  box-shadow: 0 8px 32px rgba(201,165,68,0.15);
}

/* 折り畳み状態 */
.news-article[data-collapsed="true"] {
  padding: 28px 36px 24px;
  margin-bottom: 18px;
  cursor: default;
}
.news-article[data-collapsed="true"] .news-article-head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  text-align: left;
}
.news-article[data-collapsed="true"] .news-article-head::after {
  content: '';
}
.news-article[data-collapsed="true"] .news-title {
  font-size: 18px;
  font-weight: 700;
}
.news-article[data-collapsed="true"] .news-date {
  font-size: 12px;
  margin-bottom: 4px;
}
.news-article[data-collapsed="true"] .news-figure {
  display: none;
}
.news-article[data-collapsed="true"] .news-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-article[data-collapsed="true"] .news-body p {
  margin: 0;
  text-indent: 0;
  display: inline;
}
.news-article[data-collapsed="true"] .news-pager {
  display: none;
}

/* 続きを読むボタン */
.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 18px;
  background: var(--cream);
  color: var(--gold-600);
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.news-readmore:hover {
  background: var(--gold-500);
  color: var(--white);
}
.news-article:not([data-collapsed="true"]) .news-readmore {
  display: none;
}
.news-article-head {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gold-500);
}
.news-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 0.16em;
  margin: 0 0 8px;
}
.news-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0;
}
.news-figure {
  margin: 0 0 32px;
}
.news-figure img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.news-body {
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--text);
}
.news-body p {
  margin: 0 0 18px;
  text-indent: 1em;
}
.news-body p:last-child {
  margin-bottom: 0;
}

/* 前後ナビゲーション */
.news-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-300);
  flex-wrap: wrap;
}
.news-pager a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--cream);
  color: var(--navy-900);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--gray-300);
  transition: all 0.2s;
}
.news-pager a:hover {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
}
.news-next-disabled, .news-prev-disabled {
  font-size: 12px;
  color: var(--gray-500);
  padding: 10px 18px;
}
@media (max-width: 600px) {
  .news-article { padding: 28px 18px 40px; }
  .news-pager { flex-direction: column; align-items: stretch; }
  .news-pager a { justify-content: center; }
  .news-card { grid-template-columns: 60px 1fr auto; }
}

