@charset "UTF-8";

/* =========================================================
   一般社団法人 口コミ対策センター - HP Renewal
   Design System (v2: SEO重視 / マスサイト構成)
   ========================================================= */

:root {
    --c-navy: #044072;
    --c-navy-dark: #00305a;
    --c-navy-deep: #00418d;
    --c-blue: #0048be;
    --c-link: #1558d6;
    --c-red: #bb0000;
    --c-red-soft: #e63b3b;
    --c-accent: #f59e0b;
    --c-accent-hover: #d97706;
    --c-line: #06c755;
    --c-gold: #c8a35a;
    --c-text: #1a1a1a;
    --c-text-sub: #555;
    --c-text-light: #888;
    --c-border: #e5e7eb;
    --c-border-soft: #f0f1f4;
    --c-bg: #ffffff;
    --c-bg-soft: #f8f7f6;
    --c-bg-navy: #f3f6fb;
    --c-bg-dark: #061a2e;

    --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'Yu Gothic', YuGothic, sans-serif;
    --font-mincho: 'Zen Old Mincho', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;

    --container: 1180px;
    --container-wide: 1320px;
    --radius: 10px;
    --radius-lg: 18px;
    --shadow-sm: 0 2px 8px rgba(4, 64, 114, 0.06);
    --shadow-md: 0 10px 30px rgba(4, 64, 114, 0.08);
    --shadow-lg: 0 20px 50px rgba(4, 64, 114, 0.12);

    --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt" 1;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-link); text-decoration: none; transition: opacity .2s var(--ease); }
a:hover { opacity: .75; }
h1, h2, h3, h4 { color: var(--c-navy); font-weight: 700; line-height: 1.45; margin: 0 0 .8em; letter-spacing: .02em; }
p { margin: 0 0 1.4em; }
ul { padding-left: 1.2em; }

.container { width: min(94%, var(--container)); margin: 0 auto; }
.container--wide { width: min(96%, var(--container-wide)); margin: 0 auto; }
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section--soft { background: var(--c-bg-soft); }
.section--navy {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: #fff;
}
.section--navy h2, .section--navy h3 { color: #fff; }
.section--accent-bg {
    background:
        radial-gradient(800px 400px at 90% 0%, rgba(0,72,190,.06), transparent 60%),
        radial-gradient(700px 400px at 5% 100%, rgba(245,158,11,.08), transparent 60%),
        var(--c-bg);
}

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .en {
    display: block; color: var(--c-accent); font-size: 13px; font-weight: 700;
    letter-spacing: .25em; margin-bottom: 12px;
}
.section--navy .section-head .en { color: var(--c-accent); }
.section-head h2 { font-size: clamp(24px, 3.2vw, 36px); margin: 0; }
.section-head .lead { margin-top: 22px; color: var(--c-text-sub); font-size: 16px; }
.section--navy .section-head .lead { color: rgba(255,255,255,.85); }

/* =========================================================
   Topbar (info / dual contact)
   ========================================================= */
.topbar {
    background: var(--c-bg-dark); color: #fff;
    font-size: 12.5px;
}
.topbar__inner {
    width: min(96%, var(--container-wide)); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    min-height: 42px; gap: 16px; flex-wrap: wrap;
}
.topbar__left { display: flex; gap: 14px; align-items: center; color: rgba(255,255,255,.7); flex-wrap: wrap; }
.topbar__badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    padding: 4px 10px; border-radius: 999px; font-size: 11.5px;
}
.topbar__badge::before {
    content: ""; width: 6px; height: 6px; border-radius: 999px;
    background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,.7);
}
.topbar__right { display: flex; gap: 14px; align-items: center; }
.topbar__right a { color: rgba(255,255,255,.85); font-size: 12.5px; }
.topbar__right a:hover { color: #fff; opacity: 1; }
/* 左上：運営管理者向けログイン（現状モック。本番は入口を分離する想定） */
.topbar__admin {
    display: inline-flex; align-items: center; gap: 6px;
    color: #ffd8a8 !important; font-size: 11.5px; font-weight: 700;
    border: 1px dashed rgba(255,216,168,.55); border-radius: 999px;
    padding: 3px 10px 3px 8px; line-height: 1;
}
.topbar__admin:hover { background: rgba(255,216,168,.12); opacity: 1; }
.topbar__admin-ico { font-size: 12px; }
.topbar__admin-tag {
    font-size: 9px; font-weight: 900; letter-spacing: .08em;
    background: #f59e0b; color: #061a2e; border-radius: 3px; padding: 1px 4px; margin-left: 2px;
}
@media (max-width: 880px) { .topbar { display: none; } }

/* =========================================================
   Header
   ========================================================= */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
    display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
    width: min(96%, var(--container-wide)); margin: 0 auto;
    min-height: 80px; padding: 12px 0;
}
.site-logo {
    display: flex; align-items: center; gap: 12px;
    color: var(--c-navy); text-decoration: none;
}
.site-logo__mark {
    width: 48px; height: 48px; border-radius: 10px;
    background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
    color: #fff; display: grid; place-items: center;
    font-family: var(--font-mincho); font-size: 24px; font-weight: 700;
}
.site-logo__name { font-size: 11px; color: var(--c-text-sub); display: block; font-weight: 500; letter-spacing: .05em; }
.site-logo__title { font-size: 16px; font-weight: 700; color: var(--c-navy); display: block; letter-spacing: .03em; }

.security-badges {
    display: flex; gap: 8px; align-items: center; justify-content: center;
}
.security-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px;
    background: var(--c-bg-soft); border: 1px solid var(--c-border);
    color: var(--c-navy); font-size: 11.5px; font-weight: 700;
}
.security-badge svg { width: 14px; height: 14px; }

.header-contact { display: flex; gap: 10px; align-items: center; }
.contact-block {
    display: flex; flex-direction: column; line-height: 1.25;
    padding: 6px 14px; border-left: 3px solid var(--c-navy);
}
.contact-block .label { font-size: 10.5px; color: var(--c-text-sub); font-weight: 700; letter-spacing: .1em; }
.contact-block .tel { font-size: 18px; color: var(--c-navy); font-weight: 700; font-family: var(--font-mincho); }
.contact-block .tel a { color: inherit; }
.contact-block.is-individual { border-left-color: var(--c-accent); }
.contact-block.is-individual .tel { color: var(--c-accent); }
.contact-block .hours { font-size: 10.5px; color: var(--c-text-light); }

.header-cta {
    display: flex; gap: 8px;
}
.header-cta .btn { padding: 12px 18px; font-size: 13px; }

@media (max-width: 1100px) {
    .security-badges { display: none; }
    .site-header__inner { grid-template-columns: auto 1fr; }
    .header-contact { display: none; }
}

/* =========================================================
   Global Nav (under header)
   ========================================================= */
.global-nav {
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    position: sticky; top: 80px; z-index: 49;
}
.global-nav__inner {
    width: min(96%, var(--container-wide)); margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
}
.global-nav a {
    color: var(--c-text); font-size: 13.5px; font-weight: 500;
    padding: 18px 18px; border-bottom: 3px solid transparent;
    text-decoration: none;
}
.global-nav a:hover { color: var(--c-navy); border-bottom-color: var(--c-accent); opacity: 1; }
.global-nav a.is-active { color: var(--c-navy); border-bottom-color: var(--c-navy); }
.nav-toggle {
    display: none; background: none; border: 0; width: 44px; height: 44px;
    flex-direction: column; gap: 6px; justify-content: center; align-items: center;
    cursor: pointer; padding: 0;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--c-navy); display: block; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
    .global-nav { top: 64px; }
    .global-nav__inner { justify-content: space-between; }
    .nav-toggle { display: flex; order: 2; }
    .global-nav-list {
        position: fixed; inset: 64px 0 0 0;
        background: #fff;
        flex-direction: column; align-items: stretch; gap: 0;
        padding: 16px 6%; transform: translateX(100%);
        transition: transform .3s var(--ease);
        border-top: 1px solid var(--c-border);
        display: flex; overflow-y: auto;
    }
    .global-nav-list.is-open { transform: none; }
    .global-nav-list a {
        padding: 16px 4px; border-bottom: 1px solid var(--c-border);
        font-size: 15px;
    }
    .site-header__inner { min-height: 64px; padding: 8px 0; }
    .site-logo__mark { width: 40px; height: 40px; font-size: 20px; }
    .site-logo__title { font-size: 14px; }
}

/* =========================================================
   Hero / FV
   ========================================================= */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(1200px 600px at 90% -10%, rgba(0,72,190,.10), transparent 60%),
        radial-gradient(900px 500px at 5% 110%, rgba(245,158,11,.10), transparent 60%),
        linear-gradient(180deg, #fbfcfe 0%, var(--c-bg-soft) 100%);
    padding: clamp(60px, 8vw, 90px) 0 clamp(40px, 5vw, 60px);
}
.hero__grid {
    display: grid; grid-template-columns: 1.1fr .9fr;
    gap: 60px; align-items: center;
}
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--c-border);
    color: var(--c-navy); font-size: 13px; font-weight: 700;
    padding: 8px 16px; border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.hero__eyebrow::before {
    content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--c-accent);
}
.hero h1 {
    font-size: clamp(28px, 4.4vw, 50px);
    line-height: 1.4; margin: 20px 0 24px;
    letter-spacing: .01em;
}
.hero h1 .accent { color: var(--c-red); }
.hero h1 .underline { background: linear-gradient(transparent 60%, rgba(245,158,11,.35) 60%); }
.hero__sub {
    color: var(--c-text-sub); font-size: clamp(15px, 1.5vw, 18px);
    margin-bottom: 28px; max-width: 580px; line-height: 1.9;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 24px; }
.hero__note { font-size: 12.5px; color: var(--c-text-sub); }

.hero__visual {
    position: relative; aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
}
.hero__visual svg { width: 100%; height: 100%; display: block; }
.hero__visual::after {
    content: "TRUST GUARDIAN"; position: absolute; bottom: 20px; left: 20px; right: 20px;
    font-family: var(--font-mincho); color: rgba(255,255,255,.85);
    font-size: 12px; letter-spacing: .3em;
}

@media (max-width: 880px) {
    .hero__grid { grid-template-columns: 1fr; gap: 32px; }
    .hero__visual { aspect-ratio: 4/3; }
}

/* =========================================================
   Strength Banners (5 features)
   ========================================================= */
.strengths {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 14px; margin-top: 32px;
}
.strength {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: 12px; padding: 18px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.strength__icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
    display: grid; place-items: center; color: #fff;
}
.strength__icon svg { width: 22px; height: 22px; }
.strength__title { font-size: 13.5px; font-weight: 700; color: var(--c-navy); line-height: 1.4; }
.strength__sub { font-size: 11.5px; color: var(--c-text-sub); }
@media (max-width: 880px) { .strengths { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 28px; border-radius: 999px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
    border: 0; cursor: pointer; font-family: inherit;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn--primary { background: var(--c-accent); color: #fff; box-shadow: 0 8px 24px rgba(245,158,11,.35); }
.btn--primary:hover { background: var(--c-accent-hover); }
.btn--navy { background: var(--c-navy); color: #fff; box-shadow: var(--shadow-md); }
.btn--navy:hover { background: var(--c-navy-deep); }
.btn--ghost { background: transparent; color: var(--c-navy); border: 2px solid var(--c-navy); }
.btn--ghost:hover { background: var(--c-navy); color: #fff; }
.btn--line { background: var(--c-line); color: #fff; box-shadow: 0 8px 24px rgba(6,199,85,.35); }
.btn--red { background: var(--c-red); color: #fff; }
.btn--lg { padding: 20px 36px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn svg { width: 18px; height: 18px; }

/* =========================================================
   Triple CTA band (電話/メール/面談)
   ========================================================= */
.cta-trio {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    margin: 28px 0;
}
.cta-trio__item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 22px 16px; border-radius: 14px; text-decoration: none;
    border: 2px solid; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
    text-align: center; gap: 6px;
}
.cta-trio__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: 1; }
.cta-trio__item .label { font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.cta-trio__item .main { font-size: 22px; font-weight: 700; font-family: var(--font-mincho); line-height: 1.1; }
.cta-trio__item .sub { font-size: 11.5px; opacity: .8; }
.cta-trio .is-tel { border-color: var(--c-navy); color: var(--c-navy); background: #fff; }
.cta-trio .is-mail { border-color: var(--c-accent); background: var(--c-accent); color: #fff; }
.cta-trio .is-meet { border-color: var(--c-navy-deep); background: var(--c-navy); color: #fff; }
@media (max-width: 720px) { .cta-trio { grid-template-columns: 1fr; } }

/* =========================================================
   Cards / Grids
   ========================================================= */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
    .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .grid--2 { grid-template-columns: 1fr; }
}

.card {
    background: #fff; border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--c-border);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
    color: #fff; display: grid; place-items: center;
    margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 19px; margin-bottom: 12px; }
.card p { color: var(--c-text-sub); font-size: 15px; margin: 0; }

/* =========================================================
   Prefecture Grid (massive SEO grid)
   ========================================================= */
.area-region {
    margin-bottom: 40px;
}
.area-region__title {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 15px; font-weight: 700; color: var(--c-navy);
    padding-bottom: 8px; border-bottom: 2px solid var(--c-navy);
    margin-bottom: 22px;
}
.area-region__title::before {
    content: ""; width: 6px; height: 18px; background: var(--c-accent); border-radius: 2px;
}
.pref-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.pref-grid a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 14px; background: #fff;
    border: 1px solid var(--c-border); border-radius: 10px;
    color: var(--c-text); font-size: 14px; font-weight: 600;
    text-decoration: none; transition: all .2s var(--ease);
    position: relative;
}
.pref-grid a:hover {
    border-color: var(--c-navy); color: var(--c-navy); opacity: 1;
    transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.pref-grid a::after {
    content: "›"; color: var(--c-text-light); font-size: 18px;
    transition: transform .2s, color .2s;
}
.pref-grid a:hover::after { color: var(--c-navy); transform: translateX(2px); }
@media (max-width: 1080px) { .pref-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) { .pref-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Industry / Platform Cards (banner-style)
   ========================================================= */
.banner-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1080px) { .banner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .banner-grid { grid-template-columns: 1fr; } }
.banner {
    display: flex; flex-direction: column;
    border-radius: 14px; overflow: hidden;
    background: #fff; border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm); text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); opacity: 1; }
.banner__cover {
    aspect-ratio: 16/9; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
    display: grid; place-items: center;
    color: #fff;
}
.banner__cover svg { width: 56px; height: 56px; opacity: .8; }
.banner__cover-label {
    position: absolute; left: 12px; top: 12px;
    background: rgba(0,0,0,.35); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .1em;
    padding: 4px 10px; border-radius: 999px;
}
.banner__body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.banner__title { font-size: 15.5px; font-weight: 700; color: var(--c-navy); margin: 0 0 6px; line-height: 1.45; }
.banner__sub { font-size: 12.5px; color: var(--c-text-sub); margin: 0 0 10px; }
.banner__cta { margin-top: auto; font-size: 12.5px; color: var(--c-link); font-weight: 700; }
.banner__cta::after { content: " →"; }

/* =========================================================
   Service Cards (Top legacy)
   ========================================================= */
.service-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--c-border);
    display: flex; flex-direction: column;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card__cover {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: #fff; display: grid; place-items: center;
    position: relative; overflow: hidden;
}
.service-card__cover svg { width: 56px; height: 56px; opacity: .9; }
.service-card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 19px; }
.service-card p { color: var(--c-text-sub); font-size: 14.5px; margin-bottom: 18px; }
.service-card a { margin-top: auto; color: var(--c-navy); font-weight: 700; font-size: 14px; }
.service-card a::after { content: " →"; }

/* =========================================================
   Reasons (numbered card)
   ========================================================= */
.reason {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--radius-lg); padding: 28px;
    display: flex; gap: 18px; align-items: flex-start;
}
.reason__num {
    flex: 0 0 56px; width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-hover));
    color: #fff; display: grid; place-items: center;
    font-family: var(--font-mincho); font-size: 22px; font-weight: 700;
    box-shadow: 0 6px 16px rgba(245,158,11,.3);
}
.reason h3 { font-size: 17px; margin: 4px 0 8px; }
.reason p { font-size: 14.5px; color: var(--c-text-sub); margin: 0; }

/* =========================================================
   Stats
   ========================================================= */
.stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.stat__num { font-family: var(--font-mincho); font-size: clamp(30px, 4vw, 44px); color: #fff; font-weight: 700; line-height: 1; }
.stat__num .unit { font-size: 18px; margin-left: 4px; opacity: .9; }
.stat__label { color: rgba(255,255,255,.85); font-size: 13px; margin-top: 10px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Flow (numbered horizontal)
   ========================================================= */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.flow__step {
    background: #fff; border-radius: var(--radius-lg);
    padding: 24px 20px; border: 1px solid var(--c-border);
    position: relative;
}
.flow__step::after {
    content: "→"; position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
    font-size: 20px; color: var(--c-navy); font-weight: 700;
}
.flow__step:last-child::after { content: none; }
.flow__num { color: var(--c-accent); font-weight: 700; font-size: 12px; letter-spacing: .2em; margin-bottom: 10px; }
.flow__step h3 { font-size: 15px; margin-bottom: 8px; }
.flow__step p { font-size: 13px; color: var(--c-text-sub); margin: 0; }
@media (max-width: 1080px) { .flow { grid-template-columns: repeat(2, 1fr); } .flow__step::after { content: none; } }
@media (max-width: 540px) { .flow { grid-template-columns: 1fr; } }

/* =========================================================
   CTA Band
   ========================================================= */
.cta-band {
    background: linear-gradient(120deg, var(--c-navy) 0%, var(--c-navy-deep) 60%, var(--c-blue) 100%);
    color: #fff; border-radius: var(--radius-lg);
    padding: clamp(36px, 5vw, 56px);
    display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(22px, 2.5vw, 30px); margin: 0 0 10px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; font-size: 15px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 880px) {
    .cta-band { grid-template-columns: 1fr; }
    .cta-band__actions { justify-content: flex-start; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: flex; flex-direction: column; gap: 14px; max-width: 880px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--c-border); border-radius: 14px; overflow: hidden; }
.faq__q {
    width: 100%; text-align: left; cursor: pointer;
    background: none; border: 0; padding: 22px 24px;
    font-size: 15.5px; font-weight: 700; color: var(--c-navy);
    display: flex; gap: 14px; align-items: center; justify-content: space-between;
    font-family: inherit;
}
.faq__q::before { content: "Q."; color: var(--c-accent); font-family: var(--font-mincho); }
.faq__q-text { flex: 1; }
.faq__q-icon { width: 14px; height: 14px; position: relative; flex: 0 0 14px; }
.faq__q-icon::before, .faq__q-icon::after { content: ""; position: absolute; background: var(--c-navy); border-radius: 2px; }
.faq__q-icon::before { width: 14px; height: 2px; top: 6px; left: 0; }
.faq__q-icon::after { width: 2px; height: 14px; top: 0; left: 6px; transition: transform .2s; }
.faq__item.is-open .faq__q-icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); padding: 0 24px; }
.faq__item.is-open .faq__a { max-height: 1000px; padding-bottom: 22px; }
.faq__a p { margin: 0; color: var(--c-text-sub); font-size: 14.5px; }

/* =========================================================
   Article / Generic content pages
   ========================================================= */
.page-header {
    padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 5vw, 60px);
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: #fff; text-align: center; position: relative; overflow: hidden;
}
.page-header::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(800px 400px at 80% -10%, rgba(245,158,11,.15), transparent 60%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .en {
    display: block; color: var(--c-accent); font-size: 13px;
    letter-spacing: .25em; font-weight: 700; margin-bottom: 10px;
}
.page-header h1 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); margin: 0; }
.page-header p { color: rgba(255,255,255,.85); margin: 18px 0 0; font-size: 15px; }
.breadcrumb { font-size: 12.5px; color: var(--c-text-sub); padding: 14px 0; }
.breadcrumb a { color: var(--c-text-sub); }
.breadcrumb a:hover { color: var(--c-navy); opacity: 1; }
.breadcrumb span { margin: 0 8px; color: var(--c-text-light); }

.prose { max-width: 820px; margin: 0 auto; font-size: 16px; }
.prose h2 { font-size: 26px; margin-top: 56px; padding-bottom: 12px; border-bottom: 2px solid var(--c-navy); }
.prose h3 { font-size: 19px; margin-top: 36px; color: var(--c-navy-deep); }
.prose p { color: var(--c-text); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .5em; color: var(--c-text); }
.prose strong { color: var(--c-navy); }
.prose .meta-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.prose .meta-table th, .prose .meta-table td {
    border: 1px solid var(--c-border); padding: 14px 18px; text-align: left;
    font-size: 14.5px; vertical-align: top;
}
.prose .meta-table th {
    background: var(--c-bg-soft); color: var(--c-navy); width: 30%; font-weight: 700;
}
.prose blockquote {
    margin: 24px 0; padding: 18px 22px;
    background: var(--c-bg-soft); border-left: 4px solid var(--c-navy);
    color: var(--c-text-sub); font-size: 14.5px;
}

/* =========================================================
   Service Block (4 pillars)
   ========================================================= */
.service-block {
    padding: 56px 0;
    border-bottom: 1px solid var(--c-border);
}
.service-block:last-of-type { border-bottom: 0; }
.service-block__header { margin-bottom: 32px; }
.service-block__header .en {
    display: block; color: var(--c-accent); font-size: 12px;
    letter-spacing: .25em; font-weight: 700; margin-bottom: 10px;
}
.service-block__header h2 {
    display: flex; align-items: baseline; gap: 16px;
    font-size: clamp(22px, 2.8vw, 32px);
    margin: 0;
}
.service-num {
    font-family: var(--font-mincho); font-size: 38px; color: var(--c-accent);
    line-height: 1; font-weight: 700;
}
.service-block__body {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px;
    align-items: start;
}
.service-block__lead p { font-size: 15.5px; color: var(--c-text-sub); line-height: 1.9; margin: 0 0 18px; }
.service-check {
    list-style: none; padding: 0; margin: 0 0 18px;
    display: grid; gap: 8px;
}
.service-check li {
    display: flex; align-items: center; gap: 10px;
    color: var(--c-navy); font-weight: 700; font-size: 15px;
}
.service-check svg { width: 22px; height: 22px; color: var(--c-accent); flex-shrink: 0; }
.service-check span { line-height: 1.4; }
.service-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--c-link); font-weight: 700; font-size: 14px;
    text-decoration: none;
}
.trouble-card {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 22px 24px;
}
.trouble-card__head {
    font-size: 13.5px; font-weight: 700; color: var(--c-navy);
    margin-bottom: 12px; padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border);
    letter-spacing: .04em;
}
.trouble-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.trouble-card li {
    position: relative; padding-left: 22px;
    font-size: 13.5px; line-height: 1.7; color: var(--c-text-sub);
}
.trouble-card li::before {
    content: ""; position: absolute; left: 0; top: 8px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--c-red); opacity: .8;
}
@media (max-width: 880px) {
    .service-block__body { grid-template-columns: 1fr; gap: 20px; }
    .service-block__header h2 { flex-direction: column; gap: 6px; }
}

/* =========================================================
   Form
   ========================================================= */
.form-grid { display: grid; gap: 22px; max-width: 720px; margin: 0 auto; }
.form-field label { display: block; font-weight: 700; color: var(--c-navy); font-size: 14px; margin-bottom: 8px; }
.form-field label .req { background: var(--c-red); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 14px 16px; font-size: 15px;
    border: 1px solid var(--c-border); border-radius: 10px;
    font-family: inherit; background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: 0; border-color: var(--c-navy); box-shadow: 0 0 0 4px rgba(4,64,114,.12);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-actions { text-align: center; margin-top: 16px; }
.form-note { font-size: 12.5px; color: var(--c-text-sub); text-align: center; margin-top: 14px; }

/* =========================================================
   News list
   ========================================================= */
.news-list { max-width: 920px; margin: 0 auto; }
.news-item {
    display: grid; grid-template-columns: 110px 110px 1fr; gap: 18px;
    padding: 18px 0; border-bottom: 1px solid var(--c-border); align-items: center;
}
.news-item time { color: var(--c-text-sub); font-size: 13.5px; }
.news-item .tag {
    background: var(--c-bg-soft); color: var(--c-navy);
    font-size: 11.5px; font-weight: 700; padding: 4px 10px;
    border-radius: 999px; text-align: center;
}
.news-item .tag--alert { background: #fde2e2; color: var(--c-red); }
.news-item .tag--column { background: #fff5d9; color: var(--c-accent-hover); }
.news-item a { color: var(--c-text); font-weight: 500; font-size: 15px; line-height: 1.55; }
@media (max-width: 720px) { .news-item { grid-template-columns: 1fr; gap: 4px; } }

/* =========================================================
   Recruit banner / closing
   ========================================================= */
.recruit-band {
    display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
    background: linear-gradient(120deg, var(--c-bg-dark) 0%, #0a2742 100%);
    color: #fff; border-radius: var(--radius-lg);
    padding: 36px; position: relative; overflow: hidden;
}
.recruit-band::after {
    content: "WE'RE HIRING"; position: absolute; right: -30px; bottom: -30px;
    font-family: var(--font-mincho); font-size: 110px; font-weight: 700;
    color: rgba(255,255,255,.04); letter-spacing: -.05em; line-height: 1;
    pointer-events: none;
}
.recruit-band h3 { color: #fff; font-size: 22px; margin: 0 0 8px; }
.recruit-band p { color: rgba(255,255,255,.8); margin: 0; font-size: 14px; }
.recruit-band__actions { z-index: 1; }
@media (max-width: 720px) {
    .recruit-band { grid-template-columns: 1fr; }
}

/* =========================================================
   Mega Footer
   ========================================================= */
.site-footer { background: var(--c-bg-dark); color: rgba(255,255,255,.82); padding: 0; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; opacity: 1; }

.mega-footer {
    padding: 56px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.mega-footer__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 28px;
}
@media (max-width: 880px) { .mega-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .mega-footer__grid { grid-template-columns: 1fr; } }
.mega-footer h4 {
    color: #fff; font-size: 13px; letter-spacing: .15em;
    margin: 0 0 16px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.mega-footer ul { list-style: none; padding: 0; margin: 0; }
.mega-footer li { margin-bottom: 10px; font-size: 13.5px; line-height: 1.6; }
.mega-footer li::before { content: "›"; color: var(--c-accent); margin-right: 6px; }

.footer-info {
    padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.1);
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
}
@media (max-width: 880px) { .footer-info { grid-template-columns: 1fr; } }
.footer-info__brand { font-size: 18px; color: #fff; font-weight: 700; margin-bottom: 12px; line-height: 1.5; }
.footer-info__about { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,.7); }
.footer-info h4 { color: #fff; font-size: 12px; letter-spacing: .15em; margin: 0 0 12px; }
.footer-info dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 0; font-size: 13px; }
.footer-info dt { color: rgba(255,255,255,.6); }
.footer-info dd { margin: 0; color: rgba(255,255,255,.92); }

.footer-bottom {
    padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: rgba(255,255,255,.55); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.7); margin-left: 18px; font-size: 12px; }

/* =========================================================
   Notice block (alert info)
   ========================================================= */
.notice-list { display: flex; flex-direction: column; gap: 14px; max-width: 880px; margin: 0 auto; }
.notice-item {
    background: #fff; border-left: 4px solid var(--c-accent);
    padding: 18px 22px; border-radius: 8px;
    border-top: 1px solid var(--c-border); border-right: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
}
.notice-item h3 { font-size: 15.5px; color: var(--c-navy); margin: 0 0 6px; }
.notice-item p { font-size: 13.5px; color: var(--c-text-sub); margin: 0; }
.notice-item.is-alert { border-left-color: var(--c-red); }
.notice-item.is-alert h3 { color: var(--c-red); }

/* =========================================================
   Contact band（全画面共通・常時表示の問い合わせ帯）
   ========================================================= */
.contact-band {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    background: linear-gradient(90deg, var(--c-navy), var(--c-blue));
    color: #fff; box-shadow: 0 -6px 24px rgba(0,0,0,.18);
    border-top: 2px solid var(--c-accent);
}
.contact-band__inner {
    width: min(96%, var(--container-wide)); margin: 0 auto;
    min-height: 52px; padding: 7px 0;
    display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.contact-band__text { font-size: 13.5px; font-weight: 500; }
.contact-band__text strong { color: #ffd8a8; font-weight: 800; }
.contact-band__tel {
    display: inline-flex; align-items: center; gap: 6px;
    color: #fff; font-weight: 800; font-size: 16px; white-space: nowrap;
}
.contact-band__tel svg { width: 17px; height: 17px; }
.contact-band__btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--c-accent); color: #061a2e; font-weight: 800; font-size: 13.5px;
    padding: 9px 20px; border-radius: 999px; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.contact-band__btn:hover { background: var(--c-accent-hover, #d97706); color: #fff; opacity: 1; }
/* 帯のぶんだけ本文下に余白を確保（フッターが隠れないように） */
body { padding-bottom: 66px; }
@media (max-width: 720px) {
    .contact-band__inner { gap: 10px; padding: 8px 12px; }
    .contact-band__text { display: none; }
    .contact-band__tel { font-size: 15px; }
    .contact-band__btn { flex: 1; justify-content: center; padding: 11px 14px; }
    body { padding-bottom: 76px; }
}

/* =========================================================
   Utilities
   ========================================================= */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.muted { color: var(--c-text-sub); font-size: 14px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* merged hp-old assets */
.merged-old-home { background: #f8f9fa; }
.merged-visual-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 28px; }
.merged-visual-grid figure { margin: 0; border-radius: 10px; overflow: hidden; background: #fff; border: 1px solid var(--c-border); box-shadow: var(--shadow-sm); }
.merged-visual-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.merged-visual-grid figcaption { padding: 10px 12px; font-size: 12px; font-weight: 700; color: var(--c-navy); }
.merged-card-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.merged-card { display: block; color: var(--c-navy); background: #fff; border: 1px solid var(--c-border); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.merged-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.merged-card span { display: block; padding: 12px; font-weight: 700; font-size: 13px; }
.merged-links { margin-top: 28px; justify-content: center; }
@media (max-width: 980px) { .merged-visual-grid { grid-template-columns: repeat(2, 1fr); } .merged-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .merged-visual-grid, .merged-card-grid { grid-template-columns: 1fr; } }


/* header logo unification + modal menu */
.site-header__inner { grid-template-columns: auto 1fr auto; }
.site-logo__image { display:block; width: min(280px, 52vw); height: auto; object-fit: contain; }
.site-logo__mark, .site-logo__name, .site-logo__title { display: none !important; }
.nav-toggle { border-radius: 999px; }
.nav-toggle span { width: 5px; height: 5px; border-radius: 999px; }
.nav-close, .global-nav-list__panel-head, .global-nav-list__cta, .global-nav-list__policies { display: none; }
.global-nav-list__primary { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; }
.global-nav-list__primary a { color: var(--c-text); font-size: 13.5px; font-weight: 500; padding: 18px 16px; border-bottom: 3px solid transparent; }
.global-nav-list__primary a:hover { color: var(--c-navy); border-bottom-color: var(--c-accent); opacity:1; }
@media (max-width: 1100px) {
  .site-header__inner { min-height: 64px; }
  .global-nav { top: 64px; }
  .global-nav__inner { min-height: 0; justify-content: flex-end; }
  .global-nav-list { position: fixed; inset: 0 0 0 auto; width: min(520px, 92vw); max-width: 520px; background: #fff; display:flex; flex-direction:column; transform: translateX(100%); transition: transform .28s var(--ease); padding: 0; box-shadow: -18px 0 50px rgba(0,0,0,.22); z-index: 1000; overflow-y:auto; }
  .global-nav-list.is-open { transform: translateX(0); }
  .global-nav-list__panel-head { display:flex; align-items:center; justify-content:space-between; min-height:96px; padding:24px; background: rgba(11,34,64,.08); color: var(--c-navy); font-weight:900; letter-spacing:.12em; }
  .nav-close { display:grid; place-items:center; width:36px; height:36px; border:0; border-radius:999px; background:rgba(0,0,0,.08); color:#374151; font-size:22px; cursor:pointer; }
  .global-nav-list__primary { display:block; padding: 0 24px; }
  .global-nav-list__primary a { display:block; padding:17px 0; border-bottom:1px solid #eef0f4; font-weight:800; color:#1f2937; }
  .global-nav-list__cta { display:block; padding:24px; }
  .global-nav-list__cta .btn { width:100%; justify-content:center; }
  .global-nav-list__policies { display:flex; flex-direction:column; gap:12px; padding:24px; background:#f8f9fa; border-top:1px solid #eef0f4; }
  .global-nav-list__policies a { color:#667085; font-size:12px; font-weight:700; padding:0; border:0; }
}

/* hp-old/index.html content merged into top */
.hero__visual--photo { padding:0; background:#111; overflow:hidden; min-height: 520px; }
.old-hero-stack { position:relative; width:100%; height:100%; min-height:520px; }
.old-hero-stack img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; animation: oldHeroFade 16s infinite; }
.old-hero-stack img:nth-child(1){animation-delay:0s}.old-hero-stack img:nth-child(2){animation-delay:4s}.old-hero-stack img:nth-child(3){animation-delay:8s}.old-hero-stack img:nth-child(4){animation-delay:12s}
@keyframes oldHeroFade { 0%,22%{opacity:1} 28%,100%{opacity:0} }
.old-top-about { background:#fff; text-align:center; }
.old-top-prose { max-width:760px; margin:0 auto; color:var(--c-text-sub); font-size:16px; line-height:2; }
.old-top-services { background:#f8f9fa; border-radius: 48px; margin: 32px min(4vw,48px); }
.old-service-circles { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:28px; max-width:900px; margin:0 auto; }
.old-service-circle { aspect-ratio:1/1; border-radius:999px; background:#fff; display:grid; place-items:center; text-align:center; padding:20px; box-shadow:var(--shadow-sm); font-weight:900; line-height:1.55; transition: transform .2s var(--ease); }
.old-service-circle:hover { transform: translateY(-4px); opacity:1; }
.old-service-circle.is-blue { border:2px solid #0284c7; color:#075985; }
.old-service-circle.is-green { border:2px solid #059669; color:#065f46; }
.old-service-circle.is-red { border:2px solid #f43f5e; color:#9f1239; }
.old-service-circle.is-gold { border:2px solid #d97706; color:#92400e; }
.old-top-works { background:#fff; }
.old-work-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:26px; }
.old-work-card { display:grid; grid-template-columns: 220px 1fr; background:#f8f9fa; border:1px solid #eef0f4; border-radius:12px; overflow:hidden; color:var(--c-text); box-shadow:var(--shadow-sm); }
.old-work-card img { width:100%; height:100%; min-height:210px; object-fit:cover; }
.old-work-card div { padding:24px; }
.old-work-card h3 { border-bottom:1px solid #d9dee7; padding-bottom:8px; margin-bottom:12px; font-size:18px; }
.old-work-card p { font-size:14px; color:var(--c-text-sub); margin:0; line-height:1.9; }
@media (max-width: 980px) { .old-service-circles { grid-template-columns: repeat(2, 1fr); } .old-work-grid { grid-template-columns:1fr; } }
@media (max-width: 640px) { .old-top-services { border-radius:28px; margin-inline:12px; } .old-work-card { grid-template-columns:1fr; } .old-work-card img { min-height:180px; } .hero__visual--photo, .old-hero-stack { min-height:320px; } }
.nav-toggle[aria-expanded="true"] span:nth-child(1),
.nav-toggle[aria-expanded="true"] span:nth-child(2),
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: none; opacity: 1; }

/* =========================================================
   Column composer (記事投稿ページ) & 投稿記事一覧
   ========================================================= */
.column-index-actions { display: flex; justify-content: flex-end; margin-bottom: 18px; }
.composer-back { margin: 0 0 16px; font-size: 13px; font-weight: 700; }
.composer-back a { color: var(--c-navy); }
.user-posts { margin-bottom: 34px; }

/* =========================================================
   運営者ページ（/admin/）
   ========================================================= */
.admin-wrap { max-width: 720px; margin: 0 auto; }
.admin-card {
    max-width: 440px; margin: 0 auto; padding: 30px 28px;
    background: #fff; border: 1px solid var(--c-border); border-radius: 16px;
    box-shadow: var(--shadow-md);
}
.admin-card__title { font-size: 20px; color: var(--c-navy); margin: 0 0 20px; text-align: center; }
.admin-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; font-size: 13px; font-weight: 700; color: var(--c-navy); }
.admin-field input {
    font: 500 15px/1.5 inherit; color: var(--c-text);
    border: 1px solid #d3d9e2; border-radius: 8px; padding: 11px 13px; background: #fff;
}
.admin-field input:focus { outline: 2px solid var(--c-accent); outline-offset: 1px; }
.admin-card form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.admin-error { color: var(--c-red); font-size: 13px; font-weight: 700; margin: 0 0 12px; }
.admin-note {
    margin: 20px 0 0; padding: 14px; border-radius: 10px;
    background: #f8fafc; color: var(--c-text-sub); font-size: 12px; line-height: 1.8;
}
.admin-note code { background: #eef2f7; border-radius: 4px; padding: 1px 6px; font-weight: 700; color: var(--c-navy); }

.admin-dashboard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.admin-dashboard__lead { margin: 4px 0 0; color: var(--c-text-sub); font-size: 14px; }
.admin-tools { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.admin-tool {
    display: flex; gap: 14px; align-items: flex-start; padding: 18px 18px;
    background: #fff; border: 1px solid var(--c-border); border-radius: 12px;
    text-decoration: none; transition: transform .15s, box-shadow .15s, border-color .15s;
}
a.admin-tool:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--c-navy); }
.admin-tool.is-soon { opacity: .6; }
.admin-tool__icon {
    flex: none; width: 44px; height: 44px; border-radius: 10px;
    display: grid; place-items: center; font-size: 20px;
    background: linear-gradient(135deg, var(--c-navy), var(--c-blue)); color: #fff;
}
.admin-tool__title { font-size: 15px; font-weight: 700; color: var(--c-navy); margin-bottom: 4px; }
.admin-tool__desc { font-size: 12.5px; color: var(--c-text-sub); line-height: 1.6; }

.footer-admin-link { opacity: .8; }

/* 運営者ステータスバー（ガード付きページに表示） */
.admin-status {
    position: fixed; right: 14px; top: 14px; z-index: 2147482990;
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px; border-radius: 999px;
    background: rgba(6,26,46,.95); color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.24);
    font: 700 12px/1 system-ui, -apple-system, 'Noto Sans JP', sans-serif;
    backdrop-filter: blur(8px);
}
.admin-status__dot { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
.admin-status__link { color: #fff; text-decoration: underline; }
.admin-status__logout { appearance: none; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.1); color: #fff; border-radius: 999px; padding: 6px 12px; font: 700 12px/1 inherit; cursor: pointer; }
.admin-status__logout:hover { background: rgba(255,255,255,.2); }
@media (max-width: 720px) { .admin-status { right: 10px; top: 10px; } }
.user-posts__title { font-size: 20px; color: var(--c-navy); margin: 0 0 14px; }

.column-composer { max-width: 860px; margin: 0 auto; }
.composer-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin-bottom: 20px; }
.composer-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--c-navy); }
.composer-field--wide { grid-column: 1 / -1; }
.composer-field em { font-style: normal; font-size: 10.5px; font-weight: 800; color: #fff; background: var(--c-red); border-radius: 4px; padding: 2px 6px; margin-left: 6px; vertical-align: 1px; }
.composer-field input, .composer-field textarea, .composer-field select {
  font: 500 14.5px/1.6 inherit; color: var(--c-text);
  border: 1px solid #d3d9e2; border-radius: 8px; padding: 10px 12px; background: #fff;
}
.composer-field select { cursor: pointer; }
.composer-field input:focus, .composer-field textarea:focus, .composer-field select:focus { outline: 2px solid var(--c-accent); outline-offset: 1px; }
/* タグ入力（チップ式） */
.composer-tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  border: 1px solid #d3d9e2; border-radius: 8px; padding: 6px 8px; background: #fff;
}
.composer-tags:focus-within { outline: 2px solid var(--c-accent); outline-offset: 1px; }
.composer-tags__chips { display: contents; }
.composer-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: #eef2f7; color: var(--c-navy); font-size: 12.5px; font-weight: 700;
  border-radius: 999px; padding: 4px 6px 4px 10px;
}
.composer-tag button { appearance: none; border: 0; background: rgba(0,0,0,.08); color: #374151; width: 16px; height: 16px; border-radius: 999px; font-size: 12px; line-height: 1; cursor: pointer; }
.composer-tag button:hover { background: var(--c-red); color: #fff; }
.composer-tags input { flex: 1; min-width: 140px; border: 0 !important; outline: none !important; padding: 6px 4px !important; font-weight: 500; }
.composer-post__tags { color: var(--c-text-sub); font-weight: 500; font-size: 12px; }
.composer-preview__cat { color: var(--c-accent-hover); font-weight: 800; font-size: 13px; margin: 0 0 4px; }
.composer-preview__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; }

/* 記事一覧の絞り込み（分類タブ・タグ・検索） */
.post-filter { margin: 0 0 20px; }
.post-filter__row { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; justify-content: space-between; }
.post-filter__cats { display: flex; flex-wrap: wrap; gap: 6px; }
.post-filter__cat {
  appearance: none; cursor: pointer; border: 1px solid #d3d9e2; background: #fff;
  color: var(--c-text); font: 700 12.5px/1 inherit; border-radius: 999px; padding: 9px 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.post-filter__cat span { background: #eef2f7; color: var(--c-text-sub); border-radius: 999px; font-size: 10.5px; padding: 2px 6px; }
.post-filter__cat:hover { border-color: var(--c-navy); }
.post-filter__cat.is-active { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.post-filter__cat.is-active span { background: rgba(255,255,255,.22); color: #fff; }
.post-filter__search {
  font: 500 14px/1.5 inherit; color: var(--c-text); min-width: 240px; flex: 1; max-width: 340px;
  border: 1px solid #d3d9e2; border-radius: 999px; padding: 10px 16px; background: #fff;
}
.post-filter__search:focus { outline: 2px solid var(--c-accent); outline-offset: 1px; }
.post-filter__tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 12px; }
.post-filter__tags-label { font-size: 12px; font-weight: 700; color: var(--c-text-sub); margin-right: 2px; }
.post-filter__tag { appearance: none; cursor: pointer; border: 1px solid #d3d9e2; background: #fff; color: var(--c-navy); font: 700 12px/1 inherit; border-radius: 999px; padding: 7px 11px; }
.post-filter__tag:hover { border-color: var(--c-navy); }
.post-filter__tag.is-active { background: var(--c-accent); border-color: var(--c-accent); color: #061a2e; }
.post-filter__empty { padding: 20px 0; text-align: center; }
.news-item__tags { display: inline-flex; flex-wrap: wrap; gap: 5px; }
.mini-tag { font-size: 11px; font-weight: 700; color: var(--c-text-sub); background: #f1f4f8; border-radius: 4px; padding: 2px 6px; }

/* 記事ページの分類・タグ */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.article-cat { background: var(--c-navy); color: #fff; font-size: 12.5px; font-weight: 800; border-radius: 999px; padding: 5px 14px; }
.article-cat:hover { background: var(--c-blue); opacity: 1; }
.article-tag { background: #eef2f7; color: var(--c-navy); font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 5px 12px; }
.article-tag:hover { background: var(--c-accent); color: #061a2e; opacity: 1; }
.article-back { margin: 26px 0 0; font-size: 13px; font-weight: 700; }
.article-back a { color: var(--c-navy); }

.composer-tabs { display: flex; gap: 0; border-bottom: 2px solid #e3e7ee; margin-bottom: 0; }
.composer-tabs button {
  appearance: none; border: 0; background: none; cursor: pointer;
  font: 700 13.5px/1 inherit; color: var(--c-text-sub);
  padding: 12px 18px; border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.composer-tabs button.is-active { color: var(--c-navy); border-bottom-color: var(--c-accent); }

.composer-toolbar { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding: 10px; background: #f4f6fa; border: 1px solid #e3e7ee; border-top: 0; }
.composer-toolbar button {
  appearance: none; cursor: pointer; border: 1px solid #d3d9e2; border-radius: 6px;
  background: #fff; color: var(--c-text); font: 600 12.5px/1 inherit; padding: 8px 10px;
}
.composer-toolbar button:hover { border-color: var(--c-accent); color: var(--c-navy); }
.composer-toolbar .sep { width: 1px; height: 20px; background: #d3d9e2; margin: 0 4px; }

.composer-visual {
  min-height: 320px; border: 1px solid #e3e7ee; border-top: 0; border-radius: 0 0 10px 10px;
  padding: 20px 22px; background: #fff;
}
.composer-visual:focus { outline: 2px solid var(--c-accent); outline-offset: -1px; }
.composer-visual:empty::before { content: "ここに本文を入力…"; color: #9aa4b2; }

.composer-hint { margin: 12px 0 8px; font-size: 12.5px; color: var(--c-text-sub); }
.composer-html {
  width: 100%; min-height: 320px; resize: vertical; box-sizing: border-box;
  font: 13px/1.7 Consolas, Menlo, monospace; color: var(--c-text);
  border: 1px solid #e3e7ee; border-radius: 10px; padding: 14px 16px; background: #fbfcfe;
}
.composer-html:focus { outline: 2px solid var(--c-accent); outline-offset: -1px; }
.composer-file { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--c-navy); cursor: pointer; text-decoration: underline; }

.composer-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 18px 0 8px; }
.composer-sub { appearance: none; cursor: pointer; border: 1px solid #d3d9e2; border-radius: 999px; background: #fff; color: var(--c-text); font: 700 12.5px/1 inherit; padding: 9px 14px; }
.composer-sub:hover { border-color: var(--c-navy); color: var(--c-navy); }
.composer-status { font-size: 12.5px; color: var(--c-text-sub); }
.composer-preview { border: 2px dashed var(--c-accent); border-radius: 12px; padding: 22px 24px; margin: 14px 0; background: #fffdf6; }
.composer-preview__title { margin-top: 0; }

.composer-list-title { font-size: 18px; color: var(--c-navy); margin: 34px 0 12px; }
.composer-post { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 4px; border-bottom: 1px solid #eef0f4; }
.composer-post__meta { display: flex; align-items: center; gap: 8px; }
.composer-post__meta time { color: var(--c-text-sub); font-size: 13px; }
.composer-post__title { color: var(--c-text); font-weight: 600; font-size: 14.5px; }
.composer-post__title:hover { color: var(--c-navy); }
.composer-post__actions { display: flex; gap: 6px; }
.composer-post__actions button { appearance: none; cursor: pointer; border: 1px solid #d3d9e2; border-radius: 6px; background: #fff; font: 700 12px/1 inherit; color: var(--c-text); padding: 7px 10px; }
.composer-post__actions button:hover { border-color: var(--c-navy); color: var(--c-navy); }
.composer-post__actions button.is-danger { color: var(--c-red); border-color: #f3caca; }
.composer-post__actions button.is-danger:hover { background: #fdf2f2; border-color: var(--c-red); }

.composer-io { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 18px; }
.composer-file-btn { display: inline-block; cursor: pointer; }

@media (max-width: 720px) {
  .composer-fields { grid-template-columns: 1fr; }
  .composer-post { grid-template-columns: 1fr; gap: 6px; }
}
