/* ACCESS 案内サイト 共通スタイル。テーブル多用・シンプル・安っぽく見せない。 */
:root {
  --ink: #14181f;
  --ink-soft: #4b5563;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --accent: #14181f;
  --accent-soft: #eef1f4;
  --radius: 10px;
  --maxw: 1040px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP",
    "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
a {
  color: var(--accent);
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── ヘッダー ── */
header.site {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  z-index: 10;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.brand-logo .tier-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
}
nav.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
nav.site-nav a:hover {
  color: var(--ink);
}
nav.site-nav a.cta {
  color: #fff;
  background: var(--accent);
  padding: 9px 16px;
  border-radius: 8px;
}
nav.site-nav a.cta:hover {
  opacity: 0.9;
}

/* ── ヒーロー ── */
.hero {
  padding: 64px 0 48px;
  text-align: center;
}
.hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 34px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.hero p.lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 auto 26px;
  max-width: 620px;
}
.hero .price-line {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero .price-line small {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero .sub-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.92;
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover {
  background: var(--bg-soft);
}

/* ── セクション ── */
section {
  padding: 52px 0;
  border-top: 1px solid var(--line);
}
section:first-of-type {
  border-top: none;
}
section.soft {
  background: var(--bg-soft);
}
h2.sec-title {
  font-size: 22px;
  margin: 0 0 6px;
}
p.sec-desc {
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-size: 15px;
}

/* ── 表 ── */
table.tbl {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}
table.tbl th,
table.tbl td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: center;
  vertical-align: middle;
}
table.tbl th {
  background: var(--bg-soft);
  font-weight: 700;
}
table.tbl td:first-child,
table.tbl th:first-child {
  text-align: left;
  background: var(--bg-soft);
  font-weight: 600;
  white-space: nowrap;
}
table.tbl.price td.plan-name,
table.tbl.price th.plan-name {
  font-weight: 700;
}
table.tbl.price td.price-cell {
  font-size: 19px;
  font-weight: 700;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ── 3種比較カード ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 820px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }
}
.tier-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.tier-card .tier-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}
.tier-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.tier-card .tier-catch {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 14px;
}
.tier-card .tier-price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tier-card .tier-price small {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.tier-card .btn {
  margin-top: auto;
  text-align: center;
}

/* ── チェックリスト ── */
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 700px) {
  .check-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.check-grid li {
  font-size: 14px;
  padding: 4px 0;
}
.check-grid li::before {
  content: "✓ ";
  color: #2e9e5b;
  font-weight: 700;
}

.status-block {
  margin-bottom: 22px;
}
.status-block h4 {
  font-size: 14.5px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.status-block p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-q {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 6px;
}
.faq-a {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
}

/* ── ステップ ── */
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  background: #fff;
}
.step .n {
  counter-increment: step;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin: 0 auto 10px;
}
.step .n::before {
  content: counter(step);
}
.step p {
  font-size: 12.5px;
  margin: 0;
}

/* ── フッター ── */
footer.site {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg-soft);
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site .flinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer.site a {
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}
footer.site a:hover {
  color: var(--ink);
}
footer.site .copyright {
  font-size: 12px;
  color: #9aa2ad;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 26px;
  }
  nav.site-nav {
    gap: 12px;
  }
  nav.site-nav a:not(.cta) {
    display: none;
  }
}
