/* ============================================
   BRIGHTNESS - スタイルシート（仮完成版）

   【修正のポイント】
   ・色を変えたい → :root の変数を変更
   ・余白を変えたい → --section-pad を変更
   ・最大幅を変えたい → --max-width を変更
   ・フォントを変えたい → --font を変更
============================================ */


/* ============================================
   CSS変数（カラー・レイアウト設定）
   ここを変えると全体に反映されます
============================================ */
:root {
  /* 色 */
  --bg:         #222222;   /* メイン背景色 */
  --bg-dark:    #1a1a1a;   /* 暗いセクション背景色 */
  --accent:     #b10000;   /* アクセントカラー（赤） */
  --line-green: #06C755;   /* LINEボタンの緑 */
  --text:       #e8e8e8;   /* メインテキスト色 */
  --text-sub:   #aaaaaa;   /* サブテキスト色 */
  --white:      #ffffff;
  --card-bg:    rgba(255, 255, 255, 0.05);  /* カードの背景 */
  --card-border: rgba(255, 255, 255, 0.08); /* カードの枠線 */

  /* レイアウト */
  --max-width: 960px;       /* コンテンツの最大幅 */
  --section-pad: 100px 0;   /* セクションの上下余白 */
  --radius: 8px;            /* カードの角丸 */

  /* フォント */
  --font: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}


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

html {
  scroll-behavior: smooth; /* スムーズスクロール */
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}


/* ============================================
   コンテナ（共通レイアウト）
============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================
   共通セクションスタイル
============================================ */
.section {
  padding: var(--section-pad);
}

/* 暗いセクション */
.section-dark {
  background-color: var(--bg-dark);
}

/* セクション見出し */
.section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

/* セクション英語サブタイトル */
.section-sub {
  text-align: center;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.3em;
  margin-bottom: 56px;
}


/* ============================================
   ボタン共通スタイル
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* LINEボタン */
.btn-line {
  background-color: var(--line-green);
  color: var(--white);
}

/* 電話ボタン */
.btn-phone {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-phone:hover {
  border-color: var(--white);
}

/* 大きいボタン */
.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

/* ボタンアイコン */
.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}


/* ============================================
   ヘッダー
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}

/* スクロール時に影を追加（JS で .scrolled クラスが付く） */
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

/* ロゴ */
.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}

/* ナビメニュー */
.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  color: var(--text-sub);
  transition: color 0.2s;
  letter-spacing: 0.05em;
}

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

/* ハンバーガーボタン（スマホのみ表示） */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガー × アニメーション */
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ============================================
   ヒーロー（ファーストビュー）
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* スライドショー背景 */
.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

/* 表示中のスライド */
.hero-slide.is-active {
  opacity: 1;
}

/* 暗いオーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* ヒーローコンテンツ */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

/* キャッチコピー */
.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

/* 店舗名 */
.hero-brand {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

/* サブテキスト */
.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

/* ヒーローボタン群 */
.hero-buttons,
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   こんな方へ（ターゲット）セクション
============================================ */
.target-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.target-list li {
  padding: 20px 28px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.6;
}


/* ============================================
   選ばれる理由セクション
============================================ */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 理由カード */
.reason-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}

.reason-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.reason-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.reason-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.reason-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 20px;
}

.reason-link {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
}


/* ============================================
   サービスセクション
============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* サービスカード */
.service-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* サービス画像エリア */
.service-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #333;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

/* サービス本文エリア */
.service-body {
  padding: 24px;
}

.service-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  font-size: 13px;
  color: var(--accent);
}

/* サービス下のCTAボックス */
.cta-block {
  text-align: center;
  padding: 48px 24px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.cta-text {
  margin-bottom: 24px;
  font-size: 16px;
  color: var(--text-sub);
}


/* ============================================
   外観・作業環境セクション
============================================ */
.facility-block {
  margin-bottom: 64px;
}

.facility-block:last-child {
  margin-bottom: 0;
}

.facility-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-border);
}

.facility-desc {
  color: var(--text-sub);
  font-size: 14px;
  margin: 16px 0 24px;
  line-height: 1.7;
}

/* 外観 - 1枚の写真 */
.facility-single {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.facility-single img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 作業環境 - 複数写真グリッド */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.facility-image {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
}

/* 写真部分 */
.facility-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #333;
}

.facility-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.facility-image:hover .facility-thumb img {
  transform: scale(1.04);
}

/* キャプション */
.facility-caption {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  flex-grow: 1;
}

.facility-caption-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}


/* ============================================
   口コミセクション
============================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.review-stars {
  color: #f0b429;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-sub);
}

.review-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(177, 0, 0, 0.15);
  border: 1px solid rgba(177, 0, 0, 0.4);
  border-radius: 4px;
  font-size: 12px;
  color: #ff6666;
  letter-spacing: 0.05em;
}


/* ============================================
   お問い合わせ・アクセスセクション
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* お問い合わせボックス */
.contact-box {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-box p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* おすすめバッジ */
.badge {
  background-color: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* 電話番号 */
.phone-number {
  font-size: 28px !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white) !important;
  margin-bottom: 4px !important;
}

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

/* 通話無料番号 */
.phone-toll-free {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.toll-free-badge {
  font-size: 11px;
  font-weight: 700;
  color: #06C755;
  border: 1px solid rgba(6,199,85,0.5);
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.phone-toll-free-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* 営業時間 */
.hours {
  font-size: 13px !important;
  color: var(--text-sub) !important;
}

/* アクセスエリア */
.contact-map h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.shop-address {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 20px;
}

/* Googleマップ */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

/* 支払い方法の写真 */
.payment-image {
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.payment-image img {
  width: 100%;
  height: auto;
}

/* 支払い方法リスト */
.payment-list {
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-list li {
  font-size: 14px;
  color: var(--text-sub);
  padding-left: 16px;
  position: relative;
}

.payment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* 支払い注意書き */
.payment-note {
  font-size: 12px !important;
  color: rgba(170, 170, 170, 0.7) !important;
  margin-bottom: 0 !important;
}


/* ============================================
   営業時間（新デザイン）
   左：今日の状況カード ／ 右：週間スケジュール
============================================ */

/* 2カラムレイアウト */
.hours-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto 28px;
  align-items: stretch;
}

/* ---- 今日の状況カード ---- */
.hours-today {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hours-today-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
}

.hours-today-day {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.hours-today-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hours-today-badge.is-open {
  background-color: rgba(6, 199, 85, 0.15);
  color: #06C755;
  border: 1px solid rgba(6, 199, 85, 0.3);
}

.hours-today-badge.is-closed {
  background-color: rgba(255, 100, 100, 0.1);
  color: #ff7777;
  border: 1px solid rgba(255, 100, 100, 0.2);
}

.hours-today-time {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ---- 週間スケジュール ---- */
.hours-schedule {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--card-border);
  transition: background-color 0.2s;
}

.hours-row:last-child { border-bottom: none; }

/* 今日の行をハイライト */
.hours-row.is-today {
  background-color: rgba(177, 0, 0, 0.07);
}

.hours-row-days {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

/* 曜日チップ（丸いボタン） */
.day-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.07);
  color: var(--text-sub);
  transition: background-color 0.2s, color 0.2s;
}

.day-chip.sat { color: #7799ff; }
.day-chip.sun { color: var(--accent); }

/* 今日のチップを赤丸でハイライト */
.day-chip.is-today {
  background-color: var(--accent) !important;
  color: var(--white) !important;
}

.hours-row-time {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* 定休日の行 */
.hours-row-holiday { opacity: 0.55; }

.holiday-label {
  font-size: 12px;
  color: var(--text-sub);
  padding: 0 6px;
  line-height: 1.4;
}

/* 「第2・4のみ」などの補足テキスト */
.hours-row-note {
  font-size: 11px;
  color: var(--text-sub);
  padding: 0 4px;
  line-height: 1.4;
  white-space: nowrap;
}

.hours-irregular {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--text-sub);
}

/* 注意書き */
.hours-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-sub);
  max-width: 680px;
  margin: 0 auto;
}

/* モバイル：縦並び */
@media (max-width: 600px) {
  .hours-wrap {
    grid-template-columns: 1fr;
  }

  .hours-today {
    flex-direction: row;
    justify-content: space-around;
    padding: 20px;
    gap: 0;
  }

  .hours-today-label { display: none; }
}


/* ============================================
   最終CTA（ページ最下部）
============================================ */
.final-cta {
  background-color: var(--bg-dark);
  padding: 100px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 40px;
  line-height: 1.8;
}


/* ============================================
   フッター
============================================ */
.footer {
  background-color: #111;
  padding: 48px 0;
  text-align: center;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.footer p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2;
}

.footer-copy {
  margin-top: 24px;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.3) !important;
}


/* ============================================
   画面右下固定LINEボタン
============================================ */
.fixed-line-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background-color: var(--line-green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  transition: opacity 0.2s, transform 0.2s;
}

.fixed-line-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.fixed-line-btn .btn-icon {
  width: 22px;
  height: 22px;
}


/* ============================================
   フェードインアニメーション
   ・.fade-in クラスをHTMLに付けると対象になります
   ・スクロールで画面に入ると .is-visible が追加されます
   ・.hero-fade はページ読み込み時に発火します
============================================ */
.fade-in,
.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible,
.hero-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ヒーローの要素を順番にフワッと表示 */
.hero-fade:nth-child(1) { transition-delay: 0.2s; }
.hero-fade:nth-child(2) { transition-delay: 0.5s; }
.hero-fade:nth-child(3) { transition-delay: 0.8s; }
.hero-fade:nth-child(4) { transition-delay: 1.1s; }


/* ============================================
   レスポンシブ対応（タブレット：768px以下）
============================================ */
@media (max-width: 768px) {

  /* ハンバーガー表示 */
  .hamburger { display: flex; }

  /* ナビを縦メニューに */
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  .nav.active { display: flex; }

  .nav a {
    padding: 16px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--card-border);
  }

  /* ヒーロー */
  .hero-title { font-size: 36px; }
  .hero-brand { font-size: 14px; }
  .hero-sub   { font-size: 14px; }

  /* グリッドを1列に */
  .reason-grid  { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .review-grid  { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }

  .final-cta h2 { font-size: 22px; }

  /* カードの余白・フォント調整 */
  .reason-card { padding: 28px 20px; }
  .reason-card h3 { font-size: 22px; }
  .contact-box { padding: 20px; }

  /* サブページ */
  .page-hero-title { font-size: 28px; }
  .service-detail { padding: 24px; }
  .service-cta { padding: 32px 20px; }

  :root { --section-pad: 72px 0; }
}


/* ============================================
   レスポンシブ対応（スマホ：480px以下）
============================================ */
@media (max-width: 480px) {

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

  /* ボタンを縦並びに */
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }

  .section-title { font-size: 24px; }

  .phone-number { font-size: 24px !important; }

  .page-hero-title { font-size: 22px; }

  .fixed-line-btn {
    padding: 10px 16px;
    font-size: 13px;
    bottom: 16px;
    right: 16px;
  }

  :root { --section-pad: 56px 0; }
}


/* ============================================
   サブページ用スタイル（各詳細ページで使用）
============================================ */

/* ページヒーロー（サブページ用） */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 64px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: 40px;
  font-weight: 700;
}

/* サービス詳細ページ用 */
.container-narrow {
  max-width: 720px;
}

.service-detail {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 24px;
}

.service-detail h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.service-detail p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-sub);
}

.detail-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 15px;
  color: var(--text-sub);
  padding-left: 16px;
  position: relative;
}

.detail-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.service-cta {
  text-align: center;
  padding: 48px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.service-cta h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-cta p {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 28px;
}
