/* ==========================================================================
   InHouse SaaS Factory LP v2
   設計方針: 白地・余白・罫線・表組みで「整っていること」が信頼を作る。
   装飾は 1px の罫線と藍 1 色のみ。動きは hover と details 開閉だけ。
   ========================================================================== */

:root {
    /* 色 */
    --ink: #1f242e;          /* 墨色（本文） */
    --ink-soft: #555c69;     /* 補足文 */
    --ink-faint: #8a8f99;    /* キャプション */
    --paper: #ffffff;
    --paper-alt: #f7f5f0;    /* 生成り */
    --indigo: #1e3a5f;       /* 藍（唯一のアクセント） */
    --indigo-deep: #14283f;
    --indigo-pale: #eef2f7;
    --rule: #d9d6cf;         /* 罫線 */
    --rule-strong: #1f242e;
    --vermilion: #b3402f;    /* 朱（「必須」など機能表示のみ） */

    /* タイポグラフィ */
    --serif: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
    --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;

    --measure: 1080px;
}

/* ---------- リセット・基本 ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.9;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.55;
    margin: 0;
    letter-spacing: 0.02em;
}

p { margin: 0; }

a { color: var(--indigo); }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--measure);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- 共通: セクション ---------- */

.section { padding: 88px 0; }
.section--alt { background: var(--paper-alt); }
.section--rule-top { border-top: 1px solid var(--rule); }

/* セクション見出し: 通し番号 + 罫線 + 明朝 */
.section-head {
    margin-bottom: 56px;
}

.section-head__label {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 18px;
}

.section-head__num {
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 0.28em;
    color: var(--indigo);
}

.section-head__label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--rule);
    transform: translateY(-4px);
}

.section-head__title {
    font-size: clamp(24px, 3.4vw, 32px);
}

.section-head__lede {
    margin-top: 18px;
    max-width: 40em;
    color: var(--ink-soft);
    font-size: 15px;
}

/* ---------- ボタン ---------- */

.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-align: center;
    padding: 14px 34px;
    border-radius: 3px;
    border: 1px solid var(--indigo);
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.btn--primary {
    background: var(--indigo);
    color: #fff;
}

.btn--primary:hover { background: var(--indigo-deep); }

.btn--ghost {
    background: transparent;
    color: var(--indigo);
}

.btn--ghost:hover { background: var(--indigo-pale); }

.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ---------- ヘッダー ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--rule);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand {
    text-decoration: none;
    color: var(--ink);
    line-height: 1.35;
}

.brand__name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.brand__sub {
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
}

.site-header .btn {
    padding: 9px 22px;
    font-size: 13.5px;
    white-space: nowrap;
}

/* ---------- ヒーロー ---------- */

.hero {
    padding: 72px 0 80px;
    border-bottom: 1px solid var(--rule);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
    gap: 56px;
    align-items: center;
}

.hero__title {
    font-size: clamp(30px, 4.6vw, 44px);
    line-height: 1.5;
    margin-bottom: 26px;
}

.hero__lede {
    color: var(--ink-soft);
    max-width: 33em;
    margin-bottom: 34px;
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 36px;
}

.hero__fact {
    flex: 1 1 0;
    min-width: 150px;
    padding: 14px 18px 14px 0;
    margin-right: 18px;
    border-right: 1px solid var(--rule);
}

.hero__fact:last-child { border-right: none; margin-right: 0; }

.hero__fact-label {
    font-size: 11.5px;
    letter-spacing: 0.1em;
    color: var(--ink-faint);
    margin-bottom: 2px;
}

.hero__fact-value {
    font-family: var(--serif);
    font-size: 15.5px;
    font-weight: 600;
    white-space: nowrap;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual figure { margin: 0; }

.screenshot-frame {
    border: 1px solid var(--rule);
    background: #fff;
    box-shadow: 12px 12px 0 0 var(--paper-alt);
}

.screenshot-frame__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--rule);
}

.screenshot-frame__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rule);
}

.screenshot-frame img { width: 100%; }

.screenshot-caption {
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--ink-faint);
    line-height: 1.7;
}

/* ---------- 02 お困りごと ---------- */

.trouble-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}

.trouble {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 30px 28px 32px;
    background: var(--paper);
}

.trouble__quote {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 14px;
}

.trouble__quote::before { content: "「"; color: var(--indigo); }
.trouble__quote::after { content: "」"; color: var(--indigo); }

.trouble__body {
    font-size: 14.5px;
    color: var(--ink-soft);
}

/* 統計 */
.stats {
    margin-top: 56px;
    border: 1px solid var(--rule);
    background: var(--paper);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stat {
    padding: 26px 28px;
    border-right: 1px solid var(--rule);
}

.stat:last-child { border-right: none; }

.stat__value {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--indigo);
    line-height: 1.2;
}

.stat__value small {
    font-size: 16px;
    margin-left: 2px;
}

.stat__label {
    margin-top: 6px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.stats__source {
    border-top: 1px solid var(--rule);
    padding: 12px 28px;
    font-size: 11.5px;
    color: var(--ink-faint);
    line-height: 1.8;
}

.stats__source a { color: inherit; }

/* ---------- 03 できること ---------- */

.service-list { counter-reset: svc; }

.service {
    display: grid;
    grid-template-columns: 64px minmax(0, 320px) 1fr;
    gap: 28px;
    padding: 34px 0;
    border-bottom: 1px solid var(--rule);
}

.service:first-child { border-top: 1px solid var(--rule-strong); }
.service:last-child { border-bottom: 1px solid var(--rule-strong); }

.service__num {
    font-family: var(--serif);
    font-size: 15px;
    letter-spacing: 0.2em;
    color: var(--indigo);
    padding-top: 4px;
}

.service__title {
    font-size: 20px;
}

.service__body {
    font-size: 15px;
    color: var(--ink-soft);
}

.service__body strong { color: var(--ink); font-weight: 700; }

/* ---------- 04 業界別 ---------- */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}

.industry {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--paper);
    padding: 30px 30px 26px;
    display: flex;
    flex-direction: column;
}

.industry__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.industry__name {
    font-size: 20px;
}

.industry__kana {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--ink-faint);
}

.industry h4 {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--indigo);
    margin: 14px 0 8px;
}

.industry ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: var(--ink-soft);
}

.industry ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    line-height: 1.75;
}

.industry ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 1px;
    background: var(--indigo);
}

.industry__demo {
    margin-top: auto;
    padding-top: 18px;
    font-size: 13.5px;
}

.industry__demo a {
    color: var(--indigo);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.industry__demo a:hover { color: var(--indigo-deep); }

/* ---------- 05 動くサンプル ---------- */

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

.demo-card {
    border: 1px solid var(--rule);
    background: var(--paper);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: border-color 0.18s ease;
}

.demo-card:hover { border-color: var(--indigo); }

.demo-card__img {
    border-bottom: 1px solid var(--rule);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-alt);
}

.demo-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.demo-card__body { padding: 18px 20px 20px; }

.demo-card__industry {
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--indigo);
    margin-bottom: 6px;
}

.demo-card__title {
    font-family: var(--serif);
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 8px;
}

.demo-card__desc {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.demo-card__cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--indigo);
    margin-top: auto;
}

.demo-note {
    margin-top: 36px;
    padding: 16px 22px;
    border: 1px solid var(--rule);
    background: var(--paper);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.9;
}

/* ---------- 06 料金 ---------- */

.price-table-wrap { overflow-x: auto; }

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    font-size: 14.5px;
}

.price-table th,
.price-table td {
    border: 1px solid var(--rule);
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}

.price-table thead th {
    background: var(--indigo);
    color: #fff;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-color: var(--indigo);
    padding: 12px 20px;
}

.price-table .plan-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.price-table .plan-name small {
    display: block;
    font-family: var(--sans);
    font-size: 11.5px;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.price-table .price {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 700;
    color: var(--indigo);
    white-space: nowrap;
}

.price-table .price small {
    font-size: 12px;
    font-family: var(--sans);
    font-weight: 400;
    color: var(--ink-soft);
}

.price-table ul {
    margin: 0;
    padding-left: 1.2em;
}

.price-table ul li { margin-bottom: 4px; }

.price-notes {
    margin-top: 22px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 2.0;
}

.price-notes li { margin-bottom: 2px; }

/* ---------- 07 進め方 ---------- */

.flow-list { counter-reset: flow; }

.flow {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--rule);
}

.flow:first-child { border-top: 1px solid var(--rule-strong); }
.flow:last-child { border-bottom: 1px solid var(--rule-strong); }

.flow__step {
    font-family: var(--serif);
}

.flow__step-num {
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--indigo);
    display: block;
}

.flow__step-title {
    font-size: 19px;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

.flow__step-meta {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-faint);
    display: block;
    margin-top: 6px;
}

.flow__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.flow__col h4 {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--indigo);
    margin: 0 0 6px;
}

.flow__col p {
    font-size: 14px;
    color: var(--ink-soft);
}

.flow__note {
    grid-column: 1 / -1;
    font-size: 13px;
    color: var(--ink-faint);
    border-top: 1px dashed var(--rule);
    padding-top: 10px;
}

/* ---------- 08 代表者 ---------- */

.profile {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 56px;
    align-items: start;
}

.profile__name-block {
    border-left: 3px solid var(--indigo);
    padding-left: 22px;
    margin-bottom: 28px;
}

.profile__role {
    font-size: 12.5px;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
}

.profile__name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.4;
}

.profile__name small {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: var(--ink-faint);
    margin-left: 14px;
}

.profile__bio p {
    margin-bottom: 16px;
    font-size: 15px;
}

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

.promise {
    border: 1px solid var(--rule);
    background: var(--paper);
}

.promise__head {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    border-bottom: 1px solid var(--rule);
    background: var(--paper-alt);
}

.promise ul {
    list-style: none;
    margin: 0;
    padding: 10px 24px 18px;
}

.promise li {
    position: relative;
    padding: 10px 0 10px 22px;
    font-size: 14px;
    line-height: 1.8;
    border-bottom: 1px dashed var(--rule);
}

.promise li:last-child { border-bottom: none; }

.promise li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05em;
    width: 10px;
    height: 10px;
    border: 1px solid var(--indigo);
    background: var(--indigo-pale);
}

/* ---------- 09 FAQ ---------- */

.faq-list {
    border-top: 1px solid var(--rule-strong);
}

.faq {
    border-bottom: 1px solid var(--rule);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 34px 1fr 24px;
    gap: 12px;
    align-items: baseline;
    padding: 22px 4px;
    font-family: var(--serif);
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.7;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary:hover { color: var(--indigo); }

.faq__q {
    font-family: var(--serif);
    color: var(--indigo);
    font-size: 15px;
    letter-spacing: 0.1em;
}

.faq__toggle {
    position: relative;
    width: 16px;
    height: 16px;
    justify-self: end;
    align-self: center;
}

.faq__toggle::before,
.faq__toggle::after {
    content: "";
    position: absolute;
    background: var(--indigo);
    transition: transform 0.2s ease;
}

.faq__toggle::before {
    left: 0; right: 0; top: 7px; height: 1px;
}

.faq__toggle::after {
    top: 0; bottom: 0; left: 7px; width: 1px;
}

.faq[open] .faq__toggle::after { transform: scaleY(0); }

.faq__a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 0 4px 24px;
}

.faq__a-label {
    font-family: var(--serif);
    color: var(--ink-faint);
    font-size: 15px;
    letter-spacing: 0.1em;
}

.faq__a-body {
    font-size: 14.5px;
    color: var(--ink-soft);
}

.faq__a-body p { margin-bottom: 10px; }
.faq__a-body p:last-child { margin-bottom: 0; }

/* ---------- 10 お問い合わせ ---------- */

.contact {
    background: var(--indigo-deep);
    color: #fff;
}

.contact .section-head__num { color: #9db4cf; }
.contact .section-head__label::after { background: rgba(255, 255, 255, 0.25); }
.contact .section-head__title { color: #fff; }
.contact .section-head__lede { color: #c4cfdd; }

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
}

.contact__points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact__points li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14.5px;
    line-height: 1.8;
    color: #dde4ec;
}

.contact__points li strong {
    display: block;
    font-family: var(--serif);
    font-size: 16px;
    color: #fff;
    margin-bottom: 2px;
}

.contact-form {
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--rule);
    padding: 36px 36px 40px;
}

.form-field { margin-bottom: 22px; }

.form-field label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-field .req,
.form-field .opt {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 1px 7px;
    margin-left: 8px;
    vertical-align: 1px;
}

.form-field .req {
    color: var(--vermilion);
    border: 1px solid var(--vermilion);
}

.form-field .opt {
    color: var(--ink-faint);
    border: 1px solid var(--rule);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 2px;
    padding: 11px 14px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--indigo);
    box-shadow: 0 0 0 2px var(--indigo-pale);
}

.form-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-bottom: 26px;
}

.form-consent input { margin-top: 5px; }

.contact-form .btn { width: 100%; }

.form-status {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
    display: none;
}

.form-status--error {
    display: block;
    color: var(--vermilion);
    border: 1px solid var(--vermilion);
    padding: 12px 16px;
}

.form-success {
    text-align: left;
    padding: 12px 4px;
}

.form-success h3 {
    font-size: 21px;
    margin-bottom: 14px;
}

.form-success p {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin-bottom: 10px;
}

/* honeypot: 人間には見えない位置に置く（display:none は bot が検知するため使わない） */
.hp-field {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- フッター ---------- */

.site-footer {
    border-top: 1px solid var(--rule);
    background: var(--paper);
    padding: 44px 0 36px;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.site-footer__id .brand__name { font-size: 16px; }

.site-footer__meta {
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 2.0;
}

.site-footer__nav {
    display: flex;
    gap: 24px;
    font-size: 13px;
}

.site-footer__nav a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 1px;
}

.site-footer__nav a:hover { color: var(--indigo); border-color: var(--indigo); }

.site-footer__copy {
    margin-top: 28px;
    font-size: 11.5px;
    color: var(--ink-faint);
}

/* ---------- #234 オファー軽量化・信頼要素（2026-07-05） ---------- */

/* ページ内アンカーへのジャンプ時に sticky ヘッダーで隠れないようにする */
.section,
.monitor { scroll-margin-top: 76px; }

/* ヒーロー: 第1号募集の注記と軽CTAマイクロコピー */
.hero__notice {
    margin: -18px 0 32px;
    font-size: 13.5px;
}

.hero__notice a {
    color: var(--indigo);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.hero__notice a:hover { color: var(--indigo-deep); }

.hero__notice strong { font-weight: 700; }

.hero__cta-note {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--ink-faint);
}

/* 料金: 第1号募集ブロック */
.monitor {
    margin-top: 48px;
    border: 1px solid var(--rule-strong);
    background: var(--paper);
}

.monitor__head {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 28px;
    border-bottom: 1px solid var(--rule);
    background: var(--indigo-pale);
}

.monitor__badge {
    font-family: var(--serif);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff;
    background: var(--indigo);
    padding: 4px 12px;
    white-space: nowrap;
}

.monitor__title { font-size: 19px; }

.monitor__body { padding: 26px 28px 30px; }

.monitor__lede {
    font-size: 14.5px;
    color: var(--ink-soft);
    max-width: 44em;
}

.monitor__lede strong {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--indigo);
    white-space: nowrap;
}

.monitor__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 22px 0 18px;
}

.monitor__col h4 {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--indigo);
    margin: 0 0 8px;
}

.monitor__col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: var(--ink-soft);
}

.monitor__col li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    line-height: 1.8;
}

.monitor__col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 7px;
    height: 1px;
    background: var(--indigo);
}

.monitor__note {
    font-size: 12.5px;
    color: var(--ink-faint);
    margin-bottom: 20px;
}

/* ご検討の材料の帯（資料・業務セルフチェック） */
.section.doc-band { padding: 56px 0; }

.doc-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.doc-band__title {
    font-size: clamp(20px, 2.6vw, 26px);
    margin-bottom: 10px;
}

.doc-band__lede {
    font-size: 14px;
    color: var(--ink-soft);
    max-width: 38em;
}

.doc-band .btn { white-space: nowrap; }

.doc-band__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* フォーム: 相談方法の選択 */
.form-choice {
    border: 1px solid var(--rule);
    border-radius: 2px;
    margin: 0 0 22px;
    padding: 12px 16px 10px;
}

.form-choice legend {
    font-size: 13.5px;
    font-weight: 700;
    padding: 0 6px;
}

/* .form-field label（class+要素型）より詳細度を上げるため親クラスを重ねる */
.form-choice .form-choice__option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 2px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    cursor: pointer;
}

.form-choice .form-choice__option input { margin-top: 5px; }

.form-note {
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--ink-faint);
    text-align: center;
}

/* ---------- レスポンシブ ---------- */

@media (max-width: 960px) {
    .hero__grid { grid-template-columns: 1fr; gap: 44px; }
    .trouble-grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--rule); }
    .stat:last-child { border-bottom: none; }
    .service { grid-template-columns: 48px 1fr; }
    .service__body { grid-column: 2; }
    .industry-grid { grid-template-columns: 1fr; }
    .demo-grid { grid-template-columns: repeat(2, 1fr); }
    .profile { grid-template-columns: 1fr; gap: 36px; }
    .contact__grid { grid-template-columns: 1fr; gap: 36px; }
    .flow { grid-template-columns: 1fr; gap: 14px; }
    .flow__cols { grid-template-columns: 1fr; gap: 14px; }
    .monitor__cols { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
    /* 料金表: モバイルでは横スクロールではなく縦積みのカードにする */
    .price-table thead { display: none; }
    .price-table,
    .price-table tbody,
    .price-table tr,
    .price-table td { display: block; width: 100%; }
    .price-table tr {
        border: 1px solid var(--rule);
        margin-bottom: 18px;
        background: var(--paper);
    }
    .price-table tr:last-child { margin-bottom: 0; }
    .price-table td {
        border: none;
        border-bottom: 1px dashed var(--rule);
        padding: 14px 18px;
    }
    .price-table td:last-child { border-bottom: none; }
    .price-table td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: var(--ink-faint);
        margin-bottom: 4px;
    }
    .price-table .plan-name {
        background: var(--paper-alt);
        border-bottom: 1px solid var(--rule);
    }
}

@media (max-width: 600px) {
    .section { padding: 64px 0; }
    .hero { padding: 48px 0 64px; }
    .hero__facts { flex-direction: column; }
    .hero__fact {
        border-right: none;
        border-bottom: 1px solid var(--rule);
        margin-right: 0;
        padding: 12px 0;
    }
    .hero__fact:last-child { border-bottom: none; }
    .demo-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 26px 20px 30px; }
    .site-header .btn { padding: 8px 16px; font-size: 12.5px; }
    .brand__sub { display: none; }
}
