@charset "utf-8";
:root {
  --ink: #0e0e0e;
  --paper: #f5f3ee;
  --accent: #e63f2e;
  --accent2: #2563eb;
  --muted: #6b6b6b;
  --border: #d4d0c8;
  --card: #ffffff;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
/* ── UTILS ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--sm {
  padding: 64px 0;
}
.label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.heading--sm {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  letter-spacing: 0.02em;
  border-radius: 999px;
}
.cta-btn:hover {
  background: #c73325;
  transform: translateY(-2px);
}
.cta-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.cta-btn--outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--ink);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
.logo {
  max-width: 220px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-cta {
  padding: 10px 20px;
  font-size: 13px;
  color: #fff !important;
}
/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background-image: url("../images/common/img_mv_bg.svg");
  background-position: top 0 right 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 500;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.badge {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  background: var(--card);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
/* ── PROBLEM ── */
#problem {
  background: #F6BE5B;
  color: #fff;
  padding: 96px 0;
}
#problem .label {
  color: #fff;
}
#problem .label::before {
  background: var(--accent);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: #2a2a2a;
  border: 1px solid #2a2a2a;
  margin-top: 48px;
}
.problem-item {
  background: #F6BE5B;
  padding: 24px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.problem-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: #2a2a2a;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.05em;
}
.problem-text {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}
.problem-text strong {
  color: var(--accent);
}
/* ── SOLUTION ── */
#solution {
  background: var(--card);
}
.solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution-copy {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 24px;
  font-weight: 300;
}
.solution-copy strong {
  color: var(--ink);
  font-weight: 700;
}
.solution-right {
  background: var(--paper);
  padding: 50px 40px 40px;
  position: relative;
}
.solution-right::before {
  content: 'QAエンジニアとは？';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 7px 8px 6px 12px;
  letter-spacing: 0.08em;
}
.solution-qa {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
.solution-qa p + p {
  margin-top: 12px;
}

/* ── AI CHECK ── */
#ai-check {
  background: #F6BE5B;
}
#ai-check .label {
  color: #fff;
}
#ai-check .label::before {
  background: var(--accent);
}
#ai-check .heading {
  color: var(--ink);
}
.heading-note {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  padding-left: 1em;
  text-indent: -1em;
}
.ai-check-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-check-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ai-check-card {
  background: var(--paper);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ai-check-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.ai-check-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
@media (max-width: 768px) {
  .ai-check-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .heading-note {
    font-size: 14px;
    margin-top: 10px;
  }
}

/* ── STRENGTHS ── */
#strengths {
  background: var(--paper);
}
.strength-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.strengths-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.strength-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.strength-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.strength-badge {
  background: var(--paper);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.strength-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.strength-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 2px;
}
/* ── CHECKLIST ── */
#checklist {
  background: #F6BE5B;
  color: #fff;
  padding: 96px 0;
}
#checklist .label {
  color: #fff;
}
#checklist .label::before {
  background: var(--accent);
}
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.check-category {
  background-color: #fff;
  padding: 40px 50px 60px;
}
.check-category-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
/* ── DELIVERABLES ── */
#deliverables {
  background: var(--card);
}
.deliverable-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.deliverable-card {
  border: 1.5px solid var(--ink);
  padding: 40px;
  position: relative;
}
.deliverable-card::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.05em;
  z-index: -1;
}
.deliverable-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.deliverable-card-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}
/* ── PRICING ── */
#pricing {
  background: var(--paper);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  font-size: 15px;
}
.pricing-table th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 24px;
  border-bottom: 2px solid var(--ink);
}
.pricing-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.plan-name {
  font-weight: 700;
  font-size: 16px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.plan-price span {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--accent);
}
.pricing-note {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pricing-note-card {
  padding: 40px;
  background: var(--card);
  font-size: 16px;
  line-height: 1.8;
}
.pricing-note-card strong {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}
/* ── PRICING PX NOTE ── */
.pricing-px-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 32px;
}
.pricing-px-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-px-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-px-badge {
  background: var(--paper);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.pricing-px-badge--sp {
  background: #eef2ff;
  color: #3b5bdb;
}
.pricing-px-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.pricing-px-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}
.pricing-px-desc strong {
  color: var(--ink);
  font-weight: 700;
}
.pricing-px-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.pricing-px-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.pricing-px-range {
  color: var(--muted);
  font-weight: 500;
}
.pricing-px-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}
.pricing-sub-note {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.75;
  margin-top: 16px;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: var(--card);
}
.pricing-example {
  margin-top: 32px;
  border: 1.5px solid var(--border);
  padding: 32px;
}
.pricing-example-head {
  margin-bottom: 10px;
}
.pricing-example-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-example-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.pricing-example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pricing-example-card {
  background: var(--paper);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-example-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.pricing-example-cond {
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pricing-example-calc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-example-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--muted);
  gap: 12px;
}
.pricing-example-item1 {
  flex-shrink: 0;
  font-weight: 500;
  color: var(--muted);
}
.pricing-example-item2 {
  font-weight: 700;
  color: var(--ink);
}
.pricing-example-row--subtotal {
  border-top: 1px dashed var(--border);
  padding-top: 8px;
  margin-top: 4px;
}
.pricing-example-row--total {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 4px;
  font-weight: 700;
  color: var(--ink);
}
.pricing-example-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.pricing-example-price span {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted)!important;
}
.pricing-example-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
/* ── CTA MID ── */
.cta-mid {
  background: var(--accent);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-mid .heading {
  color: #fff;
}
.cta-mid-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin: 16px 0 36px;
}
.cta-btn--white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.cta-btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
/* ── FLOW ── */
#flow {
  background: var(--card);
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.flow-num {
  color: var(--accent);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.flow-step:first-child .flow-num {
  background: var(--accent);
  color: var(--paper);
}
.flow-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.flow-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.flow-desc a {
  color: var(--accent);
}
/* ── FAQ ── */
#faq {
  background: var(--paper);
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--accent);
}
.faq-q-prefix {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.faq-q-text {
  flex: 1;
}
.faq-toggle {
  font-size: 30px;
  transition: transform 0.2s;
  color: var(--muted);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-a {
  display: none;
  padding: 0 0 40px 50px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-a {
  display: block;
}
/* ── FINAL CTA ── */
#final-cta {
  background: #F6BE5B;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta .hero-bg-text {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 40%);
  opacity: 0.2;
  font-size: 400px;
  font-weight: bold;
  z-index: -1;
}
#final-cta .heading {
  color: #fff;
}
#final-cta .sub {
  font-size: 18px;
  color: var(--ink);
  margin: 20px 0 44px;
  font-weight: 700;
}
/* ── FOOTER ── */
footer {
  background: #F6BE5B;
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-copy {
  font-size: 11px;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  font-size: 11px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.35s;
}
.delay-4 {
  animation-delay: 0.5s;
}
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .logo {
    max-width: 200px;
  }
  #hero {
    background-size: cover;
    padding: 120px 0 80px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .solution-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .strengths-grid {
    grid-template-columns: none;
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .deliverable-cards {
    grid-template-columns: 1fr;
  }
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .flow-steps::before {
    display: none;
  }
  .flow-step {
    margin-bottom: 20px;
  }
  .flow-desc br{
    display: none;
  }
  .pricing-note {
    grid-template-columns: 1fr;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tr {
    display: block;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    padding: 20px;
    background: var(--card);
  }
  .pricing-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .pricing-table td:last-child {
    border-bottom: none;
  }
  /* data-label で項目名を疑似表示 */
  .pricing-table td::before {
    content: attr(data-label);
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 12px;
  }
  .plan-price {
    font-size: 24px;
  }
  .plan-price span {
    font-size: 15px;
  }
  .pricing-note {
    grid-template-columns: 1fr;
  }
  .pricing-note-card {
    padding: 24px;
  }
  .pricing-px-note {
    grid-template-columns: 1fr;
  }
  .pricing-example {
    padding: 24px 20px;
  }
  .pricing-example-grid {
    grid-template-columns: 1fr;
  }
  .hero-bg-text {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 99;
    padding-top: 80px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 22px;
  }
  .nav-cta {
    font-size: 16px !important;
  }
  #final-cta {
    padding: 80px 0 40px;
  }
  .footer-inner {
    justify-content: center;
    flex-wrap: wrap;
  }
}