@charset "UTF-8";

:root {
  --ink: #10213a;
  --navy: #102b57;
  --blue: #08a6db;
  --cyan: #56cce9;
  --teal: #3ac6bd;
  --yellow: #f6c93c;
  --muted: #66758a;
  --line: #dce3ea;
  --line-dark: rgba(255, 255, 255, .16);
  --paper: #ffffff;
  --soft: #f5f7f9;
  --soft-blue: #edf4f9;
  --dark: #0a172b;
  --shell: 1180px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.shell { width: min(var(--shell), calc(100% - var(--pad) * 2)); margin-inline: auto; }
.skip { position: fixed; top: -80px; left: 16px; z-index: 100; padding: 10px 18px; background: var(--navy); color: #fff; }
.skip:focus { top: 10px; }

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 92px;
  border-bottom: 1px solid rgba(16, 43, 87, .12);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: none; line-height: 0; }
.brand-lockup { width: 270px; height: 78px; object-fit: cover; object-position: center; }
.nav { display: flex; align-items: center; gap: 21px; font-size: 12px; font-weight: 700; }
.nav > a:not(.nav-cta) { color: #43536a; }
.nav > a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 15px; border: 1px solid #bdc9d5; }
.nav-cta.secondary { color: var(--navy); }
.nav-cta.primary { border-color: var(--navy); background: var(--navy); color: #fff; }
.menu-button { display: none; border: 1px solid #bac7d3; background: #fff; color: var(--navy); padding: 8px 12px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 100px) 0 56px;
  background:
    radial-gradient(circle at 12% 24%, rgba(255,255,255,.85), transparent 22rem),
    radial-gradient(circle at 72% 35%, rgba(96,218,209,.32), transparent 28rem),
    linear-gradient(118deg, #e8fff3 0%, #dff9f7 48%, #dcefff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(110deg, transparent 52%, rgba(255,255,255,.25) 52.2%, transparent 52.5%),
    linear-gradient(20deg, transparent 66%, rgba(255,255,255,.24) 66.2%, transparent 66.5%);
  border: 0;
}
.hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, var(--blue), var(--teal), var(--yellow));
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(38px, 4.5vw, 62px); align-items: center; }
.hero-copy { padding-bottom: 10px; }
.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: #2d5e98;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.eyebrow span, .section-label::before { content: ""; width: 24px; height: 2px; flex: none; background: var(--blue); }
h1 {
  margin: 27px 0 24px;
  color: #10213a;
  font-size: clamp(46px, 4.6vw, 60px);
  line-height: 1.23;
  letter-spacing: -.05em;
  font-weight: 720;
}
h1 span, h1 em { display: block; }
h1 em { color: #246dcc; font-style: normal; }
.hero-text { max-width: 39rem; color: #536277; font-size: 16px; }
.hero-actions { display: flex; gap: 12px; margin: 34px 0 0; }
.button { min-width: 168px; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid var(--navy); font-size: 13px; font-weight: 760; }
.button.gold { background: var(--navy); color: #fff; }
.button.gold:hover { background: #173b70; }
.button.outline { background: #fff; color: var(--navy); }
.button.outline:hover { background: var(--soft); }
.hero-sub { margin: 16px 0 0; color: #63748a; font-size: 12px; }
.hero-sub a { color: #176abb; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }
.hero-sub a:hover { color: var(--navy); }
.hero-text b { color: #1d4e8f; font-weight: 780; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; padding: 0; margin: 40px 0 0; border-top: 1px solid var(--line); }
.hero-facts li { padding: 16px 14px; border-right: 1px solid var(--line); }
.hero-facts li:first-child { padding-left: 0; }
.hero-facts li:last-child { border: 0; }
.hero-facts b, .hero-facts span { display: block; }
.hero-facts b { color: #152b4b; font-size: 17px; }
.hero-facts span { color: #718097; font-size: 10px; }
.hero-visual { position: relative; padding: 34px 78px 58px 0; }
.hero-product { position: relative; align-self: end; margin: 0; padding: 0; border: 1px solid rgba(16,43,87,.18); border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 28px 70px rgba(23, 53, 87, .17); transform: rotate(-1.2deg); }
.hero-product figcaption { height: 44px; display: flex; align-items: center; gap: 9px; padding: 0 14px; border-bottom: 1px solid #dce3ea; color: #61738a; background: #f8fafb; font-size: 10px; letter-spacing: .08em; }
.hero-product figcaption span { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.hero-product img { width: 100%; max-height: 610px; object-fit: cover; object-position: top; }
.hero-trust {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 205px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(30,73,105,.18);
}
.hero-trust span { color: #6d7d91; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.hero-trust strong { display: block; margin: 8px 0 4px; color: var(--navy); font-size: 24px; }
.hero-trust p { margin-bottom: 15px; color: #2c4d70; font-weight: 700; line-height: 1.55; }
.hero-trust small { display: block; padding-top: 13px; border-top: 1px solid var(--line); color: #75849a; line-height: 1.65; }

.proof { padding: 26px 0; border: 0; background: #edf0f4; }
.proof-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.proof-inner p { margin: 0; color: #59697d; }
.proof-inner p b { color: var(--ink); }
.proof-numbers { display: flex; gap: 32px; }
.proof-numbers span { color: #6f7e91; font-size: 11px; white-space: nowrap; }
.proof-numbers b { margin-right: 5px; color: var(--navy); font-size: 25px; }

.quick-showcase { padding: 24px 0 66px; background: #edf0f4; }
.quick-tabs { display: flex; justify-content: center; gap: 14px; margin-bottom: 20px; }
.quick-tabs span { padding: 10px 20px; border-radius: 8px; background: #a8b4c4; color: #fff; font-size: 13px; font-weight: 750; }
.quick-tabs .active { background: #fff; color: var(--blue); }
.quick-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 16px; border-radius: 18px; background: #fff; }
.quick-cards a { overflow: hidden; border-radius: 13px; background: #eef1f4; transition: transform .2s ease, box-shadow .2s ease; }
.quick-cards a:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(36, 74, 105, .14); }
.quick-cards img { width: 100%; aspect-ratio: 16 / 8.2; object-fit: cover; object-position: top; }
.quick-cards span, .quick-cards b { display: block; padding-inline: 16px; }
.quick-cards span { padding-top: 13px; color: #66758a; font-size: 11px; }
.quick-cards b { padding-top: 2px; padding-bottom: 15px; color: #172b46; font-size: 14px; }

.tour { background: #fbfcfd; }
.tour-stage { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.tour-steps { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; counter-reset: tour; }
.tour-steps button {
  width: 100%;
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid #cfd8e1;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.tour-steps button:hover { border-left-color: var(--cyan); transform: translateX(3px); }
.tour-steps button[aria-current="true"] { border-color: #b9d3ea; border-left-color: var(--blue); background: var(--soft-blue); }
.tour-steps span { color: #3476c4; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.tour-steps b { color: var(--ink); font-size: 16px; letter-spacing: -.02em; }
.tour-steps small { color: var(--muted); font-size: 12px; line-height: 1.7; }
.tour-steps button:not([aria-current="true"]) small { display: none; }
.tour-shot { position: sticky; top: 116px; margin: 0; padding: 0; overflow: hidden; border: 1px solid rgba(16,43,87,.18); border-radius: 20px; background: #fff; box-shadow: 0 24px 60px rgba(35,63,90,.15); }
.tour-shot figcaption { height: 46px; display: flex; align-items: center; gap: 10px; padding: 0 8px 0 16px; border-bottom: 1px solid #dce3ea; background: #f8fafb; color: #4b6b88; font-size: 11px; font-weight: 750; }
.tour-shot figcaption > span { width: 7px; height: 7px; flex: none; border-radius: 50%; background: var(--teal); }
.tour-shot figcaption em { flex: 1; font-style: normal; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tour-shot figcaption button { flex: none; padding: 5px 12px; border: 1px solid #cfd8e1; background: #fff; color: #4b6b88; font-size: 11px; font-weight: 750; cursor: pointer; }
.tour-shot figcaption button:hover { border-color: var(--blue); color: var(--blue); }
/* 実画面は横長(1600x740)から縦長(1600x1363)まで幅があるので cover だと切れる。
   ツアーは「何の画面か」が伝わることが目的なので、切らずに contain で収める。 */
.tour-shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: contain; object-position: center; background: #eef1f4; }

.section { position: relative; padding: clamp(88px, 10vw, 140px) 0; }
.section-heading { max-width: 760px; margin-bottom: 56px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .section-label { justify-content: center; }
.section-heading h2, .addon h2, .case h2, .faq h2, .contact h2 { margin: 14px 0 20px; font-size: clamp(37px, 4.7vw, 59px); line-height: 1.32; letter-spacing: -.04em; font-weight: 690; }
.section-heading > p:last-child { color: var(--muted); font-size: 16px; }

.problem { background: var(--soft); }
.before-after { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 22px; }
.before-after article { padding: 38px; border-top: 3px solid #a8b4c0; background: #fff; }
.before-after article > p { color: #768499; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.before-after h3 { margin: 10px 0 22px; font-size: 26px; letter-spacing: -.025em; }
.before-after ul { padding-left: 1.2em; color: #5c6c7f; }
.before-after li { margin: 6px 0; }
.before-after strong { display: block; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.before-after .after { border-top-color: var(--blue); }
.before-after .after > p, .before-after .after strong { color: #1d63b5; }
.flow-arrow { align-self: center; color: #52708f; font-size: 24px; }
.before-after-note { max-width: 860px; margin: 26px 0 0; color: #7a8899; font-size: 12px; line-height: 1.8; }

.benefits { background: #fbfcfd; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.reason-grid article { min-height: 325px; padding: 38px; border-right: 1px solid var(--line); }
.reason-grid article:first-child { padding-left: 0; }
.reason-grid article:last-child { border: 0; padding-right: 0; }
.reason-grid article > span, .feature-copy > span { color: #3476c4; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.reason-grid h3 { margin: 50px 0 15px; font-size: 25px; letter-spacing: -.025em; }
.reason-grid p { color: var(--muted); }

.features { overflow: hidden; background: #fff; color: var(--ink); }
.features::before { content: "FEATURES"; position: absolute; top: 30px; left: -10px; color: #f1f3f5; font-size: clamp(90px,16vw,250px); font-weight: 800; letter-spacing: -.06em; line-height: 1; }
.features .section-label { color: #2c6da5; }
.features .section-heading > p:last-child { color: var(--muted); }
.feature-list { display: grid; gap: 110px; }
.feature-list article { position: relative; display: grid; grid-template-columns: .74fr 1.26fr; gap: clamp(38px, 6vw, 80px); align-items: center; padding: clamp(36px,5vw,72px); border-radius: 32px; background: #f2f4f6; }
.feature-list article:nth-child(even) { grid-template-columns: 1.26fr .74fr; }
.feature-list article:nth-child(even) .feature-copy { order: 2; }
.feature-copy > span { display: flex; align-items: flex-end; gap: 18px; }
.feature-copy > span b { color: var(--blue); font-size: clamp(72px,9vw,126px); font-weight: 500; letter-spacing: -.08em; line-height: .8; }
.feature-copy > span small { padding-bottom: 8px; color: #4b6b88; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.feature-copy h3 { margin: 28px 0 18px; font-size: clamp(29px, 3.4vw, 43px); line-height: 1.38; letter-spacing: -.03em; }
.feature-copy p, .feature-copy li { color: #617187; }
.feature-copy ul { padding-left: 1.2em; }
.feature-copy li { margin: 5px 0; }
.feature-list figure, .addon figure { margin: 0; padding: 0; overflow: hidden; border: 0; border-radius: 22px; background: #fff; box-shadow: 0 24px 60px rgba(35,63,90,.15); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 70px; padding: 0; list-style: none; }
.feature-tags li, .case-tags span { padding: 8px 12px; border: 1px solid #d4dce4; border-radius: 999px; color: #5f7085; font-size: 12px; background: #fff; }

.screens { background: #fff; }
.screen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.screen-grid button { padding: 0; border: 1px solid #cfd8e1; background: #fff; text-align: left; cursor: zoom-in; }
.screen-grid img { aspect-ratio: 16 / 9; object-fit: cover; object-position: top; transition: opacity .2s; }
.screen-grid button:hover img { opacity: .88; }
.screen-grid span { display: block; padding: 15px 17px; border-top: 1px solid var(--line); color: #243c5b; font-weight: 750; }

.addon { background: var(--soft-blue); }
.addon-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.addon p, .addon li { color: #617187; }
.addon ul { padding-left: 1.2em; }
.addon figure { border-color: #c5d3df; background: #fff; box-shadow: 0 22px 60px rgba(25,58,92,.12); }
.addon-note { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid #cfdde8; font-size: 13px; }

.pricing { background: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 940px; margin: auto; }
.price-card { padding: 40px; border: 1px solid #cfd8e1; background: #fff; }
.price-card.main-price { border-top: 4px solid var(--blue); }
.price-card > p { color: #6c7b8d; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.price-card h3 { font-size: 24px; }
.price { display: flex; align-items: baseline; gap: 7px; margin: 25px 0; padding: 24px 0; border-block: 1px solid var(--line); }
.price b { color: var(--navy); font-size: 50px; line-height: 1; letter-spacing: -.04em; }
.price small, .price span { color: #6d7d91; font-size: 11px; }
.price-card ul { padding: 0; list-style: none; }
.price-card li { padding: 8px 0; border-bottom: 1px solid #e7ebef; }
.price-card li::before { content: "—"; margin-right: 10px; color: var(--blue); }
.price-notes { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 940px; margin: 22px auto 0; border-block: 1px solid var(--line); }
.price-notes p { margin: 0; padding: 17px; text-align: center; font-size: 12px; }
.price-notes p + p { border-left: 1px solid var(--line); }

.plan-table-wrap { max-width: 940px; margin: 40px auto 0; overflow-x: auto; }
.plan-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 13px; }
.plan-table caption { padding-bottom: 14px; color: #6c7b8d; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-align: left; }
.plan-table th, .plan-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.plan-table thead th { border-bottom: 2px solid var(--navy); color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.plan-table thead th:nth-child(2) { background: #f0f6fb; }
.plan-table tbody th { width: 34%; color: #4d5e73; font-weight: 700; }
.plan-table tbody td { color: #33455e; }
.plan-table tbody td:first-of-type { background: #f8fbfd; }
.plan-table tbody td b { color: var(--navy); font-size: 17px; letter-spacing: -.02em; }
.plan-table .yes { color: var(--blue); font-size: 15px; }

.price-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; max-width: 940px; margin: 46px auto 0; padding-top: 38px; border-top: 1px solid var(--line); }
.price-cta p { width: 100%; margin: 0; color: var(--muted); font-size: 14px; text-align: center; }

.security { background: var(--dark); color: #fff; }
.security .section-label { color: #9dc4e8; }
.security .section-heading { max-width: 720px; }
.security .section-heading > p:last-child { color: #a9b8c9; }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.security-grid article { padding: 32px 26px; background: var(--dark); }
.security-grid span { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.security-grid h3 { margin: 34px 0 12px; font-size: 20px; letter-spacing: -.02em; }
.security-grid p { margin: 0; color: #a9b8c9; font-size: 13px; }
.security-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.security-detail > div { padding: 34px; border: 1px solid rgba(255,255,255,.14); }
.security-honest { border-left: 4px solid var(--yellow) !important; }
.security-support { border-left: 4px solid var(--cyan) !important; }
.security-detail h3 { margin: 0 0 14px; font-size: 20px; letter-spacing: -.02em; }
.security-detail p { color: #a9b8c9; font-size: 13px; }
.security-honest ul { padding: 0; margin: 18px 0; list-style: none; }
.security-honest li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #dbe5ef; font-size: 13px; }
.security-honest li b { font-weight: 700; }
.security-note { margin: 0; }
.security-support dl { margin: 0 0 22px; }
.security-support dl > div { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.security-support dt { color: #8fa3b8; font-size: 12px; font-weight: 750; }
.security-support dd { margin: 0; color: #dbe5ef; font-size: 13px; }
.security-support a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.security-links { display: grid; gap: 9px; }
.security-links a { display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 12px; font-weight: 700; text-decoration: none; }
.security-links a:hover { border-color: var(--cyan); color: var(--cyan); }

.case { background: #123d78; color: #fff; }
.case-grid { display: grid; grid-template-columns: .46fr 1fr; gap: 72px; }
.case-label { min-height: 295px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-left: 4px solid var(--yellow); background: rgba(5,24,53,.18); }
.case-label span { font-size: 11px; letter-spacing: .12em; }
.case-label strong { font-size: 38px; letter-spacing: -.035em; }
.case .section-label { color: #b8d5ef; }
.case .section-label::before { background: var(--yellow); }
.case-lead { font-size: 20px; font-weight: 760; }
.case-grid > div:last-child > p:not(.section-label):not(.case-lead) { color: #c2d3e4; }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.case-tags span { border-color: rgba(255,255,255,.28); color: #fff; }
.case-points { margin-top: 30px; border-top: 1px solid rgba(255,255,255,.22); }
.case-points > div { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.case-points dt { color: #a8c8e6; font-size: 12px; font-weight: 750; }
.case-points dd { margin: 0; color: #dbe7f3; font-size: 14px; }
.case-note { margin: 26px 0 0; padding: 16px 18px; border-left: 3px solid var(--yellow); background: rgba(5,24,53,.28); color: #bfd2e4 !important; font-size: 12px; }

.steps { background: #fff; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; list-style: none; border-block: 1px solid var(--line); }
.step-grid li { min-height: 220px; padding: 29px; border-right: 1px solid var(--line); }
.step-grid li:first-child { padding-left: 0; }
.step-grid li:last-child { border: 0; padding-right: 0; }
.step-grid span { color: var(--blue); font-size: 11px; font-weight: 800; }
.step-grid h3 { margin: 46px 0 10px; }
.step-grid p { color: var(--muted); font-size: 13px; }
.step-grid small { display: block; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); color: #8493a6; font-size: 11px; line-height: 1.7; }

.faq { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .62fr 1fr; gap: 82px; }
.faq-grid > div:first-child > p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid #cad3dc; }
.faq-list details { padding: 22px 0; border-bottom: 1px solid #cad3dc; }
.faq-list summary { position: relative; padding-right: 40px; cursor: pointer; font-weight: 740; }
.faq-list summary::after { content: "＋"; position: absolute; right: 5px; color: var(--blue); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 16px 35px 0 0; color: var(--muted); }

.company { background: #fff; }
.company-grid { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.company .section-heading { margin-bottom: 0; }
.company-profile { margin: 0; border-top: 2px solid var(--navy); }
.company-profile > div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 21px 4px; border-bottom: 1px solid var(--line); }
.company-profile dt { color: #718097; font-size: 12px; font-weight: 750; }
.company-profile dd { margin: 0; color: #263c58; font-weight: 650; }
.company-profile a { color: #176abb; text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }

.contact { padding: 94px 0; background: var(--dark); color: #fff; }
.contact .section-label { color: #a9c8e5; }
.contact-inner { display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: center; }
.contact-status { display: block; padding: 32px; border: 1px solid rgba(255,255,255,.22); border-left: 4px solid var(--cyan); transition: border-color .2s ease, background .2s ease; }
.contact-status:hover { border-color: var(--cyan); background: rgba(86,204,233,.07); }
.contact-status span, .contact-status strong { display: block; }
.contact-status span { color: #91a3b7; font-size: 11px; }
.contact-status strong { margin: 4px 0 10px; font-size: 32px; }
.contact-status p { margin: 0; color: #9eacbd; font-size: 12px; }
.contact-inner > div:first-child > p:not(.section-label) { color: #b3c1d1; }
.contact-hours { font-size: 13px; }
.contact-cards { display: grid; gap: 14px; }
.contact-cards .contact-status { padding: 26px 28px; }
.contact-cards .contact-status strong { font-size: 25px; }

.cta-bar { display: none; position: fixed; z-index: 70; left: 0; right: 0; bottom: 0; gap: 8px; padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(16,43,87,.14); background: rgba(255,255,255,.97); backdrop-filter: blur(12px); box-shadow: 0 -8px 24px rgba(16,43,87,.1); }
.cta-bar a { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; font-size: 13px; font-weight: 760; }
.cta-bar-primary { flex: 1.6; border: 1px solid var(--navy); background: var(--navy); color: #fff; }
.cta-bar-secondary { flex: 1; border: 1px solid #bdc9d5; background: #fff; color: var(--navy); }

.footer { padding: 42px 0 0; border-top: 1px solid var(--line); background: #fff; color: #69798d; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; }
.footer-logo { display: block; width: 270px; }
.footer-logo img { width: 100%; height: 78px; object-fit: cover; object-position: center; }
.footer p { margin: 0; font-size: 10px; }
.footer-legal-wrap { margin-top: 34px; background: #03070d; }
.footer-legal { display: flex; align-items: center; gap: 26px; padding-block: 18px; color: #fff; }
.footer-legal a { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.footer-legal a:hover { color: var(--cyan); }
.footer-legal span { color: #8fa0b4; font-size: 22px; font-weight: 300; line-height: 1; }

.policy-main { background: #f5f7f9; }
.policy-hero { padding: 88px 0 72px; background: linear-gradient(118deg, #e8fff3 0%, #dff9f7 48%, #dcefff 100%); }
.policy-hero h1 { margin-bottom: 18px; }
.policy-hero p { max-width: 680px; margin-bottom: 0; color: #536277; }
.policy-content { padding: 72px 0 110px; }
.policy-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 56px; }
.policy-nav a { display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding: 0 22px; border: 1px solid var(--line); background: #fff; color: var(--navy); font-size: 13px; font-weight: 750; }
.policy-nav a:hover { border-color: var(--blue); color: var(--blue); }
.policy-section { scroll-margin-top: 100px; padding: clamp(30px, 5vw, 58px); border-top: 4px solid var(--blue); background: #fff; }
.policy-section + .policy-section { margin-top: 24px; }
.policy-section h2 { margin-bottom: 26px; font-size: clamp(28px, 4vw, 42px); line-height: 1.4; }
.policy-section h3 { margin: 30px 0 10px; font-size: 18px; }
.policy-section p, .policy-section li { color: #5e6f83; }
.policy-section ol, .policy-section ul { padding-left: 1.4em; }
.policy-section li + li { margin-top: 8px; }
.policy-date { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 12px; }

.draft-banner { margin-bottom: 32px; padding: 22px 26px; border: 1px solid #e3c65a; border-left: 4px solid var(--yellow); background: #fffaeb; }
.draft-banner b { display: block; margin-bottom: 6px; color: #7a5c00; }
.draft-banner p { margin: 0; color: #6d6144; font-size: 13px; }
.todo { display: inline-block; padding: 2px 10px; border-radius: 4px; background: #f6c93c; color: #4a3800; font-size: 12px; font-weight: 800; }
.tokusho { margin: 0; border-top: 2px solid var(--navy); }
.tokusho > div { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.tokusho dt { color: #718097; font-size: 13px; font-weight: 750; }
.tokusho dd { margin: 0; color: #33455e; }
.tokusho dd small { display: block; margin-top: 8px; color: #8493a6; font-size: 12px; line-height: 1.75; }
.tokusho a { color: #176abb; text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }

.image-dialog { width: min(1200px, 94vw); max-width: none; padding: 42px 10px 10px; border: 0; background: #071121; box-shadow: 0 35px 110px rgba(0,0,0,.6); }
.image-dialog::backdrop { background: rgba(2,8,18,.9); }
.image-dialog img { width: 100%; max-height: 84vh; object-fit: contain; }
.dialog-close { position: absolute; top: 3px; right: 10px; border: 0; background: none; color: #fff; font-size: 28px; cursor: pointer; }

@media (max-width: 1080px) {
  .nav { position: absolute; display: none; top: 92px; left: 0; right: 0; padding: 24px var(--pad); border-bottom: 1px solid var(--line); background: #fff; flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .menu-button { display: block; }
  .nav-cta { text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 740px; padding-bottom: 0; }
  .hero-visual { padding: 20px 84px 60px 0; }
  .quick-tabs { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .quick-tabs::-webkit-scrollbar { display: none; }
  .quick-tabs span { flex: none; white-space: nowrap; }
  .quick-cards { grid-template-columns: repeat(2, 1fr); }
  .tour-stage { grid-template-columns: 1fr; gap: 24px; }
  .tour-shot { position: static; order: -1; }
  .tour-steps button:not([aria-current="true"]) small { display: block; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .security-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 80px; }
  .header { height: 76px; }
  .brand-lockup { width: 198px; height: 57px; }
  .nav { top: 76px; }
  .hero { padding-top: 50px; }
  .hero::before { display: none; }
  .hero-glow { width: 5px; }
  .hero-grid { gap: 46px; }
  h1 { font-size: clamp(40px, 12vw, 54px); }
  .hero-text { font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-width: 0; padding: 0 10px; font-size: 12px; }
  .hero-facts b { font-size: 15px; }
  .hero-facts li { padding: 14px 8px; }
  .hero-visual { width: calc(100% + var(--pad) * 2); margin-inline: calc(-1 * var(--pad)); padding: 0 0 102px; }
  .hero-product { width: 100%; border-inline: 0; border-radius: 0; transform: none; box-shadow: 0 20px 48px rgba(23, 53, 87, .13); }
  .hero-product figcaption { height: 39px; padding-inline: var(--pad); }
  .hero-trust { right: var(--pad); bottom: 17px; width: 184px; padding: 17px; border-radius: 16px; }
  .hero-trust strong { margin-top: 5px; font-size: 21px; }
  .hero-trust p { margin-bottom: 10px; font-size: 12px; }
  .hero-trust small { padding-top: 9px; font-size: 9px; }
  .proof-inner { display: block; }
  .proof-numbers { margin-top: 14px; gap: 12px; justify-content: space-between; }
  .proof-numbers span { font-size: 10px; }
  .proof-numbers b { font-size: 20px; }
  .quick-showcase { padding-bottom: 46px; }
  .quick-showcase .shell { width: 100%; }
  .quick-tabs { padding-inline: var(--pad); margin-bottom: 15px; }
  .quick-tabs span { padding: 9px 15px; font-size: 12px; }
  .quick-cards { display: flex; gap: 12px; overflow-x: auto; padding: 13px var(--pad) 18px; border-radius: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .quick-cards::-webkit-scrollbar { display: none; }
  .quick-cards a { flex: 0 0 min(76vw, 292px); scroll-snap-align: start; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .addon h2, .case h2, .faq h2, .contact h2 { font-size: 34px; }
  .before-after { grid-template-columns: 1fr; }
  .before-after article { padding: 27px; }
  .flow-arrow { transform: rotate(90deg); text-align: center; }
  .reason-grid, .screen-grid, .price-grid, .price-notes, .step-grid { grid-template-columns: 1fr; }
  .reason-grid article, .reason-grid article:first-child, .reason-grid article:last-child { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .reason-grid h3 { margin-top: 24px; }
  .feature-list { gap: 75px; }
  .feature-list article, .feature-list article:nth-child(even), .addon-grid, .case-grid, .faq-grid, .company-grid, .contact-inner { grid-template-columns: 1fr; }
  .feature-list article:nth-child(even) .feature-copy { order: 0; }
  .feature-list article { gap: 26px; margin-inline: calc(-1 * var(--pad)); padding: 42px var(--pad); border-radius: 0; }
  .feature-copy > span { gap: 12px; }
  .feature-copy > span b { font-size: 78px; }
  .feature-copy > span small { padding-bottom: 4px; }
  .feature-copy h3 { margin-top: 23px; }
  .feature-list figure { margin-inline: 0; border-radius: 14px; }
  .feature-tags { margin-top: 46px; }
  .addon-grid { gap: 35px; }
  .addon figure { margin-inline: calc(-1 * var(--pad)); border-inline: 0; }
  .price-card { padding: 28px; }
  .price b { font-size: 44px; }
  .price-notes p { text-align: left; }
  .price-notes p + p { border-left: 0; border-top: 1px solid var(--line); }
  .case-grid { gap: 30px; }
  .case-label { min-height: 170px; }
  .case-label strong { font-size: 31px; }
  .step-grid li, .step-grid li:first-child, .step-grid li:last-child { min-height: auto; padding: 27px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-grid h3 { margin-top: 20px; }
  .faq-grid { gap: 35px; }
  .company-grid { gap: 36px; }
  .company-profile > div { grid-template-columns: 1fr; gap: 5px; padding: 18px 0; }
  .tour-shot { margin-inline: calc(-1 * var(--pad)); border-inline: 0; border-radius: 0; }
  .tour-shot img { aspect-ratio: 16 / 12; }
  .tour-steps button { padding: 15px 16px; }
  .tour-steps b { font-size: 15px; }
  .plan-table-wrap { margin-inline: calc(-1 * var(--pad)); padding-inline: var(--pad); }
  .plan-table { font-size: 12px; }
  .plan-table th, .plan-table td { padding: 12px 12px; }
  .price-cta { margin-top: 34px; padding-top: 30px; }
  .price-cta .button { flex: 1 1 100%; }
  .security-grid { grid-template-columns: 1fr; }
  .security-grid article { padding: 26px 22px; }
  .security-grid h3 { margin-top: 22px; }
  .security-detail > div { padding: 26px 22px; }
  .security-honest li { flex-direction: column; gap: 2px; }
  .case-points > div { grid-template-columns: 1fr; gap: 4px; }
  .contact { padding: 75px 0; }
  .contact-inner { gap: 27px; }
  .footer { padding-bottom: 0; }
  .footer-logo img { height: 78px; }
  .footer-legal-wrap { margin-top: 26px; }
  .footer-legal { align-items: stretch; flex-direction: column; gap: 0; padding-block: 8px 72px; }
  .footer-legal a { justify-content: space-between; min-height: 50px; border-bottom: 1px solid rgba(255,255,255,.1); white-space: normal; }
  .policy-hero { padding: 64px 0 54px; }
  .policy-content { padding: 48px 0 80px; }
  .policy-nav { grid-template-columns: 1fr; margin-bottom: 38px; }
  .policy-section { margin-inline: calc(-1 * var(--pad)); padding: 34px var(--pad); }
  .tokusho > div { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .cta-bar { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .screen-grid img, .tour-steps button, .quick-cards a { transition: none; }
}
