/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00A586;
  --primary-dark: #007A64;
  --primary-deep: #005A4A;
  --primary-light: #E6F7F3;
  --primary-mid: #B3E8DC;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --bg: #FFF;
  --bg-subtle: #F1F5F9;
  --bg-dark: #0F1A18;
  --amber: #92400E;
  --amber-bg: #FFFBEB;
  --amber-border: #FDE68A;
  --red: #DC2626;
  --red-bg: #FEF2F2;
  --red-border: #FECACA;
  --blue: #1D4ED8;
  --blue-bg: #EFF6FF;
  --blue-border: #BFDBFE;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgb(0 0 0 / 8%), 0 4px 16px rgb(0 0 0 / 6%);
  --shadow-md: 0 4px 24px rgb(0 0 0 / 10%);
}

html {
  font-size: 16px;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Grid texture utility ── */
.grid-bg {
  background-image:
    linear-gradient(rgb(0 165 134 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 165 134 / 4%) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding: 40px 0 28px;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
    max-width: 1160px;
    margin: 0 auto;
      padding: 0 24px;
}

.footer-logo img {
  height: 24px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgb(255 255 255 / 45%);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: rgb(255 255 255 / 75%);
}

.footer-copy {
  font-size: 12px;
  color: rgb(255 255 255 / 30%);
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 28px;
}

/* ==========================================================================
   1. ナビゲーションの配置用（nav固有のスタイル）
   ========================================================================== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ナビの中のリンク共通の文字スタイル */
.nav-links a:not(.nav-cta) {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}


.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

/* ==========================================================================
   2. 【共通パーツ】どこでも使える下線アニメーション
   ========================================================================== */
.hover-underline {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color .1s;
}

/* ホバー時の文字色 */
.hover-underline:hover {
  color: var(--primary);
}

/* 下線の初期状態 */
.hover-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  opacity: 0;
  background-color: var(--primary);
  transition: width 0.1s ease, left 0.1s ease, opacity 0.1s ease; /* opacityのtransition漏れを修正 */
}

/* ホバー時に広げる */
.hover-underline:hover::after {
  width: 100%;
  left: 0;
  opacity: 1;
}


/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgb(0 165 134 / 30%);
  min-width: 246px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgb(0 165 134 / 40%);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  min-width: 246px;
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgb(255 255 255 / 12%);
  color: #fff;
  border: 1.5px solid rgb(255 255 255 / 30%);
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 20%);
}

/* ── Section labels ── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── HERO ── */
.hero {
  padding: 40px 0 60px;

  /* text-align: center; */
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 16px;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p.sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.trust-note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-note svg {
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 24px 48px rgb(0 0 0 / 18%));
  border-radius: 8px;
}

/* ── PAIN ── */
.pain {
  padding: 80px 0;
  background: #d4d9e1;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.faq-more {
  text-align: center;
  margin: 40px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pain-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-mid));
}

.pain-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.pain-card h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.pain-explain {
  text-align: center;
  margin-top: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.pain-explain p {
  font-size: 16px;
  color: var(--text-muted);
}

.pain-explain strong {
  color: var(--text);
}

/* ── HOW IT WORKS ── */
.how {
  padding: 80px 0;
}

.how-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.flow-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.flow-icon.gdrive {
  background: #E8F4FF;
}

.flow-icon.tool {
  background: var(--primary-light);
}

.flow-icon.sheets {
  background: #E8F7E8;
}

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

.flow-node .flow-sublabel {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -8px;
}

.flow-arrow {
  font-size: 28px;
  color: var(--primary);
  padding: 0 24px;
  font-weight: 300;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}


/* ── FEATURES ── */
.features {
  padding: 80px 0;
  background: var(--bg-subtle);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.feat-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

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

.feat-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.perf-block {
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.perf-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.perf-rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.perf-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.perf-count {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.perf-bar-wrap {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.perf-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 99px;
}

.perf-time {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.perf-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── SCREENSHOTS ── */
.screenshots {
  padding: 80px 0;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.screenshot-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.screenshot-placeholder {
  background: var(--primary-light);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.screenshot-item.main-shot {
  grid-column: 1 / -1;
}

.screenshot-item.main-shot .screenshot-placeholder {
  aspect-ratio: auto;
  min-height: 340px;
}

.screenshot-item.main-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-placeholder span {
  font-size: 28px;
}

.screenshot-placeholder p {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
}

.screenshot-label {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
}

/* ── PRICING ── */
.pricing {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgb(0 165 134 / 8%);
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.price-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 6px;
}

.price-now {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.price-was {
  font-size: 18px;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-launch {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.price-features>li {
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-features>li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.price-features li.muted {
  color: var(--text-muted);
}

.price-btn {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: auto;
}

.use-case-grid {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  margin-top: 48px;
}

.use-case-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.use-case-text p {
   font-size: 14.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }


.use-case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: column;
}

/* ── USE CASES ── */
.usecases {
  padding: 72px 0;
  background: var(--bg-subtle);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.use-card {
  background: #ffffff75;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.use-icon {
  font-size: 26px;
  flex-shrink: 0;
}

.use-card h3 {
  font-size: 15px;
  font-weight: 600;
}

/* ── FAQ ── */
.faq {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  background: var(--bg-subtle);
}

.faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── TRUST ── */
.trust {
  padding: 72px 0;
  background: var(--primary-light);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.trust p {
  font-size: 16px;
  color: var(--text-muted);
}

.trust-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
}

.trust-points li .ticon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

/* ── DISCLAIMER ── */
.disclaimer {
  background: #F1F5F9;
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.disclaimer p {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(0 165 134 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 165 134 / 7%) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* 追加: 底辺からの緑のグラデーション */
.final-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px; /* グラデーションの高さ */
  background: linear-gradient(to top, rgb(0 165 134 / 40%), transparent);
  pointer-events: none; /* クリックを邪魔しないようにする */
  z-index: 1;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: rgb(255 255 255 / 65%);
  margin-bottom: 36px;
}

.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Dark mode ── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F1A18;
    --bg-subtle: #141F1D;
    --text: #F1F5F4;
    --text-muted: #8B9E9B;
    --text-light: #5C726E;
    --border: #1F302D;
    --primary-light: #0D2420;
  }
  

  nav {
    background: rgb(15 26 24 / 92%);
  }

  .pain{
background: #323937;
      }
      
  .pain-card,
  .feat-card,
  .price-card,
  .step-card,
  .use-card,
  .faq-item,
  .perf-block {
    background: #141F1D;
  }

  .screenshot-placeholder {
    background: #0D2420;
  }

  .disclaimer {
    background: #0A1210;
  }
}

/* Notice Block */

.notice-container {
  background: var(--bg-subtle);
  }


.notice-block {
  padding: 16px 20px;
  margin-top: 0;
  background: var(--bg-subtle);
  display: flex;          /* コンテンツを制御するため */
  justify-content: center; /* 横方向に中央寄せ */
  flex-direction: column;
  gap: 8px;
  max-width: 760px;  /* コンテンツ領域の最大幅を760pxに制限 */
  width: 100%;       /* 画面幅が760pxより小さいときは画面いっぱいに広げる（レスポンシブ対応） */
  margin-left: auto; /* 左右の余白を自動調整して中央揃えにする */
  margin-right: auto;
}

.notice-block p {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.6;
  width: 100%;            /* 狭い画面でも柔軟に対応 */
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  .notice-block {
    background: #0A1210;
  }
}

 #drive-heroimage {
position: absolute;
    top: 37%;
    left: 61%;
    transform: translate(-50%, -50%);
    width: 43%;
    height: auto;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    box-shadow: 10px 10px 50px rgb(19 81 70 / 40%);
  }



/* ── Mobile ── */
@media (width >= 600px) {
  .hero-container {
    padding-right: 0;
  }
}

@media (width <= 900px) {
  #drive-heroimage {
    position: absolute;
    top: 21%;
    left: 31%;
        width: 66%;

    }

  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 32px;
    width: 100%;
  }

  .hero-grid {
     grid-template-columns: none; 
         gap: 56px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .perf-rows {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .use-grid, .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }




  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (width <= 600px) {
    #drive-heroimage {
top: 12%;
    left: 30%;
    width: 55%;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .perf-rows {
    grid-template-columns: 1fr;
  }

    .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .use-grid, .use-case-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mockup-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgb(70 146 122 / 18%));
}

.mockup-frame {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.mockup-video {
  position: absolute;
  top: 3.3%;
  left: 10.25%;
  width: 80.1%;
  height: 86.2%;
  object-fit: cover;
  z-index: 999;
  border-radius: 4px;
}

#how-it-works {
  position: relative;
  background-image: url('images/howitworksBG.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgb(255 255 255 / 85%);
}




    /* Nav */
    nav.global-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgb(255 255 255 / 92%);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-back {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .nav-back:hover {
      color: var(--primary);
    }

    /* Layout */
    .page-wrap {
      max-width: 760px;
      margin: 0 auto;
      padding: 60px 24px 100px;
    }

    .content-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: start;
    }

    /* Header */
    .page-header {
      max-width: 760px;
      margin-bottom: 32px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }


    .page-header h1 {
      font-size: 36px;
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .page-header .meta {
      font-size: 14px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .meta-dot {
      color: var(--border);
    }

    /* Intro block */
    .intro-block {
      max-width: 760px;
      background: var(--primary-light);
      border: 1px solid #B3E8DC;
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 48px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .intro-block .icon {
      font-size: 22px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .intro-block p {
      font-size: 15px;
      color: var(--primary-dark);
      line-height: 1.6;
    }

    .intro-block strong {
      font-weight: 700;
    }

    /* Main Content Area */
    .main-content {
      max-width: 760px;
      width: 100%;
    }

    /* Sections */
    .support-section {
      margin-bottom: 48px;
    }

    .support-section h2 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
      letter-spacing: -0.01em;
    }

    .support-section h2 .section-num {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      color: var(--primary);
      background: var(--primary-light);
      padding: 3px 9px;
      border-radius: 100px;
      flex-shrink: 0;
    }

    .support-section>p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    /* Checklist Card */
    .checklist-card {
      background: var(--bg-subtle);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      margin-top: 16px;
    }

    .checklist-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .checklist-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 15px;
      color: var(--text);
    }

    .checklist-item .check-icon {
      color: var(--primary);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* Accordion (Common Issues & FAQ) */
    .accordion {
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .accordion-item {
      border-bottom: 1px solid var(--border);
      background: var(--bg);
      transition: border-color 0.2s;
    }

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

    .accordion-item:hover {
      border-color: var(--primary);
    }

    .accordion-trigger {
      display: none;
    }

    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 24px;
      background: var(--bg);
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      transition: background .2s;
      user-select: none;
    }

    .accordion-trigger:checked + .accordion-header {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

    .accordion-header:hover {
      background: var(--bg-subtle);
    }

    .accordion-header .arrow-icon {
      width: 18px;
      height: 18px;
      color: var(--text-muted);
      transition: transform 0.3s ease, color 0.3s ease;
      flex-shrink: 0;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
      background: var(--bg-subtle);
    }

    .accordion-content-inner {
      padding: 20px 24px;
      font-size: 15px;
      color: var(--text-muted);
      border-top: 1px solid var(--border);
    }

    .accordion-content-inner p {
      margin-bottom: 12px;
    }

    .accordion-content-inner p:last-child {
      margin-bottom: 0;
    }

    .accordion-content h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .accordion-content ul {
      list-style: none;
      margin-bottom: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .accordion-content ul li {
      color: var(--text-muted);
      display: flex;
      gap: 10px;
      align-items: flex-start;
      line-height: 1.6;
    }

    .accordion-content ul li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      flex-shrink: 0;
      margin-top: 7px;
    }

    .accordion-content ul li strong {
      color: var(--text);
      font-weight: 600;
    }

    /* CSS Trigger Logic for Accordion */
    .accordion-trigger:checked~.accordion-header .arrow-icon {
      transform: rotate(180deg);
      color: var(--primary);
    }

    .accordion-trigger:checked~.accordion-content {
      max-height: 2000px;
      transition: max-height 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
    }

    /* Highlight card */
    .highlight-card {
      background: var(--bg-subtle);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 16px;
      margin:  0 0 12px;
          display: flex;
    gap: 12px;
    align-items: flex-start;
    }

    .highlight-card p {
      margin: 0;
      font-size: 14px;
      color: var(--primary-dark);
    }

.highlight-card h3 {
  margin: 0 0 8px ; /* 下に少しだけ余白を作る */
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px; /* アイコン（⚠）と文字の間隔 */
}

/* カード内の箇条書き（ul / li）の基本スタイル */
.highlight-card ul {
  margin: 8px 0 0 ; /* 上に少しだけ余白を作る */
  padding-left: 20px; /* 箇条書きのポッチ（・）のスペース */
}

.highlight-card li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.highlight-card li:last-child {
  margin-bottom: 0; /* 最後の項目の下の余白を消す */
}

/* ライトモード */
.highlight-card.warning p,
.highlight-card.warning h3,
.highlight-card.warning li { 
  color: #9A3412; /* すべて warning 用の濃いオレンジ系に統一 */
}

/* ダークモード */
@media (prefers-color-scheme: dark) {
  .highlight-card.warning {
    background: #1C0A00; 
    border-color: #7C2D12; 
  }

  .highlight-card.warning p,
  .highlight-card.warning h3,
  .highlight-card.warning li {
    color: #FB923C; /* ダークモード時も文字色を統一 */
  }
}








    /* Tables (Product Versions) */
    .table-responsive {
      overflow-x: auto;
      margin-top: 16px;
      border: 1px solid var(--border);
      border-radius: 12px;
    }

    table.v-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 14px;
      background: var(--bg);
    }

    table.v-table th,
    table.v-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }

    table.v-table th {
      background: var(--bg-subtle);
      font-weight: 700;
      color: var(--text);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.05em;
    }

    table.v-table tr:last-child td {
      border-bottom: none;
    }

    table.v-table td strong {
      color: var(--text);
      font-weight: 600;
      display: block;
      margin-bottom: 4px;
    }

    table.v-table td .desc {
      color: var(--text-muted);
      line-height: 1.5;
    }

    table.v-table td ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    table.v-table td ul li {
      display: flex;
      gap: 6px;
      color: var(--text-muted);
    }

    table.v-table td ul li::before {
      content: '✓';
      color: var(--primary);
      font-weight: bold;
    }

    /* Contact & Status Grid */
    .status-contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 16px;
    }

    .info-card {
      background: var(--bg-subtle);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
    }

    .info-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Support Request Details */
    .email-box {
      margin: 16px 0;
    }

    .email-link {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      border-bottom: 2px solid rgb(0 165 134 / 20%);
      transition: border-color .2s;
    }

    .email-link:hover {
      border-color: var(--primary);
    }

    .info-card ul {
      list-style: none;
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .info-card ul li {
      display: flex;
      gap: 8px;
    }

    .info-card ul li::before {
      content: '•';
      color: var(--text-light);
    }


    /* Divider */
    .section-divider {
      height: 1px;
      background: var(--border);
      margin: 48px 0;
    }

    /* ==========================================================================
       SIDEBAR & TOC LOGIC
       ========================================================================= */
    .toc-trigger-input {
      display: none;
    }

    .toc-trigger-btn {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 1000;
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      box-shadow: 0 4px 14px rgb(0 165 134 / 40%);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s, background-color 0.2s;
    }

    .toc-trigger-btn:hover {
      background: var(--primary-dark);
    }

    .toc-trigger-btn .icon-close {
      display: none;
    }

    .toc {
      position: fixed;
      inset: 0;
      z-index: 999;
      background: var(--bg);
      padding: 40px 24px 120px;
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    }

    .toc h3 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: var(--text-light);
      margin-bottom: 20px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 10px;
    }

    .toc ol {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      counter-reset: toc;
    }

    .toc ol li {
      counter-increment: toc;
    }

    .toc ol li a {
      font-size: 16px;
      color: var(--text-muted);
      text-decoration: none;
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 4px 0;
      transition: color .2s;
    }

    .toc ol li a:hover {
      color: var(--primary);
    }

    .toc ol li a::before {
      content: counter(toc, decimal-leading-zero);
      font-size: 11px;
      font-weight: 700;
      color: var(--text-light);
      min-width: 24px;
    }

    .toc-trigger-input:checked~.toc {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .toc-trigger-input:checked~.toc-trigger-btn {
      background: #EF4444;
      box-shadow: 0 4px 14px rgb(239 68 68 / 40%);
    }

    .toc-trigger-input:checked~.toc-trigger-btn .icon-open {
      display: none;
    }

    .toc-trigger-input:checked~.toc-trigger-btn .icon-close {
      display: inline;
    }


    /* Card block */
    .contact-card-block {
      background: var(--bg-dark);
      border-radius: 14px;
      padding: 32px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      margin-top: 16px;
      color: #fff;
    }

    .contact-card-block .cicon {
      width: 44px;
      height: 44px;
      background: var(--primary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .contact-card-block h3 {
      font-size: 14px;
      font-weight: 700;
      color: rgb(255 255 255 / 45%);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 4px;
    }

    .contact-card-block .email-link {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      border-bottom: 2px solid rgb(0 165 134 / 30%);
      transition: border-color .2s;
      display: inline-block;
      margin-bottom: 14px;
    }

    .contact-card-block .email-link:hover {
      border-color: var(--primary);
    }

    .contact-card-block .response-text {
      font-size: 14px;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 6px;
    }


.contact-section .contact-card-block p.operator-text {
  color:  var(--border);
}


    /* Dark mode overrides */
    @media (prefers-color-scheme: dark) {
      nav.global-nav {
        background: rgb(15 26 24 / 92%);
      }

      .accordion-item {
        background: var(--bg-subtle);
      }

      .accordion-content {
        background: #122421;
      }

      table.v-table {
        background: var(--bg);
      }

      .highlight-card {
        background: var(--primary-light);
        border-color: rgb(0 165 134 / 10%);
      }
    }

    .contact-card-block ul,
.info-card ul {
  padding-left: 16px; /* 👈 これを追記するだけで、はみ出ていた分が内側に収まります */
}


    /* Desktop Responsive Layout */
    @media (width >= 1024px) {
      .content-layout {
        grid-template-columns: 760px 280px;
        justify-content: space-between;
      }

      .toc-trigger-btn {
        display: none;
      }

      .toc {
        position: sticky;
        top: 100px;
        margin-bottom: 0;
        padding: 24px;
        background: var(--bg-subtle);
        border: 1px solid var(--border);
        border-radius: 12px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        opacity: 0.85 !important;
        visibility: visible !important;
        transform: none !important;
      }

      .toc h3 {
        font-size: 12px;
        margin-bottom: 12px;
        border-bottom: none;
        padding-bottom: 0;
      }

      .toc ol {
        gap: 8px;
      }

      .toc ol li a {
        font-size: 14px;
        padding: 0;
      }

      .status-contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (width <= 600px) {
      .page-header h1 {
        font-size: 28px;
      }
      .contact-block { flex-direction: column; }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }



/* Sections */
.contact-section { margin-bottom: 48px; }

.contact-section h2 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 14px; color: var(--text);
  align-items: center; gap: 10px;
}

.contact-section h2 .section-num {
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--primary); background: var(--primary-light);
  padding: 3px 9px; border-radius: 100px;
  flex-shrink: 0;
}

.contact-section p {
  font-size: 15px; color: var(--text-muted);
  margin-bottom: 12px; line-height: 1.75;
}
.contact-section p:last-child { margin-bottom: 0; }



/* Lists */
.contact-section ul {
  list-style: none; margin: 16px 0;
  display: flex; flex-direction: column; gap: 10px;
}

.contact-section ul li {
  font-size: 15px; color: var(--text-muted);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.6;
}

.contact-section ul li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 7px;
}

.contact-section ul li strong {
   color: var(--text); font-weight: 600; 
  }



.checklist-card p {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 12px;
}




/* Dark mode */
@media (prefers-color-scheme: dark) {
  .intro-block { border-color: rgb(0 165 134 / 20%); }
  .checklist-card { background: var(--bg-subtle); }
}

/* ==========================================================================
   DESKTOP RESPONSIVE LAYOUT (1024px以上で2カラム＆固定追従にシフト)
   ========================================================================== */

@media (width <= 600px) {
  .contact-card-block {
     flex-direction: column; padding: 24px; }

  .contact-card-block .email-link {
     font-size: 18px; }

  .footer-inner {
     flex-direction: column; align-items: flex-start; }

}


    /* FEATURE CARD */
    .feature-section { padding: 0 0 72px; }

    .feature-card {
      max-width: 640px; margin: 0 auto;
      background: var(--bg-subtle); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 36px 40px;
    }

    .feature-card h2 {
      font-size: 13px; font-weight: 700; text-transform: uppercase;
      letter-spacing: .07em; color: var(--text-light); margin-bottom: 20px;
      text-align: center;
    }

    .feature-list {
       list-style: none; display: grid; 
      }

    .feature-list li {
      font-size: 15px; font-weight: 500; color: var(--text);
      display: flex; align-items: flex-start; gap: 10px;
    }

    .feature-list li svg {
       flex-shrink: 0; margin-top: 2px; color: var(--primary); }

    /* LIMITATIONS */
    .limits-section { padding: 0 0 80px; }

    .limits-card {
      max-width: 640px; margin: 0 auto;
      border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 32px 40px; background: #fff;
    }

    .limits-card h2 {
       font-size: 18px; font-weight: 700; margin-bottom: 18px; }
   
       .limits-list {
         list-style: none; display: flex; flex-direction: column; gap: 12px; }

    .limits-list li {
      font-size: 14px; color: var(--text-muted);
      display: flex; align-items: flex-start; gap: 10px; line-height: 1.6;
    }

    .limits-list li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--text-light); flex-shrink: 0; margin-top: 7px;
    }

    .limits-list li strong {
       color: var(--text); font-weight: 600; }

    /* PRIMARY CTA BAND */
    .cta-band {
      background: var(--bg-dark); padding: 56px 0; position: relative; overflow: hidden;
    }

    .cta-band::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgb(0 165 134 / 7%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(0 165 134 / 7%) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .cta-band-inner {
       position: relative; z-index: 2; text-align: center; }
    
       .cta-band h2 {
         font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.02em; }
    
         .cta-band p {
       font-size: 15px; color: rgb(255 255 255 / 60%); margin-bottom: 28px; }

    /* UPSELL */
    .upsell {
       padding: 80px 0; background: var(--primary-light);}
    
       .upsell-inner {
         max-width: 540px; margin: 0 auto; text-align: center; }
    
         .upsell-inner > .eyebrow { margin-bottom: 12px; }
    
    .upsell h2 {
       font-size: clamp(24px,3vw,32px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 36px; }

    .upsell-card {
      background: #fff; border: 1.5px solid var(--primary);
      border-radius: var(--radius-lg); padding: 36px 40px;
      box-shadow: 0 0 0 4px rgb(0 165 134 / 8%);
      text-align: left;
    }

    .upsell-card-header {
       display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
    
       .upsell-name {
       font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }

    .upsell-badge {
      background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
      letter-spacing: .05em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px;
    }
    
    .upsell-price {
       display: flex; align-items: flex-end; gap: 8px; margin-bottom: 4px; }
    
       .upsell-price .now {
       font-size: 44px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
    
       .upsell-price .was {
       font-size: 19px; color: var(--text-light); text-decoration: line-through; }
    
       .upsell-launch {
       font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 24px; }
    
       .upsell-divider {
       height: 1px; background: var(--border); margin: 0 0 22px; }
    
       .upsell-features {
       list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
    
       .upsell-features li {
       font-size: 14.5px; display: flex; gap: 10px; align-items: flex-start; }
    
       .upsell-features li svg {
       flex-shrink: 0; margin-top: 2px; color: var(--primary); }
    
       .upsell-btn {
       width: 100%; text-align: center; display: block; }


    /* Dark mode */
    @media (prefers-color-scheme: dark) {

      nav { background: rgb(15 26 24 / 92%); }
      .limits-card, .upsell-card { background: #141F1D; }
    }

    /* Mobile */
    @media (width <= 640px) {
        .summary-strip { grid-template-columns: 1fr; }
  .two-col-lists { grid-template-columns: 1fr; }
  .contact-checklist ul { grid-template-columns: 1fr; }
  .contact-top { flex-direction: column; }
      .feature-card, .limits-card { padding: 28px 24px; }
      .feature-list { grid-template-columns: 1fr; }
      .upsell-card { padding: 28px 24px; }

      .footer-inner {
         flex-direction: column; align-items: flex-start; }

    }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
         opacity: 1; transform: none; transition: none; }
    }



/* Buttons */
.theme-team .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 9px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .2s; white-space: nowrap;
}

.theme-team .btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 2px 8px rgb(26 155 181 / 35%);
}

.theme-team .btn-primary:hover {
    background: var(--primary-dark); color: #fff; box-shadow: 0 4px 16px rgb(26 155 181 / 40%); transform: translateY(-1px); }


    /* チーム版はローンチ前なので点線 */
.theme-team .btn-secondary {
  background: #eff2f4; color: var(--primary);
  border: 1.5px dashed var(--primary);
}

.theme-team .price-card {
     background: #eff2f4; }

     .theme-team.price-card {
     background: #eff2f4; }

.theme-team .price-now {
     color: #788e93; }

.theme-team .btn-secondary:hover {
     background: var(--primary-light); transform: translateY(-1px); }

.theme-team .eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary);
  background: var(--primary-light); padding: 4px 12px;
  border-radius: 100px; margin-bottom: 16px;
}



.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 24px; align-items: start;
}

@media (width <= 600px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

      .cta-band-inner {
       display: flex;
      flex-direction: column; }
}

/* Left: copy */
.hero-copy h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800; line-height: 1.14;
  letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 14px;
}

.hero-copy p.sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 24px; max-width: 460px;
}


/* Use-case strip */
.usecase-strip {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px;
}

.theme-team .usecase-chip {
  font-size: 13px; font-weight: 600; color: var(--primary-dark);
  background: var(--primary-light); padding: 7px 14px;
  border-radius: 100px;
}



.theme-team .price-card-badge {
  position: absolute; top: -13px; left: 36px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}

.price-label-row {
   display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; margin-bottom: 24px; }

.price-label-row .launch {
   color: var(--primary); }

.price-label-row .regular {
   color: var(--text-light); }



/* Coming soon banner */
.coming-soon {
  background: var(--primary-light); border: 1px solid var(--primary);
  border-radius: 10px; padding: 16px 18px; margin-bottom: 22px;
  display: flex; gap: 12px; align-items: flex-start;
}

.coming-soon .cs-icon {
   font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.coming-soon h3 {
   font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }

.coming-soon p {
   font-size: 13px; color: var(--primary-deep); line-height: 1.55; }

.price-card-btn { 
  width: 100%; text-align: center; display: block; }

.price-secondary-link {
  display: block; text-align: center; font-size: 13px;
  color: var(--text-muted); margin-top: 10px; text-decoration: underline;
  text-decoration-color: var(--border);
}
.price-secondary-link:hover { color: var(--primary); }



.contact-card {
  max-width: 560px; margin: 0 auto;
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 44px;
  text-align: center;
}

.theme-team .contact-card .c-icon {
  width: 52px; height: 52px; background: var(--primary-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 18px;
}

.contact-card h2 {
   font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }

.contact-card p.desc {
   font-size: 14.5px; color: var(--text-muted); margin-bottom: 28px; }

.contact-form {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px;
  text-align: left;
}

.contact-form label {
  font-size: 12px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; display: block;
}

.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 16px; border-radius: 9px;
  border: 1.5px solid var(--border); font-size: 14.5px;
  font-family: inherit; color: var(--text); background: #fff;
  outline: none; transition: border-color .2s; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form button { margin-top: 6px; }

.field-row {
   display: flex; flex-direction: column; gap: 6px; }

   .field-row select {
  padding: 10px 14px; /* 入力欄と同じ感覚にする */
  border: 1px solid #ccc; /* サイトのデザインに合わせて調整 */
  border-radius: 6px;
  background-color: #fff;
  font-size: 16px; /* スマホでタップした時のズーム防止のため16px推奨 */
  cursor: pointer;
  appearance: none; /* ブラウザ標準の矢印を消す（任意） */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
}

/* フォーカス時の強調（お好みで） */
.field-row select:focus {
  outline: 2px solid var(--primary);
  border-color: transparent;
}

.theme-team .contact-success {
  display: none; gap: 10px; align-items: center; justify-content: center;
  background: var(--primary-light); border: 1px solid  var(--primary);
  border-radius: 9px; padding: 14px 18px; font-size: 14px;
  color: var(--primary-dark); font-weight: 600;
}
.contact-success.show { display: flex; }
.contact-form.hide { display: none; }

.contact-divider {
  display: flex; align-items: center; gap: 12px; margin: 24px 0;
  font-size: 12px; color: var(--text-light); font-weight: 600;
}

.contact-divider::before, .contact-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.theme-team .contact-link {
  font-size: 14px; color: var(--primary); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid var(--primary)
}
.contact-link:hover { border-color: var(--primary); }



/* Dark mode */
@media (prefers-color-scheme: dark) {
    .theme-team {
    --primary-light: #0A1E2B;

    /* 必要に応じて他の色も上書き */
  }

  nav { background: rgb(15 26 24 / 92%); }
  .price-card { background: #141F1D; }
  .contact-form input, .contact-form textarea { background: #0F1A18; }
  .coming-soon p { color: #FBBF24; }
  .usecase-chip { color: #79B4D9; }
}

.theme-team {
  --primary: #028893;
  --primary-dark: #075a65;
  --primary-light: #E3EEF5;
  --primary-mid: #00738a;
}


@media (width <= 600px) {
  .contact-card { padding: 32px 24px; }
  .price-card { padding: 28px 24px; }

  .footer-inner {
     flex-direction: column; align-items: flex-start; }

}/* //▲工事範囲▲ーー統合中ーーーteam-editionーーーーー▲ーーーーーーーーーー▲ーーーーーーーーーー▲ーーーーーーーーーー▲ーーーーーーーーーー▲ーーーーーーーーー▲工事範囲▲ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */







.btn:disabled, .btn[aria-disabled="true"] {
  opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important;
}



.price-card-badge {
  position: absolute; top: -13px; left: 36px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}

.price-card-btn.disabled-look { margin-bottom: 12px; }

/* WAITLIST FORM */
.waitlist {
  padding: 0 0 90px;
  background: var(--primary-light);
}

.waitlist-card {
  max-width: 560px; margin: 0 auto;
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 44px;
  text-align: center;
}

.waitlist-card .w-icon {
  width: 52px; height: 52px; background: var(--primary-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 18px;
}

.waitlist-card h2 {
   font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }

.waitlist-card p.desc { 
  font-size: 14.5px; color: var(--text-muted); margin-bottom: 28px; }


.waitlist-form {
  display: flex; gap: 10px; margin-bottom: 14px;
}

.waitlist-form input[type="email"] {
  flex: 1; padding: 13px 16px; border-radius: 9px;
  border: 1.5px solid var(--border); font-size: 14.5px;
  font-family: inherit; color: var(--text); background: #fff;
  outline: none; transition: border-color .2s;
}
.waitlist-form input[type="email"]:focus { border-color: var(--primary); }
.waitlist-form button { flex-shrink: 0; }

.waitlist-note {
   font-size: 12px; color: var(--text-light); }

.waitlist-success {
  display: none; gap: 10px; align-items: center; justify-content: center;
  background: var(--primary-light); border: 1px solid var(--primary-mid);
  border-radius: 9px; padding: 14px 18px; font-size: 14px;
  color: var(--primary-dark); font-weight: 600;
}
.waitlist-success.show { display: flex; }
.waitlist-form.hide { display: none; }

.waitlist-divider {
  display: flex; align-items: center; gap: 12px; margin: 24px 0;
  font-size: 12px; color: var(--text-light); font-weight: 600;
}

.waitlist-divider::before, .waitlist-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.contact-link {
  font-size: 14px; color: var(--primary); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid rgb(0 165 134 / 30%);
}


/* Dark mode */
@media (prefers-color-scheme: dark) {

  .price-card { background: #141F1D; }
  .waitlist-form input[type="email"] { background: #0F1A18; }
  .coming-soon p { color: #FBBF24; }

  
}



@media (width <= 600px) {
  .waitlist-card { padding: 32px 24px; }
  .waitlist-form { flex-direction: column; }
  .price-card { padding: 28px 24px; }
}





/* Sections */
.policy-section { margin-bottom: 48px; }

.policy-section h2 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 14px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}

.policy-section h2 .section-num {
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--primary); background: var(--primary-light);
  padding: 3px 9px; border-radius: 100px;
  flex-shrink: 0;
}

.policy-section p {
  font-size: 15px; color: var(--text-muted);
  margin-bottom: 12px; line-height: 1.75;
}
.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  list-style: none; margin: 12px 0;
  display: flex; flex-direction: column; gap: 10px;
}

.policy-section ul li {
  font-size: 15px; color: var(--text-muted);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.6;
}

.policy-section ul li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 7px;
}

.policy-section ul li strong {
   color: var(--text); font-weight: 600; }


/* Contact block */
.contact-block {
  background: var(--bg-dark);
  border-radius: 14px; padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
}

.contact-block .cicon {
  width: 44px; height: 44px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}

.contact-block h3 {
   font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }

.contact-block p {
   font-size: 14px; color: rgb(255 255 255 / 55%); margin-bottom: 12px; }

.contact-block a {
  font-size: 14px; font-weight: 600; color: var(--primary);
  text-decoration: none; border-bottom: 1px solid rgb(0 165 134 / 30%);
  transition: border-color .2s;
}
.contact-block a:hover { border-color: var(--primary); }



/* ==========================================================================
   MOBILE TOOGLE MENU (CSS-ONLY TABS/HAMBURGER FOR TOC)
   ========================================================================== */








/* Prohibited list — red dots */
.policy-section ul.prohibited li::before {
  background: #EF4444;
}

.highlight-card.warning {
  background: var(--red-bg); border-color: var(--red-border);
}

.highlight-card.warning p { color: #9A3412; }



/* Dark mode */
@media (prefers-color-scheme: dark) {
  .highlight-card.warning {
     background: #1C0A00; border-color: #7C2D12; }

  .highlight-card.warning p {
     color: #FB923C; }

}




/* License comparison cards */
.license-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin: 48px auto;
  max-width: 480px;
}

.license-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* 親要素の高さに合わせる */
  border: 1.5px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.license-card.personal { border-color: var(--primary); }
.license-card.team { border-color: var(--primary); }

.license-card-header {
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
}
.license-card.personal .license-card-header { background: var(--primary-light); }
.license-card.team .license-card-header { background: var(--primary-light); }

.license-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.license-card.personal .license-icon { background: var(--primary-mid); }
.license-card.team .license-icon { background: var(--primary); }

.license-name {
   font-size: 16px; font-weight: 700; }

.license-card.personal .license-name { color: var(--primary-dark); }
.license-card.team .license-name { color: var(--primary-dark); }

.license-price {
  font-size: 12px; font-weight: 500;
  margin-top: 1px;
}
.license-card.personal .license-price { color: var(--primary); }
.license-card.team .license-price { color: var(--primary-mid); }

.license-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* 余白をすべてこのエリアで吸収させる */
   padding: 20px 24px;
   }

.allow-block, .deny-block { margin-bottom: 16px; }
.allow-block:last-child, .deny-block:last-child { margin-bottom: 0; }

.block-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.block-label.allow { color: var(--primary); }
.block-label.deny { color: var(--red); }

.check-list {
   list-style: none; display: flex; flex-direction: column; gap: 8px; }

.check-list li {
  font-size: 13px; display: flex; gap: 8px;
  align-items: flex-start; line-height: 1.5;
}

.check-list li .ci {
   flex-shrink: 0; margin-top: 1px; font-size: 14px; }

.card-note {
  font-size: 18px; font-weight: 600;
  padding: 10px 14px; margin-top: auto;
  border-top: solid 2px var(--primary);
  text-align: center;
}

.license-card.personal .card-note {
   background: var(--primary-light); color: var(--primary-dark); }

.license-card.team .card-note { 
  background: var(--primary-light); color: var(--primary-dark); }

  
/* Highlight card */




/* Dark mode */
@media (prefers-color-scheme: dark) {
  .license-card.personal .license-card-header { background: #0D2420; }
  .license-card.team .license-card-header { background: #1E1B4B; }
  .license-card.personal .card-note { background: #0D2420; }

  .license-card.team .card-note {
     background: #1E1B4B; color: #A5B4FC; 
    }

  .highlight-card.warning p { color: #FCA5A5; }
}

@media (width <= 680px) {
  .license-grid { grid-template-columns: 1fr; }
}


/* Summary strip */
.summary-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 48px;
}

.summary-item {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 20px; text-align: center;
}

.summary-item .s-icon { 
  font-size: 24px; margin-bottom: 8px; display: block; }

.summary-item .s-label {
   font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); margin-bottom: 4px; }

.summary-item .s-value {
   font-size: 15px; font-weight: 700; color: var(--text); }



/* Two-column list block */
.two-col-lists {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 16px 0;
}

.list-block {
  border-radius: 10px; padding: 18px 20px;
}

.list-block.eligible {
   background: var(--primary-light); border: 1px solid #B3E8DC; 
  }

.list-block.ineligible {
  background: var(--red-bg); border: 1px solid var(--red-border); }

.list-block-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}

.list-block.eligible .list-block-label {
   color: var(--primary-dark); 
  }

.list-block.ineligible .list-block-label {
   color: var(--red); }




.highlight-card.tip {
   background: var(--blue-bg); border-color: var(--blue-border); }

.highlight-card.tip p {
   color: var(--blue); 
  }





.contact-top {
  display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px;
}



.contact-block > .contact-top p {
   font-size: 14px; color: rgb(255 255 255 / 55%); margin-bottom: 12px; }


.contact-checklist {
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding-top: 20px;
}

.contact-checklist p {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: rgb(255 255 255 / 35%);
  margin-bottom: 12px;
}

.contact-checklist ul {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-checklist ul li {
  font-size: 13px; color: rgb(255 255 255 / 60%);
  display: flex; align-items: center; gap: 8px;
}

.contact-checklist ul li::before {
  content: '→';
  color: var(--primary); font-size: 12px; font-weight: 700;
}


.two-col-lists .check-list li::before {
  content: none !important; /* 強制的に緑のポッチ（中黒）を消す */
}

.two-col-lists .check-list {
  list-style: none;
  padding-left: 0;
}


.feature-container {
  display: flex;
  gap: 2rem; /* 左右の列の間の隙間 */
}

@media (width <= 600px) {
  .feature-container {flex-wrap: wrap; /* スマホ幅の時は自動で縦並びにする */
}
}



/* サブリストのスタイル（インデント調整） */
.sub-list {
  list-style: none;
  padding-left: 20px;
  margin-top: 5px;
}

.bg-highlight {
  background-color: #ddf6ef; /* 画像のような薄いブルー */
  padding: 2px 4px;          /* 文字の周りに少し余白を作る（お好みで） */
  border-radius: 2px;        /* 角を少し丸める（お好みで） */
  text-decoration: none;     /* 下線を消す場合 */
  color: #333;               /* 文字色（お好みで） */
}

.feature-note{
  margin-top:16px;
  font-size:14px;
  color:var(--text-muted);
  line-height:1.7;
}










    .celebrate-icon { 
      font-size: 44px; margin-bottom: 16px; 
    }

    .open-trial-btn { margin-bottom: 12px; }

    .open-note {
       font-size: 13px; color: var(--text-light); 
      }

    .section { margin-bottom: 48px; }

    .section h2 {
      font-size: 22px; font-weight: 800;
      letter-spacing: -0.02em; margin-bottom: 14px;
    }

    .section p {
       font-size: 15px; color: var(--text-muted); margin-bottom: 12px; 
      }

    .section p:last-child { margin-bottom: 0; }

    /* Info banner */
    .info-banner {
      background: var(--primary-light); border: 1px solid var(--primary-mid);
      border-radius: 12px; padding: 20px 24px;
      display: flex; gap: 14px; align-items: flex-start;
      margin-bottom: 48px;
    }

    .info-banner .icon {
      font-size: 22px; flex-shrink: 0; margin-top: 1px; }

    .info-banner p {
       font-size: 15px; color: var(--primary-dark); line-height: 1.6; margin: 0; }

    .info-banner strong { font-weight: 700; }

    /* Step cards */
    .step-card-head {
      display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
    }

    .step-card-head h3 {
       font-size: 17px; font-weight: 700; }

    .step-card p:last-child { margin-bottom: 0; }

    .menu-path {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--bg-subtle); border: 1px solid var(--border);
      border-radius: 8px; padding: 8px 14px; font-size: 14px;
      font-weight: 600; color: var(--text); margin: 6px 0 10px;
    }
    .menu-path .arrow { color: var(--text-light); }

    .ordered-list {
      list-style: none; counter-reset: step-list;
      display: flex; flex-direction: column; gap: 10px; margin: 10px 0;
    }

    .ordered-list li {
      counter-increment: step-list;
      font-size: 14.5px; color: var(--text-muted);
      display: flex; gap: 12px; align-items: flex-start; line-height: 1.6;
    }

    .ordered-list li::before {
      content: counter(step-list);
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
      background: var(--primary);
      color: var(--primary-light);
      font-size: 12px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }

    .ordered-list li strong {
       color: var(--text); font-weight: 600; }

    .bullet-list {
      list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 10px 0;
    }

    .bullet-list li {
      font-size: 14.5px; color: var(--text-muted);
      display: flex; gap: 10px; align-items: flex-start; line-height: 1.6;
    }

    .bullet-list li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--primary); flex-shrink: 0; margin-top: 7px;
    }

    .note-callout {
      background: var(--bg-subtle); border: 1px solid var(--border);
      border-radius: 9px; padding: 14px 16px; margin-top: 14px;
      font-size: 13.5px; color: var(--text-muted); line-height: 1.6;
    }

    .note-callout.privacy {
      background: var(--primary-light); border-color: var(--primary-mid); color: var(--primary-dark);
    }

    /* Limitations table */
    .limit-table {
      border: 1px solid var(--border); border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .limit-row {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 22px; font-size: 14.5px; font-weight: 500;
      border-bottom: 1px solid var(--border);
    }

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

    .limit-row.yes {
       background: var(--primary-light); color: var(--primary-dark); }

    .limit-row.no {
       background: var(--red-bg); color: #991B1B; }

    .limit-row .li-icon {
       font-size: 15px; flex-shrink: 0; }

    /* Help section */
    .help-card {
      background: var(--bg-subtle); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 28px;
    }

    .help-card h3 {
       font-size: 17px; font-weight: 700; margin-bottom: 10px; }

    .help-card p {
       font-size: 14.5px; color: var(--text-muted); margin-bottom: 14px; }

    .help-checklist { 
      list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }

    .help-checklist li {
      font-size: 14px; color: var(--text-muted);
      display: flex; gap: 10px; align-items: flex-start;
    }

    .help-checklist li::before {
       content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

    /* Upgrade CTA band */
    .upgrade-band {
      background: var(--bg-dark); border-radius: var(--radius-lg);
      padding: 44px 40px; text-align: center; position: relative; overflow: hidden;
    }

    .upgrade-band::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgb(0 165 134 / 8%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(0 165 134 / 8%) 1px, transparent 1px);
      background-size: 36px 36px;
    }

    .upgrade-inner {
       position: relative; z-index: 2; }

    .upgrade-band .eyebrow {
       background: rgb(0 165 134 / 20%); color: #6EDEC8; }

    .upgrade-band h2 {
       font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.02em; }

    .upgrade-band p {
       font-size: 15px; color: rgb(255 255 255 / 65%); margin-bottom: 26px; max-width: 440px; margin-left: auto; margin-right: auto; }

    /* Simple footer (page-specific placeholder — will be unified later) */
    .simple-footer {
      background: var(--bg-dark); border-top: 1px solid rgb(255 255 255 / 8%);
      padding: 36px 0 24px; margin-top: 24px;
    }

    .simple-footer-inner {
      max-width: 760px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    }

    /* Dark mode */
    @media (prefers-color-scheme: dark) {
      :root {
        --bg: #0F1A18;
        --bg-subtle: #141F1D;
        --text: #F1F5F4;
        --text-muted: #8B9E9B;
        --text-light: #5C726E;
        --border: #1F302D;
        --primary-light: #0D2420;
        --red-bg: #1C0606;
        --red-border: #7F1D1D;
        --blue-bg: #1a2733;      /* ダークモード用の暗い青 */
  --blue-border: #4a9eff;  /* ダークモード用の明るめの青 */
      }

      .simple-header { background: rgb(15 26 24 / 92%); }

      .help-card { background: #141F1D; }
      
      .menu-path { background: #0D2420; }

      .highlight-card.tip p {
   color: var(--blue-border); 
}

   #how-it-works {
  background-image: url('images/howitworksBG.jpg');
  background-blend-mode: soft-light;
  background-color: rgb(53 105 94);
  }

    }

    @media (width <= 600px) {
      .hero h1 { font-size: 26px; }
      .step-card { padding: 22px 20px; }
      .help-card, .upgrade-band { padding: 28px 22px; }

      .simple-footer-inner {
         flex-direction: column; align-items: flex-start; }
         
      .limit-row {
         padding: 12px 16px; flex-wrap: wrap; }

    }









/* =================================================================================================================
   1. モーダル用スタイル
   ========================================= */

/* ==========================================================================
   モーダル本体
   ========================================================================== */

/* モーダル全体の背景 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 85%);
  display: flex;
  align-items: flex-start; /* 上寄せ */
  justify-content: center;
  z-index: 1000;
  padding: 40px;
  overflow-y: auto; /* 縦方向のみスクロールバーを表示 */
}

.modal-content {
  width: 95%;
  max-width: 1000px;
  min-height: 50vh;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  border-radius: 8px;
  overflow: visible; 
  padding-bottom: 20px; 
}

#modal-img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  background: #000;
}

.modal-text-area {
  padding: 20px;
  text-align: center;
}

/* ==========================================================================
   モーダルのナビゲーション／閉じるボタン
   ========================================================================== */

/* 左右のナビゲーションボタン */
.nav-btn {
   position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(176 238 216 / 80%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;          /* ← 追加：行の余分な高さをなくす */
  display: flex;           /* ← 追加 */
  align-items: center;     /* ← 追加：縦中央 */
  justify-content: center; /* ← 追加：横中央 */
  z-index: 10;
  color: var(--primary-deep);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-btn:hover {
  transform: translateY(-50%) scale(1.15); /* 元のY軸位置を維持しつつ拡大 */
  background: rgb(176 238 216 / 100%);     /* 少し背景色を濃くする */
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 30px;
  color: #fff;
  z-index: 10;
  transition: transform 0.2s ease;
  padding: 5px;
}

.close-btn:hover {
  transform: scale(1.2); /* 1.2倍の大きさに拡大 */
}


/* 進捗バーの親要素（モーダルの一番下に固定） */
.progress-container {
  width: 100%;
  height: 6px; /* バーの高さ */
  background: #e0e0e0; /* 背景色（未進捗部分） */
  position: absolute;
  bottom: 0;
  left: 0;
}

/* 進捗バー本体 */
.progress-bar {
  height: 100%;
  background: var(--primary); /* 指定された緑色のイメージ */
  width: 50%; /* ここをJavaScriptで動的に変える */
  transition: width 0.4s ease; /* 伸びる時のアニメーション */
}


/* ==========================================================================
   ステップカード（レイアウト）
   ========================================================================== */

.step-card {
  display: grid;
  grid-template-columns: 1fr 300px; /* 左：テキスト、右：画像 */
  grid-template-areas: 
    "head image"
    "body image";
  gap: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 16px;
}




.step-image-wrapper {
  grid-area: image;
  cursor: pointer;
  overflow: hidden;
}

.step-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.step-image-wrapper:hover img {
  /* 中心から1.1倍（10%）拡大する */
  transform: scale(1.1);
}

.step-text-content {
  grid-area: body;
}

/* 600px以下で縦積みに切り替え */
@media (width <= 700px) {
  .step-card {
    display: flex;
    flex-direction: column;
  }

  .step-image-wrapper {
    width: 100%;
    height: 200px; /* モバイル時の画像高さ */
  }

  /* 「見出し→画像→テキスト」の順にしたい場合は、
     .step-image-wrapper { order: 0; } を追加し、
     HTML側の並び順も合わせて調整してください */
}

/* ==========================================================================
   ステップカード（タイポグラフィ）
   ========================================================================== */

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: .06em;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   ⚠️ 現在のHTMLでは未使用と思われるクラス（要確認）
   他の場所で使っていなければ削除して大丈夫です
   ========================================================================== */

.step-content {
  flex: 1;
  padding: 28px 24px;
}

.step-text-wrapper {
  flex: 1;
  padding: 28px 24px;
}

/* 未選択時の薄い色 */
.placeholder-active {
  color: var(--text-muted); /* 既存の薄い色変数を使用 */
}

/* 選択済みの通常の色 */
.placeholder-active.selected {
  color:  var(--text); /* 選択後の濃い文字色 */
}


/* ==========================================
   Light Notice (黄色・アンバー系の柔らかいお知らせ)
   ========================================== */

/* --- ライトモード --- */
.highlight-card.light-notice {
  background: #FEFCE8;     /* 柔らかな薄い黄色 */
  border-color: #FDE047;   /* マイルドな黄色の枠線 */
}

/* 文字色を一括で少し濃いめのアンバー（琥珀色）に */
.highlight-card.light-notice h3,
.highlight-card.light-notice p,
.highlight-card.light-notice li {
  color: #854D0E; 
}


/* --- ダークモード --- */
@media (prefers-color-scheme: dark) {
  .highlight-card.light-notice {
    background: #1E1B4B;   /* ダークモードで映える深い紺・紫系の背景 */
    border-color: #EAB308; /* くっきり見えるゴールドの枠線 */
  }

  /* ダークモード時の文字色（視認性の高い明るい黄色） */
  .highlight-card.light-notice h3,
  .highlight-card.light-notice p,
  .highlight-card.light-notice li {
    color: #FDE047;
  }
}


.launch-deadline{
  margin-top:12px;
  font-size:13px;
  line-height:1.5;
  color:var(--text-muted);
}

.deadline-icon{
  margin-right:4px;
}



    .sp-only-check {
      display: none; /* デフォルト（PC）では非表示 */
      margin-bottom: 8px;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
      color: white; /* 警告色（赤系） */
      font-weight: 600;
      background: #465fa3;
      border-radius: var(--radius);
          padding: 2px 16px;
    }

    .sp-only-check input {
      width: 16px;
      height: 16px;
      cursor: pointer;
      accent-color: var(--text);
    }

    /* ボタンが無効化された時の見た目 */
    .btn-disabled {
      opacity: 0.5 !important;
      cursor: not-allowed !important;
      background-color: #9ca3af !important;
      border-color: #9ca3af !important;
      pointer-events: none; /* クリック不可に */
    }

    .gradient-box {
  /* 緑色が全体の50%地点まで続き、そこから透明へ向かう */
  background-image:linear-gradient(to bottom, var(--primary-dark) 0%, transparent 50%, transparent 100%);
}

.hero.grid-bg.gradient-box {
  /* 1. 緑のグラデーション（上書き用）
     2. 横方向のグリッド線
     3. 縦方向のグリッド線
  */
  background-image: 
    linear-gradient(to bottom, #00c19c 0%, transparent 30%, transparent 100%),
    linear-gradient(rgb(0 165 134 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 165 134 / 4%) 1px, transparent 1px);
  background-size: 
    100% 100%, /* グラデーション用 */
    32px 32px, /* 横グリッド用 */
    32px 32px; /* 縦グリッド用 */
}









.why-upgrade { padding: 80px 0; }

    .why-upgrade-grid {
      display: grid; grid-template-columns: 0.85fr 1.15fr;
      gap: 56px; align-items: start;
    }

    .why-upgrade-header {
       text-align: left; margin-bottom: 0; }

    .why-upgrade-header .eyebrow { margin-bottom: 16px; }

    .why-upgrade-header h2 {
       font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
    
       .why-upgrade-header p {
       margin: 0; max-width: 380px; }

    .upgrade-reason-list {
       list-style: none; display: flex; flex-direction: column; }

    .upgrade-reason {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 22px 0; border-bottom: 1px solid var(--border);
    }
    .upgrade-reason:first-child { padding-top: 0; }

    .upgrade-reason:last-child {
       border-bottom: none; padding-bottom: 0; }

    .reason-index {
      font-size: 13px; font-weight: 700; letter-spacing: .04em;
      color: var(--primary); flex-shrink: 0; margin-top: 3px;
      min-width: 28px;
    }

    .reason-body h3 {
       font-size: 16px; font-weight: 700; margin-bottom: 4px; }
    
    .reason-body p {
       font-size: 14.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }

    /* --- Comparison: enhanced table with icon cells + highlighted diff row --- */
    .compare-table-wrap {
      border: 1px solid var(--border); border-radius: 14px;
      overflow: hidden; margin: 16px auto;
    max-width: 640px;
    }

    .comparison-table {
       width: 100%; border-collapse: collapse; }

    .comparison-table th {
      background: var(--bg-subtle, #F9FAFB); font-size: 13px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
      text-align: left; padding: 16px 24px; border-bottom: 1px solid var(--border);
    }
    .comparison-table th:not(:first-child) { text-align: center; }

    .comparison-table td {
      padding: 14px 24px; font-size: 14.5px; border-bottom: 1px solid var(--border);
      text-align: left;
    }
    .comparison-table td:not(:first-child) { text-align: center; }
    .comparison-table tr:last-child td { border-bottom: none; }
    .cell-check { color: var(--primary); }

    .cell-check svg { 
      display: inline-block; vertical-align: middle; }

    .cell-x { color: var(--text-light, #9CA3AF); }

    .cell-x svg { 
      display: inline-block; vertical-align: middle; }

    .cell-muted { color: var(--text-muted); }

    .cell-highlight { 
      color: var(--primary); font-weight: 700; }

    .row-diff { background: var(--primary-light); }

    .row-off { background: #f0f2f6; }

    /* --- FAQ: accordion instead of card grid --- */
    .faq-accordion {
      display: flex; flex-direction: column; gap: 12px; margin-top: 16px;
    }

    .faq-accordion-item {
      border: 1px solid var(--border); border-radius: 12px;
      padding: 4px 22px; background: #fff;
    }

    .faq-accordion-item summary {
      list-style: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 18px 0;
    }
    .faq-accordion-item summary::-webkit-details-marker { display: none; }

    .faq-accordion-item summary h3 {
      font-size: 15.5px; font-weight: 600; margin: 0; color: var(--text);
    }

    .faq-chevron {
       flex-shrink: 0; color: var(--text-muted); transition: transform .2s; }
    
       .faq-accordion-item[open] .faq-chevron {
       transform: rotate(180deg); color: var(--primary); }

    .faq-accordion-item p {
      font-size: 14.5px; color: var(--text-muted); line-height: 1.7;
      margin: 0 0 20px; max-width: 640px;
    }

    @media (width <= 860px) {
      .why-upgrade-grid { 
        grid-template-columns: 1fr; gap: 32px; }

      .comparison-table th, .comparison-table td { padding: 12px 14px; }
    }

    .section-base {
      padding: 40px 0;
    }

    /* 通常時（画面幅 601px 以上）のスタイル */
.hero-absolute-img {
  position: absolute;
  top: 34%; /* 任意の元の値 */
  left: 53%; /* 任意の元の値 */
  transform: translate(-50%, -50%);
  width: 60%;
  height: auto;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;

  /* 通常時のみ適用したいサイズ制限 */
  max-height: 400px;
  min-height: 300px;
  min-width: 520px;
}

/* 600px以下のスタイル（上書きして制限を解除する） */
@media (width <= 600px) {
  .hero-absolute-img {
    top: 10%;
    left: 90%;
    width: 60%;

    /* 通常時のサイズ制限を「初期値」に戻して無効化する */
    max-height: none;  /* 初期値は none */
    min-height: 0;     /* 初期値は 0 */
    min-width: 0;      /* 初期値は 0 */
  }
}



        .article-body {
          font-family: Inter, system-ui, -apple-system, sans-serif;
          color: var(--text);
          line-height: 1.75;
          font-size: 15px;
        }

        .article-body h2 {
          font-size: 24px;
          font-weight: 800;
          letter-spacing: -0.02em;
          color: var(--text);
          margin-top: 48px;
          margin-bottom: 18px;
          border-bottom: 1px solid var(--border);
          padding-bottom: 8px;
        }

        .article-body h3 {
          font-size: 18px;
          font-weight: 700;
          color: var(--primary-dark);
          margin-top: 32px;
          margin-bottom: 14px;
        }

        .article-body p {
          color: var(--text-muted);
          margin-bottom: 20px;
        }

        .article-body strong {
          color: var(--text);
          font-weight: 700;
        }

        .article-body hr {
          border: 0;
          height: 1px;
          background: var(--border);
          margin: 48px 0;
        }

        .article-body ul,
        .article-body ol {
          margin: 20px 0;
          padding-left: 24px;
        }

        .article-body li {
          color: var(--text-muted);
          margin-bottom: 10px;
          line-height: 1.6;
        }

        .article-body ul li {
          list-style-type: disc;
        }

        .article-body ol li {
          list-style-type: decimal;
        }

        .article-body p code {
          background: var(--bg-subtle);
          padding: 2px 6px;
          border-radius: 4px;
          border: 1px solid var(--border);
          color: var(--primary-dark);
          font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
          font-size: 85%;
        }

        .article-body pre {
          background: #1e1e1e;
          color: #d4d4d4;
          padding: 20px;
          border-radius: 8px;
          overflow-x: auto;
          margin: 24px 0;
          font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
          font-size: 13.5px;
          line-height: 1.5;
        }

        .article-body pre code {
          font-family: inherit;
          color: inherit;
        }

        .article-body .code-comment {
          color: #6a9955;
        }

        .article-body .code-keyword {
          color: #569cd6;
        }

        .article-body .code-string {
          color: #ce9178;
        }

        .article-body .code-function {
          color: #dcdcaa;
        }

        .article-body .table-container {
          overflow-x: auto;
          margin: 28px 0;
          border: 1px solid var(--border);
          border-radius: 8px;
        }

        .article-body table {
          width: 100%;
          border-collapse: collapse;
          text-align: left;
          font-size: 14px;
        }

        .article-body th {
          background: var(--bg-subtle);
          font-weight: 700;
          color: var(--text);
          padding: 14px 16px;
          border-bottom: 1px solid var(--border);
          border-right: 1px solid var(--border);
        }

        .article-body td {
          padding: 14px 16px;
          border-bottom: 1px solid var(--border);
          border-right: 1px solid var(--border);
          color: var(--text-muted);
          vertical-align: top;
          line-height: 1.6;
        }

        .article-body th:last-child,
        .article-body td:last-child {
          border-right: none;
        }

        .article-body tr:last-child td {
          border-bottom: none;
        }

        .article-body pre.diagram {
          background: var(--bg-subtle);
          color: var(--primary-dark);
          border: 1px solid var(--border);
          padding: 18px;
          border-radius: 8px;
          text-align: left;
          font-size: 13px;
          white-space: pre-wrap;
          word-break: break-all;
        }

        @media (prefers-color-scheme: dark) {
          .article-body h3 {
            color: #00A586;
          }

          .article-body p code {
            color: #00A586;
          }

          .article-body pre.diagram {
            color: #00A586;
            background: #141F1D;
          }
        }

        .article-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem; /* 下の見出し（h2）との余白 */
  border-radius: 8px;   /* 角を少し丸くしたい場合（不要なら削除OK） */
}
    .article-wrap {
      max-width: 760px;
      margin: 0 auto;
      padding: 24px 24px 100px;
    }