@charset "UTF-8";

/* =====================================================================
   見つける君® 安心QRサービス 共通スタイル
   スマートフォン縦画面を基準にした、親しみやすい配色のCSS。
   状態は文字で表し、3色による状態表示は行わない。
   ===================================================================== */

:root {
    --color-text: #3f2d20;
    --color-muted: #6f6258;
    --color-line: #ead7ad;
    --color-bg: #fffaf0;
    --color-surface: #ffffff;
    --color-accent: #a94400;
    --color-accent-dark: #783100;
    --color-orange: #e96d18;
    --color-yellow: #ffd84f;
    --color-green: #4f8f32;
    --color-sky: #3b89bd;
    --color-pink: #d95d78;
    --shadow-soft: 0 8px 22px rgba(115, 72, 19, 0.1);
    --radius: 18px;
    --space: 16px;
}

/* ================================================================
   Payment checkout
   ================================================================ */
.payment-hero,
.purchase-summary,
.payment-methods,
.payment-security,
.payment-setup-notice,
.amazon-start-panel,
.payment-complete,
.commercial-page {
    width: min(1120px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.payment-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
    gap: 34px;
    align-items: center;
    margin-top: 34px;
    padding: clamp(28px, 5vw, 64px);
    overflow: hidden;
    border: 2px solid #86c7df;
    border-radius: 32px;
    background: linear-gradient(135deg, #eefaff 0%, #dff4ff 58%, #fff6c9 100%);
    box-shadow: 0 18px 45px rgba(13, 109, 153, 0.12);
}

.payment-hero h1 {
    margin: 8px 0 16px;
    color: #083f62;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.18;
    letter-spacing: 0.02em;
}

.payment-hero p:not(.eyebrow) {
    max-width: 42rem;
    margin: 0;
    color: #34566b;
    font-weight: 700;
    line-height: 1.9;
}

.payment-hero img {
    width: min(100%, 330px);
    height: auto;
    margin: 0 auto -52px;
    object-fit: contain;
}

.payment-alert {
    width: min(1120px, calc(100% - 40px));
    margin: 22px auto 0;
    padding: 16px 20px;
    border: 1px solid #efc943;
    border-radius: 16px;
    background: #fff9d9;
    color: #694f00;
    font-weight: 700;
}

.payment-alert-error {
    border-color: #e09a8c;
    background: #fff1ee;
    color: #8a2918;
}

.purchase-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
    gap: 34px;
    align-items: center;
    margin-top: 28px;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(8, 63, 98, 0.09);
}

.purchase-summary h2,
.payment-methods > h2,
.payment-security > h2,
.payment-setup-notice h2,
.amazon-start-panel h1,
.payment-complete h1 {
    margin: 6px 0 12px;
    color: #083f62;
}

.purchase-price {
    margin: 0;
    padding: 18px 22px;
    border: 1px solid #add9e9;
    border-radius: 18px;
    background: #effaff;
}

.purchase-price div,
.amazon-order-summary div,
.payment-result-summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
}

.purchase-price dt,
.amazon-order-summary dt,
.payment-result-summary dt { color: #4b6a7c; }
.purchase-price dd,
.amazon-order-summary dd,
.payment-result-summary dd { margin: 0; color: #073f62; font-weight: 800; }

.payment-setup-notice {
    margin-top: 28px;
    padding: 32px;
    border: 2px dashed #dfb631;
    border-radius: 24px;
    background: #fff9da;
    text-align: center;
}

.payment-contact-button { margin-top: 10px; }

.payment-methods {
    margin-top: 38px;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 30px;
    background: #e9f7fe;
}

.payment-methods > .eyebrow,
.payment-methods > h2 { text-align: center; }

.payment-method-card {
    margin-top: 22px;
    padding: clamp(22px, 4vw, 36px);
    border: 2px solid #97cee2;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(8, 63, 98, 0.08);
}

.payment-method-card-amazon { border-color: #f2bf52; }

.payment-method-heading {
    display: flex;
    gap: 18px;
    align-items: center;
}

.payment-method-heading p {
    margin: 0 0 3px;
    color: #36718e;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.payment-method-heading h3 { margin: 0; color: #083f62; font-size: clamp(1.2rem, 3vw, 1.65rem); }
.payment-method-icon {
    display: grid;
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: 18px;
    background: #dff5ff;
    color: #111;
    font-size: 1.8rem;
    font-weight: 900;
}
.payment-method-card-amazon .payment-method-icon { background: #fff0bd; }

.payment-form {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(260px, 1fr);
    gap: 14px;
    align-items: end;
    margin-top: 22px;
}

.payment-form label { color: #264f67; font-weight: 800; }
.payment-form select {
    width: 100%;
    min-height: 50px;
    margin-top: 6px;
    padding: 8px 14px;
    border: 2px solid #9bcddd;
    border-radius: 13px;
    background: #fff;
    color: #143f57;
    font: inherit;
}

.payment-button {
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}
.payment-button-stripe { background: #087bb4; }
.payment-button-stripe:hover,
.payment-button-stripe:focus-visible { background: #055f8c; }
.payment-button-amazon { background: #232f3e; }
.payment-button-amazon:hover,
.payment-button-amazon:focus-visible { background: #101820; }
.payment-provider-pending {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f3f6f8;
    color: #556875;
    font-weight: 700;
}

.payment-security {
    margin-top: 36px;
    margin-bottom: 48px;
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid #b7d9e6;
    border-radius: 28px;
    background: #fff;
}
.payment-security ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0; list-style: none; }
.payment-security li { padding: 18px; border-radius: 16px; background: #f0f9fd; }
.payment-security li strong,
.payment-security li span { display: block; }
.payment-security li strong { margin-bottom: 7px; color: #08628d; }
.payment-security li span { color: #4f6470; line-height: 1.7; }
.payment-security-title-line { display: inline; }
.payment-legal-links { display: flex; flex-wrap: wrap; gap: 14px 24px; margin: 24px 0 0; }

.amazon-start-panel,
.payment-complete,
.commercial-page {
    margin-top: 38px;
    margin-bottom: 48px;
    padding: clamp(26px, 5vw, 56px);
    border: 2px solid #8cc9df;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(8, 63, 98, 0.1);
}
.amazon-order-summary,
.payment-result-summary { max-width: 600px; margin: 24px auto; padding: 16px 22px; border-radius: 16px; background: #eef9fe; }
.amazon-pay-button { width: min(100%, 520px); min-height: 64px; margin: 28px auto 0; }
.amazon-pay-button-error { padding: 16px; border-radius: 12px; background: #fff0ed; color: #8a2918; }
.amazon-back-link { margin: 24px 0 0; text-align: center; }

.payment-complete { text-align: center; }
.payment-complete > img { width: min(220px, 55vw); height: auto; }
.payment-complete.is-paid { border-color: #70c497; background: linear-gradient(#fff, #effcf4); }
.payment-complete.is-pending { border-color: #e4bf42; background: linear-gradient(#fff, #fff9de); }
.payment-complete.is-failed { border-color: #dc9b8e; background: linear-gradient(#fff, #fff1ef); }
.payment-result-actions { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: center; margin-top: 24px; }

.commercial-list { margin: 30px 0; border-top: 1px solid #b9d5e0; }
.commercial-list > div { display: grid; grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr); border-bottom: 1px solid #d2e5ec; }
.commercial-list dt,
.commercial-list dd {
    min-width: 0;
    margin: 0;
    padding: 18px;
    overflow-wrap: anywhere;
}
.commercial-list dt { background: #eaf7fc; color: #0a557a; font-weight: 800; }
.commercial-plan-price {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.25em;
    line-height: 1.8;
}
.commercial-plan-price + .commercial-plan-price { margin-top: 0.25em; }
.commercial-plan-name,
.commercial-plan-amount { white-space: nowrap; }

@media (max-width: 760px) {
    .payment-hero,
    .purchase-summary,
    .payment-methods,
    .payment-security,
    .payment-setup-notice,
    .amazon-start-panel,
    .payment-complete,
    .commercial-page,
    .payment-alert { width: min(100% - 24px, 1120px); }
    .payment-hero { grid-template-columns: minmax(0, 1fr) 120px; gap: 10px; padding: 24px 20px; border-radius: 22px; }
    .payment-hero img { width: 150px; margin: 20px -28px -34px -12px; }
    .purchase-summary { grid-template-columns: 1fr; gap: 16px; }
    .payment-form { grid-template-columns: 1fr; }
    .payment-security ul { grid-template-columns: 1fr; }
    .commercial-list > div { grid-template-columns: minmax(0, 1fr); }
    .commercial-list dt { padding-bottom: 8px; }
    .commercial-list dd { padding-top: 8px; }
}

@media (max-width: 480px) {
    .payment-security-title-line { display: block; }
    .payment-hero { grid-template-columns: minmax(0, 1fr); }
    .payment-hero img { width: 130px; margin: -12px auto -38px; }
    .payment-hero h1 { font-size: 2rem; }
    .payment-method-heading { align-items: flex-start; }
    .payment-method-icon { flex-basis: 52px; width: 52px; height: 52px; }
}

/* =====================================================================
   公式ホームページ（2026-08-22）
   既存の登録・ログイン画面へ影響しないよう official-home 配下に限定。
   ===================================================================== */

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #3f2d20;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 0.18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.official-home-layout {
    background: #fffdf8;
}

.official-home-layout .site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    padding: 8px 20px;
    border-bottom: 1px solid rgba(121, 83, 24, 0.12);
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 5px 20px rgba(100, 59, 0, 0.08);
    backdrop-filter: blur(14px);
}

.official-home-layout .site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.official-home-layout .site-title {
    max-width: none;
    margin: 0;
    font-size: 1.02rem;
}

.official-home-layout .site-title-text,
.home-nav a {
    white-space: nowrap;
}

.official-home-layout .site-title-mascot {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
}

.home-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-nav a {
    padding: 9px 13px;
    border-radius: 999px;
    color: #5b402b;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.home-nav a:hover,
.home-nav a:focus-visible {
    background: #fff1bf;
    color: #7a3900;
}

.home-nav .home-nav-login {
    margin-left: 6px;
    padding-inline: 18px;
    border: 1px solid #dd6a18;
    background: #fff8e7;
    color: #9a4300;
}

@media (min-width: 761px) and (max-width: 1080px) {
    .official-home-layout .site-header-inner {
        gap: 16px;
    }

    .home-nav a:not(.home-nav-login):not(.home-nav-purchase) {
        display: none;
    }

    .home-nav .home-nav-login {
        margin-left: 0;
    }

    .payment-hero {
        grid-template-columns: minmax(0, 1fr) 190px;
        gap: 18px;
        padding: 34px 30px;
    }

    .payment-hero img {
        width: 190px;
        margin-bottom: -34px;
    }
}

.official-home-layout .site-main {
    max-width: 1240px;
    padding: 24px 30px 44px;
}

.official-home {
    --home-brown: #432d1d;
    --home-brown-soft: #705743;
    --home-yellow: #ffd43f;
    --home-orange: #e96d18;
    --home-blue: #1983ad;
    --home-cream: #fff9e8;
    color: var(--home-brown);
}

.official-home h1,
.official-home h2,
.official-home h3,
.official-home p {
    overflow-wrap: break-word;
    line-break: strict;
}

.official-home-layout :where(h1, h2, h3) {
    overflow-wrap: anywhere;
    text-wrap: balance;
    word-break: normal;
}

.official-home-layout :where(p, li, dd, dt) {
    text-wrap: pretty;
}

.official-home-layout :where(.button, button),
.official-home-layout .home-footer-brand strong {
    text-wrap: balance;
}

@supports (word-break: auto-phrase) {
    .official-home-layout :where(h1, h2, h3, p, li, dd, dt, .button, button),
    .official-home-layout .home-footer-brand strong {
        word-break: auto-phrase;
    }
}

.official-home h2 {
    margin: 0;
    color: var(--home-brown);
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.home-kicker {
    margin: 0 0 10px;
    color: #b6530b;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.home-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    min-height: 650px;
    overflow: hidden;
    border: 1px solid #f0dda3;
    border-radius: 34px;
    background:
        radial-gradient(circle at 6% 8%, rgba(255, 211, 58, 0.24) 0 90px, transparent 92px),
        linear-gradient(125deg, #fffdf6 0%, #fff8df 56%, #fff0a5 100%);
    box-shadow: 0 25px 60px rgba(127, 81, 8, 0.14);
}

.home-hero::before,
.home-hero::after {
    position: absolute;
    z-index: -1;
    border: 2px dashed rgba(224, 161, 5, 0.3);
    border-radius: 50%;
    content: "";
}

.home-hero::before {
    top: -150px;
    left: 22%;
    width: 300px;
    height: 300px;
}

.home-hero::after {
    right: -120px;
    bottom: -150px;
    width: 330px;
    height: 330px;
}

.home-hero-copy {
    position: relative;
    z-index: 2;
    padding: clamp(34px, 5vw, 72px);
    padding-right: 24px;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 7px 13px;
    border: 1px solid #edc758;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #8c4a0b;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.home-eyebrow span {
    color: var(--home-yellow);
    font-size: 0.66rem;
}

.home-hero h1 {
    margin: 0;
    color: var(--home-brown);
    font-size: clamp(2.35rem, 4.3vw, 3.65rem);
    line-height: 1.13;
    letter-spacing: -0.055em;
}

.home-hero h1 .home-hero-line {
    display: block;
}

.home-hero h1 .home-hero-line-primary {
    white-space: nowrap;
}

.home-hero h1 .home-hero-line-accent {
    width: fit-content;
    color: #c95408;
    background: linear-gradient(transparent 72%, rgba(255, 211, 63, 0.55) 72%);
    font-size: clamp(2.05rem, 3.5vw, 2.78rem);
    white-space: nowrap;
}

.home-hero-lead {
    max-width: 37rem;
    margin: 24px 0 0;
    color: var(--home-brown-soft);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    font-weight: 650;
    line-height: 1.9;
}

.home-hero-lead span,
.activate-lead span,
.brand-hero figcaption span,
.contact-support-emergency p span {
    display: block;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.home-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 13px 21px;
    border: 2px solid transparent;
    border-radius: 16px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    overflow-wrap: normal;
    word-break: keep-all;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.home-button:hover {
    transform: translateY(-2px);
}

.home-button:focus-visible {
    outline: 4px solid rgba(25, 131, 173, 0.35);
    outline-offset: 3px;
}

.home-button-primary {
    background: linear-gradient(135deg, #ed791e, #c84f08);
    box-shadow: 0 10px 24px rgba(190, 75, 5, 0.25);
    color: #fff;
}

.home-button-primary:hover {
    background: linear-gradient(135deg, #d9610d, #a83e03);
    color: #fff;
    box-shadow: 0 13px 28px rgba(154, 56, 0, 0.28);
}

.home-button-secondary {
    border-color: #e9c35b;
    background: rgba(255, 255, 255, 0.84);
    color: #75400c;
}

.home-button-secondary:hover {
    background: #fff;
    color: #7a3900;
}

.home-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 20px 0 0;
    padding: 0;
    color: #6d594a;
    font-size: 0.77rem;
    font-weight: 750;
    list-style: none;
}

.home-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.home-trust-list span {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: #2e8b57;
    color: #fff;
    font-size: 0.68rem;
}

.home-hero-visual {
    position: relative;
    align-self: stretch;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
}

.home-hero-visual picture,
.home-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-hero-visual img {
    min-height: 650px;
    filter: saturate(1.2) contrast(1.04);
    object-fit: cover;
    object-position: 57% center;
}

.home-hero-visual::after {
    position: absolute;
    inset: 0 auto 0 0;
    width: 20%;
    background: linear-gradient(90deg, #fff8df, transparent);
    content: "";
}

.home-hero-visual figcaption {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    padding: 10px 16px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 22px rgba(97, 62, 8, 0.16);
    color: #85460b;
    font-size: 0.86rem;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.home-marquee {
    --home-marquee-gap: clamp(42px, 5vw, 76px);
    position: relative;
    display: block;
    margin: 18px 0 0;
    overflow: hidden;
    border: 2px solid #f2ba2f;
    border-radius: 20px;
    background: linear-gradient(100deg, #086f9d 0%, #168db6 55%, #0b719f 100%);
    box-shadow: 0 12px 28px rgba(18, 111, 150, 0.2);
    color: #fff;
}

.home-marquee-viewport {
    min-width: 0;
    overflow: hidden;
}

.home-marquee-track {
    display: flex;
    width: max-content;
    transform: translate3d(0, 0, 0);
    animation: home-marquee-loop 32s linear infinite;
    will-change: transform;
}

.home-marquee-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: var(--home-marquee-gap);
    margin: 0;
    padding: 15px var(--home-marquee-gap) 15px 0;
    list-style: none;
}

.home-marquee-group li {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-size: clamp(0.9rem, 1.25vw, 1.05rem);
    font-weight: 900;
    letter-spacing: 0.025em;
    line-height: 1.5;
    overflow-wrap: normal;
    text-shadow: 0 1px 1px rgba(1, 45, 67, 0.28);
    white-space: nowrap;
    word-break: keep-all;
}

.home-marquee-group li > span {
    color: #ffdb46;
    font-size: 0.72em;
}

@keyframes home-marquee-loop {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 760px) {
    .home-marquee {
        --home-marquee-gap: 38px;
        margin-top: 12px;
        border-radius: 16px;
    }

    .home-marquee-track {
        animation-duration: 27s;
    }

    .home-marquee-group {
        padding-block: 12px;
    }

    .home-marquee-group li {
        gap: 9px;
        font-size: 0.86rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    .home-marquee {
        display: block;
    }

    .home-marquee-viewport {
        overflow: visible;
    }

    .home-marquee-track {
        width: 100%;
        animation: none;
        transform: none;
    }

    .home-marquee-group {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 9px 24px;
        padding: 13px 18px;
    }

    .home-marquee-group[aria-hidden="true"] {
        display: none;
    }
}

.home-intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1.1fr) minmax(260px, 0.9fr);
    align-items: center;
    gap: 25px;
    margin: 32px 0 0;
    padding: 28px 36px;
    border: 1px solid #eaddb6;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(97, 65, 17, 0.08);
}

.home-intro-mark {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 7px double #fff;
    border-radius: 18px;
    background: var(--home-yellow);
    box-shadow: 0 6px 0 #e7ad10;
    color: #583500;
    font-size: 1rem;
    font-weight: 1000;
    letter-spacing: -0.05em;
}

.home-intro h2 {
    font-size: clamp(1.45rem, 2.3vw, 2.05rem);
}

.home-intro > p {
    margin: 0;
    padding-left: 26px;
    border-left: 1px solid #eadbb5;
    color: var(--home-brown-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.home-section {
    padding: clamp(72px, 9vw, 112px) 10px 0;
}

.home-section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-heading-line {
    display: block;
    white-space: nowrap;
}

.home-section-heading > p:last-child {
    margin: 14px 0 0;
    color: var(--home-brown-soft);
    font-weight: 600;
}

.home-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    counter-reset: step;
    list-style: none;
}

.home-step-grid li {
    position: relative;
    min-height: 285px;
    padding: 30px 24px 25px;
    overflow: hidden;
    border: 1px solid #ead9ab;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 13px 35px rgba(93, 57, 5, 0.08);
}

.home-step-grid li::after {
    position: absolute;
    right: -36px;
    bottom: -40px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 215, 69, 0.18);
    content: "";
}

.home-step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #d19507;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.home-step-icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 21px;
    background: #fff4c7;
    box-shadow: inset 0 0 0 1px #f3db80;
    font-size: 2rem;
}

.home-step-grid h3 {
    margin: 0 0 10px;
    color: var(--home-brown);
    font-size: 1.12rem;
}

.home-step-grid p {
    margin: 0;
    color: var(--home-brown-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.home-features {
    position: relative;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-feature-card {
    position: relative;
    min-height: 335px;
    padding: 35px;
    overflow: hidden;
    border-radius: 28px;
}

.home-feature-card::after {
    position: absolute;
    right: -44px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    border: 28px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    content: "";
}

.home-feature-card-yellow {
    background: #fff0aa;
}

.home-feature-card-blue {
    background: #dff5ff;
}

.home-feature-card-green {
    background: #e7f6d7;
}

.home-feature-icon {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(77, 49, 9, 0.1);
    font-size: 2rem;
}

.home-feature-label {
    margin: 0 0 5px;
    color: #8f6411;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.18em;
}

.home-feature-card-blue .home-feature-label {
    color: #166f92;
}

.home-feature-card-green .home-feature-label {
    color: #47782a;
}

.home-feature-card h3 {
    margin: 0 0 13px;
    font-size: 1.35rem;
    line-height: 1.4;
}

.home-feature-card p:last-child {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #5d4c3f;
    font-size: 0.92rem;
    font-weight: 650;
}

.home-use-cases {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: center;
    margin-top: clamp(72px, 10vw, 120px);
    padding: 24px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 5% 15%, rgba(255, 213, 59, 0.17) 0 110px, transparent 112px),
        #433126;
    color: #fff;
}

.home-use-cases-photo {
    position: relative;
    align-self: stretch;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: #f5e8cf;
    box-shadow: 0 16px 34px rgba(20, 12, 7, 0.25);
}

.home-use-cases-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-use-cases-frames {
    position: absolute;
    z-index: 1;
    inset: 4px;
    display: grid;
    grid-template-columns: 0.95fr 1.12fr 0.93fr;
    gap: 4px;
    pointer-events: none;
}

.home-use-cases-frames > span {
    border: 4px solid;
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.95),
        inset 0 0 0 1px rgba(67, 49, 38, 0.14),
        0 4px 14px rgba(38, 24, 15, 0.18);
}

.home-use-cases-frames > span:nth-child(1) {
    border-color: #ed7a24;
}

.home-use-cases-frames > span:nth-child(2) {
    border-color: #287fc2;
}

.home-use-cases-frames > span:nth-child(3) {
    border-color: #5a9c42;
}

.home-use-cases-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(62, 42, 28, 0.82);
    color: #fff8dc;
    font-size: 0.78rem;
    font-weight: 850;
    text-align: center;
    backdrop-filter: blur(8px);
}

.home-use-cases-content {
    padding: 30px 28px 30px 0;
}

.home-use-cases h2 {
    color: #fff;
}

.home-use-cases-copy > p:last-child {
    margin: 18px 0 0;
    color: #eadfd7;
    font-weight: 600;
    line-height: 1.85;
}

.home-use-cases .home-kicker {
    color: #ffd85a;
}

.home-item-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-item-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.09);
    font-size: 0.9rem;
    font-weight: 850;
}

.home-item-list li > span:first-child {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 14px;
    background: #fff7d7;
    font-size: 1.45rem;
}

.home-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.home-faq details {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #e8d9b8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(92, 61, 14, 0.055);
}

.home-faq summary {
    position: relative;
    padding: 22px 58px 22px 58px;
    color: var(--home-brown);
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

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

.home-faq summary::before {
    position: absolute;
    top: 19px;
    left: 20px;
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 9px;
    background: #ffe57c;
    color: #6e4100;
    content: "Q";
    font-size: 0.83rem;
    font-weight: 950;
}

.home-faq summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    color: #bd590c;
    content: "+";
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
}

.home-faq details[open] summary::after {
    content: "−";
}

.home-faq details p {
    margin: -2px 58px 22px;
    padding-top: 17px;
    border-top: 1px dashed #eadcb8;
    color: var(--home-brown-soft);
    font-size: 0.94rem;
    font-weight: 600;
}

.home-final-cta {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    margin-top: clamp(80px, 10vw, 120px);
    padding: 36px 44px;
    overflow: hidden;
    border: 2px solid #e7bd40;
    border-radius: 30px;
    background: linear-gradient(135deg, #fff8d9, #ffe37a);
    box-shadow: 0 18px 42px rgba(116, 75, 7, 0.13);
}

.home-final-mascot {
    align-self: end;
    height: 150px;
}

.home-final-mascot img {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 12px rgba(119, 69, 0, 0.16));
}

.home-final-copy h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
}

.home-final-copy > p:last-child {
    margin: 10px 0 0;
    color: #705238;
    font-size: 0.92rem;
    font-weight: 650;
}

.home-final-actions {
    max-width: 300px;
    margin-top: 0;
}

.home-final-actions .home-button {
    width: 100%;
}

.home-safety-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    max-width: 900px;
    margin: 20px auto 0;
    color: #71665e;
    font-size: 0.75rem;
    text-align: center;
}

.official-home-layout .site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px 30px;
    max-width: 1180px;
    margin-top: 0;
    padding: 34px 20px 44px;
    border-top: 1px solid #eadcb8;
}

.home-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    grid-row: span 2;
    width: fit-content;
    padding: 5px 9px 5px 3px;
    border-radius: 16px;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.home-footer-brand:hover {
    background: #fff8df;
}

.home-footer-brand:focus-visible {
    outline: 3px solid #0c7374;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px #fff;
}

.home-footer-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    transform-origin: center bottom;
    animation: mascot-bob-small 3.6s ease-in-out infinite;
}

.home-footer-brand strong,
.home-footer-brand span {
    display: block;
}

.home-footer-brand strong {
    color: var(--home-brown, #432d1d);
    font-size: 0.92rem;
}

.home-footer-brand span {
    color: #81746b;
    font-size: 0.72rem;
}

.official-home-layout .site-footer .menu-list {
    justify-content: flex-end;
}

.official-home-layout .site-footer .copyright {
    margin: 0;
    text-align: right;
}

@keyframes home-mascot-arrive {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mascot-bob {
    0%,
    100% {
        transform: translateY(0) rotate(-0.35deg);
    }
    50% {
        transform: translateY(-14px) rotate(0.35deg);
    }
}

@keyframes mascot-bob-small {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.home-hero-visual img {
    transform-origin: center bottom;
    animation:
        home-mascot-arrive 0.7s ease-out both,
        mascot-bob 3.6s ease-in-out 0.7s infinite;
}

.home-final-mascot img,
.guide-hero-mascot img {
    transform-origin: center bottom;
    animation: mascot-bob 3.8s ease-in-out infinite;
}

@media (max-width: 1000px) {
    .home-hero {
        min-height: 590px;
    }

    .home-hero-copy {
        padding: 42px 18px 42px 38px;
    }

    .home-hero-visual img {
        min-height: 590px;
    }

    .home-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-step-grid li {
        min-height: 250px;
    }

    .home-feature-card {
        padding: 28px;
    }

    .home-final-cta {
        grid-template-columns: 125px minmax(0, 1fr);
    }

    .home-final-mascot,
    .home-final-mascot img {
        width: 125px;
        height: 125px;
    }

    .home-final-actions {
        grid-column: 2;
        max-width: none;
    }
}

@media (max-width: 760px) {
    .official-home-layout .site-header {
        padding: 7px 14px;
    }

    .official-home-layout .site-title {
        font-size: 0.78rem;
        letter-spacing: -0.01em;
    }

    .official-home-layout .site-title-text {
        white-space: nowrap;
    }

    .official-home-layout .site-title-mascot {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .home-nav a:not(.home-nav-login) {
        display: none;
    }

    .home-nav .home-nav-login {
        margin-left: 0;
        padding: 7px 12px;
        font-size: 0.78rem;
    }

    .official-home-layout .site-main {
        padding: 12px 12px 30px;
    }

    .home-hero {
        display: flex;
        min-height: auto;
        flex-direction: column;
        border-radius: 25px;
    }

    .home-hero-copy {
        position: static;
        order: 2;
        padding: 28px 22px 32px;
    }

    .home-hero h1 {
        position: absolute;
        z-index: 3;
        top: clamp(24px, 7vw, 34px);
        left: clamp(24px, 8vw, 40px);
        width: 54%;
        font-size: clamp(2rem, 9vw, 2.35rem);
        line-height: 1.08;
        text-shadow: 0 2px 0 rgba(255, 255, 255, 0.72), 0 5px 18px rgba(255, 248, 210, 0.9);
    }

    .home-hero h1 .home-hero-line-accent {
        font-size: clamp(1.45rem, 7.4vw, 2rem);
        letter-spacing: -0.07em;
    }

    .home-hero-visual {
        order: 1;
        width: 100%;
        min-height: 0;
        aspect-ratio: 3 / 2;
    }

    .home-hero-visual img {
        min-height: 0;
        object-position: 57% center;
    }

    .home-hero-visual::after {
        inset: auto 0 0;
        width: 100%;
        height: 24%;
        background: linear-gradient(0deg, #fff8df, transparent);
    }

    .home-hero-visual figcaption {
        right: 14px;
        bottom: 12px;
        padding: 7px 11px;
        font-size: 0.75rem;
    }

    .home-actions {
        flex-direction: column;
    }

    .home-button {
        width: 100%;
    }

    .home-intro {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 20px 15px;
        padding: 24px 20px;
    }

    .home-intro > p {
        grid-column: 1 / -1;
        padding: 18px 0 0;
        border-top: 1px solid #eadbb5;
        border-left: 0;
    }

    .home-feature-grid {
        grid-template-columns: 1fr;
    }

    .home-feature-card {
        min-height: 285px;
    }

    .home-use-cases {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
    }

    .home-use-cases-photo {
        min-height: 0;
        aspect-ratio: 3 / 2;
    }

    .home-use-cases-frames {
        inset: 2px;
        gap: 2px;
    }

    .home-use-cases-frames > span {
        border-width: 3px;
        border-radius: 18px;
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.95),
            inset 0 0 0 1px rgba(67, 49, 38, 0.12);
    }

    .home-use-cases-content {
        padding: 28px 8px 18px;
    }

    .home-final-cta {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 12px 18px;
        padding: 25px 20px;
    }

    .home-final-mascot,
    .home-final-mascot img {
        width: 90px;
        height: 90px;
    }

    .home-final-actions {
        grid-column: 1 / -1;
    }

    .official-home-layout .site-footer {
        grid-template-columns: 1fr;
        padding-inline: 16px;
    }

    .home-footer-brand {
        grid-row: auto;
    }

    .official-home-layout .site-footer .menu-list {
        justify-content: flex-start;
    }

    .official-home-layout .site-footer .copyright {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .official-home-layout .site-title span {
        max-width: none;
        line-height: 1.25;
    }

    .home-eyebrow {
        font-size: 0.74rem;
    }

    .home-hero-lead {
        font-size: 0.95rem;
    }

    .home-trust-list {
        display: grid;
    }

    .home-section {
        padding-top: 68px;
    }

    .home-section-heading {
        margin-bottom: 26px;
        text-align: left;
    }

    .home-step-grid {
        grid-template-columns: 1fr;
    }

    .home-step-grid li {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 5px 14px;
        min-height: 0;
        padding: 20px 18px;
    }

    .home-step-icon {
        grid-row: 1 / span 2;
        width: 56px;
        height: 56px;
        margin: 0;
        border-radius: 17px;
        font-size: 1.6rem;
    }

    .home-step-grid h3 {
        grid-column: 2;
        align-self: end;
        margin: 0 28px 2px 0;
    }

    .home-step-grid p {
        grid-column: 2;
    }

    .home-feature-card {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        gap: 3px 14px;
        min-height: 0;
        padding: 20px;
    }

    .home-feature-icon {
        grid-row: 1 / span 3;
        width: 56px;
        height: 56px;
        margin: 0;
        border-radius: 17px;
        font-size: 1.6rem;
    }

    .home-feature-label,
    .home-feature-card h3,
    .home-feature-card p:last-child {
        grid-column: 2;
    }

    .home-feature-label {
        margin: 0;
    }

    .home-feature-card h3 {
        margin: 0 0 3px;
    }

    .home-item-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-item-list li {
        min-height: 108px;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 12px 8px;
        text-align: center;
    }

    .home-item-list li > span:first-child {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 13px;
        font-size: 1.3rem;
    }

    .home-faq summary {
        padding: 19px 48px 19px 52px;
        font-size: 0.92rem;
    }

    .home-faq summary::before {
        top: 17px;
        left: 15px;
    }

    .home-faq summary::after {
        right: 16px;
    }

    .home-faq details p {
        margin: -2px 20px 20px;
    }

    .home-final-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-final-mascot {
        justify-self: center;
    }

    .home-final-copy .home-kicker {
        margin-top: 0;
    }

    .home-safety-note {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-visual img,
    .home-final-mascot img,
    .guide-hero-mascot img,
    .home-footer-brand img,
    .home-button,
    .skip-link {
        animation: none;
        transition: none;
    }
}

@media print {
    .official-home-layout .site-header {
        position: static;
    }

    .home-nav,
    .home-actions {
        display: none;
    }

    .home-hero,
    .home-feature-card,
    .home-step-grid li,
    .home-final-cta {
        box-shadow: none;
    }
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 2%, rgba(255, 216, 79, 0.28) 0 110px, transparent 111px),
        radial-gradient(circle at 96% 16%, rgba(126, 202, 102, 0.17) 0 90px, transparent 91px),
        linear-gradient(180deg, #fff6cf 0, #fffdf8 300px, #f7fff2 100%);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
        "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
    line-break: strict;
    line-height: 1.7;
}

a {
    color: var(--color-accent);
    text-underline-offset: 3px;
}

/* ---------------- ヘッダ・フッタ ---------------- */

.site-header {
    background: linear-gradient(135deg, #ffe36d 0%, #ffbd3b 48%, #ff8a35 100%);
    color: #4b2a00;
    padding: 14px var(--space);
    border-bottom: 4px solid rgba(169, 68, 0, 0.16);
    box-shadow: 0 3px 14px rgba(100, 59, 0, 0.12);
}

.site-title {
    display: flex;
    align-items: center;
    gap: 9px;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.site-title a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #4b2a00;
    text-decoration: none;
    border-radius: 12px;
}

.site-title a:hover {
    color: #6f3300;
}

.site-title a:focus-visible {
    outline: 3px solid rgba(120, 49, 0, 0.55);
    outline-offset: 4px;
}

.site-title-mascot {
    display: block;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    object-fit: contain;
    filter: drop-shadow(0 3px 4px rgba(113, 61, 0, 0.18));
}

.site-title-mark {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 3px 8px rgba(113, 61, 0, 0.14);
    font-size: 1.05rem;
}

@media (max-width: 420px) {
    .site-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-title {
        font-size: 1rem;
    }

    .site-title-mascot {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
}

.site-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 22px var(--space);
}

.site-footer {
    max-width: 720px;
    margin: 10px auto 0;
    padding: 20px var(--space) 28px;
    border-top: 2px dashed #e7c978;
    color: var(--color-muted);
    font-size: 0.85rem;
}

.copyright {
    margin: 8px 0 0;
}

/* ---------------- メニュー ---------------- */

.menu-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 0;
    padding: 0;
}

.menu-primary {
    max-width: 720px;
    margin: 12px auto 0;
    padding: 9px var(--space);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(234, 215, 173, 0.9);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
}

.menu-primary li {
    flex: 1 1 auto;
    text-align: center;
}

.menu-primary a {
    display: block;
    padding: 5px 8px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.menu-primary a:hover,
.menu-primary a:focus-visible {
    background: #fff1c2;
}

/* ---------------- カード・見出し ---------------- */

.card {
    background: var(--color-surface);
    border: 2px solid var(--color-line);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
}

.card-center {
    text-align: center;
}

.page-title {
    color: #7f3d00;
    font-size: 1.32rem;
    margin: 0 0 16px;
    line-height: 1.45;
}

.section-title {
    color: #4f7c31;
    font-size: 1.08rem;
    margin: 26px 0 10px;
    padding-left: 12px;
    border-left: 6px solid var(--color-yellow);
}

.lead {
    margin: 0 0 16px;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.complete-message {
    font-size: 1.05rem;
    margin: 24px 0;
}

.finder-thanks {
    margin: 16px auto 4px;
    text-align: center;
}

.finder-thanks img {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 10px;
    border: 3px solid #ffe07a;
    border-radius: 18px;
    background: #fffdf7;
    box-shadow: var(--shadow-soft);
}

.finder-thanks figcaption {
    color: #8a5600;
    font-size: 1rem;
    font-weight: 700;
}

.finder-thanks-compact {
    margin-top: 4px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fffdf2, #fff3bd);
}

.finder-thanks-compact img {
    width: 92px;
    margin-bottom: 6px;
}

.finder-thanks-compact figcaption {
    font-size: 0.95rem;
}

/* ---------------- フォーム ---------------- */

.field {
    margin-bottom: 20px;
}

.field-label {
    display: block;
    color: #60401d;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 6px;
}

.field-help {
    margin: 6px 0 0;
    color: var(--color-muted);
    font-size: 0.82rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 12px 13px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-text);
    background: #fff;
    border: 2px solid #dfcca1;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(93, 56, 17, 0.04);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {
    border-color: #e57a24;
    outline: 3px solid rgba(255, 183, 72, 0.28);
    outline-offset: 1px;
}

.activation-code-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 6px;
}

.activation-code-fieldset {
    min-inline-size: 0;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
}

.activation-code-fieldset > legend {
    width: 100%;
    padding: 0;
}

input.activation-code-part {
    min-width: 0;
    padding: 12px 6px;
    text-align: center;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
}

.activation-code-separator {
    color: #956735;
    font-size: 1.25rem;
    font-weight: 800;
}

.legacy-code-entry {
    margin-top: 16px;
    padding: 12px;
    border: 1px dashed #d9bd7e;
    border-radius: 12px;
    background: #fffcf3;
}

.legacy-code-entry summary {
    color: var(--color-accent);
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 700;
}

.legacy-code-entry[open] .field-label {
    margin-top: 12px;
}

.activation-recovery-help {
    margin: 20px 0;
    padding: 16px;
    border: 2px solid #f0d37b;
    border-radius: 14px;
    background: #fffbed;
}

.activation-recovery-help .section-title {
    margin-top: 0;
}

.activation-recovery-help p {
    line-height: 1.75;
}

.activation-recovery-entry {
    margin-top: 24px;
    margin-bottom: 18px;
}

.activation-recovery-entry .button {
    width: 100%;
    justify-content: center;
}

.activation-recovery-contact {
    padding-top: 12px;
    border-top: 1px dashed #ddc36f;
    line-height: 1.7;
}

.activation-recovery-help a,
.activation-recovery-contact a {
    font-weight: 800;
}

.demo-link-callout {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 2px solid #75bfe0;
    border-radius: 18px;
    background: linear-gradient(135deg, #f5fcff 0%, #e5f6ff 100%);
    box-shadow: 0 10px 24px rgba(15, 103, 153, 0.1);
}

.activation-demo-callout {
    margin: 22px 0 8px;
}

.guide-prep-demo {
    margin-top: 18px;
    background: #fff;
}

.demo-link-icon {
    display: grid;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    place-items: center;
    background: #d6f1ff;
    color: #0b6d9f;
    font-size: 1.05rem;
    font-weight: 900;
}

.demo-link-copy strong,
.demo-link-copy small {
    display: block;
}

.demo-link-copy strong {
    color: #0b5f8d;
    font-size: 1rem;
    line-height: 1.45;
}

.demo-link-copy small {
    margin-top: 4px;
    color: #516b7b;
    font-size: 0.82rem;
    line-height: 1.55;
}

.demo-link-button {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 18px;
    border: 2px solid #0d73a8;
    border-radius: 999px;
    background: linear-gradient(135deg, #168bc0, #0b6798);
    box-shadow: 0 8px 18px rgba(8, 93, 137, 0.2);
    color: #fff;
    font-weight: 900;
    line-height: 1.3;
    text-decoration: none;
}

.demo-link-button:hover,
.demo-link-button:focus-visible {
    border-color: #07567d;
    background: #075f8b;
    color: #fff;
    transform: translateY(-1px);
}

textarea {
    resize: vertical;
}

.free-text {
    min-height: 8em;
}

.field-submit {
    margin-top: 28px;
}

.email-help {
    font-size: 0.9rem;
}

.email-confirm-warning {
    margin: 8px 0;
    color: #b42318;
    font-weight: 600;
    text-decoration: underline;
}

.email-plan-summary {
    margin: 0 0 14px;
    padding: 14px 16px;
    border: 1px solid #9bcde3;
    border-radius: 12px;
    background: #eef9ff;
    color: #145f82;
}

.email-plan-summary p {
    margin: 0;
}

.email-plan-summary .field-help {
    margin-top: 5px;
}

.email-slot {
    margin-bottom: 12px;
    padding: 18px;
    border: 2px solid #dfeecf;
    border-radius: 14px;
    background: #fbfff7;
}

.email-slot:last-of-type {
    margin-bottom: 0;
}

.email-slot-locked {
    border-color: #d6d9dd;
    background: #f6f7f8;
}

.email-slot-locked input[readonly] {
    background: #eceff2;
    color: #59636d;
}

.email-slot-limit-notice {
    margin: 10px 0 0;
}

.email-delete-form {
    margin-top: 10px;
}

.button {
    display: inline-block;
    padding: 12px 18px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    background: var(--color-surface);
    color: var(--color-accent);
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(119, 70, 17, 0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(119, 70, 17, 0.16);
}

.button:active {
    transform: translateY(0);
}

.button-primary {
    width: 100%;
    border-color: #c9520c;
    background: linear-gradient(135deg, #ef7c24, #d85b10);
    color: #fff;
    font-weight: 800;
}

.button-primary:hover {
    background: linear-gradient(135deg, #d95c13, #b94405);
}

.button-secondary {
    border-color: #d99020;
    background: #fff8df;
    color: #8a4a00;
}

.button-quiet {
    border-color: var(--color-line);
    color: var(--color-muted);
    padding: 8px 14px;
    font-size: 0.9rem;
}

.button-inline {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* ボット対策用の隠し項目（利用者には見せない） */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.is-hidden {
    display: none;
}

/* 現在地取得の目的説明 */
.geo-purpose {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff9e7;
    font-size: 0.88rem;
}

.geo-purpose-title {
    margin: 0 0 6px;
    font-weight: 600;
}

.geo-purpose ul {
    margin: 8px 0 12px;
    padding-left: 1.2em;
}

.geo-permission-help {
    margin-top: 12px;
    padding: 16px;
    border: 3px solid #c62828;
    border-radius: var(--radius);
    background: #fff1f1;
    color: #8f1111;
    font-size: 0.88rem;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.geo-permission-alert {
    margin: 0 0 12px;
    color: #c00000;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.7;
}

.geo-permission-help ul {
    margin: 8px 0 14px;
    padding-left: 1.2em;
}

.button-danger {
    border-color: #b71c1c;
    background: #c62828;
    color: #fff;
    font-weight: 700;
}

.button-danger:hover,
.button-danger:focus-visible {
    background: #a91616;
}

.finder-call-card {
    margin: 18px 0 24px;
    padding: 18px;
    border: 2px solid #4f9b53;
    border-radius: 20px;
    background: linear-gradient(145deg, #f6ffeb, #e7f8d8);
    text-align: center;
    box-shadow: 0 7px 18px rgba(62, 123, 53, 0.12);
}

.finder-call-card h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.button-call {
    width: 100%;
    margin-top: 8px;
    border-color: #34763a;
    background: linear-gradient(135deg, #68ad45, #418634);
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.button-call:hover {
    background: #34763a;
}

/* ---------------- 通知 ---------------- */

.alert {
    padding: 10px 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    margin: 0 0 16px;
    font-size: 0.9rem;
    background: #fffaf0;
    box-shadow: 0 4px 12px rgba(103, 64, 20, 0.06);
}

.alert-error {
    border-color: #b4413c;
    background: #fff2f0;
    color: #8f211c;
}

.alert-notice {
    border-color: #6ba44b;
    background: #f2faeb;
    color: #315d24;
}

/* ---------------- 一覧 ---------------- */

.summary-list {
    list-style: none;
    margin: 0 0 var(--space);
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.summary-list li {
    flex: 1 1 45%;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    background: var(--color-surface);
    padding: 12px;
    box-shadow: var(--shadow-soft);
}

.summary-list li:nth-child(1) {
    border-color: #ffc66a;
    background: #fff7df;
}

.summary-list li:nth-child(2) {
    border-color: #a8d990;
    background: #f3ffed;
}

.summary-list li:nth-child(3) {
    border-color: #9bcce7;
    background: #eef9ff;
}

.summary-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.summary-value {
    color: #984100;
    font-size: 1.45rem;
    font-weight: 800;
}

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

.record-list > li {
    border: 2px solid var(--color-line);
    border-left: 7px solid #f0a734;
    border-radius: 16px;
    background: var(--color-surface);
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 5px 14px rgba(91, 56, 15, 0.07);
}

.record-list > li:nth-child(even) {
    border-left-color: #6cab50;
}

.record-meta {
    margin: 0 0 4px;
    font-size: 0.82rem;
    color: var(--color-muted);
}

.record-state {
    font-weight: 600;
}

.record-serial {
    color: #9d4800;
    font-weight: 700;
}

.record-excerpt {
    margin: 4px 0 0;
    font-size: 0.92rem;
    word-break: break-all;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    font-size: 0.85rem;
}

.data-table th,
.data-table td {
    border: 1px solid var(--color-line);
    padding: 8px;
    text-align: left;
    vertical-align: top;
    word-break: break-all;
}

.data-table th {
    background: #fff2ca;
    white-space: nowrap;
}

.table-scroll {
    overflow-x: auto;
}

.pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: var(--space) 0;
    font-size: 0.9rem;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: var(--space);
}

.filter-form label {
    font-size: 0.85rem;
}

.filter-form select,
.filter-form input[type="text"],
.filter-form input[type="email"] {
    width: auto;
    min-width: 140px;
}

/* ---------------- 写真・地図 ---------------- */

.report-photo {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
}

.map-frame {
    height: 300px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    overflow: hidden;
}

.map-note {
    margin: 8px 0 0;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.definition-list {
    margin: 0;
}

.definition-list dt {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 10px;
}

.definition-list dd {
    margin: 2px 0 0;
    word-break: break-all;
}

.inline-form {
    display: inline;
}

.logout-form {
    margin: 0 0 10px;
}

.code-block {
    display: block;
    padding: 10px;
    background: #fff7df;
    border-radius: var(--radius);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.82rem;
    word-break: break-all;
}

.policy-body h2 {
    font-size: 1rem;
    margin: 24px 0 6px;
}

.policy-body p,
.policy-body li {
    font-size: 0.92rem;
}

.policy-body ol {
    padding-left: 1.4em;
}

.policy-body ol ol {
    margin-top: 6px;
}

.policy-operator {
    font-weight: 600;
}

.policy-note,
.policy-date {
    color: var(--color-muted);
}

.brand-hero {
    max-width: 360px;
    margin: 0 auto 20px;
    text-align: center;
}

.brand-hero img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #f3cf39;
    border-radius: 18px;
}

.brand-hero figcaption {
    margin-top: 8px;
    color: #6a4200;
    font-size: 0.88rem;
    font-weight: 600;
}

.brand-hero figcaption span + span::before {
    content: "― ";
}

.terms-consent {
    margin: 24px 0 8px;
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    border: 2px solid #edcb67;
    background: linear-gradient(180deg, #fffdf2, #fff6d7);
    text-align: center;
}

.terms-consent p {
    margin-top: 0;
}

.consent-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
}

.consent-links a {
    font-weight: 700;
}

.consent-confirmed {
    color: #326b2d;
    font-weight: 700;
}

.registration-guide {
    margin: 0 0 20px;
    border: 2px solid #b8d978;
    border-radius: 16px;
    background: #f8ffe9;
    overflow: hidden;
}

.registration-guide summary {
    padding: 14px 18px;
    color: #365f22;
    background: linear-gradient(135deg, #efffcf, #fff6b9);
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    list-style-position: inside;
}

.registration-guide[open] summary {
    border-bottom: 1px solid #cfe59f;
}

.registration-guide ol {
    margin: 16px 18px 10px;
    padding-left: 1.5em;
}

.registration-guide li {
    margin-bottom: 8px;
}

.registration-guide > p {
    margin: 10px 18px 16px;
    color: var(--color-muted);
    font-size: 0.88rem;
}

.terms-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.terms-checkbox input {
    width: 22px;
    height: 22px;
    margin: 0;
}

.contact-fieldset {
    margin: 20px 0;
    padding: 16px;
    border: 2px solid #b9dba8;
    border-radius: 16px;
    background: #fbfff8;
}

.contact-fieldset legend {
    padding: 0 6px;
    font-weight: 700;
}

.privacy-notice {
    margin-bottom: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: #eef8f0;
    color: #275b35;
    font-size: 0.82rem;
}

.contact-actions {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.contact-actions .button {
    width: 100%;
}

.mail-delivery-help {
    margin: 18px 0;
    padding: 14px;
    border: 1px solid #d8b84f;
    border-radius: 16px;
    background: linear-gradient(145deg, #fffced, #fff5cf);
    box-shadow: 0 5px 14px rgba(105, 70, 15, 0.07);
}

/* 管理画面は業務用途のため、落ち着いた配色を維持する。 */
.layout-admin {
    --color-text: #1f2328;
    --color-muted: #5b6572;
    --color-line: #d5dae0;
    --color-accent: #24487a;
    --color-accent-dark: #1a3559;
    background: #f5f6f8;
}

.layout-admin .site-header {
    background: #24487a;
    color: #fff;
    border-bottom-color: #1a3559;
}

.layout-admin .site-title a {
    color: #fff;
}

.layout-admin .page-title,
.layout-admin .section-title {
    color: #1a3559;
}

.layout-admin .button-primary {
    border-color: #24487a;
    background: #24487a;
}

.layout-admin .menu-primary {
    border-radius: 8px;
}

.layout-admin .card,
.layout-admin .record-list > li,
.layout-admin .summary-list li {
    border-radius: 8px;
    box-shadow: none;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.admin-metric-card {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border: 1px solid #cbd4df;
    border-left: 5px solid #24487a;
    border-radius: 8px;
    background: #fff;
    color: #1f2328;
    text-decoration: none;
}

.admin-metric-card:nth-child(2) { border-left-color: #2b7a66; }
.admin-metric-card:nth-child(3) { border-left-color: #c77800; }
.admin-metric-card:nth-child(4) { border-left-color: #7655a8; }

.admin-metric-card > span {
    color: #5b6572;
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-metric-card strong {
    margin: 3px 0;
    color: #1a3559;
    font-size: 2rem;
    line-height: 1.1;
}

.admin-metric-card strong small,
.admin-metric-card > small {
    color: #5b6572;
    font-size: 0.78rem;
}

.admin-metric-card .metric-text {
    font-size: 1.35rem;
}

.detail-section {
    margin: 0 0 18px;
    padding: 18px;
    border: 1px solid #d5dae0;
    border-radius: 8px;
    background: #fff;
}

.detail-section h2 {
    margin: 0 0 12px;
    color: #1a3559;
    font-size: 1.1rem;
}

.detail-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    margin: 0;
    overflow: hidden;
    border: 1px solid #d5dae0;
    background: #d5dae0;
}

.detail-grid > div {
    padding: 11px 12px;
    background: #fff;
}

.detail-grid .detail-grid-wide {
    grid-column: 1 / -1;
}

.detail-grid dt {
    margin-bottom: 3px;
    color: #5b6572;
    font-size: 0.78rem;
    font-weight: 700;
}

.detail-label {
    margin: 0 0 3px;
    color: #5b6572;
    font-size: 0.78rem;
    font-weight: 700;
}

.detail-grid dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.sensitive-value {
    overflow-wrap: anywhere;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.admin-reactivation-form {
    flex: 1 1 520px;
    max-width: 720px;
    padding: 16px;
    border: 1px solid #b8c9dd;
    border-radius: 10px;
    background: #f6f9fd;
}

.admin-reactivation-form .field {
    margin-bottom: 12px;
}

.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.admin-card {
    padding: 14px;
    border: 1px solid #d5dae0;
    border-radius: 8px;
    background: #f8fafc;
}

.admin-card h3,
.admin-card p {
    margin-top: 0;
}

.status-badge {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    background: #e8edf3;
    color: #314052;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.status-active { background: #e6f4e8; color: #25652d; }
.status-pending { background: #fff1cc; color: #7a5000; }
.status-suspended { background: #fde5e4; color: #902a25; }
.health-status-ok { background: #e6f4e8; color: #25652d; }
.health-status-warning { background: #fff1cc; color: #7a5000; }
.health-status-critical { background: #fde5e4; color: #902a25; }
.health-ok-message {
    border-color: #96c99c;
    background: #edf8ee;
    color: #245c2b;
}

.quota-meter {
    display: block;
    width: 100%;
    height: 18px;
    overflow: hidden;
    border: 1px solid #aeb8c4;
    border-radius: 999px;
    background: #edf0f4;
    appearance: none;
    -webkit-appearance: none;
}

.quota-meter::-webkit-progress-bar {
    border-radius: 999px;
    background: #edf0f4;
}

.quota-meter::-webkit-progress-value {
    border-radius: 999px;
    background: linear-gradient(90deg, #2d7d67, #e4a01b);
}

.quota-meter::-moz-progress-bar {
    border-radius: 999px;
    background: linear-gradient(90deg, #2d7d67, #e4a01b);
}

.quota-meter.quota-danger::-webkit-progress-value,
.quota-meter.quota-danger::-moz-progress-bar {
    background: #b83a33;
}

.mail-usage-cell {
    position: relative;
    min-width: 120px;
}

.mini-progress {
    width: 80px;
    height: 8px;
    margin-right: 5px;
    accent-color: #426a9d;
}

.admin-message-preview {
    min-width: 150px;
    max-width: 280px;
    white-space: normal;
}

.admin-message-full {
    white-space: normal;
}

.admin-media-thumb {
    display: block;
    width: min(100%, 320px);
    height: auto;
    border: 1px solid #d5dae0;
    border-radius: 6px;
}

.admin-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.admin-media-card {
    padding: 10px;
    border: 1px solid #d5dae0;
    border-radius: 8px;
    background: #f8fafc;
}

.admin-media-card img {
    width: 100%;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
}

.admin-media-card p {
    margin: 7px 0 0;
    font-size: 0.8rem;
}

.compact-list {
    padding-left: 1.25em;
}

.button-link {
    padding: 7px 4px;
}

.error-text {
    color: #9a2a24;
    font-size: 0.8rem;
}

.layout-admin .data-table {
    min-width: 0;
}

.layout-admin .site-title,
.layout-admin .menu-primary,
.layout-admin .site-main,
.layout-admin .site-footer {
    max-width: 1280px;
}

.layout-admin .table-scroll {
    width: 100%;
    max-width: 100%;
}

.layout-admin .responsive-admin-table td {
    word-break: normal;
    overflow-wrap: anywhere;
}

.admin-table-actions {
    display: flex;
    min-width: 210px;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.admin-table-actions .inline-form {
    display: block;
    margin: 0;
}

.admin-table-actions .button {
    white-space: nowrap;
}

.admin-table-empty {
    padding: 24px !important;
    color: var(--color-muted);
    text-align: center !important;
}

.admin-report-filter input[type="text"] {
    min-width: 280px;
}

.layout-admin .filter-form {
    align-items: end;
}

.mail-delivery-help h2 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.mail-delivery-help p,
.mail-delivery-help li {
    font-size: 0.86rem;
}

.mail-delivery-help ul {
    padding-left: 1.3em;
}

.mail-sender {
    overflow-wrap: anywhere;
}

.mail-provider-links li {
    margin-bottom: 12px;
}

@media (min-width: 600px) {
    .summary-list li {
        flex: 1 1 22%;
    }
}

@media (max-width: 480px) {
    .menu-primary {
        margin-right: 10px;
        margin-left: 10px;
        border-radius: 18px;
    }

    .site-main {
        padding-top: 18px;
    }

    .card {
        padding: 17px;
    }

    .desktop-only {
        display: none;
    }
}

@media (max-width: 820px) {
    .layout-admin .table-scroll {
        overflow-x: visible;
    }

    .layout-admin .responsive-admin-table,
    .layout-admin .responsive-admin-table tbody,
    .layout-admin .responsive-admin-table tr,
    .layout-admin .responsive-admin-table td {
        display: block;
        width: 100%;
    }

    .layout-admin .responsive-admin-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .layout-admin .responsive-admin-table tr {
        margin-bottom: 14px;
        overflow: hidden;
        border: 1px solid var(--color-line);
        border-radius: 8px;
        background: var(--color-surface);
    }

    .layout-admin .responsive-admin-table td {
        display: grid;
        grid-template-columns: minmax(7.5rem, 36%) minmax(0, 1fr);
        gap: 10px;
        border: 0;
        border-bottom: 1px solid var(--color-line);
    }

    .layout-admin .responsive-admin-table td:last-child {
        border-bottom: 0;
    }

    .layout-admin .responsive-admin-table td::before {
        content: attr(data-label);
        color: #1a3559;
        font-weight: 700;
    }

    .layout-admin .responsive-admin-table .admin-table-empty {
        display: block;
    }

    .layout-admin .responsive-admin-table .admin-table-empty::before {
        content: none;
    }

    .admin-table-actions {
        min-width: 0;
    }

    .admin-report-filter input[type="text"] {
        width: 100%;
        min-width: 0;
    }
}

/* =====================================================================
   ご利用ガイド（2026-08-22）
   添付ガイドの黄・橙・緑を引き継ぎ、Web向けの章ナビゲーションを追加。
   ===================================================================== */

.home-nav a[aria-current="page"] {
    background: #fff0ad;
    color: #7a3900;
}

.home-button.home-button-guide {
    border-color: #4f8f32;
    background: #f2faed;
    color: #2f6c24;
}

.home-button.home-button-guide:hover,
.home-button.home-button-guide:focus-visible {
    background: #e4f4dc;
    color: #24571b;
}

.official-guide {
    --guide-green: #2f702c;
    --guide-green-light: #edf7e9;
    --guide-orange: #ed6b13;
    --guide-yellow: #ffd24a;
    --guide-brown: #3e2b20;
    --guide-muted: #655a52;
    --guide-blue: #2d80af;
    width: min(1120px, 100%);
    margin: 0 auto;
    color: var(--guide-brown);
}

.official-guide,
.official-guide * {
    box-sizing: border-box;
}

.official-guide h1,
.official-guide h2,
.official-guide h3,
.official-guide p {
    overflow-wrap: anywhere;
}

.official-guide section[id] {
    scroll-margin-top: 96px;
}

.guide-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    min-height: 520px;
    overflow: hidden;
    border: 1px solid #f1d47a;
    border-radius: 32px;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 209, 62, 0.28) 0 80px, transparent 82px),
        linear-gradient(125deg, #fffdf4 0%, #fff7d6 66%, #ffeca0 100%);
    box-shadow: 0 22px 55px rgba(117, 75, 9, 0.13);
}

.guide-hero::before,
.guide-hero::after {
    position: absolute;
    z-index: -1;
    border: 2px dashed rgba(230, 163, 0, 0.25);
    border-radius: 50%;
    content: "";
}

.guide-hero::before {
    top: -180px;
    right: 22%;
    width: 360px;
    height: 360px;
}

.guide-hero::after {
    right: -70px;
    bottom: -100px;
    width: 250px;
    height: 250px;
}

.guide-hero-copy {
    align-self: center;
    padding: clamp(34px, 6vw, 72px);
    padding-right: 20px;
}

.guide-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 28px;
    color: #77685c;
    font-size: 0.82rem;
    font-weight: 700;
}

.guide-breadcrumb a {
    color: #756251;
}

.guide-eyebrow {
    margin: 0 0 10px;
    color: var(--guide-orange);
    font-size: 0.83rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.guide-hero h1 {
    margin: 0;
    color: var(--guide-brown);
    font-size: clamp(2.6rem, 6vw, 4.7rem);
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.guide-hero h1 span {
    display: inline-block;
    margin-top: 12px;
    color: var(--guide-green);
    font-size: 0.5em;
    letter-spacing: -0.03em;
}

.guide-hero-lead {
    max-width: 42rem;
    margin: 22px 0 0;
    color: #57483e;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    font-weight: 650;
    line-height: 1.85;
}

.guide-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    margin-top: 30px;
}

.guide-primary-link,
.guide-text-link {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.guide-primary-link {
    padding: 12px 23px;
    background: var(--guide-orange);
    box-shadow: 0 9px 20px rgba(213, 83, 0, 0.21);
    color: #fff;
}

.guide-text-link {
    padding: 10px 4px;
    color: #326d2a;
}

.guide-primary-link:hover,
.guide-primary-link:focus-visible {
    background: #c95104;
    color: #fff;
}

.guide-text-link:hover,
.guide-text-link:focus-visible {
    color: #164b17;
    text-decoration: underline;
}

.guide-hero-mascot {
    position: relative;
    align-self: end;
    margin: 0;
    padding: 42px 28px 26px 0;
    text-align: center;
}

.guide-hero-mascot img {
    display: block;
    width: min(100%, 310px);
    height: auto;
    margin: auto auto 12px;
    object-fit: contain;
}

.guide-hero-mascot figcaption {
    color: #6b583e;
    font-size: 0.82rem;
    font-weight: 900;
}

.guide-flow,
.guide-menu,
.guide-chapter {
    margin-top: 30px;
    border: 1px solid #eadfc9;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 13px 32px rgba(94, 67, 31, 0.08);
}

.guide-flow {
    padding: clamp(26px, 4vw, 42px);
}

.guide-section-heading {
    margin-bottom: 24px;
}

.guide-section-heading-compact {
    display: flex;
    gap: 14px;
    align-items: baseline;
}

.guide-section-heading h2 {
    margin: 0;
    color: var(--guide-green);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.3;
}

.guide-label {
    margin: 0;
    color: var(--guide-orange);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.guide-flow-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #d6d8c6;
    border-radius: 17px;
    list-style: none;
}

.guide-flow-list li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 22px 19px;
    background: #eef6e9;
}

.guide-flow-list li + li {
    border-left: 1px solid #efbe79;
    background: #fff3e9;
}

.guide-flow-list li:last-child {
    border-left-color: #a8cfe2;
    background: #eaf6fb;
}

.guide-flow-list li > span {
    color: var(--guide-green);
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.guide-flow-list li:nth-child(2) > span {
    color: var(--guide-orange);
}

.guide-flow-list li:nth-child(3) > span {
    color: var(--guide-blue);
}

.guide-flow-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.02rem;
}

.guide-flow-list p {
    margin: 0;
    color: var(--guide-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.guide-first-notes {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    margin-top: 22px;
    padding: 24px 28px;
    border: 2px solid #f28a32;
    border-radius: 20px;
    background: #fff7d3;
}

.guide-note-mascot {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    font-size: 1.35rem;
}

.guide-first-notes h2 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.guide-first-notes ul {
    margin: 0;
    padding-left: 1.3em;
}

.guide-first-notes li {
    margin-top: 6px;
    line-height: 1.65;
}

.guide-menu {
    padding: clamp(28px, 4vw, 44px);
    background: #fffcf2;
}

.guide-menu > ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-menu li:last-child {
    grid-column: 1 / -1;
}

.guide-menu a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 3px 12px;
    height: 100%;
    padding: 18px;
    border: 1px solid #e6d9bd;
    border-radius: 14px;
    background: #fff;
    color: var(--guide-brown);
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.guide-menu a:hover,
.guide-menu a:focus-visible {
    border-color: #ee9f52;
    box-shadow: 0 8px 18px rgba(129, 79, 16, 0.11);
    transform: translateY(-2px);
}

.guide-menu a > span {
    grid-row: 1 / 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    background: var(--guide-green-light);
    color: var(--guide-green);
    font-weight: 950;
}

.guide-menu strong {
    align-self: end;
    font-size: 1rem;
}

.guide-menu small {
    color: #786c62;
    font-size: 0.78rem;
}

.guide-chapter {
    padding: clamp(28px, 5vw, 58px);
}

.guide-chapter-heading {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--guide-yellow);
}

.guide-chapter-heading > p {
    margin: 0 0 8px;
    color: var(--guide-orange);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.guide-chapter-heading > p span {
    font-size: 1.25em;
}

.guide-chapter-heading h2 {
    margin: 0;
    color: var(--guide-green);
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.guide-chapter-heading > strong {
    display: block;
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.7;
}

.guide-prep-box,
.guide-tip-box,
.guide-privacy-box,
.guide-contact-note {
    margin: 24px 0;
    padding: 22px 24px;
    border: 1px solid #8bbb72;
    border-radius: 16px;
    background: var(--guide-green-light);
}

.guide-prep-box h3,
.guide-tip-box h3,
.guide-privacy-box h3,
.guide-contact-note strong {
    display: block;
    margin: 0 0 10px;
    color: #295f25;
    font-size: 1.15rem;
}

.guide-check-list,
.guide-bullet-list,
.guide-number-list {
    margin: 0;
    padding-left: 1.35em;
}

.guide-check-list li,
.guide-bullet-list li,
.guide-number-list li {
    margin-top: 6px;
    line-height: 1.7;
}

.guide-check-list li::marker {
    color: #4d9638;
}

.guide-steps {
    display: grid;
    gap: 14px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.guide-steps > li {
    padding: 0 0 0 15px;
    border-left: 3px solid var(--guide-orange);
}

.guide-step-title {
    display: flex;
    gap: 12px;
    align-items: baseline;
    padding: 7px 12px;
    border-radius: 0 8px 8px 0;
    background: #f7f7f4;
}

.guide-step-title span {
    flex: 0 0 auto;
    color: var(--guide-orange);
    font-size: 0.87rem;
    font-weight: 950;
}

.guide-step-title h3 {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.45;
}

.guide-steps > li > p {
    margin: 7px 10px 0 12px;
    color: #5c534d;
    font-size: 0.94rem;
    line-height: 1.75;
}

.guide-steps-green > li {
    border-left-color: #4b9237;
}

.guide-steps-green .guide-step-title span {
    color: #4b9237;
}

.guide-steps-blue > li:first-child {
    border-left-color: var(--guide-blue);
}

.guide-steps-blue > li:first-child .guide-step-title span {
    color: var(--guide-blue);
}

.guide-action-box {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin: 28px 0 10px;
    padding: 18px 20px;
    border: 1px solid #74a95d;
    border-radius: 16px;
    background: #f9fff7;
}

.guide-action-box > div {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.guide-action-box > div > span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #e3f3dd;
    color: #317324;
    font-size: 1.25rem;
    font-weight: 900;
}

.guide-action-box p {
    margin: 0;
}

.guide-action-box p strong,
.guide-action-box p small {
    display: block;
}

.guide-action-box p small {
    margin-top: 3px;
    color: #70665e;
}

.guide-action-box > a {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 12px;
    align-items: center;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--guide-green);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.guide-action-box > a:hover,
.guide-action-box > a:focus-visible {
    background: #1f591d;
    color: #fff;
}

.guide-action-box-orange {
    border-color: #f08b3d;
    background: #fff8e8;
}

.guide-action-box-orange > div > span {
    background: #fff0cd;
    color: #d95c09;
}

.guide-action-box-orange > a {
    background: var(--guide-orange);
}

.guide-back-link {
    display: block;
    width: fit-content;
    margin: 26px 0 0 auto;
    padding: 8px 0;
    color: #4c772f;
    font-size: 0.84rem;
    font-weight: 800;
}

.guide-mail-address {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    border: 2px solid #ef7b21;
    border-radius: 14px;
    background: #fff7d2;
}

.guide-mail-address span {
    color: var(--guide-orange);
    font-weight: 900;
}

.guide-mail-address strong {
    overflow-wrap: anywhere;
    font-size: 1.15rem;
}

.guide-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.guide-two-column > div {
    padding: 22px;
    border-radius: 16px;
    background: #faf9f5;
}

.guide-two-column h3 {
    margin: 0 0 12px;
    color: var(--guide-green);
    font-size: 1.15rem;
}

.guide-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    margin: 26px 0;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.guide-compare > div {
    padding: 20px;
    border: 1px solid #e18135;
    background: #fff8e9;
}

.guide-compare span,
.guide-compare strong,
.guide-compare small {
    display: block;
}

.guide-compare span {
    margin-bottom: 6px;
    color: #a94708;
    font-size: 0.78rem;
    font-weight: 850;
}

.guide-compare strong {
    font-size: 1.1rem;
}

.guide-compare small {
    margin-top: 7px;
    color: #6f6258;
    line-height: 1.55;
}

.guide-subtitle {
    margin: 30px 0 12px;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--guide-yellow);
    color: var(--guide-green);
    font-size: 1.35rem;
}

.guide-warning,
.guide-danger {
    display: block;
    margin: 24px 0;
    padding: 18px 20px;
    border: 2px solid #e33c35;
    border-radius: 13px;
    background: #fff0ef;
}

.guide-warning strong,
.guide-danger strong {
    display: block;
    margin-bottom: 6px;
    color: #c52924;
    font-size: 1.05rem;
}

.guide-warning p,
.guide-danger p,
.guide-contact-note p {
    margin: 0;
    line-height: 1.7;
}

.guide-warning-orange {
    border-color: #f17a23;
    background: #fff1e6;
}

.guide-warning-orange strong {
    color: #d85905;
}

.guide-contact-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.guide-contact-options article,
.guide-change-cards article {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid #e8dac2;
    border-radius: 16px;
    background: #fffaf1;
}

.guide-contact-options article > span,
.guide-change-cards article > span {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 15px;
    background: #fff0bf;
    color: #ce5707;
    font-size: 1.35rem;
    font-weight: 900;
}

.guide-contact-options h3,
.guide-change-cards h3 {
    margin: 0 0 6px;
    color: var(--guide-green);
    font-size: 1.05rem;
}

.guide-contact-options p,
.guide-change-cards p {
    margin: 0;
    color: #645950;
    line-height: 1.65;
}

.guide-detail-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin: 24px 0;
}

.guide-detail-grid span {
    display: grid;
    min-height: 62px;
    padding: 10px;
    place-items: center;
    border-radius: 11px;
    background: #eaf5fb;
    color: #246f9a;
    font-size: 0.82rem;
    font-weight: 850;
    text-align: center;
}

.guide-table-wrap {
    width: 100%;
    margin: 24px 0;
    overflow-x: auto;
    border: 1px solid #d6dbd2;
    border-radius: 14px;
}

.guide-table-wrap table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: #fff;
}

.guide-table-wrap th,
.guide-table-wrap td {
    padding: 15px 16px;
    border-right: 1px solid #d9ddd6;
    border-bottom: 1px solid #d9ddd6;
    line-height: 1.65;
    text-align: left;
    vertical-align: middle;
}

.guide-table-wrap tr:last-child th,
.guide-table-wrap tr:last-child td {
    border-bottom: 0;
}

.guide-table-wrap th:last-child,
.guide-table-wrap td:last-child {
    border-right: 0;
}

.guide-table-wrap thead th {
    border-color: #4e8d3b;
    background: #4e8d3b;
    color: #fff;
    text-align: center;
}

.guide-table-wrap tbody th {
    width: 29%;
    background: #f7f8f5;
    font-weight: 750;
}

.guide-table-wrap tbody tr:nth-child(even) td {
    background: #fafbf9;
}

.guide-trouble-table thead th {
    border-color: var(--guide-orange);
    background: var(--guide-orange);
}

.guide-change-cards {
    margin-top: 24px;
}

.guide-change-cards > article {
    background: #f7fbf5;
}

.guide-change-cards a {
    display: inline-block;
    margin-top: 10px;
    color: #2c742b;
    font-weight: 850;
}

.guide-privacy-box {
    margin-top: 28px;
}

.guide-official-links {
    display: grid;
    grid-template-columns: auto repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
    margin: 24px 0;
    padding: 18px;
    border-radius: 16px;
    background: #fff8de;
}

.guide-official-links h3 {
    margin: 0 8px 0 0;
    color: var(--guide-green);
    font-size: 1rem;
}

.guide-official-links a {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    border-radius: 10px;
    background: #fff;
    color: #287aa7;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.guide-official-links a:hover,
.guide-official-links a:focus-visible {
    color: #12577e;
    text-decoration: underline;
}

.guide-contact-note {
    border-color: #79a965;
}

.guide-final {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 30px;
    padding: 26px 34px;
    overflow: hidden;
    border: 1px solid #f1d075;
    border-radius: 26px;
    background: linear-gradient(120deg, #fffaf0, #fff0ac);
}

.guide-final img {
    width: 115px;
    height: 132px;
    object-fit: contain;
    object-position: center bottom;
    mix-blend-mode: normal;
}

.guide-final p {
    margin: 0 0 5px;
    color: #b3510b;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.guide-final h2 {
    margin: 0;
    color: var(--guide-green);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.guide-final div > span {
    display: block;
    margin-top: 6px;
    color: #695b51;
}

.guide-final > a {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--guide-orange);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.guide-final > a:hover,
.guide-final > a:focus-visible {
    background: #c95104;
    color: #fff;
}

/* Decorative mascot poses scattered through the official pages. */
.home-section-sprinkled,
.guide-sprinkled {
    position: relative;
}

.mascot-sprinkle {
    position: absolute;
    z-index: 3;
    display: block;
    width: 104px;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 10px 12px rgba(92, 52, 0, 0.16));
    transform-origin: center bottom;
    animation: mascot-bob 4s ease-in-out infinite;
}

.mascot-sprinkle-right {
    top: 54px;
    right: 22px;
}

.mascot-sprinkle-left {
    top: 54px;
    left: 22px;
}

.mascot-sprinkle-point {
    transform: rotate(-2deg);
}

.mascot-sprinkle-cheer {
    animation-duration: 3.4s;
}

.mascot-sprinkle-read {
    width: 98px;
    animation-duration: 4.6s;
}

.guide-sprinkled > .mascot-sprinkle {
    top: 24px;
    width: 96px;
}

.guide-sprinkled > .guide-section-heading,
.guide-sprinkled > .guide-chapter-heading {
    padding-right: 118px;
}

.guide-sprinkled > .mascot-sprinkle-left + .guide-chapter-heading {
    padding-right: 0;
    padding-left: 118px;
}

.home-use-cases-content {
    position: relative;
}

.home-usecase-mascot {
    position: absolute;
    top: -70px;
    right: 14px;
    z-index: 2;
    display: block;
    width: 94px;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.2));
    transform: rotate(3deg);
    transform-origin: center bottom;
    animation: mascot-bob 4.2s ease-in-out infinite;
}

@media (max-width: 1000px) {
    .mascot-sprinkle {
        width: 84px;
    }

    .mascot-sprinkle-read {
        width: 80px;
    }

    .home-usecase-mascot {
        top: -62px;
        width: 80px;
    }
}

@media (max-width: 760px) {
    .home-section-sprinkled,
    .guide-sprinkled {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 78px;
        gap: 0 8px;
    }

    .home-section-sprinkled > .mascot-sprinkle,
    .guide-sprinkled > .mascot-sprinkle {
        position: static;
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        justify-self: end;
        width: 72px;
    }

    .home-section-sprinkled > .home-section-heading,
    .guide-sprinkled > .guide-section-heading,
    .guide-sprinkled > .guide-chapter-heading {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        width: 100%;
        margin-inline: 0;
        padding-right: 0;
        padding-left: 0;
        text-align: left;
    }

    .home-section-sprinkled > :not(.mascot-sprinkle):not(.home-section-heading),
    .guide-sprinkled > :not(.mascot-sprinkle):not(.guide-section-heading):not(.guide-chapter-heading) {
        grid-column: 1 / -1;
    }

    .home-usecase-mascot {
        position: static;
        width: 78px;
        margin: -4px auto 10px;
        transform: rotate(2deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mascot-sprinkle,
    .home-usecase-mascot {
        animation: none;
    }
}

@media (max-width: 900px) {
    .guide-hero {
        grid-template-columns: minmax(0, 1fr) 250px;
        min-height: 470px;
    }

    .guide-hero-copy {
        padding: 42px 12px 42px 42px;
    }

    .guide-flow-list {
        grid-template-columns: 1fr;
    }

    .guide-flow-list li + li,
    .guide-flow-list li:last-child {
        border-top: 1px solid #e8c48c;
        border-left: 0;
    }

    .guide-official-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .guide-official-links h3 {
        grid-column: 1 / -1;
    }

    .guide-final {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .guide-final img {
        width: 88px;
        height: 110px;
    }

    .guide-final > a {
        grid-column: 2;
        width: fit-content;
    }
}

@media (max-width: 720px) {
    .official-home-layout .site-main {
        padding-inline: 16px;
    }

    .guide-hero {
        grid-template-columns: 1fr;
    }

    .guide-hero-copy {
        padding: 32px 26px 14px;
    }

    .guide-breadcrumb {
        margin-bottom: 20px;
    }

    .guide-hero-mascot {
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
        padding: 0 26px 22px;
        text-align: left;
    }

    .guide-hero-mascot img {
        width: 120px;
        height: 142px;
        margin: 0;
        object-fit: contain;
    }

    .guide-menu > ol,
    .guide-two-column,
    .guide-compare,
    .guide-contact-options {
        grid-template-columns: 1fr;
    }

    .guide-menu li:last-child {
        grid-column: auto;
    }

    .guide-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-detail-grid span:last-child {
        grid-column: 1 / -1;
    }

    .guide-table-wrap {
        overflow-x: visible;
        border: 0;
        border-radius: 0;
    }

    .guide-table-wrap table,
    .guide-table-wrap tbody,
    .guide-table-wrap tr,
    .guide-table-wrap th,
    .guide-table-wrap td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .guide-table-wrap thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .guide-table-wrap tbody tr {
        margin-bottom: 12px;
        overflow: hidden;
        border: 1px solid #d5ded1;
        border-radius: 12px;
        background: #fff;
    }

    .guide-table-wrap tbody th,
    .guide-table-wrap tbody td {
        border: 0;
    }

    .guide-table-wrap tbody th {
        width: 100%;
        padding: 12px 14px 8px;
        background: #edf7e9;
        color: #2f702c;
    }

    .guide-trouble-table tbody th {
        background: #fff0e4;
        color: #a64408;
    }

    .guide-table-wrap tbody td {
        width: 100%;
        padding: 9px 14px 13px;
        background: #fff;
    }

    .guide-action-box {
        align-items: stretch;
        flex-direction: column;
    }

    .guide-action-box > a {
        align-self: flex-start;
    }

    .guide-step-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .guide-official-links {
        grid-template-columns: 1fr;
    }

    .guide-official-links h3 {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .official-home-layout .site-header {
        padding: 7px 12px;
    }

    .official-home-layout .site-title-mascot {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .home-nav a:not(.home-nav-login):not([aria-current="page"]) {
        display: none;
    }

    .home-nav a[aria-current="page"] {
        display: none;
    }

    .home-nav a {
        padding: 8px 10px;
        font-size: 0.76rem;
    }

    .home-nav .home-nav-login {
        margin-left: 0;
        padding-inline: 12px;
    }

    .guide-hero {
        border-radius: 22px;
    }

    .guide-hero h1 {
        font-size: clamp(2rem, 10vw, 2.55rem);
        white-space: nowrap;
    }

    .guide-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .guide-primary-link,
    .guide-text-link {
        width: 100%;
    }

    .guide-flow,
    .guide-menu,
    .guide-chapter {
        border-radius: 20px;
    }

    .guide-chapter {
        padding: 20px;
    }

    .guide-chapter-heading {
        margin-bottom: 22px;
        padding-bottom: 16px;
    }

    .guide-section-heading-compact {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .guide-first-notes {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .guide-note-mascot {
        width: 42px;
        height: 42px;
    }

    .guide-chapter-heading h2 {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .guide-steps > li {
        padding-left: 10px;
    }

    .guide-change-cards article {
        flex-direction: column;
    }

    .guide-contact-options {
        gap: 10px;
        margin: 18px 0;
    }

    .guide-contact-options article {
        flex-direction: row;
        gap: 12px;
        padding: 16px;
    }

    .guide-contact-options article > span {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 1.15rem;
    }

    .guide-mail-address {
        align-items: flex-start;
        flex-direction: column;
    }

    .guide-final {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 16px;
        padding: 22px;
    }

    .guide-final img {
        width: 68px;
        height: 90px;
    }

    .guide-final > a {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .official-home-layout .site-header-inner {
        gap: 6px;
    }

    .official-home-layout .site-title {
        font-size: clamp(0.7rem, 3vw, 0.78rem);
    }

    .official-home-layout .site-title a {
        width: auto;
        gap: 6px;
    }

    .official-home-layout .site-title-mascot {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .official-home-layout .home-nav .home-nav-login {
        padding-inline: 10px;
    }
}

/* =====================================================================
   目的別入口・サポート・お問い合わせ（2026-08-22）
   ===================================================================== */

.home-button-demo {
    border-color: #6aa950;
    background: #f3faef;
    color: #347027;
}

.home-button-demo:hover,
.home-button-demo:focus-visible {
    background: #e4f4dc;
    color: #285c1e;
}

.home-service-plans {
    margin-top: 32px;
    padding: clamp(30px, 5vw, 54px);
    border: 1px solid #b9d9e7;
    border-radius: 30px;
    background: linear-gradient(135deg, #f5fbff 0%, #eaf7ff 58%, #fff9de 100%);
    box-shadow: 0 14px 38px rgba(20, 91, 123, 0.09);
}

.home-service-plans-heading {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

.home-service-plans-heading > p:last-child {
    margin: 14px 0 0;
    color: var(--home-brown-soft);
    font-weight: 650;
}

.home-service-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-service-plan-card {
    position: relative;
    min-height: 320px;
    padding: 26px;
    border: 2px solid #b9d9e7;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(26, 89, 116, 0.07);
}

.home-service-plan-card.is-free {
    border-color: #76b75a;
}

.home-service-plan-card.is-standard {
    border-color: #4aa6ce;
}

.home-service-plan-card.is-premium {
    border-color: #e5a52d;
    background: linear-gradient(180deg, #fffdf8, #fff8dc);
}

.home-service-plan-label {
    width: fit-content;
    margin: 0 0 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #e7f5df;
    color: #347027;
    font-size: 0.73rem;
    font-weight: 950;
    letter-spacing: 0.04em;
}

.is-standard .home-service-plan-label {
    background: #e0f4fd;
    color: #12698e;
}

.is-premium .home-service-plan-label {
    background: #fff0bd;
    color: #8c5800;
}

.home-service-plan-card h3 {
    margin: 0;
    color: var(--home-brown);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.home-service-plan-price {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 14px 0 18px;
    color: #116e97;
}

.home-service-plan-price strong {
    font-size: clamp(2.15rem, 4vw, 3rem);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.home-service-plan-price span {
    color: #6e6258;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.35;
}

.home-service-plan-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    color: #4f443b;
    font-size: 0.88rem;
    font-weight: 700;
    list-style: none;
}

.home-service-plan-card li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 7px;
    align-items: start;
}

.home-service-plan-card li span {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: #2f8f59;
    color: #fff;
    font-size: 0.65rem;
}

.home-amazon-renewal {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 20px;
    padding: 20px 22px;
    border: 2px solid #e3b13c;
    border-radius: 22px;
    background: #fffdf5;
}

.home-amazon-renewal-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 18px;
    background: #ffe58b;
    color: #774a00;
    font-weight: 1000;
}

.home-amazon-renewal h3,
.home-amazon-renewal p {
    margin: 0;
}

.home-amazon-renewal p {
    margin-top: 5px;
    color: #6e5a49;
    font-size: 0.88rem;
    font-weight: 650;
}

.home-amazon-renewal a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 999px;
    background: #232f3e;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.home-amazon-renewal a:hover,
.home-amazon-renewal a:focus-visible {
    background: #101820;
    color: #fff;
}

.home-service-plans-note {
    margin: 13px 0 0;
    color: #6f655e;
    font-size: 0.76rem;
    text-align: center;
}

.membership-hero-line {
    display: block;
}

.home-audience {
    margin-top: 32px;
    padding: clamp(30px, 5vw, 54px);
    border: 1px solid #ead8a6;
    border-radius: 30px;
    background: linear-gradient(135deg, #fffdf5, #fff7d7);
    box-shadow: 0 14px 38px rgba(104, 65, 9, 0.08);
}

.home-audience-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.home-audience-heading h2 {
    margin: 0;
    color: var(--home-brown);
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
}

.home-audience-heading > p:last-child {
    margin: 12px 0 0;
    color: var(--home-brown-soft);
    font-weight: 650;
}

.home-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.home-audience-card {
    position: relative;
    padding: 32px;
    border: 2px solid transparent;
    border-radius: 26px;
    background: #fff;
}

.home-audience-owner {
    border-color: #f0c34a;
}

.home-audience-finder {
    border-color: #73b7d9;
    background: #f2fbff;
}

.home-audience-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 20px;
    background: #fff0af;
    font-size: 1.8rem;
}

.home-audience-finder .home-audience-icon {
    background: #d9f2ff;
}

.home-audience-card > p:first-of-type {
    margin: 0 0 6px;
    color: #b6530b;
    font-size: 0.8rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.home-audience-finder > p:first-of-type {
    color: #146e93;
}

.home-audience-card h3 {
    margin: 0 0 12px;
    color: var(--home-brown);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.home-audience-card > p:last-of-type {
    margin: 0;
    color: var(--home-brown-soft);
    font-weight: 600;
}

.home-audience-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    margin-top: 22px;
}

.home-audience-actions .home-button {
    width: 100%;
}

.home-audience-actions > a:not(.home-button) {
    color: #6d491f;
    font-size: 0.88rem;
    font-weight: 850;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.home-audience-finder ul {
    display: grid;
    gap: 8px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.home-audience-finder li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #3e5e6c;
    font-size: 0.9rem;
    font-weight: 750;
}

.home-audience-finder li span {
    display: grid;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    place-items: center;
    border-radius: 50%;
    background: #2383a9;
    color: #fff;
    font-size: 0.7rem;
}

.home-button-finder {
    width: 100%;
    background: linear-gradient(135deg, #238bb5, #14678b);
    box-shadow: 0 10px 24px rgba(20, 103, 139, 0.2);
    color: #fff;
}

.home-button-finder:hover,
.home-button-finder:focus-visible {
    background: linear-gradient(135deg, #18779f, #0d5777);
    color: #fff;
}

.home-use-cases-photo picture {
    display: block;
    width: 100%;
    height: 100%;
}

.home-scenes {
    padding-top: clamp(72px, 9vw, 108px);
}

.home-scene-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-scene-grid article {
    min-height: 275px;
    padding: 30px;
    border: 1px solid #e8d6ac;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(90, 56, 8, 0.07);
}

.home-scene-grid article > span {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 19px;
    background: #fff0b6;
    font-size: 1.75rem;
}

.home-scene-grid article > p:first-of-type {
    margin: 0 0 5px;
    color: #b6530b;
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.1em;
}

.home-scene-grid h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
}

.home-scene-grid article > p:last-child {
    margin: 0;
    color: var(--home-brown-soft);
    font-weight: 600;
}

.home-scenes-note {
    margin: 14px 0 0;
    color: #766b63;
    font-size: 0.76rem;
    text-align: center;
}

.home-feedback-invite {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
    padding: 20px 26px;
    border-radius: 24px;
    background: #eaf7df;
}

.home-feedback-invite img {
    width: 72px;
    height: 90px;
    object-fit: contain;
}

.home-feedback-invite p {
    margin: 0 0 4px;
    color: #3e772e;
    font-size: 0.8rem;
    font-weight: 950;
    letter-spacing: 0.06em;
}

.home-feedback-invite strong {
    color: #3f2d20;
}

.home-feedback-invite a,
.home-support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #4f8f32;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.home-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-support-grid > * {
    display: block;
    min-height: 230px;
    padding: 28px;
    border: 1px solid #e6d5b0;
    border-radius: 24px;
    background: #fff;
    color: inherit;
    text-decoration: none;
}

.home-support-grid > a {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-support-grid > a:hover,
.home-support-grid > a:focus-visible {
    box-shadow: 0 14px 30px rgba(95, 58, 5, 0.12);
    transform: translateY(-3px);
}

.home-support-grid > * > span {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: #fff0b6;
    font-size: 1.6rem;
}

.home-support-grid p {
    margin: 0 0 6px;
    color: #b6530b;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.07em;
}

.home-support-grid strong,
.home-support-grid small {
    display: block;
}

.home-support-grid strong {
    color: var(--home-brown);
    font-size: 1.12rem;
}

.home-support-grid small {
    margin-top: 12px;
    color: #74675e;
    font-weight: 650;
}

.home-support-button {
    width: fit-content;
    margin: 24px auto 0;
    background: linear-gradient(135deg, #ed791e, #c84f08);
}

.guide-purpose {
    margin: 28px 0;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid #e6c985;
    border-radius: 26px;
    background: linear-gradient(135deg, #fffdf5, #fff5cb);
}

.guide-purpose-heading {
    margin-bottom: 24px;
}

.guide-purpose-heading h2 {
    margin: 0;
    color: var(--guide-green);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.guide-purpose-heading > span {
    display: block;
    margin-top: 7px;
    color: #6b5b50;
    font-weight: 650;
}

.guide-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.guide-purpose-grid article {
    padding: 24px;
    border: 2px solid #ead29a;
    border-radius: 22px;
    background: #fff;
}

.guide-purpose-finder {
    border-color: #81bdd7 !important;
    background: #f2fbff !important;
}

.guide-purpose-help {
    border-color: #a9cc96 !important;
    background: #f6fbf2 !important;
}

.guide-purpose-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 17px;
    background: #fff0b1;
    font-size: 1.5rem;
}

.guide-purpose-grid article > p {
    margin: 0 0 5px;
    color: #b6530b;
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.07em;
}

.guide-purpose-grid h3 {
    margin: 0 0 16px;
    color: #3f2d20;
    font-size: 1.18rem;
}

.guide-purpose-grid article > div {
    display: grid;
    gap: 8px;
}

.guide-purpose-grid a {
    color: #39712f;
    font-size: 0.88rem;
    font-weight: 850;
    text-underline-offset: 4px;
}

.guide-purpose-finder ul {
    display: grid;
    gap: 7px;
    margin: 0 0 18px;
    padding-left: 20px;
    color: #45616d;
    font-size: 0.86rem;
    font-weight: 700;
}

.guide-purpose-grid .guide-purpose-primary {
    display: inline-flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 11px 14px;
    border-radius: 12px;
    background: #2383a9;
    color: #fff;
    text-decoration: none;
}

.guide-contact-note a {
    display: inline-block;
    margin-top: 10px;
    color: #a84a08;
    font-weight: 900;
}

.official-contact {
    --contact-green: #2f752f;
    width: min(960px, 100%);
    margin: 0 auto;
    color: #3f2d20;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 5vw, 50px);
    overflow: hidden;
    border: 1px solid #ead08b;
    border-radius: 30px;
    background: linear-gradient(135deg, #fffdf4, #fff0ae);
}

.contact-hero h1 {
    margin: 0;
    color: #3f2d20;
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    line-height: 1.18;
}

.contact-hero > div > p:last-child {
    max-width: 38rem;
    margin: 18px 0 0;
    color: #6b5747;
    font-weight: 650;
}

.contact-eyebrow {
    margin: 0 0 10px;
    color: #cf570a;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.16em;
}

.contact-hero > img {
    display: block;
    width: 190px;
    height: 235px;
    object-fit: contain;
    filter: drop-shadow(0 12px 14px rgba(83, 48, 0, 0.14));
}

.contact-support-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.contact-support-summary article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #e4d6b6;
    border-radius: 18px;
    background: #fff;
}

.contact-support-summary article > span {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 14px;
    background: #fff1bb;
}

.contact-support-summary strong,
.contact-support-summary p {
    display: block;
    margin: 0;
}

.contact-support-summary p {
    margin-top: 4px;
    color: #6f6258;
    font-size: 0.88rem;
}

.contact-support-summary .contact-support-emergency {
    grid-column: 1 / -1;
    border-color: #e6aa93;
    background: #fff4ef;
}

.contact-quick-help,
.contact-form-section,
.contact-complete {
    margin-top: 24px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid #e5d7b7;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(88, 53, 8, 0.07);
}

.contact-quick-help {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.contact-quick-help > div {
    grid-column: 1 / -1;
}

.contact-quick-help > div p,
.contact-form-heading > p {
    margin: 0 0 5px;
    color: #cf570a;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.14em;
}

.contact-quick-help h2,
.contact-form-heading h2,
.contact-complete h2 {
    margin: 0;
    color: var(--contact-green);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.contact-quick-help > a {
    display: block;
    padding: 18px;
    border-radius: 18px;
    background: #fff9e5;
    color: inherit;
    text-decoration: none;
}

.contact-quick-help > a:hover,
.contact-quick-help > a:focus-visible {
    outline: 3px solid rgba(47, 117, 47, 0.25);
}

.contact-quick-help > a span,
.contact-quick-help > a strong,
.contact-quick-help > a small {
    display: block;
}

.contact-quick-help > a span {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.contact-quick-help > a small {
    margin-top: 5px;
    color: #6f6258;
}

.contact-form-heading > span {
    display: block;
    margin-top: 9px;
    color: #75685f;
    font-size: 0.86rem;
}

.contact-form-heading > span strong,
.contact-field > span strong {
    color: #b8421e;
}

.contact-errors {
    margin: 22px 0;
    padding: 18px 20px;
    border: 2px solid #ce5d37;
    border-radius: 16px;
    background: #fff3ef;
    color: #7f2e16;
}

.contact-errors ul {
    margin: 8px 0 0;
    padding-left: 22px;
}

.contact-form {
    display: grid;
    gap: 20px;
    margin-top: 26px;
}

.contact-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-field {
    display: grid;
    gap: 8px;
    color: #493426;
    font-weight: 850;
}

.contact-field > span small {
    color: #75685f;
    font-weight: 650;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cdbb99;
    border-radius: 12px;
    background: #fffefb;
    color: #3f2d20;
    font: inherit;
    font-weight: 500;
}

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #2f752f;
    outline: 3px solid rgba(47, 117, 47, 0.18);
}

.contact-field > small {
    color: #76695f;
    font-weight: 600;
}

.contact-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 14px;
    background: #f5f9f1;
    font-size: 0.9rem;
    font-weight: 650;
}

.contact-consent input {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 2px;
}

.contact-submit {
    display: inline-flex;
    width: min(100%, 420px);
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    padding: 13px 20px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #ed791e, #c84f08);
    box-shadow: 0 10px 24px rgba(190, 75, 5, 0.22);
    color: #fff;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
    background: linear-gradient(135deg, #d9610d, #a83e03);
    outline: 4px solid rgba(233, 109, 24, 0.2);
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-complete {
    text-align: center;
}

.contact-complete > span {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e2f3d9;
    color: #2f752f;
    font-size: 2rem;
    font-weight: 950;
}

.contact-complete > p {
    color: #6f6258;
}

.contact-complete > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 22px;
}

@media (max-width: 900px) {
    .home-audience-grid,
    .home-scene-grid,
    .home-support-grid,
    .guide-purpose-grid,
    .home-service-plan-grid {
        grid-template-columns: 1fr;
    }

    .home-service-plan-card {
        min-height: 0;
    }

    .home-amazon-renewal {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .home-amazon-renewal a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .home-feedback-invite {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .home-feedback-invite a {
        grid-column: 2;
        width: fit-content;
    }
}

@media (max-width: 720px) {
    .home-service-plans {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .home-service-plans-heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .home-service-plan-card {
        padding: 20px;
        border-radius: 20px;
    }

    .home-amazon-renewal {
        gap: 12px;
        padding: 18px;
    }

    .home-audience {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .home-audience-heading br {
        display: none;
    }

    .home-audience-card,
    .home-scene-grid article,
    .home-support-grid > * {
        min-height: 0;
        padding: 22px;
    }

    .home-audience-card {
        display: grid;
        grid-template-columns: 60px minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 5px;
        align-items: start;
        padding: 18px;
    }

    .home-audience-icon {
        grid-column: 1;
        grid-row: 1 / span 3;
        width: 56px;
        height: 56px;
        margin: 0;
    }

    .home-audience-card > p:first-of-type {
        grid-column: 2;
        grid-row: 1;
        margin: 2px 0 1px;
    }

    .home-audience-card h3 {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
    }

    .home-audience-card > p:last-of-type {
        grid-column: 2;
        grid-row: 3;
        margin: 7px 0 0;
    }

    .home-audience-actions,
    .home-audience-finder ul,
    .home-audience-finder > .home-button-finder {
        grid-column: 1 / -1;
    }

    .home-audience-actions {
        margin-top: 14px;
    }

    .home-audience-finder ul {
        margin: 14px 0 8px;
    }

    .home-scene-grid article,
    .home-support-grid > * {
        display: grid;
        grid-template-columns: 60px minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 5px;
        align-items: start;
        padding: 18px;
    }

    .home-scene-grid article > span,
    .home-support-grid > * > span {
        grid-column: 1;
        grid-row: 1 / span 3;
        width: 56px;
        height: 56px;
        margin: 0;
    }

    .home-scene-grid article > p:first-of-type,
    .home-support-grid p {
        grid-column: 2;
        grid-row: 1;
        margin: 2px 0 1px;
    }

    .home-scene-grid h3,
    .home-support-grid strong {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
    }

    .home-scene-grid article > p:last-child,
    .home-support-grid small {
        grid-column: 2;
        grid-row: 3;
        margin: 7px 0 0;
    }

    .home-support-grid > * {
        grid-template-columns: 48px minmax(0, 1fr);
        column-gap: 12px;
    }

    .home-support-grid > * > span {
        grid-row: 1;
        width: 48px;
        height: 48px;
    }

    .home-support-grid p {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
    }

    .home-support-grid strong {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 9px;
    }

    .home-support-grid small {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .home-feedback-invite {
        grid-template-columns: 64px minmax(0, 1fr);
        padding: 18px;
    }

    .home-feedback-invite img {
        width: 60px;
        height: 76px;
    }

    .home-feedback-invite a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .guide-purpose {
        padding: 20px;
        border-radius: 20px;
    }

    .contact-hero {
        grid-template-columns: minmax(0, 1fr) 105px;
        gap: 10px;
        padding: 26px 22px;
        border-radius: 24px;
    }

    .contact-hero > img {
        width: 105px;
        height: 135px;
    }

    .contact-support-summary,
    .contact-quick-help,
    .contact-field-grid {
        grid-template-columns: 1fr;
    }

    .contact-support-summary .contact-support-emergency,
    .contact-quick-help > div {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .home-heading-line {
        white-space: normal;
    }

    .home-footer-brand strong {
        white-space: nowrap;
    }

    .activation-code-group {
        gap: 3px;
    }

    input.activation-code-part {
        padding-inline: 3px;
        font-size: 1.02rem;
        letter-spacing: 0.08em;
    }

    .activation-code-separator {
        font-size: 1rem;
    }

    .brand-hero figcaption span + span::before {
        content: "";
    }
}

@media (max-width: 480px) {
    .demo-link-callout {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 10px 12px;
        padding: 14px;
    }

    .demo-link-icon {
        width: 44px;
        height: 44px;
    }

    .demo-link-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .activation-code-group {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .activation-code-separator {
        display: none;
    }

    input.activation-code-part {
        font-size: clamp(0.95rem, 5vw, 1.08rem);
        letter-spacing: 0.05em;
    }

    .contact-hero {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero > img {
        width: 92px;
        height: 115px;
        margin: -10px auto 0;
    }

    .contact-quick-help,
    .contact-form-section,
    .contact-complete {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .contact-complete > div {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Guide blue theme and compact mobile cards (2026-08-22). */
.official-guide-layout {
    background: #eef8ff;
}

.official-guide-layout .site-header {
    border-bottom-color: #c8e5f4;
    box-shadow: 0 5px 18px rgba(18, 102, 151, 0.08);
}

.official-guide-layout .site-footer {
    border-top-color: #c8e5f4;
    background: #f5fbff;
}

.official-guide {
    --guide-green: #0d639b;
    --guide-green-light: #e9f6fd;
    --guide-orange: #1686bb;
    --guide-yellow: #82cfee;
    --guide-brown: #17364d;
    --guide-muted: #526b7c;
    --guide-blue: #0d70a9;
}

.guide-hero {
    border-color: #9bd5ef;
    background:
        radial-gradient(circle at 13% 17%, rgba(109, 202, 239, 0.34) 0 94px, transparent 95px),
        radial-gradient(circle at 76% 10%, rgba(107, 190, 230, 0.16) 0 150px, transparent 151px),
        linear-gradient(135deg, #fbfdff 0%, #e8f7ff 54%, #cfeeff 100%);
    box-shadow: 0 22px 55px rgba(15, 102, 153, 0.13);
}

.guide-flow,
.guide-menu,
.guide-chapter {
    border-color: #c5e3f2;
    box-shadow: 0 13px 32px rgba(17, 104, 151, 0.08);
}

.guide-flow,
.guide-chapter {
    background: #fff;
}

.guide-menu {
    background: #edf8fe;
}

.guide-menu a {
    border-color: #c7e2f0;
}

.guide-menu a:hover,
.guide-menu a:focus-visible {
    border-color: #55acd2;
    box-shadow: 0 8px 18px rgba(16, 111, 160, 0.13);
}

.guide-first-notes > div,
.guide-contact-options article,
.guide-change-cards article {
    border-color: #c5e1ef;
    background: #f4fbff;
}

.official-guide .guide-first-notes {
    border-color: #82c5e3;
    background: linear-gradient(135deg, #f8fcff 0%, #e5f5fd 100%);
    box-shadow: 0 12px 28px rgba(15, 102, 153, 0.09);
    color: #17364d;
}

.official-guide .guide-first-notes > div {
    border-color: transparent;
    background: transparent;
}

.official-guide .guide-first-notes > .guide-note-mascot {
    border: 1px solid #abd9ed;
    background: #dff3fd;
}

.official-guide .guide-first-notes h2 {
    color: #0d639b;
}

.guide-contact-options article > span,
.guide-change-cards article > span {
    background: #dff3fd;
    color: #0e70a5;
}

.guide-prep-box,
.guide-tip-box,
.guide-privacy-box,
.guide-contact-note {
    border-color: #81bdd9;
    background: #eaf7fd;
}

.guide-chapter-heading {
    border-bottom-color: #83cfee;
}

.guide-compare > div,
.guide-action-box,
.guide-official-links,
.guide-detail-grid span {
    border-color: #bcddec;
}

.guide-final {
    border-color: #8dcae7;
    background: linear-gradient(120deg, #f8fcff, #d7f1ff);
}

.guide-purpose {
    border-color: #99cfe8;
    background: linear-gradient(135deg, #f9fdff, #dff4ff);
}

.official-guide .guide-purpose-owner,
.official-guide .guide-purpose-finder,
.official-guide .guide-purpose-help {
    border-color: #9ccfe6 !important;
    background: #f5fbff !important;
}

.official-guide .guide-purpose-icon {
    background: #dff3fd;
}

.official-guide .guide-purpose-grid article > p,
.official-guide .guide-purpose-grid h3,
.official-guide .guide-purpose-grid a {
    color: #0d639b;
}

.official-guide .guide-purpose-grid .guide-purpose-primary {
    background: #0b6b9f;
    color: #fff;
}

.official-guide .guide-purpose-grid .guide-purpose-primary span {
    color: inherit;
}

.official-guide .guide-purpose-grid .guide-purpose-primary:hover,
.official-guide .guide-purpose-grid .guide-purpose-primary:focus-visible {
    background: #07577f;
    color: #fff;
}

@media (max-width: 720px) {
    .guide-menu {
        padding: 16px;
    }

    .guide-menu > ol {
        gap: 8px;
    }

    .guide-menu a {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 2px 10px;
        min-height: 64px;
        padding: 10px 12px;
        border-radius: 12px;
    }

    .guide-menu a > span {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        font-size: 0.9rem;
    }

    .guide-menu strong {
        font-size: 0.94rem;
        line-height: 1.35;
    }

    .guide-menu small {
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .guide-purpose-grid article {
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 0;
        padding: 16px;
    }

    .guide-purpose-grid .guide-purpose-icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin: 0;
    }

    .guide-purpose-grid article > p {
        grid-column: 2;
        grid-row: 1;
        margin: 0 0 3px;
    }

    .guide-purpose-grid article > h3 {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        margin: 0 0 16px;
    }

    .guide-purpose-grid article > div,
    .guide-purpose-grid article > ul,
    .guide-purpose-grid article > a {
        grid-column: 1 / -1;
    }

    .guide-change-cards article {
        position: relative;
        display: block;
        padding: 16px;
    }

    .guide-change-cards article > span {
        position: absolute;
        top: 16px;
        left: 16px;
        margin: 0;
    }

    .guide-change-cards article > div {
        display: block;
    }

    .guide-change-cards h3 {
        display: flex;
        min-height: 46px;
        align-items: center;
        margin: 0 0 12px 60px;
    }

    .contact-quick-help > a {
        display: grid;
        grid-template-columns: 50px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 4px;
        align-items: center;
        padding: 16px;
    }

    .contact-quick-help > a span {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin: 0;
        text-align: center;
    }

    .contact-quick-help > a strong {
        grid-column: 2;
        grid-row: 1;
    }

    .contact-quick-help > a small {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
    }

    .guide-sprinkled {
        position: relative;
        display: block;
    }

    .guide-sprinkled > .mascot-sprinkle,
    .guide-sprinkled > .mascot-sprinkle-left {
        position: absolute;
        top: 20px;
        right: 20px;
        left: auto;
        width: 64px;
    }

    .guide-sprinkled > .guide-section-heading,
    .guide-sprinkled > .guide-chapter-heading,
    .guide-sprinkled > .mascot-sprinkle-left + .guide-chapter-heading {
        width: 100%;
        padding-right: 78px !important;
        padding-left: 0 !important;
    }
}

/* 汎用 .button より後で決済ボタンの配色を確定する。 */
.payment-button.payment-button-stripe {
    background: #087bb4;
    color: #fff;
}

.payment-button.payment-button-stripe:hover,
.payment-button.payment-button-stripe:focus-visible {
    background: #055f8c;
    color: #fff;
}

.payment-button.payment-button-amazon {
    background: #232f3e;
    color: #fff;
}

.payment-button.payment-button-amazon:hover,
.payment-button.payment-button-amazon:focus-visible {
    background: #101820;
    color: #fff;
}

.payment-button.payment-button-free {
    border-color: #2f8959;
    background: linear-gradient(135deg, #43a66f, #277c50);
    color: #fff;
}

.payment-button.payment-button-free:hover,
.payment-button.payment-button-free:focus-visible {
    background: linear-gradient(135deg, #348e5e, #1f6842);
    color: #fff;
}

.home-button.home-button-purchase {
    border-color: #0b6d9c;
    background: linear-gradient(135deg, #138fc5, #07628f);
    color: #fff;
    box-shadow: 0 10px 24px rgba(7, 98, 143, 0.22);
}

.home-button.home-button-purchase:hover,
.home-button.home-button-purchase:focus-visible {
    background: linear-gradient(135deg, #0b78ab, #064e72);
    color: #fff;
}

/* =====================================================================
   月額会員プラン（2026-08-23）
   ===================================================================== */
.membership-plans,
.membership-conditions {
    width: min(1120px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.membership-hero {
    background: linear-gradient(135deg, #eefaff 0%, #d8f1ff 62%, #fff7d5 100%);
}

.membership-hero h1 {
    max-width: 16em;
    font-size: clamp(1.75rem, 4.3vw, 2.75rem);
    letter-spacing: 0;
}

.membership-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.membership-hero-points li {
    padding: 8px 13px;
    border: 1px solid #78bad7;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #07577f;
    font-size: 0.86rem;
    font-weight: 900;
}

.membership-plans {
    margin-top: 38px;
}

.membership-contract-management {
    display: grid;
    width: min(100% - 40px, 1120px);
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    gap: 24px 34px;
    margin: 28px auto 0;
    padding: clamp(22px, 4vw, 36px);
    border: 2px solid #69b7d6;
    border-radius: 24px;
    background: linear-gradient(135deg, #eaf8fe, #fff);
    box-shadow: 0 14px 34px rgba(8, 91, 130, 0.12);
}

.membership-contract-management h2 {
    margin: 5px 0 0;
    color: #073f62;
}

.membership-contract-management dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.membership-contract-management dl > div {
    display: grid;
    grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
    gap: 10px;
    padding: 11px 13px;
    border-radius: 12px;
    background: #fff;
}

.membership-contract-management dt {
    color: #526b79;
    font-size: 0.84rem;
    font-weight: 800;
}

.membership-contract-management dd {
    margin: 0;
    color: #183f55;
    font-weight: 800;
}

.membership-contract-trial {
    color: #16744c;
}

.membership-contract-canceling {
    color: #aa451e;
}

.membership-contract-form,
.membership-contract-contact {
    grid-column: 2;
    margin: 0;
}

.membership-contract-form {
    display: grid;
    gap: 10px;
    padding: 15px;
    border: 1px solid #acd5e5;
    border-radius: 15px;
    background: #fff;
}

.membership-contract-form > p,
.membership-contract-contact {
    color: #465f6d;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.7;
}

.payment-button.payment-button-cancel {
    border: 1px solid #b75d35;
    background: #fff7f2;
    color: #9b3e1b;
    box-shadow: none;
}

.payment-button.payment-button-resume {
    border: 1px solid #0874a8;
    background: #0b7faf;
    color: #fff;
}

.membership-section-heading {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.membership-section-heading h2 {
    margin: 6px 0 10px;
    color: #083f62;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.membership-section-heading > p:last-child {
    color: #536a79;
    font-weight: 700;
    line-height: 1.8;
}

.membership-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.membership-plan-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(22px, 2.4vw, 32px);
    border: 2px solid #87c7df;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(8, 79, 116, 0.1);
}

.membership-plan-card.is-free {
    border-color: #62b486;
    background: linear-gradient(180deg, #f0fbf4 0%, #fff 42%);
    box-shadow: 0 16px 38px rgba(38, 125, 79, 0.12);
}

.membership-plan-card.is-premium {
    border-color: #0874a8;
    background: linear-gradient(180deg, #f2fbff 0%, #fff 42%);
    box-shadow: 0 18px 44px rgba(7, 100, 145, 0.17);
}

.membership-plan-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    margin: 0;
    padding: 7px 15px;
    border-radius: 999px;
    background: #0a6f9f;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.is-standard .membership-plan-badge {
    background: #377f34;
}

.is-free .membership-plan-badge {
    background: #2f8959;
}

.membership-plan-kicker {
    margin: 0 0 6px;
    color: #5d7787;
    font-size: 0.86rem;
    font-weight: 800;
}

.membership-plan-card h3 {
    margin: 0;
    color: #083f62;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.membership-price {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 16px 0 20px;
    color: #07577f;
}

.membership-price strong {
    font-size: clamp(2.7rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.is-free .membership-price,
.membership-plan-card.is-free h3 {
    color: #236d47;
}

.membership-price span {
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.4;
}

.membership-intro-offer {
    display: grid;
    gap: 4px;
    margin: -4px 0 14px;
    padding: 11px 12px;
    border: 1px solid #64b889;
    border-radius: 13px;
    background: #eefaf3;
    color: #285943;
    font-size: 0.875rem;
    line-height: 1.6;
}

.membership-intro-offer strong {
    color: #197046;
}

.membership-intro-offer.is-used {
    border-color: #bfd0d8;
    background: #f3f7f9;
    color: #5c6f79;
}

.membership-intro-offer.is-used strong {
    color: #425966;
}

.membership-feature-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.membership-feature-list li {
    padding: 13px 2px;
    border-top: 1px solid #d4e8f1;
    color: #344f60;
    line-height: 1.65;
}

.membership-feature-list li > span {
    display: inline-grid;
    width: 24px;
    height: 24px;
    margin-right: 7px;
    place-items: center;
    border-radius: 50%;
    background: #dff4fd;
    color: #086993;
    font-weight: 900;
}

.is-free .membership-feature-list li > span {
    background: #ddf4e6;
    color: #277c50;
}

.membership-checkout-options {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
}

.membership-plan-card.is-current-plan {
    border-width: 3px;
    box-shadow: 0 18px 38px rgba(5, 99, 143, 0.18);
}

.membership-current-plan-label {
    width: fit-content;
    margin: 0 0 10px auto;
    padding: 6px 12px;
    border-radius: 999px;
    background: #086f9f;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1.35;
}

.membership-upgrade-form {
    padding: 14px;
    border: 2px solid #0b88bd;
    border-radius: 16px;
    background: #edf9fe;
}

.membership-upgrade-summary {
    display: grid;
    gap: 4px;
    color: #234b60;
    line-height: 1.6;
}

.membership-upgrade-summary strong {
    color: #075f89;
    font-size: 1rem;
}

.membership-upgrade-summary span {
    font-size: 0.84rem;
}

.payment-button.payment-button-upgrade {
    border: 1px solid #066b98;
    background: linear-gradient(135deg, #0b8fc5, #076b9c);
    color: #fff;
    box-shadow: 0 9px 20px rgba(7, 107, 156, 0.22);
}

.payment-alert-success {
    border-color: #68b58b;
    background: #effbf4;
    color: #17643b;
}

.membership-renewal-link {
    margin: 0;
    color: #526b5d;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.65;
    text-align: center;
}

.membership-renewal-link a {
    color: #236d47;
    font-weight: 900;
    text-underline-offset: 3px;
}

.membership-email-note {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: 22px 0 26px;
    padding: 16px 18px;
    border: 1px solid #9fd4e8;
    border-radius: 18px;
    background: #edf9fe;
}

.membership-email-note-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    background: #d8f1fb;
    color: #086993;
    font-size: 1.5rem;
}

.membership-email-note h3 {
    margin: 0 0 5px;
    color: #07577f;
    font-size: 1.05rem;
}

.membership-email-note p {
    margin: 0;
    color: #405b69;
    font-size: 0.9rem;
    line-height: 1.7;
}

.membership-login-notice {
    display: grid;
    gap: 6px;
}

.membership-login-notice a {
    width: fit-content;
    font-weight: 800;
}

.membership-plan-form {
    display: grid;
    gap: 10px;
}

.membership-consent {
    color: #4c616e;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
}

.membership-consent input {
    width: 18px;
    height: 18px;
    margin: 0 5px 0 0;
    vertical-align: -4px;
    accent-color: #087bb4;
}

.membership-consent-hint,
.membership-consent-error {
    margin: -3px 0 0;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.5;
}

.membership-consent-hint {
    color: #8a4a14;
}

.membership-consent-error {
    padding: 9px 11px;
    border: 1px solid #d9533f;
    border-radius: 10px;
    background: #fff2ef;
    color: #a92c1a;
}

.membership-consent.has-error {
    color: #a92c1a;
}

.membership-consent.has-error input {
    outline: 3px solid rgba(217, 83, 63, 0.28);
    outline-offset: 2px;
}

@media (max-width: 520px) {
    .membership-email-note {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 11px;
        padding: 14px;
    }

    .membership-email-note-icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 1.3rem;
    }

    .membership-contract-management dl > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

.membership-plan-form.is-submitting .payment-button {
    cursor: wait;
    opacity: 0.78;
}

.membership-checkout-options .payment-button {
    width: 100%;
    padding: 13px 14px;
    font-size: 0.95rem;
}

.payment-button.payment-button-disabled {
    border: 1px solid #afc3cd;
    background: #e8eff2;
    color: #566c77;
    cursor: not-allowed;
    opacity: 1;
}

.membership-conditions {
    display: grid;
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    gap: 30px;
    margin-top: 34px;
    padding: clamp(24px, 4vw, 42px);
    border: 2px solid #8bc8df;
    border-radius: 28px;
    background: #eaf8fe;
}

.membership-conditions h2 {
    margin: 6px 0 0;
    color: #083f62;
}

.membership-conditions ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.membership-conditions li {
    padding: 16px 18px;
    border: 1px solid #badde9;
    border-radius: 15px;
    background: #fff;
}

.membership-conditions li strong,
.membership-conditions li span {
    display: block;
}

.membership-conditions li strong {
    margin-bottom: 5px;
    color: #075d88;
}

.membership-conditions li span,
.membership-condition-note {
    color: #50636f;
    font-size: 0.9rem;
    line-height: 1.75;
}

.membership-condition-note {
    grid-column: 2;
    margin: 0;
}

@media (max-width: 900px) {
    .membership-plans,
    .membership-conditions {
        width: min(100% - 24px, 1120px);
    }

    .membership-hero-points {
        gap: 6px;
        margin-top: 14px;
    }

    .membership-hero-points li {
        padding: 6px 10px;
        font-size: 0.74rem;
    }

    .membership-plan-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .membership-contract-management {
        width: min(100% - 24px, 1120px);
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 17px;
    }

    .membership-contract-form,
    .membership-contract-contact {
        grid-column: 1;
    }

    .membership-plan-card {
        padding: 25px 20px 22px;
        border-radius: 22px;
    }

    .membership-price {
        margin: 12px 0 14px;
    }

    .membership-feature-list li {
        padding: 10px 0;
        font-size: 0.92rem;
    }

    .membership-conditions {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .membership-condition-note {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .membership-hero h1 {
        font-size: clamp(1.2rem, 5.6vw, 1.4rem);
        line-height: 1.45;
    }

    .membership-hero-line {
        white-space: nowrap;
    }
}

@media (max-width: 340px) {
    .membership-hero-line {
        white-space: normal;
    }
}

/* =====================================================================
   Stripe専用決済画面（上段Apple Pay／下段カード専用）
   ===================================================================== */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.stripe-checkout-page {
    width: min(100% - 32px, 680px);
    margin: 28px auto 56px;
}

.stripe-checkout-back {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin: 0 0 14px;
    color: #075f8b;
    font-weight: 850;
    text-decoration: none;
}

.stripe-checkout-back:hover,
.stripe-checkout-back:focus-visible {
    text-decoration: underline;
}

.stripe-checkout-card {
    padding: clamp(22px, 5vw, 38px);
    border: 2px solid #8fcce4;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(8, 81, 119, 0.13);
}

.stripe-checkout-summary {
    display: grid;
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #d6e8f0;
}

.stripe-checkout-summary img {
    width: 102px;
    height: 102px;
    object-fit: contain;
}

.stripe-checkout-summary p,
.stripe-checkout-summary h1,
.stripe-checkout-summary small {
    margin: 0;
}

.stripe-checkout-summary > div > p:first-child {
    color: #96601f;
    font-size: 0.8rem;
    font-weight: 900;
}

.stripe-checkout-summary h1 {
    margin-top: 4px;
    color: #123f59;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    line-height: 1.45;
}

.stripe-checkout-summary .stripe-checkout-price {
    display: flex;
    gap: 7px;
    align-items: baseline;
    margin: 7px 0 3px;
    color: #075f8b;
}

.stripe-checkout-price strong {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1;
}

.stripe-checkout-price span,
.stripe-checkout-summary small {
    color: #536873;
    font-weight: 750;
}

.stripe-checkout-schedule {
    display: grid;
    gap: 5px;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid #78c39b;
    border-radius: 14px;
    background: #eefaf3;
    color: #365f4c;
    font-size: 0.9rem;
    line-height: 1.65;
}

.stripe-checkout-schedule strong {
    color: #176c45;
}

.stripe-checkout-schedule a {
    width: fit-content;
    color: #075f8b;
    font-weight: 800;
}

.stripe-checkout-root {
    padding-top: 24px;
}

.stripe-checkout-loading {
    padding: 18px;
    border-radius: 14px;
    background: #edf8fd;
    color: #315565;
    text-align: center;
    font-weight: 800;
}

.stripe-express-section {
    min-height: 55px;
}

.stripe-express-section.is-pending {
    height: 55px;
    overflow: hidden;
    visibility: hidden;
}

.stripe-checkout-divider {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 22px 0;
    color: #68767d;
    font-size: 0.9rem;
    font-weight: 750;
}

.stripe-checkout-divider::before,
.stripe-checkout-divider::after {
    height: 1px;
    flex: 1;
    background: #d8e1e6;
    content: '';
}

.stripe-card-form {
    display: grid;
    gap: 22px;
}

.stripe-card-form[hidden],
.stripe-express-section[hidden],
.stripe-checkout-divider[hidden],
.stripe-checkout-error[hidden],
.stripe-checkout-loading[hidden] {
    display: none !important;
}

.stripe-email-field {
    display: grid;
    gap: 8px;
}

.stripe-email-field label,
.stripe-card-fields legend {
    color: #173f55;
    font-weight: 900;
}

.stripe-email-field input {
    width: 100%;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid #a9bac3;
    border-radius: 12px;
    background: #fff;
    color: #1f3642;
    font: inherit;
    font-size: 16px;
}

.stripe-email-field input:focus {
    border-color: #087bb4;
    outline: 3px solid rgba(8, 123, 180, 0.18);
}

.stripe-email-field small {
    color: #61737d;
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.65;
}

.stripe-card-fields {
    min-width: 0;
    padding: 18px;
    border: 1px solid #b9ccd5;
    border-radius: 16px;
}

.stripe-card-fields legend {
    padding: 0 8px;
}

.stripe-checkout-error {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #d75845;
    border-radius: 12px;
    background: #fff2ef;
    color: #a72d1c;
    font-weight: 800;
    line-height: 1.55;
}

.stripe-card-submit {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 13px 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #138fc5, #07628f);
    box-shadow: 0 10px 24px rgba(7, 98, 143, 0.22);
    color: #fff;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
}

.stripe-card-submit:hover,
.stripe-card-submit:focus-visible {
    background: linear-gradient(135deg, #0b78ab, #064e72);
    outline: 4px solid rgba(8, 123, 180, 0.2);
}

.stripe-card-submit:disabled,
.stripe-card-submit.is-submitting {
    cursor: wait;
    opacity: 0.7;
}

.stripe-checkout-security {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 24px;
    padding: 15px;
    border-radius: 14px;
    background: #eef8f3;
    color: #405d50;
}

.stripe-checkout-security > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: #dff1e7;
}

.stripe-checkout-security p,
.stripe-checkout-legal {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.65;
}

.stripe-checkout-legal {
    margin-top: 14px;
    color: #63747c;
    text-align: center;
}

.stripe-checkout-legal a {
    color: #075f8b;
    font-weight: 800;
}

@media (max-width: 600px) {
    .stripe-checkout-page {
        width: min(100% - 20px, 680px);
        margin-top: 18px;
    }

    .stripe-checkout-card {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .stripe-checkout-summary {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
        padding-bottom: 18px;
    }

    .stripe-checkout-summary img {
        width: 76px;
        height: 76px;
    }

    .stripe-checkout-root {
        padding-top: 20px;
    }

    .stripe-card-fields {
        padding: 14px 10px;
    }

    .stripe-checkout-schedule,
    .stripe-email-field small,
    .stripe-checkout-security p,
    .stripe-checkout-legal {
        font-size: 0.875rem;
    }
}
/* Compact navigation shared by registration, pricing and help pages. */
.compact-site-menu { position: relative; margin-left: auto; flex-shrink: 0; color: #174c6a; }
.compact-site-menu summary { cursor: pointer; padding: 12px; min-height: 44px; border: 1px solid #87b5c8; border-radius: 12px; background: #fff; font-weight: 700; }
.compact-site-menu nav { position: absolute; right: 0; top: 100%; z-index: 100; width: min(270px, 85vw); padding: 8px; border: 1px solid #87b5c8; border-radius: 12px; background: #fff; box-shadow: 0 8px 24px #1233; }
.compact-site-menu nav a { display: block; padding: 12px; min-height: 44px; color: #174c6a; }
.compact-site-menu nav a:focus-visible { outline: 3px solid #1679a3; }
@media (max-width: 600px) { .site-header-inner { flex-wrap: wrap; gap: 8px; } .compact-site-menu summary { font-size: .875rem; } }

/* Cancellation help stays readable and reachable below the sticky header. */
#purchase-faq, #faq-cancellation, #membership-contract-management { scroll-margin-top: 160px; }
.membership-faq { margin: 32px 0; padding: clamp(18px, 4vw, 32px); background: #f3faff; border: 1px solid #a6cbdc; border-radius: 22px; color: #173e56; }
.membership-faq h2 { margin-top: 0; color: #174c6a; }
.membership-faq details { margin-top: 12px; border: 1px solid #bad7e5; border-radius: 14px; background: #fff; }
.membership-faq summary { padding: 16px; min-height: 48px; cursor: pointer; font-weight: 700; line-height: 1.6; overflow-wrap: anywhere; }
.membership-faq-answer { padding: 0 18px 16px; line-height: 1.85; overflow-wrap: anywhere; }
.membership-faq-answer ol { padding-left: 1.5em; }
.membership-faq-answer li + li { margin-top: 10px; }
.membership-faq a:not(.button), .membership-faq-jump { color: #075b84; text-decoration: underline; text-underline-offset: 3px; }
.membership-cancellation-link { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; max-width: 100%; padding: 14px 20px; white-space: normal; text-align: center; line-height: 1.6; background: #11658b; color: #fff !important; border: 1px solid #11658b; }
.membership-cancellation-link:hover { background: #0c4e6d; }
.membership-faq summary:focus-visible, .membership-cancellation-link:focus-visible { outline: 3px solid #095d8b; outline-offset: 4px; }

/* Dedicated cancellation page: one clear column on mobile and desktop. */
.cancellation-page { max-width: 860px; margin: 0 auto; overflow-wrap: anywhere; }
.cancellation-page .membership-contract-management { width: 100%; grid-template-columns: minmax(0, 1fr); gap: 20px; margin: 24px 0; }
.cancellation-page .membership-contract-form, .cancellation-page .membership-contract-contact { grid-column: 1; }
.cancellation-page .membership-contract-management > p { margin: 0; }
.cancellation-page .membership-cancellation-link { justify-self: start; }
.cancellation-page .payment-button { white-space: normal; line-height: 1.6; }

/* Genuine usability work invitation; keep the work and reward equally visible. */
#monitor-program { scroll-margin-top: 160px; }
.monitor-campaign { margin: 40px 0; border: 3px solid #1460a4; border-radius: 28px; overflow: hidden; background: #fff; color: #173b58; box-shadow: 0 16px 36px #134c8020; }
.monitor-campaign-main { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 30px; align-items: center; padding: clamp(22px, 4vw, 40px); background: linear-gradient(115deg, #084984, #087ab0); color: #fff; }
.monitor-campaign .monitor-campaign-badge { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin: 0 0 20px; font-weight: 800; color: #ffe173; font-size: 1rem; }
.monitor-campaign-badge span { padding: 4px 12px; border-radius: 6px; color: #143e65; background: #ffe173; }
.monitor-campaign .monitor-campaign-copy h2 { margin: 0 0 16px; color: #fff; font-size: clamp(1.7rem, 3.8vw, 2.8rem); line-height: 1.45; letter-spacing: .02em; }
.monitor-campaign .monitor-campaign-copy > p:not(.monitor-campaign-badge) { margin: 12px 0 0; color: #fff; font-size: 1rem; line-height: 1.85; }
.monitor-campaign .monitor-campaign-required { padding: 12px 14px; background: #ffffff15; border-left: 4px solid #ffe173; font-weight: 700; }
.monitor-campaign-reward { padding: 24px 16px; border: 3px solid #fff4bd; border-radius: 20px; background: #ffe173; color: #123c63; text-align: center; box-shadow: 7px 7px 0 #063a6e; }
.monitor-campaign .monitor-campaign-reward p { margin: 0; color: #123c63; font-size: 1rem; font-weight: 800; line-height: 1.6; }
.monitor-campaign .monitor-campaign-reward strong { display: block; color: #123c63; font-size: clamp(4rem, 7vw, 5.8rem); line-height: 1.3; letter-spacing: -.05em; font-weight: 900; }
.monitor-campaign-reward strong span { margin-left: 4px; font-size: 1.45rem; letter-spacing: 0; }
.monitor-campaign-reward > span { display: block; margin-top: 10px; font-size: .875rem; line-height: 1.6; }
.monitor-campaign-details { padding: clamp(20px, 4vw, 36px); }
.monitor-campaign .monitor-campaign-details h3 { margin: 0 0 14px; color: #154b76; font-size: 1.35rem; }
.monitor-campaign .monitor-campaign-details p, .monitor-campaign li { font-size: 1rem; line-height: 1.9; }
.monitor-campaign a:not(.monitor-campaign-link) { color: #075b84; text-decoration: underline; text-underline-offset: 3px; }
.monitor-task-list { display: grid; gap: 14px; margin: 22px 0; padding: 0; list-style: none; counter-reset: monitor-step; }
.monitor-task-list > li { position: relative; padding: 18px 20px 18px 66px; border: 1px solid #b6d6e7; border-radius: 14px; background: #f2f9ff; counter-increment: monitor-step; }
.monitor-task-list > li::before { content: counter(monitor-step, decimal-leading-zero); position: absolute; left: 18px; top: 17px; color: #076797; font-size: 1.3rem; font-weight: 900; }
.monitor-task-list > li strong { color: #173b58; font-size: 1.125rem; }
.monitor-campaign .monitor-task-list p { margin: 8px 0 0; }
.monitor-campaign-terms { padding: 22px; border: 1px solid #d7e5ed; border-radius: 14px; background: #fff; }
.monitor-campaign-terms ul { margin: 0; padding-left: 1.3em; }
.monitor-campaign-terms li + li { margin-top: 12px; }
.monitor-campaign-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 24px; }
.monitor-campaign-footer p { flex: 1 1 260px; margin: 0; color: #173b58; font-size: 1rem; line-height: 1.8; }
.monitor-campaign .monitor-campaign-link { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; max-width: 100%; padding: 15px 22px; border: 2px solid #114b7d; border-radius: 12px; background: #114b7d; color: #fff; text-align: center; text-decoration: none; font-size: 1rem; font-weight: 800; line-height: 1.6; }
.monitor-campaign-link:hover { background: #07345b; }
.monitor-campaign a:focus-visible { outline: 3px solid #d17100; outline-offset: 4px; }
.monitor-campaign .monitor-campaign-privacy { margin: 20px 0 0; color: #405467; font-size: .875rem; line-height: 1.8; }
.monitor-campaign.is-compact > .monitor-campaign-footer { padding: 22px 30px; }
.monitor-form-note { margin: 20px 0; padding: 20px; border: 2px solid #9ec9de; border-radius: 14px; background: #edf8ff; color: #173b58; }
.monitor-form-note > strong { color: #174d77; }
.monitor-form-note p { font-size: 1rem; line-height: 1.85; }
@media (max-width: 680px) {
    .monitor-campaign { margin: 28px 0; border-radius: 20px; }
    .monitor-campaign-main { grid-template-columns: minmax(0, 1fr); gap: 22px; }
    .monitor-campaign-reward { width: 100%; max-width: 360px; justify-self: center; }
    .monitor-campaign-terms { padding: 18px 14px; }
    .monitor-task-list > li { padding: 18px 14px 18px 52px; }
    .monitor-task-list > li::before { left: 12px; }
    .monitor-campaign .monitor-campaign-link { width: 100%; }
    .monitor-campaign.is-compact > .monitor-campaign-footer { padding: 20px; }
}

/* Campaign artwork stays uncropped; the terms also remain selectable, scalable text. */
#home-monitor, #membership-plans, #home-intro-campaign, #purchase-intro-campaign { scroll-margin-top: 160px; }
.campaign-art { display: block; width: 100%; max-width: 100%; height: auto; object-fit: contain; }
.intro-campaign-feature { margin: 32px 0; border: 3px solid #bb8118; border-radius: 24px; overflow: hidden; background: #fff8dc; color: #263653; box-shadow: 0 14px 36px #bc86272a; }
.intro-campaign-feature .intro-campaign-heading { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 18px 20px; background: #263653; color: #fff; font-size: clamp(1.15rem, 2.5vw, 1.7rem); font-weight: 900; line-height: 1.5; text-align: center; }
.intro-campaign-heading span { color: #ffe77a; }
.intro-campaign-summary { padding: clamp(18px, 3vw, 32px); text-align: center; }
.intro-campaign-feature .intro-campaign-lead { margin: 0; color: #253550; font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 800; line-height: 1.7; }
.intro-campaign-lead strong { display: block; color: #ad240d; }
.intro-campaign-lead strong span { font-size: 1.5em; font-weight: 950; white-space: nowrap; }
.intro-campaign-feature .intro-campaign-renewal { margin: 12px 0 0; color: #253550; font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 750; line-height: 1.8; }
.intro-campaign-timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 24px 0 16px; padding: 0; list-style: none; }
.intro-campaign-timeline li { min-width: 0; padding: 18px 12px; border: 1px solid #c9a64b; border-radius: 12px; background: #fff; }
.intro-campaign-timeline li > span { display: block; color: #735016; font-size: 1rem; font-weight: 800; }
.intro-campaign-timeline li > strong { display: block; margin: 8px 0; color: #233653; font-size: clamp(1.1rem, 2vw, 1.45rem); }
.intro-campaign-timeline b { color: #ad240d; }
.intro-campaign-feature .intro-campaign-timeline p { margin: 0; color: #394354; font-size: 1rem; line-height: 1.65; }
.intro-campaign-feature .intro-campaign-condition { margin: 16px 0; color: #394354; font-size: 1rem; line-height: 1.8; }
.intro-campaign-feature .campaign-detail-link, .monitor-promo .campaign-detail-link { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 52px; max-width: 100%; padding: 14px 24px; border: 2px solid #104d78; border-radius: 12px; background: #104d78; color: #fff; font-weight: 850; font-size: 1rem; text-decoration: none; line-height: 1.65; text-align: center; }
.campaign-detail-link:hover { filter: brightness(.9); }
.campaign-detail-link:focus-visible, .monitor-promo-image-link:focus-visible { outline: 4px solid #e37300; outline-offset: -4px; }
.monitor-promo { margin: 32px 0; border: 2px solid #c69c42; border-radius: 20px; overflow: hidden; background: #fff; }
.monitor-promo-image-link { display: block; }
.monitor-promo-caption { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; padding: clamp(18px, 3vw, 28px); }
.monitor-promo .monitor-promo-caption p { flex: 1 1 450px; margin: 0; color: #273c54; font-size: 1rem; line-height: 1.8; }
.membership-intro-offer.membership-intro-offer-featured { margin: 4px 0 20px; padding: 20px 16px; gap: 12px; border: 2px solid #ca9c2c; background: linear-gradient(135deg, #fff3b5, #fffdf0); color: #463921; font-size: 1rem; line-height: 1.8; }
.membership-intro-offer-featured > strong { display: block; padding: 6px 10px; border-radius: 6px; background: #9f260d; color: #fff; font-size: 1rem; text-align: center; }
.membership-intro-offer-featured .intro-card-main { color: #343756; font-size: 1.15rem; line-height: 1.65; font-weight: 850; text-align: center; }
.membership-intro-offer-featured .intro-card-main b { color: #ad240d; font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.monitor-page { max-width: 1120px; margin: 0 auto; }
.monitor-breadcrumb { margin: 12px 0 24px; color: #38516b; font-size: 1rem; }
.monitor-page-heading { margin-bottom: 28px; }
.monitor-page-heading h1 { margin: 12px 0; color: #144b77; font-size: clamp(1.7rem, 4vw, 2.7rem); line-height: 1.4; }
.monitor-page-heading p { color: #2d4960; font-size: 1.125rem; line-height: 1.8; }
.monitor-page-art { border: 2px solid #c69c42; border-radius: 20px; }
.monitor-page-back { display: flex; flex-wrap: wrap; gap: 24px; margin: 28px 0; }
.monitor-page a { text-underline-offset: 3px; }
/* Initial-offer price treatment; regular subscriptions retain their normal price. */
.intro-price-display { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 6px 10px; margin: 18px 0 20px; padding: 16px 12px; border: 2px solid #dab152; border-radius: 14px; background: linear-gradient(135deg, #fff5c6, #fffdf5); color: #183854; }
.intro-price-display .intro-price-regular { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; margin: 0; color: #596271; font-size: .875rem; line-height: 1.45; }
.intro-price-regular s { white-space: nowrap; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 850; text-decoration-color: #a52022; text-decoration-thickness: 3px; }
.intro-price-regular s span { font-size: 1rem; }
.intro-price-special { display: flex; align-items: center; justify-content: center; gap: 8px; min-width: 0; }
.intro-price-arrow { color: #ae3024; font-size: 1.65rem; font-weight: 900; }
.intro-price-special > div { display: flex; flex-direction: column; align-items: center; min-width: 0; }
.intro-price-period { display: inline-block; padding: 3px 7px; border-radius: 5px; background: #ad240d; color: #fff; font-size: clamp(.875rem, 1.5vw, 1rem); font-weight: 850; line-height: 1.5; white-space: nowrap; }
.intro-price-display .intro-price-zero { display: block; color: #b52314; font-size: clamp(3.5rem, 6vw, 5rem); font-weight: 950; line-height: 1.12; letter-spacing: -.035em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.intro-price-zero > span { margin-left: 2px; font-size: .36em; letter-spacing: 0; }
.intro-price-display .intro-price-after { grid-column: 1 / -1; margin: 4px 0 0; color: #4b5665; font-size: .875rem; line-height: 1.65; overflow-wrap: anywhere; }
@media (max-width: 680px) {
    .intro-campaign-feature, .monitor-promo { border-radius: 16px; margin: 24px 0; }
    .intro-campaign-timeline { grid-template-columns: minmax(0, 1fr); gap: 10px; }
    .intro-campaign-timeline li { text-align: left; padding: 16px; }
    .intro-campaign-timeline li > strong { margin: 4px 0 6px; }
    .intro-campaign-feature .campaign-detail-link, .monitor-promo .campaign-detail-link { width: 100%; }
    .monitor-promo-caption { gap: 16px; }
}
