/* OK-home theme main stylesheet */
/* Base */
* { box-sizing: border-box; }
:root {
  /* オレンジカラーパレット - ブランドの核 */
  --primary:#ff7a00; 
  --primary-600:#ff7300; 
  --primary-700:#e06600;
  --primary-light:#ffa940;
  --primary-pale:#ffb366;
  --primary-soft:#fff4e6;
  --primary-ultra-soft:#fffaf5;
  
  /* ダークオレンジ - アクセント用 */
  --orange-dark:#cc5200;
  --orange-deep:#a34300;
  
  /* テキスト・ニュートラル */
  --ink:#1f2937; 
  --muted:#6b7280; 
  
  /* ボーダー・背景 */
  --line:#ffe8d6;
  --line-light:#fff0e6;
  --bg:#ffffff; 
  --bg-soft:#fff7f0;
  --bg-orange:#fff4e6;
  --bg-cream:#fffbf5;
}
html, body { 
  font-family: 'Noto Sans JP', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; 
  color:var(--ink); 
  background:#fff; 
  margin: 0; 
  padding: 0; 
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1,h2,h3, p, ul { margin-block-start: 0 }
body { 
  overflow-x: hidden; 
  width: 100%;
  padding-bottom: 80px; /* 固定ボタン分の余白 */
}
.site-main { width:100%; margin:0 auto; max-width: 100%; }
#main { width: 100%; }
h1,h2,h3 { 
  font-weight:800; 
  letter-spacing:.01em;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 { 
  font-size: clamp(28px, 4vw, 40px); 
  color: var(--ink);
  line-height: 1.4;
}
h2 { 
  font-size: clamp(22px, 3vw, 30px); 
  color: var(--ink); 
  position: relative; 
  padding-bottom: 16px;
  line-height: 1.4;
}
h2::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 50px; 
  height: 3px; 
  background: var(--primary); 
  border-radius: 2px; 
}
/* 不要な箇所でh2の下線を非表示 */
.card h2::after,
.card .entry-title::after,
.loan-calc-main__title::after,
.loan-benefits__title::after,
.section-header__title::after,
.final-cta__title::after,
.privacy-block__title::after,
.privacy-cta-box__title::after,
.contact-form-header__title::after,
.contact-cta-box__title::after,
.request-materials__title::after,
.request-form-header__title::after,
.request-benefits__title::after,
.request-cta-box__title::after,
.visit-hero h1::after,
.visit-form-header__title::after,
.visit-cta-box__title::after,
.visit-benefit-card__title::after,
.visit-location-card__title::after,
.visit-privacy__title::after,
.detail-hero h1::after,
.page-hero h1::after,
.loan-hero h1::after,
.privacy-hero h1::after,
.request-hero h1::after {
  display: none;
}
h3 { 
  font-size: 18px; 
  color: var(--ink);
  line-height: 1.4;
}
p { 
  color:#434a54;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-break: break-word;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-700); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.container-xl { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container-xxl { max-width: 1680px; margin: 0 auto; padding: 0 24px; width: 100%; }
.container-full { max-width: none; width:100%; margin:0; padding: 0 }
.section { 
  padding: 56px 0; 
  position: relative;
  overflow: hidden;
}
/* CTAの直前のセクション下部余白を調整（半分に） */
.section:has(+ .cta) {
  padding-bottom: 28px;
}
.section--with-bg {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.section--with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('../images/orange-subtle-bg.svg') center center / cover no-repeat;
  opacity: 0.45; /* 0.25から大幅UP - オレンジ感を強化 */
  pointer-events: none;
}
.section--with-bg .container {
  position: relative;
  z-index: 1;
}
.section--with-bg .container-xxl {
  position: relative;
  z-index: 1;
}
/* カードの背景を確実に白にして文字を読みやすく */
.section--with-bg .card {
  background: #fff;
}
.section__title { 
  margin: 0 0 40px; 
  font-size: 32px; 
  text-align: center; 
  position: relative;
  padding-bottom: 20px;
  color: var(--ink);
  font-weight: 800;
}
.section__title::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 50%; 
  transform: translateX(-50%); 
  width: var(--underline-width, 300px); 
  height: 4px; 
  background: linear-gradient(90deg, var(--primary-700) 0%, var(--primary) 50%, var(--primary-700) 100%); 
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 122, 0, 0.3);
}
.btn { 
  display:inline-block; 
  padding: 14px 32px; 
  border-radius: 6px; 
  border:2px solid var(--primary); 
  text-decoration:none; 
  color:var(--primary); 
  font-weight:700;
  font-size: 15px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.btn:hover { 
  background:var(--primary);
  color:#fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.2);
}
.btn-primary { 
  background: var(--primary); 
  color:#fff; 
  border-color:var(--primary);
  box-shadow: 0 2px 12px rgba(255, 122, 0, 0.4);
}
.btn-primary:hover { 
  background: var(--primary-700);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
}
.btn-secondary { 
  background:#fff; 
  color:var(--primary); 
  border-color:var(--primary);
}
.btn-outline { 
  background:transparent; 
  border-color:#ddd; 
  color:var(--ink);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-sm { padding: 10px 20px; font-size: 14px }
.grid { display:grid; gap:20px }
.grid-2 { grid-template-columns: repeat(2, 1fr) }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) }
.grid-4 { grid-template-columns: repeat(4, 1fr) }
.card { 
  background:#fff; 
  border:1px solid #e5e7eb; 
  border-radius:12px; 
  padding:0; 
  box-shadow:0 2px 12px rgba(0, 0, 0, 0.06); 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  height: 100%;
  transition: all 0.3s ease;
}
.card:hover { 
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15), 0 0 0 2px var(--primary);
  border-color: var(--primary);
}
.card .thumb { margin-bottom: 0; flex-shrink: 0; }
.card .meta { padding: 12px 18px 0; margin: 0; }
.card .entry-title { padding: 8px 18px 20px; margin: 0; flex-grow: 1; display: flex; align-items: end; }
.card .entry-title a { text-decoration: none; color: var(--ink); font-size: 16px; line-height: 1.4; }
.card .entry-title a:hover { color: var(--primary); }
.card p { padding: 0 18px 20px; margin: 0; }
.placeholder { background:#f4f4f4; border:1px dashed #ddd; border-radius:10px; min-height:140px }
.placeholder.thumb { min-height: 180px }
.placeholder.map { min-height: 240px }

/* Header */
.site-header { 
  position:sticky; 
  top:0; 
  z-index:30; 
  background: rgba(255, 255, 255, 0.98); 
  border-bottom:1px solid #e5e7eb;
  width: 100vw; 
  margin-left: calc(-50vw + 50%); 
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}
.site-header__inner { display:flex; align-items:center; justify-content:space-between; height:70px; max-width: 1680px; margin: 0 auto; padding: 0 24px; }
.site-title { 
  font-weight:800; 
  text-decoration:none; 
  color:var(--ink); 
  font-size:22px; 
  display:inline-flex; 
  align-items:center; 
  gap:10px;
  transition: color 0.3s ease;
}
.site-title:hover {
  color: var(--primary);
}
.site-title--logo {
  gap: 12px;
}
.site-logo {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.site-mark { 
  color:var(--primary); 
  font-size: 28px;
}
.site-tagline { margin:0; color:var(--muted); font-size:12px; }

/* ハンバーガーメニューボタン */
.nav-toggle { 
  display: none; 
  background: transparent; 
  border: none; 
  padding: 8px;
  font-size: 24px; 
  color: var(--primary); 
  cursor: pointer; 
  transition: all 0.3s ease;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 8px;
}
.nav-toggle:hover { 
  background: var(--bg-soft);
  transform: scale(1.05);
}
.nav-toggle:active {
  transform: scale(0.95);
}

.nav-list { list-style:none; display:flex; gap:4px; margin:0; padding:0 }
.nav-list a { 
  text-decoration:none; 
  color:var(--ink); 
  padding:10px 18px; 
  border-radius:6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}
.nav-list a:hover { 
  background: var(--bg-soft); 
  color: var(--primary);
}
/* ローン相談メニュー項目を強調 */
.nav-list a[href*="/loan"] { 
  background: var(--primary); 
  color: #fff; 
  font-weight: 700;
}
.nav-list a[href*="/loan"]:hover { 
  background: var(--primary-700);
}
.site-nav { display:flex; align-items:center; gap:12px }

/* Hero */
.hero { 
  background: linear-gradient(180deg, #fff4e6 0%, #fff7ed 50%, #fffbf5 100%); /* オレンジ寄りのグラデーション */
  position:relative; 
  text-align: center;
  padding: 60px 0;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.hero::before { 
  content:""; 
  position:absolute; 
  inset:0; 
  width: 100%;
  height: 100%;
  background:url('../images/hero-wave.svg') bottom center / cover no-repeat; 
  opacity:1; 
  pointer-events:none;
}
.hero__inner { 
  padding: 40px 24px; 
  display:grid; 
  gap:48px; 
  grid-template-columns: 1fr; 
  align-items:center; 
  position:relative; 
  justify-content:center; 
  justify-items:center; 
  max-width: 1200px; 
  margin: 0 auto; 
  width: 100%; 
  box-sizing: border-box; 
}
.hero__image img { 
  width:100%; 
  height:auto; 
  display:block; 
  border-radius:12px; 
  box-shadow:0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero__image img:hover {
  transform: translateY(-4px);
  box-shadow:0 12px 40px rgba(0, 0, 0, 0.15);
}
.hero__content, .hero__image { justify-self: center; text-align: center; }
.hero__content { max-width: 680px; margin: 0 auto; }
.hero__title { 
  font-size: 40px; 
  margin: 0 0 20px;
  line-height: 1.4;
  color: var(--ink);
}
.hero__title strong {
  color: var(--primary);
}
.hero__lead { 
  margin: 0 0 32px; 
  color:var(--muted); 
  font-size: 17px;
  line-height: 1.8;
}
.hero__cta .btn { margin-right:12px; margin-bottom: 12px; }

/* Services */
.services .card { 
  text-align:left; 
  padding: 24px;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary); /* オレンジの装飾バー */
  position: relative;
}
.services .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15); /* オレンジ系シャドウ */
}
.services .card h3 { 
  margin: 0 0 10px; 
  font-size:19px;
  color: var(--primary);
  font-weight: 800;
}
.services .card p { margin: 0; padding: 0; line-height: 1.7; }
.services .card .icon { 
  width:68px; 
  height:68px; 
  display:block; 
  margin: 0 0 12px;
  padding: 12px;
  background: var(--primary-soft); /* オレンジ背景 */
  border-radius: 50%;
}

/* Works */
.works .work__title { margin: 10px 0 0; font-size: 16px }
.works .work__thumb img { width:100%; height:auto; border-radius:8px; display:block }
.section__action { text-align:center; margin-top: 20px }

/* Flow */
.flow__list { counter-reset: step; list-style:none; padding:0; margin:0; display:grid; gap:12px }
.flow__list > li { 
  background:#fff; 
  border:1px solid var(--line-light); 
  border-radius:10px; 
  padding:16px 16px 16px 70px;
  position: relative;
}
.flow__list > li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 122, 0, 0.3);
}

/* About */
.about__list { padding-left: 18px }
.about__map { 
  display:flex; 
  align-items:center; 
  justify-content:center;
  width: 100%;
  overflow: hidden;
}
.about__map img { width:100%; height:auto; border-radius:10px; box-shadow:0 2px 12px rgba(0,0,0,.05) }
.about__map iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

/* CTA */
.cta { 
  background: var(--primary); 
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0; /* sectionクラスのpaddingを上書き */
  z-index: 10; /* フッターより前面に */
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('../images/orange-subtle-bg.svg') center center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
.cta__inner { 
  text-align:center; 
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.cta__inner h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 16px;
  padding-bottom: 0;
}
.cta__inner h2::after {
  display: none;
}
.cta__inner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.cta__buttons .btn { margin: 0 10px 10px; }
.cta .btn-primary {
  background: #fff;
  color: var(--primary-700);
  border-color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.cta .btn-primary:hover {
  background: var(--bg-soft);
  color: var(--primary-700);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.cta .btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
  border-width: 2px;
  font-weight: 700;
}
.cta .btn-outline:hover {
  background: #fff;
  color: var(--primary-700);
  border-color: #fff;
}

/* Fixed Action Bar - 固定アクションボタン */
.fixed-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 0;
}

.fixed-action-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.fixed-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
  border-right: 1px solid var(--line);
  min-height: 70px;
}

.fixed-action-btn:last-child {
  border-right: none;
}

.fixed-action-btn:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.fixed-action-btn__icon {
  font-size: 24px;
  margin-bottom: 4px;
  display: block;
  line-height: 1;
}

.fixed-action-btn__text {
  font-size: 12px;
  font-weight: 600;
  display: block;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

/* 各ボタンの色設定 */
.fixed-action-btn--loan:hover {
  background: #fff4e6;
  color: var(--primary);
}

.fixed-action-btn--request:hover {
  background: #fff4e6;
  color: var(--primary);
}

.fixed-action-btn--visit:hover {
  background: var(--primary-soft);
  color: var(--primary-700);
}

/* Footer */
.site-footer { 
  background: #1a1a2e; 
  color: #d1d5db; /* より明るいグレーに変更 */
  margin-top: 60px; /* フッターの上部余白 */
  width: 100vw; 
  margin-left: calc(-50vw + 50%);
}
/* トップページ（CTAセクションがある）はフッターの余白なし */
body.home .site-footer {
  margin-top: 0;
}
.site-footer a { 
  color: #e5e7eb; /* 明るいグレー */
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: var(--primary);
}
.site-footer__band { 
  height:4px; 
  background: var(--primary); 
  width: 100%;
}
.site-footer .container { max-width: 1680px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display:grid; gap:32px; grid-template-columns: 1.2fr 1fr 1fr; padding:48px 0; }
.footer-brand .site-title { 
  color:#fff;
}
.footer-brand .site-logo--footer {
  height: 45px;
}
.footer-brand .site-name {
  color: #fff;
}
.site-tagline {
  color: #d1d5db; /* より明るく */
}
.footer-links ul { list-style:none; padding:0; margin:0 }
.footer-links li { margin:8px 0; }
.footer-links h3, .footer-contact h3 { 
  color:#fff; 
  margin:0 0 16px; 
  font-size:17px;
  font-weight: 700;
}
.footer-contact p { 
  margin:6px 0;
  color: #d1d5db; /* より明るく */
}
.footer-meta { 
  border-top:1px solid rgba(255,255,255,.1); 
  display:flex; 
  justify-content:space-between; 
  padding:20px 0; 
  color:#d1d5db; /* より明るく */
  font-size: 14px;
}
.footer-meta a { color:#d1d5db; } /* より明るく */

/* Badges and price emphasis */
.badge { 
  display:inline-block; 
  padding:5px 10px; 
  background:#f9fafb; 
  border:1px solid #e5e7eb; 
  border-radius:6px; 
  color:var(--muted); 
  font-size:13px; 
  margin-right:6px;
  font-weight: 600;
}
.price-badge { 
  position:absolute; 
  left:12px; 
  top:12px; 
  background: var(--primary); 
  color:#fff; 
  padding:8px 14px; 
  border-radius:6px; 
  font-weight:800; 
  box-shadow:0 4px 12px rgba(255, 122, 0, 0.5);
  font-size: 16px;
}
.price-badge--lg { 
  background: var(--primary); 
  color:#fff; 
  padding:10px 18px; 
  border-radius:8px; 
  font-weight:800; 
  box-shadow:0 4px 16px rgba(255, 122, 0, 0.5); 
  font-size:20px;
  box-shadow:0 4px 12px rgba(0, 0, 0, 0.15);
}
.card .thumb { position:relative; display:block; overflow: hidden; }
.card .thumb { aspect-ratio: 1 / 1; }
.card .thumb img { width:100%; height: 100%; object-fit: contain; border-radius:10px; transition: transform 0.3s ease; background: #f6f8fa; }
.card .thumb:hover img { transform: scale(1.05); }

/* Event card specific styles */
.home-events .card .thumb { 
  aspect-ratio: 1/1; 
  width: 100%;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: #f6f8fa;
}
.home-events .card .thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

/* Plan card specific styles */
.home-plans .card .thumb { 
  aspect-ratio: 1/1; 
  width: 100%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: #f6f8fa;
}
.home-plans .card .thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

/* Case card specific styles */
.home-cases .card .thumb { 
  aspect-ratio: 1/1; 
  width: 100%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: #f6f8fa;
}
.home-cases .card .thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.archive-header { margin: 24px 0 }
.entry-header .meta { margin: 8px 0 16px }

/* Home sections helpers */
.home-events .card, .home-plans .card, .home-cases .card { overflow:hidden; display: flex; flex-direction: column; }
.event-hero { width:100%; aspect-ratio: 1 / 1; overflow:hidden; border-radius:14px; background:#f6f8fa; box-shadow:0 2px 16px rgba(0,0,0,.06); margin: 12px 0 20px } /* 正方形に統一 */
.event-hero__img { width:100%; height:100%; object-fit: cover; object-position: center; display:block }
.home-events .card .meta, .home-plans .card .meta, .home-cases .card .meta { margin: 12px 0 8px; }
.home-events .card .entry-title, .home-plans .card .entry-title, .home-cases .card .entry-title { margin-top: auto; }

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle { display:flex; align-items: center; justify-content: center; }
  .site-nav { 
    position: absolute; 
    left: 0; 
    right: 0; 
    top: 60px; 
    background: linear-gradient(180deg, #ffffff 0%, #fffbf5 100%);
    border-bottom: 2px solid var(--primary);
    display: none; 
    flex-direction: column; 
    gap: 0; 
    padding: 16px 0; 
    width: 100%; 
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15);
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .site-nav.is-open { display:flex }
  .nav-list { 
    flex-direction: column; 
    gap: 0;
    width: 100%;
  }
  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 122, 0, 0.1);
  }
  .nav-list li:last-child {
    border-bottom: none;
  }
  .nav-list a { 
    padding: 16px 24px;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
  }
  .nav-list a::before {
    content: '›';
    font-size: 20px;
    margin-right: 12px;
    color: var(--primary);
    transition: transform 0.3s ease;
  }
  .nav-list a:hover {
    background: var(--bg-soft);
    padding-left: 32px;
  }
  .nav-list a:hover::before {
    transform: translateX(4px);
  }
  .nav-list a[href*="/loan"] {
    margin: 8px 16px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
  }
  .nav-list a[href*="/loan"]::before {
    color: #fff;
  }
  .nav-list a[href*="/loan"]:hover {
    background: var(--primary-700);
    padding-left: 24px;
  }
  .site-nav .nav-cta { margin-top:8px }
  .site-footer .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; gap: 8px; text-align: center; }
  .hero__inner { padding: 48px 16px; }
  .hero__content { max-width: 100%; padding: 0 16px; }
  .site-header__inner { padding: 0 16px; }
  .price-strip__inner, .model-banner__inner { grid-template-columns: 1fr }
  .price-strip__cards { grid-template-columns: 1fr }
  
  /* Card adjustments for mobile */
  .home-events .card .thumb, .home-plans .card .thumb, .home-cases .card .thumb { 
    height: 180px; 
    aspect-ratio: 1/1; 
  }
  .card .entry-title a { font-size: 14px; }
  .badge { font-size: 11px; padding: 3px 6px; }
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1fr 1fr; justify-content: center; max-width: 1200px; margin: 0 auto; gap: 48px; }
  .hero__content { text-align: left; }
}

/* Responsive columns for 4-col grids */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr }
}

/* Price strip */
.price-strip { 
  background:linear-gradient(180deg,#fff4e6,#fff9f0); 
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.price-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('../images/orange-subtle-bg.svg') center center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
}
.price-strip__inner { 
  display:grid; 
  gap:24px; 
  grid-template-columns: 1.1fr 1fr; 
  align-items:center; 
  justify-content:center;
  position: relative;
  z-index: 1;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow { font-size:12px; color:var(--muted); margin:0 0 6px }
.headline { margin:0 0 8px }
.headline strong { color:var(--primary); font-size:1.15em }
.chips { display:flex; gap:8px; flex-wrap:wrap; margin-top:8px }
.chip { 
  padding:8px 14px; 
  border-radius:999px; 
  border:2px solid var(--primary); 
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%); 
  color: var(--primary-700); 
  font-size:13px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(255, 122, 0, 0.2);
}
.price-strip__cards { display:grid; gap:16px; grid-template-columns: repeat(3, minmax(0,1fr)) }
.price-strip .section__title {
  text-align: left;
}
.price-strip .section__title::after {
  left: 0;
  transform: translateX(0);
}
.p-card { display:block; padding:16px; border:1px solid var(--line); border-radius:12px; text-decoration:none; color:var(--ink); background:#fff; box-shadow:0 2px 10px rgba(0,0,0,.04) }
.p-card__price { font-weight:800; color:var(--primary); font-size:20px; margin:4px 0 }
.p-card:hover { transform: translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.08) }

/* Model banner */
.model-banner { 
  background:linear-gradient(90deg,#fff9f0,#fff4e6);
}
.model-banner__inner { 
  display:grid; 
  gap:24px; 
  grid-template-columns: 1fr 1fr; 
  align-items:center; 
  justify-content:center;
}
.model-banner .section__title {
  text-align: left;
}
.model-banner .section__title::after {
  left: 0;
  transform: translateX(0);
}
.model-banner__image img { width:100%; height:auto; border-radius:16px; box-shadow:0 4px 24px rgba(0,0,0,.12) }

/* Testimonials */
.testimonials .t-card { 
  position:relative;
  text-align: center; /* カード全体を中央揃え */
}
.testimonials .stars { 
  color:#f59e0b; 
  letter-spacing:2px; 
  margin-bottom:12px;
  font-size: 20px;
  line-height: 1;
}
.testimonials .t-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}
.testimonials .t-card p {
  margin-top: 0;
}

/* FAQ */
.faq-list details { border:1px solid var(--line); border-radius:10px; padding:10px 14px; margin:8px 0; background:#fff }
.faq-list summary { cursor:pointer; font-weight:700 }
.faq-a { color:#4b5563; margin-top:6px }

/* Hover niceties for cards */
.card:hover { box-shadow:0 8px 24px rgba(0,0,0,.08); transform: translateY(-1px); transition: box-shadow .2s ease, transform .2s ease }
.card { transition: box-shadow .2s ease, transform .2s ease }

/* Contact Form 7 basic theme styles */
.wpcf7 form { display:grid; gap:12px; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea, .wpcf7 select {
  width:100%; padding:14px 16px; border:2px solid var(--line); border-radius:8px; font:inherit; font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.wpcf7 input[type="text"]:focus, 
.wpcf7 input[type="email"]:focus, 
.wpcf7 input[type="tel"]:focus, 
.wpcf7 textarea:focus, 
.wpcf7 select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}
.wpcf7 textarea { min-height: 160px; resize: vertical; }
.wpcf7 input[type="submit"], .wpcf7 .wpcf7-submit { 
  background: var(--primary); 
  color: #fff; 
  border: 2px solid var(--primary); 
  border-radius: 999px; 
  padding: 16px 32px; 
  cursor: pointer; 
  font-size: 16px; 
  font-weight: 700;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin: 16px auto 0;
  display: block;
}
.wpcf7 input[type="submit"]:hover, .wpcf7 .wpcf7-submit:hover { 
  background: var(--primary-700); 
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);
}
.wpcf7-response-output {
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0 0;
  border: 2px solid;
}
.wpcf7-mail-sent-ok {
  background: #d1fae5;
  border-color: #10b981;
  color: #065f46;
}
.wpcf7-validation-errors, .wpcf7-mail-sent-ng {
  background: #fee2e2;
  border-color: #ef4444;
  color: #991b1b;
}
.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #dc2626;
  margin-top: 4px;
}
.wpcf7-spinner {
  margin-left: 8px;
}

/* Inner page hero */
.display-404 { font-size: clamp(56px, 12vw, 140px); font-weight: 800; line-height: 1; letter-spacing: .02em; color: var(--ink); }
.page-hero { background: linear-gradient(180deg,#fff,#fff7f0); border-bottom: 1px solid var(--line); position: relative }
.page-hero--soft { background: linear-gradient(180deg,#fff7f0,#fff); }
.page-hero__title { margin:0; padding: 24px 0 4px; font-size: clamp(22px, 3vw, 32px) }
.page-hero__lead { color: var(--muted); margin: 0 0 18px }
.page-hero .container-xxl { padding-top: 12px; padding-bottom: 12px }
.page-hero__wave { content:""; height: 6px; background:linear-gradient(90deg,var(--primary),#ffb366); }

/* ========================================
   LOAN PAGE - Professional Design
   ======================================== */

/* Loan Hero Section */
.loan-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.loan-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 100px;
}

.loan-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ink);
}

.loan-hero__lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Loan Calculator Section */
.loan-calc-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.loan-calc-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.loan-calc-main {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.loan-calc-main__title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
}

.loan-calc-main__subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 32px;
}

.loan-params {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.loan-param {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.loan-param__label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.loan-param__value {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.loan-param__unit {
  font-size: 16px;
  font-weight: 600;
  margin-left: 4px;
}

.loan-result {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c1a 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(255, 122, 0, 0.2);
}

.loan-result__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.loan-result__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #fff;
}

.loan-result__yen {
  font-size: 24px;
  font-weight: 600;
  margin-right: 4px;
}

.loan-result__number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.loan-result__unit {
  font-size: 18px;
  font-weight: 600;
  margin-left: 8px;
  opacity: 0.9;
}

.loan-note {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}

.loan-note p {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 8px;
  line-height: 1.6;
}

.loan-note p:last-child {
  margin-bottom: 0;
}

.loan-cta {
  text-align: center;
}

.loan-cta .btn {
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.loan-cta .btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Loan Benefits */
.loan-benefits {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px 32px;
}

.loan-benefits__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--ink);
}

.loan-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loan-benefits__item {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #f1f3f5;
  gap: 12px;
}

.loan-benefits__item:last-child {
  border-bottom: none;
}

.loan-benefits__check {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.loan-benefits__item span {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

/* Loan Flow Section */
.loan-flow-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
}

.section-header__subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

.loan-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.loan-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 10%, var(--primary) 90%, transparent 100%);
  z-index: 0;
}

.loan-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.loan-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), #ff8c1a);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);
  position: relative;
}

.loan-step__number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}

.loan-step__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.loan-step__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Loan Features Section */
.loan-features-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.loan-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.loan-feature {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.loan-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.loan-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--primary);
}

.loan-feature__icon svg {
  width: 100%;
  height: 100%;
}

.loan-feature__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
}

.loan-feature__text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Final CTA Section */
.loan-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
}

.final-cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 32px;
  padding: 64px 48px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.final-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ffb366);
}

.final-cta__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink);
}

.final-cta__text {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 40px;
  line-height: 1.6;
}

.final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.final-cta__buttons .btn {
  min-width: 220px;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
}

.final-cta__hours {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .loan-calc-wrapper {
    grid-template-columns: 1fr;
  }

  .loan-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .loan-steps::before {
    display: none;
  }

  .loan-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .loan-hero {
    padding: 48px 0 40px;
  }

  .loan-calc-section {
    padding: 48px 0;
  }

  .loan-calc-main {
    padding: 32px 24px;
  }

  .loan-params {
    grid-template-columns: 1fr;
  }

  .loan-result__number {
    font-size: 42px;
  }

  .loan-benefits {
    padding: 32px 24px;
  }

  .loan-flow-section {
    padding: 48px 0;
  }

  .loan-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .loan-features-section {
    padding: 48px 0;
  }

  .loan-final-cta {
    padding: 64px 0;
  }

  .final-cta-box {
    padding: 40px 24px;
  }

  .final-cta__buttons {
    flex-direction: column;
  }

  .final-cta__buttons .btn {
    width: 100%;
  }
}

/* Old loan styles (keeping for compatibility) */
.card--emphasis { border:2px solid var(--primary); box-shadow:0 8px 24px rgba(255,122,0,.12) }
.list-check { list-style: none; padding:0; margin: 8px 0 8px }
.list-check li { padding-left: 22px; position: relative; margin:4px 0 }
.list-check li::before { content:'✔'; position:absolute; left:0; top:0; color: var(--primary); font-weight: 800 }
.pill { display:inline-block; padding:4px 8px; border-radius:999px; background:#fff; border:1px solid var(--line); font-size:12px; color:var(--ink) }
.timeline { counter-reset: step; list-style:none; padding:0; margin:0; display:grid; gap:10px }
.timeline > li { background:#fff; border:1px solid var(--line); border-radius:12px; padding:10px 12px; position:relative }
.timeline > li strong { margin-right:6px }
.cta-box { display:flex; gap:8px; margin-top: 12px }

/* Refine cards in archive/single */
.page-hero + .container-xxl { 
  padding-top: 40px; /* アーカイブページのヒーローとグリッドの間に余白を追加 */
}
.page-hero + .container-xxl .grid .card { transition: transform .2s ease, box-shadow .2s ease }
.page-hero + .container-xxl .grid .card:hover { transform: translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.08) }

/* Detail Pages (Single Event, Plan, Case) */
.detail-hero { padding: 24px 0; }
.detail-hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.detail-hero__title { margin: 0; font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; }

.badge--lg { padding: 6px 12px; font-size: 14px; font-weight: 600; }
.badge--date, .badge--place, .badge--area, .badge--client { 
  background: #fff; 
  border: 2px solid var(--line); 
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.price-badge--hero { 
  background: var(--primary); 
  color: #fff; 
  padding: 10px 16px; 
  border-radius: 12px; 
  font-weight: 800; 
  font-size: 20px; 
  box-shadow: 0 4px 16px rgba(255,122,0,.25);
  display: inline-block;
}

.entry-detail { 
  max-width: 900px; 
  margin: 40px auto; 
  padding: 0 16px;
}

.detail-image { 
  width: 100%; 
  margin: 0 0 32px; 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  background: #f6f8fa;
  aspect-ratio: 1 / 1; /* すべて正方形に統一（1080×1080px） */
}

.detail-image__img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center; 
  display: block;
}

.detail-content { 
  margin: 32px 0; 
  line-height: 1.8;
}

.detail-content .entry-content { 
  font-size: 16px; 
  color: var(--ink);
}

.detail-content .entry-content h2 { 
  margin: 32px 0 16px; 
  padding-bottom: 8px; 
  border-bottom: 3px solid var(--primary);
  font-size: 24px;
}

.detail-content .entry-content h3 { 
  margin: 24px 0 12px; 
  font-size: 20px;
  color: var(--primary);
}

.detail-content .entry-content p { 
  margin: 16px 0; 
}

.detail-content .entry-content ul, 
.detail-content .entry-content ol { 
  margin: 16px 0; 
  padding-left: 24px;
}

.detail-content .entry-content li { 
  margin: 8px 0; 
}

.detail-cta { 
  margin: 48px 0 32px; 
}

.cta-card { 
  background: linear-gradient(135deg, #fff7f0, #fff); 
  border: 2px solid var(--primary); 
  border-radius: 16px; 
  padding: 32px; 
  text-align: center;
  box-shadow: 0 4px 20px rgba(255,122,0,.12);
}

.cta-card__title { 
  margin: 0 0 8px; 
  font-size: 24px; 
  font-weight: 800; 
  color: var(--ink);
}

.cta-card__text { 
  margin: 0 0 24px; 
  color: var(--muted); 
  font-size: 16px;
}

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

.back-link { 
  text-align: center; 
  margin: 32px 0 48px; 
}

/* Plan Specifications */
.plan-specs { 
  background: #f6f8fa; 
  border-radius: 12px; 
  padding: 24px; 
  margin: 0 0 32px;
}

.plan-specs__title { 
  margin: 0 0 16px; 
  font-size: 20px; 
  font-weight: 700; 
  color: var(--ink);
}

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

.spec-item { 
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: 10px; 
  padding: 16px; 
  text-align: center;
}

.spec-item__label { 
  font-size: 14px; 
  color: var(--muted); 
  margin-bottom: 8px; 
  font-weight: 600;
}

.spec-item__value { 
  font-size: 20px; 
  font-weight: 800; 
  color: var(--primary);
}

/* ========================================
   CONTACT PAGE - Professional Design
   ======================================== */

/* Contact Hero Section */
.contact-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.contact-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 100px;
}

.contact-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ink);
}

.contact-hero__lead {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-info-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 50%;
  color: var(--primary);
}

.contact-info-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
}

.contact-info-card__value {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.6;
}

.contact-info-card__link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card__link:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

.contact-info-card__hours {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: #fff;
}

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

.contact-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-form-header__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink);
}

.contact-form-header__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.contact-form-container {
  background: #fafafa;
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 40px;
}

.contact-form-notice {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.contact-form-notice h3 {
  margin: 0 0 12px;
  color: var(--ink);
}

.contact-form-notice p {
  margin: 8px 0;
  color: var(--muted);
}

.contact-form-notice--error {
  border-color: #ef4444;
  background: #fef2f2;
}

.contact-form-notice--error h3 {
  color: #dc2626;
}

/* Contact Privacy */
.contact-privacy {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--line);
}

.contact-privacy__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
}

.contact-privacy__text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

.contact-privacy__text p {
  margin: 0 0 12px;
}

.contact-privacy__text p:last-child {
  margin-bottom: 0;
}

.contact-privacy__text a {
  color: var(--primary);
  text-decoration: none;
}

.contact-privacy__text a:hover {
  text-decoration: underline;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
}

.contact-cta-box {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--primary);
}

.contact-cta-box__title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
}

.contact-cta-box__text {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 32px;
}

.contact-cta-box__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-cta-box__hours {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ==============================================
   Visit Page (来場予約ページ)
   ============================================== */

/* Visit Hero - お問い合わせと同じスタイルを使用 */
.visit-hero {
  padding: 60px 0 48px;
  text-align: center;
}

.visit-hero__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding: 4px 16px;
  background: var(--primary-soft);
  border-radius: 20px;
}

.visit-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink);
}

.visit-hero__lead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Visit Benefits Section */
.visit-benefits-section {
  padding: 80px 0;
  background: var(--bg);
}

.visit-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.visit-benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.visit-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.visit-benefit-card__icon {
  color: var(--primary);
  margin-bottom: 20px;
}

.visit-benefit-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.visit-benefit-card__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Visit Locations Section */
.visit-locations-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.visit-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.visit-location-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.visit-location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.visit-location-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-location-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-location-card__placeholder {
  font-size: 64px;
  opacity: 0.3;
}

.visit-location-card__content {
  padding: 32px;
}

.visit-location-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.visit-location-card__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Visit Form Section */
.visit-form-section {
  padding: 80px 0;
  background: var(--bg);
}

.visit-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.visit-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.visit-form-header__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink);
}

.visit-form-header__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.visit-form-container {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
  margin-bottom: 32px;
}

.visit-form-notice {
  text-align: center;
  padding: 40px;
  background: #fff7ed;
  border: 2px dashed var(--primary);
  border-radius: 12px;
}

.visit-form-notice h3 {
  font-size: 20px;
  color: var(--primary);
  margin: 0 0 12px;
}

.visit-form-notice p {
  margin: 8px 0;
  color: var(--muted);
}

.visit-form-notice--error {
  border-color: #ef4444;
  background: #fef2f2;
}

.visit-form-notice--error h3 {
  color: #dc2626;
}

/* Visit Privacy */
.visit-privacy {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--line);
}

.visit-privacy__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
}

.visit-privacy__text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

.visit-privacy__text p {
  margin: 0 0 12px;
}

.visit-privacy__text p:last-child {
  margin-bottom: 0;
}

.visit-privacy__text a {
  color: var(--primary);
  text-decoration: none;
}

.visit-privacy__text a:hover {
  text-decoration: underline;
}

/* Visit CTA Section */
.visit-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
}

.visit-cta-box {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--primary);
}

.visit-cta-box__title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
}

.visit-cta-box__text {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 32px;
}

.visit-cta-box__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.visit-cta-box__hours {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Responsive Design for Visit Page */
@media (max-width: 768px) {
  .visit-hero {
    padding: 48px 0 40px;
  }

  .visit-benefits-section,
  .visit-locations-section,
  .visit-form-section,
  .visit-cta-section {
    padding: 48px 0;
  }

  .visit-benefits-grid,
  .visit-locations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .visit-benefit-card {
    padding: 32px 24px;
  }

  .visit-location-card__content {
    padding: 24px;
  }

  .visit-form-container {
    padding: 32px 20px;
  }

  .visit-privacy {
    padding: 24px;
  }

  .visit-cta-box {
    padding: 32px 20px;
  }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    padding: 48px 0 40px;
  }

  .contact-info-section {
    padding: 40px 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form-section {
    padding: 48px 0;
  }

  .contact-form-container {
    padding: 32px 20px;
  }

  .contact-privacy {
    padding: 24px;
  }

  .contact-cta-section {
    padding: 48px 0;
  }

  .contact-cta-box {
    padding: 32px 20px;
  }
}

/* Case Information */
.case-info { 
  background: #f6f8fa; 
  border-radius: 12px; 
  padding: 20px 24px; 
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.case-info__item { 
  display: flex; 
  align-items: center; 
  gap: 8px;
}

.case-info__label { 
  font-size: 14px; 
  color: var(--muted); 
  font-weight: 600;
}

.case-info__value { 
  font-size: 16px; 
  font-weight: 700; 
  color: var(--ink);
}

/* Responsive adjustments for detail pages */
@media (max-width: 768px) {
  .detail-hero { padding: 16px 0; }
  .detail-hero__title { font-size: 24px; }
  .price-badge--hero { font-size: 18px; padding: 8px 12px; }
  .badge--lg { font-size: 12px; padding: 4px 8px; }
  
  
  .entry-detail { margin: 24px auto; }
  .detail-image { margin-bottom: 24px; }
  .detail-content { margin: 24px 0; }
  
  .cta-card { padding: 24px 16px; }
  .cta-card__title { font-size: 20px; }
  .cta-card__text { font-size: 14px; }
  .btn-lg { padding: 14px 24px; font-size: 16px; }
  
  .plan-specs, .case-info { padding: 16px; }
  .plan-specs__grid { grid-template-columns: 1fr; }
}

/* ==============================================
   Thanks Page
   ============================================== */

.thanks-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  text-align: center;
}

.thanks-hero__content {
  max-width: 600px;
  margin: 0 auto;
}

.thanks-hero__icon {
  margin: 0 auto 32px;
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-hero__title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 24px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.thanks-hero__message {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.thanks-next {
  padding: 80px 0;
  background: #fff;
}

.thanks-next__title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 56px;
  color: var(--ink);
}

.thanks-next__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.thanks-step::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: -32px;
  font-size: 32px;
  color: var(--line);
  font-weight: 700;
}

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

.thanks-step__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #ff9500 100%);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);
}

.thanks-step__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.thanks-step__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.thanks-cta {
  padding: 80px 0;
  background: #f8f9fa;
}

.thanks-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.thanks-cta__card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.thanks-cta__card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.thanks-cta__card-text {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 24px;
}

.thanks-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.thanks-cta__phone:hover {
  color: #ff9500;
  transform: translateX(4px);
}

.thanks-cta__phone svg {
  width: 32px;
  height: 32px;
}

.thanks-cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.thanks-cta__buttons .btn {
  flex: 1;
  min-width: 180px;
}

@media (max-width: 992px) {
  .thanks-hero {
    padding: 60px 0;
  }

  .thanks-hero__title {
    font-size: 32px;
  }

  .thanks-hero__message {
    font-size: 16px;
  }

  .thanks-next__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .thanks-step::after {
    content: '↓';
    top: auto;
    bottom: -32px;
    right: 50%;
    transform: translateX(50%);
  }

  .thanks-cta__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .thanks-hero {
    padding: 40px 0;
  }

  .thanks-hero__icon svg {
    width: 60px;
    height: 60px;
  }

  .thanks-hero__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .thanks-next,
  .thanks-cta {
    padding: 48px 0;
  }

  .thanks-next__title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .thanks-step__number {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .thanks-cta__card {
    padding: 28px 20px;
  }

  .thanks-cta__card-title {
    font-size: 20px;
  }

  .thanks-cta__phone {
    font-size: 22px;
  }

  .thanks-cta__buttons {
    flex-direction: column;
  }

  .thanks-cta__buttons .btn {
    width: 100%;
  }
}

/* ==============================================
   Privacy Policy Page
   ============================================== */

.privacy-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.privacy-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.privacy-hero__title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.privacy-hero__lead {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

.privacy-content-section {
  padding: 60px 0 80px;
  background: #fff;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.privacy-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-block__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}

.privacy-block__text {
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
}

.privacy-block__text p {
  margin: 0 0 16px;
}

.privacy-block__text p:last-child {
  margin-bottom: 0;
}

.privacy-block__text ul {
  margin: 16px 0;
  padding-left: 24px;
}

.privacy-block__text li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.privacy-contact-info {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

.privacy-contact-info p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.8;
}

.privacy-contact-info p:last-child {
  margin-bottom: 0;
}

.privacy-contact-info strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.privacy-contact-info a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-contact-info a:hover {
  color: #ff9500;
  text-decoration: underline;
}

.privacy-updated {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: right;
}

.privacy-updated p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 4px;
}

.privacy-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.privacy-cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-cta-box__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 32px;
}

.privacy-cta-box__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.privacy-cta-box__buttons .btn {
  min-width: 200px;
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 40px 0 30px;
  }

  .privacy-hero__title {
    font-size: 32px;
  }

  .privacy-content-section {
    padding: 40px 0 60px;
  }

  .privacy-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .privacy-block__title {
    font-size: 20px;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left-width: 3px;
  }

  .privacy-block__text {
    font-size: 14px;
  }

  .privacy-contact-info {
    padding: 20px;
  }

  .privacy-cta-section {
    padding: 48px 0;
  }

  .privacy-cta-box__title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .privacy-cta-box__buttons {
    flex-direction: column;
  }

  .privacy-cta-box__buttons .btn {
    width: 100%;
  }
}

/* ==============================================
   Request Page (資料請求)
   ============================================== */

.request-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.request-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.request-hero__title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.request-hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.request-materials-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.request-materials__title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 56px;
  color: var(--ink);
}

.request-materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.request-material-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.request-material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.request-material-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.1) 100%);
  border-radius: 50%;
  color: var(--primary);
}

.request-material-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.request-material-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.request-form-section {
  padding: 80px 0;
  background: #fff;
}

.request-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.request-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.request-form-header__title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink);
}

.request-form-header__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.request-form-container {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.request-form-notice {
  text-align: center;
  padding: 40px 20px;
}

.request-form-notice h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.request-form-notice p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 8px;
}

.request-form-notice--error {
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 12px;
}

.request-privacy {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.request-privacy__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.request-privacy__text {
  font-size: 14px;
  line-height: 1.8;
  color: #374151;
}

.request-privacy__text p {
  margin: 0 0 8px;
}

.request-privacy__text p:last-child {
  margin-bottom: 0;
}

.request-privacy__text a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.request-privacy__text a:hover {
  color: #ff9500;
  text-decoration: underline;
}

.request-benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.request-benefits__title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 56px;
  color: var(--ink);
}

.request-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.request-benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.request-benefit-card__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #ff9500 100%);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);
}

.request-benefit-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
}

.request-benefit-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.request-cta-section {
  padding: 60px 0;
  background: #fff;
}

.request-cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.request-cta-box__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 32px;
}

.request-cta-box__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.request-cta-box__hours {
  font-size: 14px;
  color: var(--muted);
  margin: 16px 0 0;
}

@media (max-width: 992px) {
  .request-hero {
    padding: 40px 0 30px;
  }

  .request-hero__title {
    font-size: 32px;
  }

  .request-materials-section,
  .request-form-section,
  .request-benefits-section {
    padding: 60px 0;
  }

  .request-materials__title,
  .request-benefits__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .request-materials-grid,
  .request-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .request-hero {
    padding: 32px 0 24px;
  }

  .request-hero__title {
    font-size: 28px;
  }

  .request-hero__lead {
    font-size: 14px;
  }

  .request-materials-section,
  .request-form-section,
  .request-benefits-section {
    padding: 48px 0;
  }

  .request-materials__title,
  .request-benefits__title,
  .request-form-header__title {
    font-size: 24px;
  }

  .request-materials-grid,
  .request-benefits-grid {
    grid-template-columns: 1fr;
  }

  .request-material-card,
  .request-benefit-card {
    padding: 28px 20px;
  }

  .request-form-container {
    padding: 24px 20px;
  }

  .request-privacy {
    padding: 20px;
  }

  .request-cta-section {
    padding: 48px 0;
  }

  .request-cta-box__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

/* ============================================
   追加のスマホ対応 (Mobile Enhancements)
   ============================================ */

@media (max-width: 768px) {
  /* ヘッダー */
  .site-header__inner {
    height: 60px;
    padding: 0 16px;
  }
  
  .site-logo {
    height: 40px;
  }
  
  .site-name {
    font-size: 16px;
  }
  
  /* ナビゲーション */
  .nav-list a[href*="/loan"] {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  /* Hero */
  .hero {
    padding: 40px 0;
  }
  
  .hero__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .hero__lead {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }
  
  /* セクションタイトル */
  .section__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  /* ボタン */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* グリッド */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* カード */
  .card {
    margin-bottom: 16px;
  }
  
  /* Price Strip */
  .price-strip {
    padding: 32px 0;
  }
  
  .price-strip__inner {
    padding: 0 16px;
    gap: 32px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .price-strip__copy {
    order: 1;
  }
  
  .price-strip__cards {
    order: 2;
    grid-template-columns: 1fr;
  }
  
  .eyebrow {
    font-size: 11px;
  }
  
  .headline {
    font-size: 20px;
    line-height: 1.4;
  }
  
  .chips {
    gap: 6px;
    justify-content: center;
  }
  
  .chip {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .price-strip__cards {
    gap: 12px;
  }
  
  .p-card {
    padding: 12px;
  }
  
  .p-card__price {
    font-size: 18px;
  }
  
  /* Model Banner */
  .model-banner__inner {
    padding: 0 16px;
  }
  
  .model-banner__content h2 {
    font-size: 22px;
  }
  
  /* Services */
  .services .card h3 {
    font-size: 18px;
  }
  
  .services .card p {
    font-size: 14px;
  }
  
  /* Flow */
  .flow__list {
    padding-left: 20px;
  }
  
  .flow__list li {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  /* About */
  .about .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about__list {
    font-size: 14px;
  }
  
  .about__map iframe {
    height: 300px;
  }
  
  /* Testimonials */
  .testimonials .card {
    padding: 16px;
  }
  
  .t-card__title {
    font-size: 16px;
  }
  
  /* FAQ */
  .faq-item {
    padding: 16px;
  }
  
  .faq-item__q {
    font-size: 15px;
  }
  
  .faq-item__a {
    font-size: 14px;
  }
  
  /* CTA */
  .cta__inner {
    padding: 48px 16px;
  }
  
  .cta__inner h2 {
    font-size: 24px;
  }
  
  .cta__inner p {
    font-size: 15px;
  }
  
  .cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .cta__buttons .btn {
    width: 100%;
    margin: 0;
  }
  
  /* Footer */
  .footer-brand .site-logo--footer {
    height: 35px;
  }
  
  .footer-links h3,
  .footer-contact h3 {
    font-size: 16px;
  }
  
  .footer-links li,
  .footer-contact p {
    font-size: 14px;
  }
  
  /* Fixed Action Bar - モバイル */
  .fixed-action-btn {
    padding: 10px 6px;
    min-height: 65px;
  }
  
  .fixed-action-btn__icon {
    font-size: 22px;
    margin-bottom: 3px;
  }
  
  .fixed-action-btn__text {
    font-size: 11px;
  }
}

/* さらに小さい画面 (iPhone SE など) */
@media (max-width: 375px) {
  .hero__title {
    font-size: 24px;
  }
  
  .section__title {
    font-size: 22px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .site-header__inner {
    padding: 0 12px;
  }
  
  .container,
  .container-xl,
  .container-xxl {
    padding: 0 12px;
  }
  
  /* Fixed Action Bar - 極小画面 */
  .fixed-action-btn {
    padding: 8px 4px;
    min-height: 60px;
  }
  
  .fixed-action-btn__icon {
    font-size: 20px;
    margin-bottom: 2px;
  }
  
  .fixed-action-btn__text {
    font-size: 10px;
  }
}

/* Price strip */


