/* ============================================
   サイトの修理代行 — Generative Dark Design
   ============================================ */

:root {
  /* ベース */
  --bg: #07070c;
  --bg-2: #0c0c14;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-bright: rgba(255, 255, 255, 0.16);

  /* テキスト */
  --text: #f2f2f7;
  --text-dim: rgba(242, 242, 247, 0.62);
  --text-faint: rgba(242, 242, 247, 0.38);

  /* アクセント */
  --indigo: #6c6bff;
  --cyan: #28e0ff;
  --violet: #b36bff;
  --grad: linear-gradient(120deg, #6c6bff 0%, #28e0ff 50%, #b36bff 100%);
  --grad-soft: linear-gradient(120deg, #6c6bff, #b36bff);

  /* システム */
  --header-h: 76px;
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: optimizeQuality;
  image-rendering: -webkit-optimize-contrast;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
em {
  font-style: normal;
}

::selection {
  background: rgba(108, 107, 255, 0.4);
  color: #fff;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.container.narrow {
  max-width: 860px;
}

/* 英字見出し用フォント */
.logo-text,
.nav-en,
.label-en,
.hero-badge,
.stat-num,
.marquee,
.worry-num,
.service-index,
.flow-num,
.featured-badge,
.btn,
.footer-col h4,
.monitor-tag,
.hero-scroll span {
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
}

/* ============================================
   背景レイヤー（ジェネレーティブ）
   ============================================ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(108, 107, 255, 0.1), transparent 60%),
    radial-gradient(900px 700px at -10% 20%, rgba(40, 224, 255, 0.07), transparent 55%), var(--bg);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 40%, transparent 100%);
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.blob-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(108, 107, 255, 0.55), transparent 70%);
  animation: float1 22s ease-in-out infinite;
}
.blob-2 {
  width: 460px;
  height: 460px;
  top: 40%;
  left: -140px;
  background: radial-gradient(circle, rgba(40, 224, 255, 0.4), transparent 70%);
  animation: float2 26s ease-in-out infinite;
}
.blob-3 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: 10%;
  background: radial-gradient(circle, rgba(179, 107, 255, 0.35), transparent 70%);
  animation: float3 30s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-60px, 80px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(80px, -60px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-70px, -50px);
  }
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   ボタン
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
  white-space: nowrap;
}
.btn-arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--grad-soft);
  color: #fff;
  box-shadow: 0 8px 28px rgba(108, 107, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(108, 107, 255, 0.5);
}

.btn-line {
  background: transparent;
  color: var(--text);
  border-color: var(--border-bright);
}
.btn-line:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 15px;
}

/* ============================================
   ヘッダー
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    border-color 0.4s,
    height 0.4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  height: 64px;
  background: rgba(7, 7, 12, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--grad);
  box-shadow: 0 0 18px rgba(108, 107, 255, 0.6);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 4px;
  background: var(--bg);
}
.logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: 4px;
}
.nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 8px 16px;
  border-radius: 10px;
  transition: background 0.3s;
}
.nav a:hover {
  background: var(--surface);
}
.nav-en {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.nav-jp {
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

.nav-cta {
  font-size: 13px;
  padding: 11px 22px;
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  padding: 0 11px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 7, 12, 0.96);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 320px;
}
.mobile-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 26px;
  font-weight: 700;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.3s,
    padding 0.3s;
}
.mobile-link span {
  font-family: "Space Grotesk";
  font-size: 13px;
  color: var(--indigo);
}
.mobile-link:hover {
  color: var(--cyan);
  padding-left: 32px;
}
.mobile-cta {
  width: 100%;
  max-width: 320px;
  padding: 17px;
}

/* ============================================
   ヒーロー
   ============================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 90px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  width: 100%;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-art {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: 84%;
  border-radius: 50%;
  filter: blur(2px) saturate(120%);
  opacity: 0.5;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle, #000 50%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle, #000 50%, transparent 72%);
  animation: spin 60s linear infinite;
}
.hero-orb {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid var(--border-bright);
  box-shadow: inset 0 0 80px rgba(108, 107, 255, 0.25);
}
.hero-orb::before,
.hero-orb::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--cyan);
  border-right-color: rgba(108, 107, 255, 0.5);
  animation: spin 8s linear infinite;
}
.hero-orb::after {
  inset: 40px;
  border-top-color: var(--violet);
  animation-duration: 12s;
  animation-direction: reverse;
}
@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 30px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(40, 224, 255, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 224, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(40, 224, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 224, 255, 0);
  }
}

.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
}
.hero-title em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-title .mini {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-dim);
  position: relative;
}

.hero-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-dim);
  margin-bottom: 38px;
  max-width: 560px;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-note {
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 36px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, #fff, #b9b9d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-faint);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--cyan), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--cyan);
  animation: scrolldown 2s var(--ease) infinite;
}
@keyframes scrolldown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(250%);
  }
}

/* ============================================
   マーキー
   ============================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.marquee-track .dot {
  color: var(--indigo);
  font-size: 12px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   セクション共通
   ============================================ */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.section-head {
  margin-bottom: 64px;
}
.section-label {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.label-en {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  position: relative;
  padding-left: 26px;
}
.label-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--cyan);
}
.label-jp {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.section-title {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.section-title em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* スクロールリビール */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================
   お悩み
   ============================================ */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.worry-card {
  position: relative;
  padding: 38px 32px 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s,
    background 0.4s;
}
.worry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(108, 107, 255, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
}
.worry-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  background: var(--surface-2);
}
.worry-card:hover::before {
  opacity: 1;
}
.worry-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--indigo);
  margin-bottom: 18px;
}
.worry-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
}
.worry-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.85;
}

/* ============================================
   対応範囲
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.service-card {
  padding: 32px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s,
    box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 107, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.service-index {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--grad-soft);
  padding: 5px 11px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.service-card li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 14px;
  color: var(--text-dim);
}
.service-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-family: "Space Grotesk";
}

.service-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto;
}
.platform-label {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.platform-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.platform-tags span {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.platform-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 12px;
}

/* ============================================
   料金
   ============================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 26px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s;
}
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
}
.price-card.featured {
  background: linear-gradient(170deg, rgba(108, 107, 255, 0.14), rgba(40, 224, 255, 0.05));
  border-color: rgba(108, 107, 255, 0.5);
  box-shadow: 0 20px 60px rgba(108, 107, 255, 0.22);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--grad);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-soft);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(108, 107, 255, 0.45);
  white-space: nowrap;
}
.plan-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 6px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 8px;
}
.plan-price .num {
  font-size: 38px;
  font-weight: 700;
  font-family: "Space Grotesk";
  background: linear-gradient(120deg, #fff, #c7c7e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan-price .unit {
  font-size: 15px;
  color: var(--text-dim);
}
.plan-desc {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 24px;
  min-height: 2.6em;
}
.plan-list {
  margin-bottom: 28px;
  flex: 1 0 auto;
}
.plan-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 13px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.plan-list li:last-child {
  border-bottom: none;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.plan-cta {
  width: 100%;
}

.urgent-banner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 32px;
  background: linear-gradient(120deg, rgba(179, 107, 255, 0.12), rgba(108, 107, 255, 0.06));
  border: 1px solid rgba(179, 107, 255, 0.3);
  border-radius: var(--radius-lg);
  margin-top: 24px;
}
.urgent-icon {
  font-size: 26px;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.urgent-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.urgent-title {
  font-size: 16px;
  font-weight: 700;
}
.urgent-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.7;
}
.urgent-price {
  font-size: 22px;
  font-weight: 700;
  font-family: "Space Grotesk";
  color: var(--violet);
  flex-shrink: 0;
}

.price-foot {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-faint);
  margin-top: 22px;
}

/* ============================================
   単発メニュー
   ============================================ */
.section-desc {
  font-size: 14.5px;
  color: var(--text-dim);
  margin-top: 16px;
  max-width: 720px;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}

.single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.single-category {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.single-category h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.single-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease);
}
.single-item:hover {
  border-color: var(--border-bright);
  transform: translateX(3px);
}
.item-name {
  font-size: 14px;
  color: var(--text-dim);
}
.item-price {
  font-size: 16px;
  font-weight: 700;
  font-family: "Space Grotesk";
}
.single-note {
  text-align: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.single-note p {
  font-size: 13px;
  color: var(--text-faint);
  margin: 3px 0;
}
.single-note strong {
  color: var(--cyan);
}

/* 単発 vs パック ブリッジ */
.savings-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 32px;
  margin-bottom: 40px;
  background: linear-gradient(120deg, rgba(40, 224, 255, 0.06), rgba(108, 107, 255, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.sb-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sb-label {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.sb-val {
  font-size: 20px;
  font-weight: 700;
  font-family: "Space Grotesk";
}
.sb-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.sb-tag.bad {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-faint);
}
.sb-tag.good {
  background: var(--grad-soft);
  color: #fff;
}
.sb-arrow {
  font-size: 26px;
  color: var(--cyan);
  font-family: "Space Grotesk";
}

/* お得バッジ（プランカード） */
.plan-off {
  margin-left: auto;
  align-self: center;
  font-size: 11px;
  font-weight: 700;
  font-family: "Space Grotesk";
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(40, 224, 255, 0.14);
  color: var(--cyan);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.price-card.featured .plan-off {
  background: var(--grad-soft);
  color: #fff;
}

/* ============================================
   比較
   ============================================ */
.compare {
  overflow: hidden;
}
.compare-bg {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 60%;
  max-width: 780px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle, #000 28%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle, #000 28%, transparent 68%);
}
.compare-bg img {
  width: 100%;
  border-radius: 50%;
  filter: grayscale(0.8) brightness(0.6) hue-rotate(180deg);
}
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(10px);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}
.compare-table thead th {
  padding: 24px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th.ours {
  color: #fff;
  background: linear-gradient(180deg, rgba(108, 107, 255, 0.25), rgba(108, 107, 255, 0.08));
  position: relative;
}
.compare-table thead th.ours::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad);
}
.compare-table tbody td {
  padding: 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table .row-label {
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  padding-left: 26px;
}
.compare-table td.ours {
  background: rgba(108, 107, 255, 0.06);
}
.mark {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
}
.mark.o {
  background: rgba(40, 224, 255, 0.14);
  color: var(--cyan);
}
.mark.t {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
}
.mark.x {
  background: rgba(255, 255, 255, 0.03);
  color: #ff6b6b;
}

.compare-table .pain-point {
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.05), transparent);
  border-left: 2px solid rgba(255, 107, 107, 0.3);
}

.compare-table .pain-point .row-label {
  font-weight: 600;
  color: var(--text);
}

/* ============================================
   流れ
   ============================================ */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.flow-step {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s;
}
.flow-step:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}
.flow-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  color: var(--cyan);
  margin-bottom: 20px;
}
.flow-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.flow-step p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ============================================
   担当者
   ============================================ */
.profile-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
}
.profile-photo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.photo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--indigo), var(--cyan), var(--violet), var(--indigo));
  animation: spin360 6s linear infinite;
  filter: blur(2px);
}
@keyframes spin360 {
  to {
    transform: rotate(360deg);
  }
}
.profile-photo {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--bg);
}
.profile-name {
  font-size: 24px;
  font-weight: 700;
}
.profile-name span {
  font-size: 16px;
  color: var(--text-dim);
}
.profile-role {
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 18px;
}
.profile-text p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.95;
  margin-bottom: 10px;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.profile-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.monitor-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  background: linear-gradient(120deg, rgba(40, 224, 255, 0.08), transparent);
  border: 1px solid var(--border);
  border-left: 2px solid var(--cyan);
  border-radius: var(--radius);
}
.monitor-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--cyan);
  color: var(--bg);
  flex-shrink: 0;
}
.monitor-note p {
  font-size: 14px;
  color: var(--text-dim);
}
.monitor-note strong {
  color: var(--text);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--border-bright);
  background: var(--surface-2);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
}
.faq-ico {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-ico::before,
.faq-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cyan);
  transition: transform 0.3s var(--ease);
}
.faq-ico::before {
  width: 16px;
  height: 2px;
}
.faq-ico::after {
  width: 2px;
  height: 16px;
}
.faq-q[aria-expanded="true"] .faq-ico::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p {
  padding: 0 28px 26px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.95;
}
.faq-a strong {
  color: var(--text);
}

/* ============================================
   お問い合わせ
   ============================================ */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.contact-lead {
  padding: 56px 48px;
  background: linear-gradient(170deg, rgba(108, 107, 255, 0.12), transparent 70%);
  border-right: 1px solid var(--border);
}
.contact-lead .section-label {
  margin-bottom: 24px;
}
.contact-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.contact-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 36px;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}
.contact-direct {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.contact-direct h3 {
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.tel-link {
  display: block;
  font-size: 30px;
  font-weight: 700;
  font-family: "Space Grotesk";
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.tel-hours {
  font-size: 12px;
  color: var(--text-faint);
  display: block;
  margin-bottom: 16px;
}
.mail-link {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.3s;
  word-break: break-all;
}
.mail-link:hover {
  color: var(--cyan);
}
.mail-lg {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  display: inline-block;
  margin-bottom: 8px;
}

.contact-form {
  padding: 56px 48px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.req {
  color: var(--cyan);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
  font-size: 13px;
}
.field select option {
  background: var(--bg-2);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(108, 107, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.btn-submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px;
  font-size: 15px;
}

.form-message {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-message.success {
  background: rgba(40, 224, 255, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(40, 224, 255, 0.3);
}
.form-message.error {
  background: rgba(255, 107, 107, 0.12);
  color: #ff8585;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

/* ============================================
   フッター
   ============================================ */
.footer {
  position: relative;
  z-index: 2;
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-mark {
  margin-bottom: 16px;
}
.footer-name {
  font-size: 18px;
  font-weight: 700;
  font-family: "Space Grotesk";
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-faint);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-info {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer-info p {
  font-size: 12.5px;
  color: var(--text-faint);
}
.footer-bottom {
  padding-top: 20px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-faint);
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 1024px) {
  .hero-visual {
    width: 50%;
    opacity: 0.6;
  }
  .hero-orb {
    width: 300px;
    height: 300px;
  }
  .worry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
  .contact-lead {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }
  .container {
    padding: 0 20px;
  }
  .nav,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-h) + 50px);
    min-height: auto;
    text-align: left;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
    width: 100%;
  }
  .stat-num {
    font-size: 24px;
  }
  .hero-scroll {
    display: none;
  }

  .marquee-track span {
    font-size: 18px;
  }

  .section {
    padding: 80px 0;
  }
  .section-head {
    margin-bottom: 44px;
  }

  .worry-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .single-grid {
    grid-template-columns: 1fr;
  }
  .savings-bridge {
    gap: 14px;
    padding: 22px;
  }
  .sb-arrow {
    transform: rotate(90deg);
  }

  .urgent-banner {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }

  .profile-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
    text-align: center;
  }
  .profile-photo-wrap {
    width: 160px;
    height: 160px;
  }
  .profile-photo,
  .photo-ring {
    width: 160px;
    height: 160px;
  }
  .profile-tags {
    justify-content: center;
  }
  .profile-role {
    text-align: center;
  }

  .contact-lead,
  .contact-form {
    padding: 36px 26px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .monitor-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* モーション軽減設定 */
/* ============================================
   安心ポイント
   ============================================ */
.trust-points {
  margin-top: 48px;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.trust-points h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.trust-icon {
  font-size: 32px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.trust-content p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Response Options (通常対応・緊急対応分離)
   ============================================ */
.response-options {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.response-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
}

.response-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.response-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
}

.response-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-bright);
}

.response-card.urgent {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.03), var(--surface));
  border-color: rgba(255, 204, 0, 0.15);
}

.response-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.response-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.response-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.1em;
}

.standard-badge {
  background: var(--surface-2);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.urgent-badge {
  background: #ffcc00;
  color: #333;
}

.response-timing {
  margin-bottom: 20px;
}

.timing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.timing-item:last-child {
  border-bottom: none;
}

.timing-label {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}

.timing-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.response-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  margin-bottom: 16px;
}

.price-label {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}

.price-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
}

.urgent .price-value {
  color: #ff8800;
}

.response-note {
  margin-top: 16px;
}

.response-note p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 4px 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .response-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .response-card {
    padding: 20px;
  }

  .response-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .response-name {
    font-size: 16px;
  }
}

/* ============================================
   Monitor Program (モニター制度)
   ============================================ */
.monitor-program {
  margin-top: 56px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), rgba(255, 165, 0, 0.05));
  border: 2px solid rgba(255, 204, 0, 0.2);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.monitor-program::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffcc00, #ff8800);
}

.monitor-header {
  text-align: center;
  margin-bottom: 36px;
}

.monitor-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.monitor-icon {
  font-size: 28px;
}

.monitor-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  background: #ffcc00;
  color: #333;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.monitor-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.monitor-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.monitor-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 204, 0, 0.15);
  border-radius: var(--radius);
}

.benefit-icon {
  font-size: 32px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-text p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

.benefit-text strong {
  color: #ff8800;
  font-weight: 700;
}

.monitor-conditions {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.conditions-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

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

.conditions-list li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.conditions-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-weight: 700;
}

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

.btn-monitor {
  background: linear-gradient(135deg, #ffcc00, #ff8800);
  color: #333;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  margin-bottom: 12px;
}

.btn-monitor:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
  text-decoration: none;
  color: #333;
}

.monitor-note {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .monitor-program {
    margin-top: 40px;
    padding: 28px 24px;
  }

  .monitor-title {
    flex-direction: column;
    gap: 8px;
    font-size: 20px;
  }

  .monitor-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .monitor-benefit {
    padding: 16px;
  }

  .monitor-conditions {
    padding: 20px;
  }

  .btn-monitor {
    font-size: 15px;
    padding: 14px 28px;
  }
}

/* モーション軽減設定 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
