/* --- WordPressの干渉を100%排除する --- */
header, footer, .wp-block-template-part, .post-title, .entry-title {
    display: none !important;
}
.wp-site-blocks, .entry-content, .wp-block-post-content {
    max-width: 100vw !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}
/* --- ここから下にあなたのCSSを貼る --- */

:root {
  --bg-start: #2c3e50;
  --bg-end: #1a2940;
  --accent: #00aaff;
  --accent-soft: rgba(0, 170, 255, 0.25);
  --accent-strong: #00e1ff;
  --text-main: #f5f7fa;
  --text-muted: #c0c6d4;
  --card-bg: rgba(10, 21, 36, 0.9);
  --card-bg-soft: rgba(10, 21, 36, 0.75);
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP",
    "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #34495e 0, var(--bg-start) 30%, var(--bg-end) 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px; /* 固定ボタン分の余白（モバイル） */
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

.container {
  width: min(1080px, 100% - 32px);
  margin-inline: auto;
}

/* =========================
   ヘッダー
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    to bottom,
    rgba(10, 21, 36, 0.95),
    rgba(10, 21, 36, 0.7)
  );
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.6rem 0.5rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-area img {
  height: auto;
  max-height: 70px;
  width: auto;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.logo-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.header-contact {
  text-align: right;
  font-size: 0.8rem;
}

.header-contact-label {
  color: var(--accent-strong);
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.header-contact-tel {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.header-contact-hours {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 170, 255, 0.22), transparent 60%),
    radial-gradient(circle at bottom left, rgba(0, 170, 255, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 1;
}

.hero-text {
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--accent-soft);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 1rem;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  line-height: 1.35;
}

.hero-title span {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.12rem 0.4rem;
  background: linear-gradient(
    90deg,
    rgba(0, 170, 255, 0.33),
    rgba(0, 225, 255, 0.14)
  );
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(0, 170, 255, 0.4);
}

.hero-subtitle {
  margin-top: 0.8rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.hero-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.hero-points li::before {
  content: "◆";
  margin-right: 0.4rem;
  color: var(--accent);
  font-size: 0.7rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #021018;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 12px 30px rgba(0, 170, 255, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary::before {
  content: "☎";
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 40px rgba(0, 170, 255, 0.6);
}

.hero-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ヒーロービジュアル（夜の街並みシルエット） */
.hero-visual {
  position: relative;
  padding: 1.5rem 1.3rem 2.1rem;
  border-radius: 20px;
  background: radial-gradient(circle at top, rgba(0, 170, 255, 0.25), rgba(10, 21, 36, 0.95));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-visual-top {
  position: relative;
  z-index: 2;
}

.hero-visual-copy-main {
  font-size: 1rem;
  font-weight: 600;
}

.hero-visual-copy-sub {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-cityline {
  position: relative;
  margin-top: 1.2rem;
  padding-top: 0.7rem;
}

.building-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 68px;
}

.building {
  display: inline-block;
  width: 14px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, rgba(0, 170, 255, 0.2), rgba(0, 170, 255, 0.9));
}

.building.small {
  height: 26px;
}

.building.medium {
  height: 40px;
}

.building.tall {
  height: 56px;
}

.hero-road {
  position: relative;
  margin-top: 0.9rem;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(0, 170, 255, 0.3), transparent 65%);
  border-top: 2px solid rgba(0, 170, 255, 0.7);
  border-bottom: 1px solid rgba(0, 170, 255, 0.2);
}

.hero-road::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(240, 244, 245, 0.9),
    rgba(240, 244, 245, 0.9) 10px,
    transparent 10px,
    transparent 16px
  );
  opacity: 0.8;
}

.hero-car {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  width: 96px;
  height: 46px;
}

.car-body {
  position: absolute;
  inset: 8px 6px 10px;
  border-radius: 18px 18px 12px 12px;
  border: 2px solid rgba(236, 240, 241, 0.9);
}

.car-wheel {
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid rgba(236, 240, 241, 0.9);
}

.car-wheel.left {
  left: 14px;
}

.car-wheel.right {
  right: 14px;
}

/* =========================
   セクション共通
   ========================= */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.section-header-main {
  max-width: 520px;
}

.section-title,
.section-title-centered {
  font-size: 1.4rem;
  position: relative;
}

.section-title::after,
.section-title-centered::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 0.3rem;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title-centered {
  text-align: center;
  margin-bottom: 1.6rem;
}

.section-title-centered::after {
  margin-inline: auto;
}

.section-lead {
  font-size: 0.9rem;
  color: var(--text-muted);
}

section {
  padding: 2.4rem 0;
}

/* =========================
   料金セクション
   ========================= */
.pricing {
  background: linear-gradient(
    to bottom,
    rgba(10, 21, 36, 0.9),
    rgba(10, 21, 36, 0.96)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-midnight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #021018;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.badge-midnight::before {
  content: "★";
  margin-right: 0.3rem;
  font-size: 0.8rem;
}

.badge-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pricing-card {
  margin-top: 0.6rem;
  padding: 1.3rem 1.1rem 1.4rem;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.price-table thead {
  background: rgba(0, 0, 0, 0.45);
}

.price-table th,
.price-table td {
  padding: 0.65rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.price-table th {
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.price-table strong {
  color: var(--accent-strong);
}

.price-notes {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-notes li + li {
  margin-top: 0.2rem;
}

.price-notes strong {
  color: var(--accent);
}

/* =========================
   3つの強み
   ========================= */
.benefits {
  background: radial-gradient(circle at top, rgba(0, 170, 255, 0.15), transparent 55%);
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

.benefit-item {
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: 16px;
  background: var(--card-bg-soft);
  border: 1px solid var(--border-soft);
}

.benefit-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.benefit-text {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.benefit-text + .benefit-text {
  margin-top: 0.45rem;
}

/* =========================
   ご利用の流れ
   ========================= */
.flow {
  background: rgba(6, 16, 30, 0.96);
}

.flow-steps {
  display: grid;
  gap: 0.9rem;
}

.flow-step {
  padding: 1rem 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(8, 20, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.flow-step h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.flow-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================
   対応エリア・安心
   ========================= */
.area {
  background: radial-gradient(circle at top, rgba(0, 170, 255, 0.2), transparent 60%);
}

.area-grid {
  display: grid;
  gap: 1.2rem;
}

.area-block {
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(8, 19, 32, 0.96);
  border: 1px solid var(--border-soft);
}

.area-list {
  margin-top: 0.4rem;
  font-size: 0.86rem;
}

.area-list li + li {
  margin-top: 0.2rem;
}

.area-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =========================
   フッター
   ========================= */
.site-footer {
  padding: 1.6rem 0 5.2rem; /* 固定ボタン分マージン */
  background: #050b12;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-name {
  font-weight: 600;
  color: var(--text-main);
}

.footer-copy {
  margin-top: 0.4rem;
  font-size: 0.72rem;
}

/* =========================
   固定電話ボタン（モバイルファースト）
   ========================= */
.floating-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.7rem 1rem 0.85rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #021018;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.floating-call-label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.floating-call-number {
  font-size: 1.05rem;
  font-weight: 700;
}

/* =========================
   レスポンシブ対応
   ========================= */
@media (min-width: 640px) {
  .header-inner {
    padding-inline: 0;
  }

  .hero-inner {
    gap: 2.4rem;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 880px) {
  body {
    padding-bottom: 120px;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.2;
  }

  .hero-visual {
    flex: 1;
  }

  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .floating-call {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 1.5rem;
    width: min(420px, 100% - 32px);
    border-radius: 999px;
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 1.6rem;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}


/* --- SEO/MEO/GEO Optimization Add-on --- */

/* 1. スクロール時に見出しが隠れないようにする（SEO/UX） */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* 2. ヘッダーの電話番号を「指」で押しやすくする（MEO） */
.header-contact-tel {
  padding: 4px 0;
  color: var(--accent-strong) !important;
  transition: opacity 0.2s;
}
.header-contact-tel:active {
  opacity: 0.7;
}

/* 3. フッターのNAP（名前・住所・電話）の視認性を高める（GEO） */
.footer-info {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-info p {
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

/* 4. モバイルでの誤タップ防止（UX評価向上） */
@media (max-width: 640px) {
  .floating-call {
    height: 70px; /* 高さをしっかり確保 */
  }
}

/* WordPressが自動生成するタイトルエリアを完全に消す */
.entry-title, 
.post-title, 
.page-header, 
.page-title, 
.entry-header {
  display: none !important;
}

/* ページ上部の余計な余白を削り、HTMLを最上部まで持ち上げる */
.site-content, 
.entry-content, 
#content, 
.content-area {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* コンテンツの横幅を100%に広げる（テーマによる隙間対策） */
.container.entry-content,
.post-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}


/* WordPressの枠を強制的に無視する設定 */
.is-layout-constrained, .wp-block-post-content, .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* WordPress.comの強力な枠をすべて破壊する */
:root {
    --wp--style--global--content-size: 100% !important;
    --wp--style--global--wide-size: 100% !important;
}

.wp-site-blocks, .entry-content, .post-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* ヘッダー・フッターを強制非表示 */
header, footer, .wp-block-template-part {
    display: none !important;
}

/* ページタイトルを画面から完全に消し去る */
.entry-title, 
.post-title, 
.wp-block-post-title, 
header h1, 
.page-title {
    display: none !important;
}

/* ついでにタイトル周りにできる不自然な隙間も消す */
.wp-site-blocks {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 1. WordPress側のヘッダー・フッターだけを消し、自作分(site-header/site-footer)を表示する */
header:not(.site-header), 
footer:not(.site-footer),
.wp-block-template-part {
    display: none !important;
}

.site-header, .site-footer {
    display: block !important; /* あなたのヘッダー・フッターを強制表示 */
}

/* 2. 文字色をあなたの変数で強制上書きする */
body, p, span, h1, h2, h3, li, td, th {
    color: var(--text-main) !important;
}

/* 3. リンク色とボタン内の文字色の微調整 */
a {
    color: inherit !important;
}

.btn-primary, .contact-button, .floating-call {
    color: #021018 !important; /* ボタン内の文字だけは黒系で見やすく */
}

/* 4. 料金表などの背景色が透けて文字が見にくい対策 */
.pricing-card, .benefit-item, .flow-step, .area-block {
    background-color: var(--card-bg) !important;
}

/* 1. ヘッダー上の隙間を完全にゼロにする */
html, body, #page, .site-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 2. 管理バー用の余白を強制排除 */
* {
    top: 0 !important;
}

/* 3. 文字色のメリハリを復活させる（全部真っ白にするのをやめる） */
/* 重要な文字はメイン色 */
body, h1, h2, h3, .logo-name, .header-contact-tel, strong {
    color: var(--text-main) !important;
}

/* 補足的な文字は少しくすませる（色の差を出す） */
.logo-tagline, .header-contact-label, .header-contact-hours, 
.hero-subtitle, .hero-note, .section-lead, 
.price-notes, .benefit-text, .flow-step p, .area-note,
.footer-info p, .footer-status p {
    color: var(--text-muted) !important;
}

/* 強調したいアクセントカラーはそのままにする */
.badge-midnight, .btn-primary, .floating-call {
    color: #021018 !important; /* ボタン内は視認性のため暗い色のまま */
}

/* 1. 全ての要素を上へ固定する命令を解除（これが巨大化の主犯です） */
* {
    top: auto !important;
}

/* 2. 固定電話ボタン（浮いているボタン）のサイズを再固定 */
.floating-call {
    height: auto !important;
    min-height: 60px !important;
    max-height: 80px !important;
    padding: 10px 20px !important;
}

/* 3. ボタン内の文字サイズが大きくなりすぎないように制御 */
.floating-call-label {
    font-size: 0.88rem !important;
    line-height: 1.2 !important;
}

.floating-call-number {
    font-size: 1.05rem !important;
    line-height: 1.2 !important;
}

/* 4. メインの予約ボタン（hero-cta）のサイズも制御 */
.btn-primary.hero-cta {
    font-size: 0.98rem !important;
    padding: 0.85rem 1.8rem !important;
    width: auto !important; /* 横いっぱいに広がらないように */
}

/* ページ全体の最外枠にかかっている強制的な余白をゼロにする */
.wp-site-blocks {
    padding-top: 0 !important;
}

/* ページコンテンツの開始位置をリセット */
.entry-content, .post-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ヘッダーを最上部に強制固定 */
.site-header {
    margin-top: 0 !important;
    top: 0 !important;
}

/* 背景色と重なるのを防ぐため、html自体の背景も背景色に合わせる（隙間が出ても目立たなくする） */
html {
    background-color: #0a1524 !important;
}

/* --- プロ仕様の色調整 --- */
:root {
    --bg-deep: #0a1524;      /* 深い夜の紺 */
    --bg-card: #16253a;      /* カードの紺 */
    --accent-gold: #ffcc00;  /* 警告灯や月光をイメージした金（電話ボタン用） */
    --text-main: #e0e6ed;    /* 馴染みの良い白 */
}

/* 背景全体の深みを増す */
body {
    background: var(--bg-deep) !important;
    color: var(--text-main) !important;
}

/* 各セクションのカードに立体感を出す */
.pricing-card, .benefit-item, .flow-step, .area-block {
    background: var(--bg-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* 料金表のヘッダーを落ち着かせる */
.price-table thead {
    background: rgba(0, 0, 0, 0.3) !important;
}

/* 【最重要】電話ボタンを「目立つ金」に変更 */
.btn-primary, .floating-call {
    background: linear-gradient(90deg, #f1c40f, #f39c12) !important;
    color: #000 !important; /* 文字は黒でハッキリ */
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3) !important;
}

/* ヒーロータイトルの「帯」を少し上品に */
.hero-title span {
    background: rgba(0, 170, 255, 0.2) !important;
    box-shadow: 0 0 0 1px rgba(0, 170, 255, 0.3) !important;
}

/* 1. 全体のトーンを「夜のプロ」仕様に */
:root {
    --bg-main: #060b12;      /* より深い夜の黒 */
    --accent-gold: #ffcc00;  /* 視認性最強のゴールド */
    --text-dim: #94a3b8;     /* 補足用のグレー */
}

/* 背景を深くして高級感を出す */
body {
    background: radial-gradient(circle at top, #1a2940 0%, #060b12 100%) !important;
}

/* 2. 「電話ボタン」を圧倒的に目立たせる */
.btn-primary, .floating-call {
    background: linear-gradient(135deg, #ffcc00 0%, #f39c12 100%) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4) !important;
    text-shadow: none !important;
}

/* 3. 料金表などのカードを浮き上がらせる */
.pricing-card, .benefit-item, .flow-step, .area-block {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}

/* 4. 文字の強弱をつける */
.hero-subtitle, .section-lead, .price-notes, .benefit-text, .flow-step p {
    color: var(--text-dim) !important;
}

.price-table strong {
    color: var(--accent-gold) !important;
    font-size: 1.2em;
}

/* ヘッダーの電話番号もゴールドにして統一感を出す */
.header-contact-tel {
    color: #ffcc00 !important;
}

/* スマホでのロゴの余白を少しだけ広げて上品に */
@media (max-width: 640px) {
    .logo-area {
        padding-left: 10px;
    }
    .header-contact {
        padding-right: 10px;
    }
}

/* ヒーロータイトルの「帯」をもう少しだけ透過させて馴染ませる */
.hero-title span {
    background: rgba(0, 170, 255, 0.1) !important;
}

/* 1. 全ての要素の「上余白」を根こそぎゼロにする */
html, body, #wp--skip-link--target, .wp-site-blocks, .is-layout-constrained {
    margin-top: 0 !important;
    padding-top: 0 !important;
    top: 0 !important;
}

/* 2. WordPress.com特有の「コンテンツ用コンテナ」の上余白を破壊 */
main.wp-block-group, 
.entry-content > *:first-child,
.wp-block-post-content > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 3. ヘッダー自体の位置を強制的に「天」に固定 */
.site-header {
    position: sticky !important;
    top: 0 !important;
    margin-top: 0 !important;
}

/* 4. 万が一隙間が出ても「黒（背景色）」に見えるようにして、白い線を消す */
:root, html {
    background-color: #060b12 !important;
}

/* 固定電話ボタン（浮いているボタン）の中の文字・数字を黒に統一 */
.floating-call,
.floating-call span,
.floating-call-label,
.floating-call-number {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important; /* スマホでの色上書き対策 */
    opacity: 1 !important;
}

/* ついでに、メインビジュアルにある予約ボタンも黒に統一 */
.btn-primary.hero-cta {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

/* リンクとしての標準色（青とか）を完全に打ち消す */
a.floating-call {
    text-decoration: none !important;
}

/* 1. ページ全体を強制的に「上方向」に引っ張り上げる */
body {
    position: relative !important;
    top: -32px !important; /* 標準的な管理バーの厚み分、上にズラす */
}

/* 2. 管理バーが出ていない場合（一般客）の隙間対策 */
html {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 3. それでもダメな場合、最上部の枠を透明化し高さをゼロにする */
#wpadminbar, .wp-block-template-part, header:not(.site-header) {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
}

/* 4. あなたのヘッダーを画面最上端に吸着させる */
.site-header {
    position: fixed !important; /* stickyからfixedへ変更 */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

/* 5. ヘッダーをfixedにしたことで中身が隠れないよう、mainに余白を少し戻す */
main {
    margin-top: 80px !important; /* ヘッダーの高さ分だけ中身を下に */
}