/* =========================================================
   Chauffeur Luxe テーマ用CSS
   PC版：従来レイアウト維持
   スマホ版：1カラム化＋ハンバーガーメニュー対応
   ========================================================= */
/* ---------- ベースリセット ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont,
               "Hiragino Kaku Gothic ProN", "Segoe UI", Roboto,
               "Noto Sans JP", "Helvetica Neue", Arial,
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #000;  /* 黒背景 */
  color: #f5e6b3;          /* ゴールド系文字色 */
  line-height: 1.7;
}

/* ---------- リンク設定 ---------- */
a {
  color: #f5e6b3;
  text-decoration: none;
}
a:hover {
  color: #ffdd80;
}

/* ---------- コンテナ ---------- */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* =========================================================
   Header - ヘッダー（ロゴ・メニューなど）
   PCでは横並び、スマホでは縦並び＋開閉メニュー対応
   ========================================================= */
 ..site-header {
  position: fixed;                  /* ヘッダーを上部に固定 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);   /* 半透明の黒背景 */
  border-bottom: 1px solid rgba(212,175,55, .25); /* ゴールド系の下枠ライン */
  backdrop-filter: blur(6px);       /* 背景をぼかして高級感を演出 */
  padding: 10px 0;                  /* 上下余白 */
}
/* =========================================================
   Header Inner - ヘッダー内のレイアウト
   ロゴ・メニューを横並びに配置
   ========================================================= */
.header-inner {
  display: flex;
  justify-content: space-between; /* 左右端に配置 */
  align-items: center;            /* 縦位置を中央揃え */
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ===== PCヘッダー固定 ===== */
.site-header {
  position: fixed;    /* 固定配置 */
  top: 0;             /* 画面上に固定 */
  left: 0;
  width: 100%;        /* 横幅いっぱい */
  z-index: 1000;      /* 手前に出す */
  background: #000;   /* 背景色（透過だと下が透けるので注意） */
}

/* ===== ヘッダー分の余白を確保 ===== */
body {
  padding-top: 20px;  /* ヘッダーの高さ分だけ余白を追加 */
}

/* ================= ロゴ ================= */
.site-logo a {
  display: inline-block;
}
.site-logo img {
  max-height: 60px;
  height: auto;
  width: auto;
  display: block;
}

/* ================= 情報ナビ（メニュー右側） ================= */
.info-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-nav li {
  white-space: nowrap;
  position: relative;
}
/* 区切り線（最後の要素以外） */
.info-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background-color: gold;
}
.info-nav a {
  color: #f5e6b3;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}
.info-nav a:hover {
  text-decoration: underline;
}
/* ================= CTA（ヘッダー右上のボタンなど） ================= */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta .cta {
  background-color: gold;
  color: black;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.header-cta .cta:hover {
  background-color: #d4af37; /* 濃い金色に */
}

/* ================= Hero セクション ================= */
.hero {
  position: relative;
  width: 100%;
  height: 38vh !important; /* 高さをビューポート比率で指定 */
  overflow: hidden;
  margin-top: 30px; /* 固定ヘッダー分の余白 */
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像をトリミングして全面に表示 */
  display: block;
  filter: brightness(0.7); /* 暗めにして文字を読みやすく */
}
.hero .overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center; /* 中央寄せ */
  text-align: center;
  padding: 0 6%;
  transform: translateY(-20%); /* 文字をやや上に調整 */
}
.hero h1 {
  font-size: 2.5rem; /* 見出しサイズ */
  font-weight: bold;
  color: #f5e6b3; /* 金色テキスト */
  margin-bottom: 1.0rem;
  text-shadow: 
    0 0 8px rgba(0,0,0,0.85),
    0 0 16px rgba(0,0,0,0.75); /* 光沢風の影 */
}
.hero p {
  color: #f5e6b3;
  font-size: 1.0rem;
  text-shadow: 
    0 0 6px rgba(0,0,0,0.8),
    0 0 12px rgba(0,0,0,0.6);
}
/* ---------- Sections ---------- */
.section {
  padding: 16px 0; /* 上下パディング。元は56pxだった？ */
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.section h2 {
  color: #f0e7c0;
  font-size: clamp(22px, 4vw, 34px);
  margin: 0 0 16px; /* 下マージン */
}


/* ---------- Grid Layout ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px; /* グリッド間のスペース（以前は18px？） */
}


/* ---------- Cards ---------- */
.card {
  padding: 14px; /* カードの内側余白（以前は18px？） */
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9; /* アスペクト比を16:9に固定 */
  object-fit: cover;    /* 画像の縦横比を保ちつつ埋める */
  border-radius: 12px;
  display: block;
}

.card h3 {
  color: #f1e6b1;
  margin: 10px 0 6px;
}

.meta {
  color: #c9b579;
  font-size: 13px;
}


/* ---------- Pricing Table ---------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 12px;
  text-align: left;
}

.pricing-table th {
  background: rgba(212, 175, 55, 0.08);
  color: #f1e6b1;
}

.pricing-note {
  color: #c9b579;
  font-size: 13px;
  margin-top: 6px;
}
/* ===== フッター全体 ===== */
.site-footer {
  background-color: #0b0b0b; /* 黒背景 */
  color: #fff;
  padding: 20px 20px;
}

.site-footer .footer-widgets {
  display: flex;
  justify-content: center;     /* 中央揃え */
  align-items: flex-start;     /* 上揃え */
  gap: 80px;                   /* カラム間の余白 */
  max-width: 1200px;           /* 最大幅 */
  margin: 0 auto;
  text-align: center;          /* コンテンツ中央寄せ */
  padding: 20px 20px;          /* 内側余白 */
}

.site-footer .footer-widget,
.site-footer .footer-widgets > div {
  flex: 1 1 0;                 /* 横幅を均等に分配 */
  min-width: 250px;            /* 最小幅 */
  max-width: 300px;            /* 最大幅 */
}

.site-footer h4,
.site-footer .footer-widgets h4 {
  color: #d4af37;              /* ゴールドカラー */
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.site-footer p,
.site-footer a {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffd700;              /* ホバー時のゴールド */
}

/* ===== フッター下部（コピーライトなど） ===== */
.footer-bottom {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #aaa;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 15px;
}
/* ================================
   フッター：スマホ対応
================================ */
@media (max-width: 768px) {
  .site-footer .footer-widgets {
    flex-direction: column; /* 縦並び */
    align-items: center;    /* 中央揃え */
    gap: 30px;              /* カード間の余白 */
  }

  .site-footer .footer-widget {
    text-align: center;
  }
}

/* ================================
   サービスセクション（大枠）
================================ */
section.services {
  padding: 6px 4%; /* 内側余白 */
}

section.services h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5e6b3;                   /* 見出しカラー */
  border-left: 4px solid #bfa14a;   /* 左ライン */
  padding-left: 10px;
  margin-bottom: 12px;              /* 下余白 */
}

.services .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.services .card {
  flex: 1 1 calc(33.333% - 1.5%); /* 横3分割 */
  background: #000;
  border: 1px solid #d4af37;
  border-radius: 10px;
  overflow: hidden;
}

/* ================================
   セクション全体の余白調整
================================ */
section {
  padding: 6px 4%;
}

section + section {
  margin-top: 10px; /* セクション間余白 */
}

/* ================================
   サービスカード（別デザイン）
================================ */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background: #111;
  border: 1px solid #bfa14a; /* ゴールド枠 */
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px); /* ホバー時の浮き上がり */
}

.service-card img {
  width: 100%;
  height: 180px;        /* 高さを固定 */
  object-fit: cover;    /* 画像の縦横比を保持 */
  display: block;
}

.service-card p {
  padding: 6px;
  color: #fff;
}

/* ================================
   サービスカード：スマホ対応
================================ */
@media (max-width: 768px) {
  .services .card,
  .service-card {
    flex: 1 1 100%;
    max-width: 100%; /* 横幅いっぱい */
  }
}
/* ==========================
   料金表
========================== */
.price-table {
  background: #111;
  border: 1px solid #bfa14a;
  border-radius: 8px;
  overflow-x: auto; /* 横スクロール対応（スマホ用） */
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  color: #f5e6b3;
}

.price-table th,
.price-table td {
  padding: 6px;
  border: 1px solid #bfa14a;
  text-align: left;
}

.price-table th {
  background: #222;
}

/* =========================================
   Chauffeur Luxe テーマ用 CSS
   共通デザイン / PC & モバイル対応
========================================= */

/* -------------------
   Hero セクション
------------------- */
/* Hero 全体 */
.hero {
  position: relative;
  width: 100%;
  height: 36vh;
  overflow: hidden;
  margin-top: 10px; /* ヘッダー分の余白 */
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* 暗めのトーンで文字を見やすく */
}

/* Hero テキスト配置 */
.hero .overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 6%;
  transform: translateY(10%); /* 縦方向の位置調整 */
}

.hero h1 {
  color: #fff !important;     /* 見出し文字（白） */
  font-size: 2rem !important; /* スマホ対応サイズ */
  margin-bottom: 0.5rem !important;
}

.hero p {
  color: #f5e6b3 !important;  /* サブテキスト（ゴールド系） */
  font-size: 1rem !important;
}

/* -------------------
   汎用カードレイアウト
------------------- */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #111;
  border: 1px solid #bfa14a;
  border-radius: 8px;
  padding: 20px;
  transition: transform .2s ease;
}

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

/* ==========================
   車両セクション
========================== */
.vehicle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.vehicle {
  flex: 1 1 calc(33.333% - 24px);
  background: #111;
  border: 1px solid #bfa14a;
  border-radius: 8px;
  overflow: hidden;
  text-align: center; /* 画像とテキストを中央揃え */
  padding: 15px;
}

.vehicle img {
  width: 100%;
  height: auto;         /* 縦横比を保持 */
  max-height: 200px;    /* 高さ制限で整列 */
  object-fit: cover;    /* トリミングして全体を埋める */
}

.vehicle .desc {
  padding: 16px;
  color: #fff;
}
/* -------------------
   ニュース一覧
------------------- */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-list li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

/* -------------------
   不要なメニュー項目を非表示
------------------- */
.page-item-80,
.page-item-188 {
  display: none !important;
}

/* -------------------
   フッター
------------------- */
.site-footer {
  background-color: #111; /* 黒背景 */
  color: #fff;
  padding: 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-around; /* 均等配置 */
  align-items: flex-start;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* フッター内の各セクション */
.footer-section {
  flex: 1;
  min-width: 250px;
}
.footer-section h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

/* フッターのテキスト＋アイコン */
.footer-section p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 5px 0;
}

/* アイコン部分 */
.footer-section svg {
  flex-shrink: 0;
}

/* フッター下部（コピーライトなど） */
.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  font-size: 12px;
  color: #bbb;
}

/* -------------------
   フッターのレスポンシブ対応
------------------- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-section p {
    justify-content: center;
  }
}

/* -------------------
   サイドバー・メイン余白調整
------------------- */
#secondary,
#primary,
.widget-area {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* 本文エリアの余白調整 */
.site-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* -------------------
   全体の基本設定 & リセット
------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #000;
  color: #f5e6b3;
  line-height: 1.6;
}

a {
  color: #f5e6b3;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/* -------------------
   ヘッダー
------------------- */
header {
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 5%;
}
header img {
  max-height: 60px;
}

/* ナビゲーション */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  color: #f5e6b3;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 0.8rem;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #ffcc33;
}

/* -------------------
   レスポンシブ対応
------------------- */
@media (max-width: 1024px) {
  nav ul {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }
  .services .card {
    flex: 1 1 100%;
  }
}
/* ======= グローバルナビ CSS ======= */

/* PCナビゲーション（横並び） */
nav ul {
  list-style: none !important;
  display: flex !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
}
nav ul li a {
  text-decoration: none !important;
  color: #f5e6b3 !important;
  font-weight: bold !important;
  padding: 5px 10px !important;
  transition: background-color 0.3s ease !important;
}
nav ul li a:hover {
  background-color: #bfa14a !important;
  color: #000 !important;
  border-radius: 5px !important;
}

/* ==========================
   レスポンシブ対応（768px以下）
========================== */
@media (max-width: 768px) {
  /* ナビゲーション（スマホ用ドロワー） */
  .info-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000;
    padding: 20px 0;
    z-index: 999;
  }
  .info-nav.active {
    display: block;
  }
  .info-nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 10px;
  }

  /* ハンバーガーアイコン配置 */
  .hamburger {
    display: flex;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* カード要素（サービス・車両）を縦並びに */
  .vehicle {
    flex: 1 1 100%;
  }
  .service-cards .card,
  .vehicle-cards .card {
    flex: 1 1 100%;
  }
}

/* ==========================
   ハンバーガーメニューのデザイン
========================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 開閉時のアニメーション */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 768px以下でのみハンバーガーを表示 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* ===== PC表示（既存のまま） ===== */
@media (min-width: 769px) {
  .mobile-cta,
  .mobile-footer-nav,
  .mobile-menu {
    display: none !important;
  }
}
 /* ============================= スマホ専用表示（768px以下） ============================= */
@media (max-width: 768px) {
  /* PCヘッダー非表示 */
  .site-header {
    display: none;
  }

  /* 上段 CTAボタン */
  .mobile-cta {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
    z-index: 1001;
  }
  .mobile-cta a {
    background: #b98d28;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
  }

  /* 下段 ロゴ＋ハンバーガー */
  .mobile-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
    z-index: 1001;
  }
  .mobile-footer-nav .logo img {
    height: 32px;
  }
  .mobile-footer-nav .hamburger {
    font-size: 28px;
    color: #fff;
    cursor: pointer;
  }

  /* フルスクリーンメニュー */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0; /* 全画面 */
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu.active {
    display: flex;
  }
  .mobile-menu a {
    color: #fff;
    font-size: 20px;
    padding: 15px 0;
    text-decoration: none;
  }
  .mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
  }

  /* ハンバーガーメニュー トグルボタン */
  .mobile-nav-toggle {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.6); /* 半透明黒背景 */
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    border: none; /* 枠線なし */
  }
  .mobile-nav-toggle .text {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .mobile-nav-toggle .icon {
    font-size: 28px;
    font-weight: bold;
    color: #d4af37; /* ゴールド */
    line-height: 0.7;
  }
  .mobile-nav-toggle:active,
  .mobile-nav-toggle:focus {
    background-color: #f5e6b3;
  }
}
