/* =========================================================
   01. Global Font
========================================================= */

:root {
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
               "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

body {
  font-family: var(--font-base);
}


/* =========================================================
   02. Common Utility
========================================================= */

/* ガラス風ボックス */
.glass-box {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* PC/SP画像切り替え */
.img-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .img-pc {
    display: none;
  }

  .img-sp {
    display: block;
  }
}

/* 視覚的に非表示にするが、構造上は残す */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   03. Image Interaction Guard
========================================================= */

/* 画像を触れなくする：オーバーレイ方式 */
.no-interact {
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}

/* 画像自体の保護 */
.no-interact img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}

/* 透明のフタ */
.no-interact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-x pan-y;
}


/* =========================================================
   04. WordPress / Theme Parts
========================================================= */

/* パンくずリストの非表示 */
.p-breadcrumb,
.c-breadcrumb,
.breadcrumb,
#breadcrumb {
  display: none !important;
}


/* =========================================================
   05. v2 Standalone Pages
   page-id-2494 / page-id-2514
========================================================= */

/* ヘッダー・フッター・メニュー非表示 */
body.page-id-2494 #header,
body.page-id-2494 .l-header,
body.page-id-2494 .p-header,
body.page-id-2494 .c-gnav,
body.page-id-2494 .p-gnav,
body.page-id-2494 .l-footer,
body.page-id-2494 #footer,
body.page-id-2494 .p-footer,
body.page-id-2494 .c-overlay-header,
body.page-id-2494 .p-spMenu,
body.page-id-2494 .p-spMenuBtn,
body.page-id-2494 header,
body.page-id-2494 footer,
body.page-id-2514 #header,
body.page-id-2514 .l-header,
body.page-id-2514 .p-header,
body.page-id-2514 .c-gnav,
body.page-id-2514 .p-gnav,
body.page-id-2514 .l-footer,
body.page-id-2514 #footer,
body.page-id-2514 .p-footer,
body.page-id-2514 .c-overlay-header,
body.page-id-2514 .p-spMenu,
body.page-id-2514 .p-spMenuBtn,
body.page-id-2514 header,
body.page-id-2514 footer {
  display: none !important;
}

/* コンテンツ幅を全画面化 */
body.page-id-2494 .l-content,
body.page-id-2494 .l-main,
body.page-id-2494 .l-container,
body.page-id-2494 .c-container,
body.page-id-2494 main,
body.page-id-2514 .l-content,
body.page-id-2514 .l-main,
body.page-id-2514 .l-container,
body.page-id-2514 .c-container,
body.page-id-2514 main {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* =========================================================
   06. Focus Bridge Page
   診断と新ブランドをつなぐ世界観ページ
========================================================= */

/* ここから下は .focus-bridge 専用なので、既存のまままとめて配置 */


/* =========================================================
   Focus Bridge Page
   診断と新ブランドをつなぐ世界観ページ
========================================================= */

.focus-bridge {
  --fb-bg-1: #071019;
  --fb-bg-2: #102637;
  --fb-bg-3: #17364d;
  --fb-accent: #7fb8c9;
  --fb-accent-2: #dcefed;
  --fb-glow: rgba(127, 184, 201, 0.24);

  --fb-ink: #f4f7f2;
  --fb-ink-soft: rgba(244, 247, 242, 0.78);
  --fb-ink-muted: rgba(244, 247, 242, 0.56);

  --fb-glass: rgba(255, 255, 255, 0.074);
  --fb-glass-strong: rgba(255, 255, 255, 0.112);
  --fb-border: rgba(220, 239, 237, 0.18);
  --fb-border-strong: rgba(220, 239, 237, 0.34);

  --fb-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --fb-shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.24);

  position: relative;
  overflow: hidden;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: var(--fb-ink);
  background:
    radial-gradient(circle at 18% 8%, color-mix(in srgb, var(--fb-accent-2) 16%, transparent), transparent 18%),
    radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--fb-accent) 22%, transparent), transparent 28%),
    radial-gradient(circle at 22% 78%, color-mix(in srgb, var(--fb-accent) 13%, transparent), transparent 32%),
    linear-gradient(145deg, var(--fb-bg-1) 0%, var(--fb-bg-2) 48%, var(--fb-bg-3) 100%);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    "Yu Gothic UI",
    "Noto Sans JP",
    sans-serif;
  isolation: isolate;
}

.focus-bridge,
.focus-bridge * {
  box-sizing: border-box;
}

.focus-bridge::before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 0%, color-mix(in srgb, var(--fb-accent-2) 15%, transparent), transparent 18%),
    radial-gradient(circle at 10% 64%, color-mix(in srgb, var(--fb-accent) 12%, transparent), transparent 24%),
    radial-gradient(circle at 92% 78%, var(--fb-glow), transparent 25%);
  filter: blur(12px);
  animation: fbAurora 22s ease-in-out infinite alternate;
}

.focus-bridge::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle, rgba(244, 247, 242, 0.18) 0 1px, transparent 1.4px),
    radial-gradient(circle, color-mix(in srgb, var(--fb-accent) 18%, transparent) 0 1px, transparent 1.6px);
  background-size: 54px 54px, 91px 91px;
  background-position: 0 0, 24px 31px;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 86%, transparent);
}

.focus-bridge a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.focus-bridge :where(h1, h2, h3, p) {
  margin-top: 0;
}

.focus-bridge .fb-wrap {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 20px clamp(72px, 10vw, 140px);
}

.focus-bridge .fb-section {
  position: relative;
  z-index: 1;
  margin: 0 auto clamp(88px, 10vw, 148px);
}

.focus-bridge .fb-section:last-child {
  margin-bottom: 0;
}

/* -------------------------
   共通テキスト
------------------------- */

.focus-bridge .fb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid var(--fb-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--fb-accent-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.focus-bridge .fb-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--fb-accent-2);
  box-shadow: 0 0 18px color-mix(in srgb, var(--fb-accent-2) 72%, transparent);
}

.focus-bridge .fb-title {
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--fb-ink);
  font-size: clamp(42px, 8vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.08em;
  font-weight: 950;
  text-wrap: balance;
  text-shadow: 0 0 34px color-mix(in srgb, var(--fb-accent-2) 13%, transparent);
}

.focus-bridge .fb-heading {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--fb-ink);
  font-size: clamp(27px, 4.6vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.055em;
  font-weight: 950;
  text-wrap: balance;
  text-shadow: 0 0 28px color-mix(in srgb, var(--fb-accent-2) 10%, transparent);
}

.focus-bridge .fb-lead {
  max-width: 760px;
  color: var(--fb-ink-soft);
  font-size: clamp(15px, 2.1vw, 18px);
  line-height: 2.15;
  font-weight: 520;
  letter-spacing: 0.01em;
}

.focus-bridge .fb-text {
  max-width: 760px;
  color: var(--fb-ink-soft);
  font-size: 15.5px;
  line-height: 2.08;
  font-weight: 520;
  letter-spacing: 0.01em;
}

.focus-bridge .fb-small {
  color: var(--fb-ink-muted);
  font-size: 12px;
  line-height: 1.9;
  font-weight: 560;
}

/* -------------------------
   Hero
------------------------- */

.focus-bridge .fb-hero {
  min-height: min(760px, 86svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.focus-bridge .fb-hero::after {
  content: "";
  position: absolute;
  right: min(2vw, 24px);
  bottom: 8%;
  width: clamp(180px, 28vw, 380px);
  height: clamp(180px, 28vw, 380px);
  border-radius: 999px;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--fb-accent-2) 18%, transparent), var(--fb-glow) 38%, transparent 70%);
  filter: blur(3px);
  opacity: 0.88;
  pointer-events: none;
}

/* -------------------------
   ボタン
------------------------- */

.focus-bridge .wp-block-buttons {
  gap: 12px;
  margin-top: 32px;
}

.focus-bridge .wp-block-button__link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.focus-bridge .fb-button-primary .wp-block-button__link {
  border: 1px solid color-mix(in srgb, var(--fb-accent-2) 44%, transparent);
  background: linear-gradient(135deg, var(--fb-accent-2), var(--fb-accent));
  color: #0c1715;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 24px var(--fb-glow);
}

.focus-bridge .fb-button-secondary .wp-block-button__link {
  border: 1px solid var(--fb-border);
  background: rgba(255, 255, 255, 0.066);
  color: var(--fb-ink);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.focus-bridge .wp-block-button__link:hover,
.focus-bridge .wp-block-button__link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  outline: none;
}

.focus-bridge .fb-button-primary .wp-block-button__link:hover,
.focus-bridge .fb-button-primary .wp-block-button__link:focus-visible {
  border-color: color-mix(in srgb, var(--fb-accent-2) 70%, transparent);
  box-shadow:
    0 19px 42px rgba(0, 0, 0, 0.32),
    0 0 34px var(--fb-glow);
}

.focus-bridge .fb-button-secondary .wp-block-button__link:hover,
.focus-bridge .fb-button-secondary .wp-block-button__link:focus-visible {
  background: rgba(255, 255, 255, 0.105);
}

/* -------------------------
   ガラスパネル
------------------------- */

.focus-bridge .fb-glass-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--fb-border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 74% 0%, color-mix(in srgb, var(--fb-accent-2) 15%, transparent), transparent 32%),
    radial-gradient(circle at 12% 100%, var(--fb-glow), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.045));
  box-shadow: var(--fb-shadow-soft);
  backdrop-filter: blur(20px);
}

.focus-bridge .fb-glass-panel::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--fb-accent-2) 17%, transparent), var(--fb-glow) 34%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.focus-bridge .fb-glass-panel > * {
  position: relative;
  z-index: 1;
}

/* -------------------------
   カード
------------------------- */

.focus-bridge .fb-card-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.focus-bridge .fb-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.focus-bridge .fb-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--fb-border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.040));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.focus-bridge .fb-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--fb-glow), transparent 68%);
}

.focus-bridge .fb-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--fb-ink);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.focus-bridge .fb-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--fb-ink-muted);
  font-size: 13.5px;
  line-height: 1.85;
  font-weight: 560;
}

/* -------------------------
   タイプ一覧
------------------------- */

.focus-bridge .fb-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.focus-bridge .fb-type-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.036));
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.focus-bridge .fb-type-card::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--fb-accent-2);
  box-shadow: 0 0 16px var(--fb-glow);
}

.focus-bridge .fb-type-card h3 {
  margin: 0 0 9px;
  color: var(--fb-ink);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.focus-bridge .fb-type-card p {
  margin: 0;
  color: var(--fb-ink-muted);
  font-size: 12.5px;
  line-height: 1.8;
  font-weight: 560;
}

.focus-bridge .fb-type-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--fb-accent-2) 36%, transparent);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.048));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22), 0 0 24px var(--fb-glow);
}

/* -------------------------
   思想・引用
------------------------- */

.focus-bridge .fb-philosophy {
  max-width: 920px;
}

.focus-bridge .fb-quote {
  position: relative;
  margin-top: 34px;
  padding: clamp(26px, 4vw, 42px);
  border-left: 1px solid color-mix(in srgb, var(--fb-accent-2) 42%, transparent);
  border-radius: 0 28px 28px 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--fb-accent) 13%, transparent), rgba(255, 255, 255, 0.038));
  color: var(--fb-accent-2);
  font-size: clamp(20px, 3.2vw, 34px);
  line-height: 1.65;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.focus-bridge .fb-quote p {
  margin: 0;
}

/* -------------------------
   学習サービス
------------------------- */

.focus-bridge .fb-service-card {
  margin-top: 28px;
}

.focus-bridge .fb-service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-bridge .fb-service-card li {
  position: relative;
  padding: 12px 14px 12px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.046);
  color: var(--fb-ink-soft);
  font-size: 13.5px;
  line-height: 1.75;
  font-weight: 680;
}

.focus-bridge .fb-service-card li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 21px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--fb-accent);
  box-shadow: 0 0 14px var(--fb-glow);
}

/* -------------------------
   最後の導線
------------------------- */

.focus-bridge .fb-final {
  margin-bottom: 0;
}

.focus-bridge .fb-final .fb-heading {
  max-width: 760px;
}

.focus-bridge .fb-final .fb-text {
  max-width: 720px;
}

/* -------------------------
   フェード演出
------------------------- */

.focus-bridge .fb-section {
  animation: fbFadeIn 560ms ease both;
}

.focus-bridge .fb-section:nth-child(2) {
  animation-delay: 80ms;
}

.focus-bridge .fb-section:nth-child(3) {
  animation-delay: 120ms;
}

.focus-bridge .fb-section:nth-child(4) {
  animation-delay: 160ms;
}

@keyframes fbFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.994);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes fbAurora {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(2%, 1%, 0) rotate(1deg);
  }
}

/* -------------------------
   スマホ調整
------------------------- */

@media (max-width: 900px) {
  .focus-bridge .fb-card-grid-3 {
    grid-template-columns: 1fr;
  }

  .focus-bridge .fb-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .focus-bridge .fb-wrap {
    padding: 42px 14px 72px;
  }

  .focus-bridge .fb-hero {
    min-height: 82svh;
  }

  .focus-bridge .fb-title {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.04;
  }

  .focus-bridge .fb-heading {
    font-size: clamp(25px, 8vw, 38px);
  }

  .focus-bridge .fb-lead,
  .focus-bridge .fb-text {
    font-size: 14.5px;
    line-height: 1.95;
  }

  .focus-bridge .fb-glass-panel {
    padding: 26px 18px;
    border-radius: 26px;
  }

  .focus-bridge .fb-card {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .focus-bridge .fb-type-grid {
    grid-template-columns: 1fr;
  }

  .focus-bridge .fb-type-card {
    min-height: auto;
  }

  .focus-bridge .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .focus-bridge .wp-block-button,
  .focus-bridge .wp-block-button__link {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .focus-bridge .fb-title {
    letter-spacing: -0.075em;
  }

  .focus-bridge .fb-kicker {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .focus-bridge,
  .focus-bridge *,
  .focus-bridge *::before,
  .focus-bridge *::after {
    transition: none !important;
    animation: none !important;
  }
}



```css
/* =========================
   HAVEIT 授業料セクション
   WordPressブロック用・全面差し替え版
========================= */

/* ---------- セクション全体 ---------- */

.hv-price-section {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 28px 76px;
  background:
    radial-gradient(circle at 50% 42%,
      rgba(255,255,255,0.72) 0 9%,
      rgba(255,255,255,0.18) 10% 22%,
      rgba(255,255,255,0.30) 23% 34%,
      rgba(255,255,255,0.10) 35% 48%,
      rgba(255,255,255,0.24) 49% 62%,
      rgba(255,255,255,0) 63% 100%),
    linear-gradient(135deg, #edf5fa 0%, #dfe9f0 55%, #f7fafc 100%);
}

.hv-price-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(124, 178, 212, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,0.38), rgba(255,255,255,0));
  pointer-events: none;
}

.hv-price-section > * {
  position: relative;
  z-index: 1;
}

/* ---------- セクション見出し ---------- */

.hv-price-title {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #008abd;
}

.hv-price-title::after {
  content: "PRICE";
  margin-left: 0.45em;
  color: rgba(0, 138, 189, 0.08);
  font-size: 1.35em;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hv-price-lead {
  max-width: 720px;
  margin: 12px auto 40px;
  text-align: center;
  color: #66717a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

/* ---------- 学年ブロック ---------- */

.hv-price-grade-block {
  max-width: 960px;
  margin: 0 auto;
}

.hv-price-grade {
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(22px, 2.7vw, 32px);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #50575d;
}

/* ---------- カラム ---------- */

.hv-price-columns {
  gap: 34px !important;
  align-items: stretch !important;
}

.hv-price-columns > .wp-block-column {
  display: flex;
}

/* ---------- カード ---------- */

.hv-price-card {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 390px;
  padding: 38px 36px 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 18px 44px rgba(64, 96, 120, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.hv-price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.70), rgba(255,255,255,0.18));
  pointer-events: none;
}

.hv-price-card > * {
  position: relative;
  z-index: 1;
}

/* ---------- カード内テキスト ---------- */

.hv-plan-name {
  margin: 0 0 22px !important;
  text-align: center;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: 0.045em;
}

.hv-price-label {
  margin: 0 0 6px !important;
  text-align: center;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 780;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.hv-price-main {
  margin: 0 0 28px !important;
  text-align: center;
  font-size: clamp(48px, 5.6vw, 72px);
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

/* 週1・週2の色 */

.hv-plan-light .hv-plan-name,
.hv-plan-light .hv-price-label,
.hv-plan-light .hv-price-main {
  color: #82bddb;
}

.hv-plan-deep .hv-plan-name,
.hv-plan-deep .hv-price-label,
.hv-plan-deep .hv-price-main {
  color: #3f5fb2;
}

/* ---------- 教科帯 ---------- */

.hv-subject {
  max-width: 400px;
  margin: 0 auto 28px !important;
  padding: 14px 20px;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 820;
  line-height: 1.42;
  letter-spacing: 0.035em;
  box-shadow: 0 10px 24px rgba(65, 100, 150, 0.14);
}

.hv-plan-light .hv-subject {
  background: linear-gradient(90deg, rgba(198, 227, 242, 0.90), rgba(125, 190, 222, 0.92));
}

.hv-plan-deep .hv-subject {
  background: linear-gradient(90deg, rgba(60, 89, 181, 0.95), rgba(113, 181, 223, 0.94));
}

/* ---------- 詳細行 ---------- */

.hv-price-detail {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 0 !important;
  padding: 15px 2px;
  border-top: 1px solid rgba(80, 94, 105, 0.22);
}

.hv-price-detail:last-child {
  border-bottom: 1px solid rgba(80, 94, 105, 0.22);
}

.hv-price-detail p {
  margin: 0 !important;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 740;
  line-height: 1.45;
}

.hv-price-detail p:first-child {
  color: #858c92;
  text-align: left;
}

.hv-price-detail p:last-child {
  color: #4f565c;
  text-align: right;
  white-space: nowrap;
}

/* ---------- 1枚カード用 ---------- */

.hv-price-card-single {
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- WordPress余白干渉対策 ---------- */

.hv-price-card > * + *,
.hv-price-detail > * + * {
  margin-top: 0 !important;
}

/* =========================
   スマホ調整
========================= */

@media (max-width: 781px) {
  .hv-price-section {
    max-width: none;
    padding: 34px 14px 46px;
  }

  .hv-price-title {
    font-size: 32px;
  }

  .hv-price-title::after {
    display: block;
    margin: -4px 0 0;
    font-size: 1.05em;
  }

  .hv-price-lead {
    margin: 10px auto 28px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hv-price-grade {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .hv-price-columns {
    display: block !important;
  }

  .hv-price-columns > .wp-block-column {
    display: block;
    width: 100% !important;
    margin: 0 0 28px !important;
  }

  .hv-price-columns > .wp-block-column:last-child {
    margin-bottom: 0 !important;
  }

  .hv-price-card {
    min-height: auto;
    padding: 34px 24px 28px;
    border-radius: 28px;
  }

  .hv-plan-name {
    margin-bottom: 22px !important;
    font-size: 34px;
    line-height: 1.28;
    font-weight: 800;
  }

  .hv-price-label {
    margin-bottom: 6px !important;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 760;
  }

  .hv-price-main {
    margin-bottom: 26px !important;
    font-size: 54px;
    line-height: 1.08;
    font-weight: 800;
  }

  .hv-subject {
    max-width: none;
    margin-bottom: 26px !important;
    padding: 13px 18px;
    font-size: 22px;
    line-height: 1.38;
    font-weight: 800;
  }

  .hv-price-detail {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 15px 2px;
  }

  .hv-price-detail p {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 720;
  }
}

/* =========================
   小さめスマホ
========================= */

@media (max-width: 420px) {
  .hv-price-section {
    padding: 30px 12px 42px;
  }

  .hv-price-card {
    padding: 32px 22px 26px;
  }

  .hv-plan-name {
    font-size: 32px;
  }

  .hv-price-main {
    font-size: 50px;
  }

  .hv-subject {
    font-size: 21px;
  }

  .hv-price-detail p {
    font-size: 15.5px;
  }
}

/* =========================
   かなり狭い端末
========================= */

@media (max-width: 360px) {
  .hv-price-card {
    padding: 30px 18px 24px;
  }

  .hv-plan-name {
    font-size: 30px;
  }

  .hv-price-main {
    font-size: 46px;
  }

  .hv-subject {
    font-size: 20px;
  }

  .hv-price-detail {
    gap: 10px;
  }

  .hv-price-detail p {
    font-size: 14.5px;
  }
}
```