/* ACCESS ビジネス（biz.access.tc）固有スタイル。shared.css(共通)と併用する。
   ★shared.cssを1本化する_設計_04-BRNs_20260804 §1(3)＝biz固有と判定した67行をそのまま移設(捨てない)。
   同じもの(基礎リセット・レイアウト器等)はshared.css側に既にあるため、ここはbizのブランド色・
   価格カード・機能一覧など、他2面と共有しない見た目だけを持つ。 */
:root {
  --biz: #2563eb;
  --biz-dark: #1d4fc4;
  --ink: #0f172a;
  --sub: #475569;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --ok: #16a34a;
  --warn: #b45309;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    "Hiragino Sans", "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}
a {
  color: var(--biz);
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  display: block;
}
table thead,
table tbody {
  display: table;
  width: 100%;
  table-layout: fixed;
}
th,
td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: center;
  font-size: 15px;
}
th {
  background: var(--bg-soft);
  font-weight: 600;
}
td:first-child,
th:first-child {
  text-align: left;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-scroll table {
  min-width: 560px;
}

header.hero {
  background: linear-gradient(180deg, #eef3ff 0%, #ffffff 100%);
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--line);
}
.logo-crop {
  width: 280px;
  height: 93.4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
}
.logo-crop img {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -93.4px;
  left: 0;
}
.hero h1 {
  font-size: 32px;
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 800;
}
.hero .tagline {
  font-size: 18px;
  color: var(--sub);
  margin: 0 0 22px;
}
.price-lead {
  font-size: 20px;
  font-weight: 700;
  color: var(--biz-dark);
  margin-bottom: 22px;
}
.price-lead small {
  font-size: 14px;
  font-weight: 400;
  color: var(--sub);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}
.btn-primary {
  background: var(--biz);
  color: #fff;
}
.btn-primary:hover {
  background: var(--biz-dark);
}
.btn-secondary {
  background: #fff;
  color: var(--biz);
  border: 1.5px solid var(--biz);
}

section {
  padding: 52px 0;
}
section.soft {
  background: var(--bg-soft);
}
h2 {
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 800;
}
h2 .num {
  color: var(--biz);
  margin-right: 6px;
}
.lead {
  color: var(--sub);
  margin: 0 0 26px;
  font-size: 15px;
}
.callout {
  background: #eef3ff;
  border-left: 4px solid var(--biz);
  padding: 16px 18px;
  border-radius: 6px;
  font-size: 15px;
  margin: 20px 0;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 720px) {
  .grid3 {
    grid-template-columns: 1fr;
  }
}
.plan-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}
.plan-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.plan-card .cap {
  color: var(--biz-dark);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.plan-card .yen {
  font-size: 26px;
  font-weight: 800;
}
.plan-card .yen small {
  font-size: 13px;
  font-weight: 400;
  color: var(--sub);
}
.badge {
  display: inline-block;
  background: var(--biz);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 8px;
  vertical-align: middle;
}
.cols2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) {
  .cols2 {
    grid-template-columns: 1fr;
  }
}
.feat-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.feat-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.feat-list.ok li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 800;
}
.feat-list.soon li:before {
  content: "◔";
  position: absolute;
  left: 0;
  color: var(--warn);
  font-weight: 800;
}
.note-box {
  font-size: 13px;
  color: var(--sub);
  margin-top: 10px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--sub);
  font-size: 13px;
}
footer a {
  color: var(--sub);
  text-decoration: underline;
}
.source {
  font-size: 12px;
  color: #94a3b8;
}
details {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
}
summary {
  cursor: pointer;
  font-weight: 700;
}
.flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.flow span.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
}
.flow span.arrow {
  color: #94a3b8;
}
