/* =====================================================================
   令和代行 公式サイト スタイル
   コンセプト: 「夜の街 × 水色 × 行灯の黄色」
   - 名刺と同じ水色（イメージカラー）を面の色に使い、写真（夜の繁華街・代行車）
     には水色を重ねる。代行車の屋根に載る行灯の黄色をアクセントにした配色。
   - 見出しは明朝、本文はゴシック、数字はコンデンス体で「企業サイト」の
     骨格をつくる。カードの多用・グラデーション円・中央揃えの羅列は避け、
     罫線と余白で情報を整理する。
   ===================================================================== */

/* ===== Tokens ===== */
:root {
    /* 水色（イメージカラー）: 濃 → 淡 */
    --blue-ink: #0f4c78;     /* 見出し用の濃い水色 */
    --blue-deep: #1470ab;    /* 面の基本色 */
    --blue: #1a7fc0;
    --blue-light: #2493d6;
    --blue-pale: #6fc4ec;
    --primary: #2493d6;
    --primary-dark: #1470ab;
    --accent: #ffd23f;
    --accent-dark: #f0b90b;
    --accent-deep: #c9980a;
    --accent-text: #1a2230;  /* 黄色の上に載せる文字色 */
    --ink: #1a2230;
    --muted: #5f7080;
    --bg: #ffffff;
    --bg-alt: #eef7fd;
    --line: #d6e7f2;
    --line-dark: rgba(255, 255, 255, .14);
    --radius: 4px;
    --font-sans: 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    --font-serif: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    --font-cond: 'Barlow Condensed', 'Zen Kaku Gothic New', sans-serif;
    --container: 1140px;
    --header-h: 80px;
}

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.9;
    font-size: 15.5px;
    letter-spacing: .02em;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
::selection { background: var(--accent); color: var(--accent-text); }
img { max-width: 100%; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--primary); }
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--font-serif);
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--blue-ink);
}
main { flex: 1; }
.num { font-family: var(--font-cond); letter-spacing: .01em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-narrow { max-width: 860px; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1.5rem;
}

/* ブランド: 行灯モチーフ */
.brand { display: flex; align-items: center; gap: .8rem; color: var(--blue-deep); }
.brand:hover { color: var(--blue-deep); }
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 34px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #ffe680 0%, var(--accent) 45%, #f5c421 100%);
    border-radius: 5px 5px 7px 7px;
    box-shadow: 0 2px 0 var(--accent-deep), 0 6px 14px rgba(255, 210, 63, .35);
    color: var(--accent-text);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .06em;
    line-height: 1;
    position: relative;
}
.brand-mark::after {
    content: '';
    position: absolute;
    inset: 2px 3px auto 3px;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, 0));
    border-radius: 3px 3px 40% 40%;
    pointer-events: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; letter-spacing: .1em; }
.brand-sub { font-size: .62rem; letter-spacing: .08em; color: var(--muted); margin-top: .25rem; white-space: nowrap; }

.nav-toggle { display: none; }
.nav-toggle-btn { display: none; }

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav ul { display: flex; gap: .25rem; }
.site-nav ul a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .55rem .75rem;
    color: var(--ink);
    font-weight: 500;
    font-size: .9rem;
    line-height: 1.2;
    position: relative;
    white-space: nowrap;
}
.site-nav ul a small {
    font-family: var(--font-cond);
    font-size: .64rem;
    letter-spacing: .18em;
    color: var(--muted);
    margin-top: .3rem;
    font-weight: 600;
}
.site-nav ul a::after {
    content: '';
    position: absolute;
    left: .75rem; right: .75rem; bottom: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.site-nav ul a.active::after,
.site-nav ul a:hover::after { transform: scaleX(1); }
.site-nav ul a:hover { color: var(--blue-deep); }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: var(--blue-deep);
    color: #fff;
    padding: .45rem 1rem .45rem .55rem;
    border-radius: var(--radius);
    line-height: 1.1;
    transition: background .2s, transform .15s;
}
.header-cta:hover { background: var(--blue-light); color: #fff; transform: translateY(-1px); }
.cta-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-text);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cta-icon svg { width: 16px; height: 16px; }
.cta-body { display: flex; flex-direction: column; }
.cta-label { font-size: .6rem; letter-spacing: .06em; opacity: .85; white-space: nowrap; }
.cta-number { font-family: var(--font-cond); font-weight: 700; font-size: 1.4rem; letter-spacing: .03em; margin-top: 2px; white-space: nowrap; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .1rem;
    padding: .95rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-align: center;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s, border-color .2s;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: .95rem;
    letter-spacing: .06em;
    line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { font-size: 1rem; padding: 1.05rem 2rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--accent); color: var(--accent-text); box-shadow: 0 6px 18px rgba(240, 185, 11, .35); }
.btn-primary:hover { background: var(--accent-dark); color: var(--accent-text); }
.btn-navy { background: var(--blue-deep); color: #fff; }
.btn-navy:hover { background: var(--blue-light); color: #fff; }
.btn-outline { border-color: rgba(255, 255, 255, .7); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--blue-deep); border-color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.btn-sub { font-size: .72rem; font-weight: 500; opacity: .85; letter-spacing: .04em; }
.btn .num { font-size: 1.15em; }

/* ===== Home hero ===== */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    min-height: min(82vh, 760px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-bg {
    position: absolute; inset: 0;
    z-index: -1;
    background: var(--blue-deep);
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 68% 50%;
    animation: hero-zoom 14s ease-out forwards;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 127, 192, .94) 0%, rgba(26, 127, 192, .8) 32%, rgba(26, 127, 192, .28) 68%, rgba(26, 127, 192, .08) 100%),
        linear-gradient(180deg, rgba(26, 127, 192, .3) 0%, rgba(26, 127, 192, 0) 35%, rgba(26, 127, 192, .4) 100%);
}
@keyframes hero-zoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}
.hero-inner {
    padding-top: clamp(4rem, 10vw, 7rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.hero-copy { max-width: 640px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--accent);
    font-family: var(--font-cond);
    font-weight: 600;
    letter-spacing: .22em;
    font-size: .9rem;
    margin: 0 0 1.25rem;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--accent); }
.hero-title {
    font-size: clamp(2.1rem, 5.2vw, 3.6rem);
    line-height: 1.32;
    margin-bottom: 1.4rem;
    color: #fff;
    letter-spacing: .06em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}
.hero-lead {
    font-size: clamp(.95rem, 1.6vw, 1.05rem);
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2rem;
    line-height: 2;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* 営業情報ストリップ（ヒーロー下端） */
.hero-strip {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .18);
    background: rgba(26, 127, 192, .62);
}
.hero-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-strip-item {
    padding: 1.1rem 1.25rem 1.1rem 0;
    border-right: 1px solid rgba(255, 255, 255, .14);
    margin-right: 1.25rem;
}
.hero-strip-item:last-child { border-right: 0; margin-right: 0; }
.hero-strip-item dt {
    font-family: var(--font-cond);
    font-size: .72rem;
    letter-spacing: .2em;
    color: var(--accent);
    font-weight: 600;
}
.hero-strip-item dd {
    margin: .15rem 0 0;
    font-size: .95rem;
    font-weight: 500;
    color: #fff;
}
.hero-strip-item dd .num { font-size: 1.25rem; font-weight: 600; }

/* ヒーロー内テキストの初回表示（ページロード時の1回だけ） */
.hero-copy > * { animation: rise .9s cubic-bezier(.22, .65, .3, 1) both; }
.hero-copy > :nth-child(1) { animation-delay: .1s; }
.hero-copy > :nth-child(2) { animation-delay: .25s; }
.hero-copy > :nth-child(3) { animation-delay: .4s; }
.hero-copy > :nth-child(4) { animation-delay: .55s; }
.hero-strip { animation: fade 1s .7s both; }
@keyframes rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { margin-bottom: clamp(2rem, 4.5vw, 3.25rem); }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--font-cond);
    color: var(--muted);
    letter-spacing: .22em;
    font-size: .82rem;
    font-weight: 600;
    margin: 0 0 .75rem;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); }
.section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    color: var(--blue-deep);
    line-height: 1.35;
}
.section-lead { margin: 1rem 0 0; color: var(--muted); max-width: 640px; }
.section-head-center { text-align: center; }
.section-head-center .section-eyebrow { justify-content: center; }
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }

/* 見出し＋本文の2カラム（会社概要・採用メッセージなど） */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}
.split .section-head { margin-bottom: 0; }

/* ===== Grids ===== */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ===== Reason list（選ばれる理由） ===== */
.reason-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 2.5rem;
}
.reason-item {
    border-top: 1px solid var(--blue-deep);
    padding-top: 1.5rem;
    position: relative;
}
.reason-item::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width .5s cubic-bezier(.22, .65, .3, 1);
}
.reason-item:hover::before { width: 100%; }
.reason-num {
    display: block;
    font-family: var(--font-cond);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    color: var(--blue-deep);
    margin-bottom: 1.25rem;
}
.reason-num::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--accent);
    margin-left: .35rem;
    vertical-align: .9rem;
}
.reason-icon { color: var(--blue-deep); margin-bottom: 1rem; }
.reason-icon svg { width: 34px; height: 34px; }
.reason-item h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.reason-item p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ===== Flow（タイムライン） ===== */
.flow-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.flow-list li { position: relative; padding-top: .5rem; }
.flow-badge {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--blue-deep);
    color: var(--accent);
    font-family: var(--font-cond);
    font-size: 1.35rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 0 6px var(--bg-alt);
}
.section:not(.section-alt) .flow-badge { box-shadow: 0 0 0 6px var(--bg); }
.flow-list li:not(:last-child)::before {
    content: '';
    position: absolute;
    top: calc(.5rem + 28px);
    left: 56px;
    right: -2rem;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--blue-deep) 0 6px, transparent 6px 12px);
    opacity: .45;
}
.flow-step {
    font-family: var(--font-cond);
    font-size: .75rem;
    letter-spacing: .2em;
    color: var(--muted);
    font-weight: 600;
}
.flow-list h3 { font-size: 1.15rem; margin: .2rem 0 .6rem; }
.flow-list p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ===== Photo frame ===== */
.photo-frame {
    margin: 0;
    background: var(--blue-deep);
    border-radius: var(--radius);
    overflow: hidden;
    line-height: 0;
}
.photo-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: var(--photo-ratio, 4 / 3);
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22, .65, .3, 1);
}
.photo-frame:hover img { transform: scale(1.03); }
.photo-frame figcaption {
    margin: 0;
    padding: .75rem 1rem;
    background: #fff;
    color: var(--ink);
    font-size: .85rem;
    line-height: 1.6;
    display: flex;
    gap: .6rem;
    align-items: baseline;
    justify-content: center;
    text-align: center;
    border-top: 2px solid var(--accent);
}
.photo-frame figcaption::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent);
    flex-shrink: 0;
    transform: translateY(-1px);
}
.photo-note { color: var(--muted); font-size: .8rem; margin-top: 1.25rem; }

/* ===== Gallery（1大 + 2小） ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 1.5rem;
    align-items: start;
}
.gallery-grid .photo-frame:first-child { grid-row: span 2; display: flex; flex-direction: column; }
.gallery-grid .photo-frame:first-child img { flex: 1; min-height: 0; aspect-ratio: auto; height: 100%; }

/* ===== Photo split（文章 + 写真） ===== */
.photo-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}
.photo-split-media { width: 100%; position: relative; }
.photo-split-media::after {
    content: '';
    position: absolute;
    right: -14px; bottom: -14px;
    width: 55%; height: 55%;
    border-right: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    pointer-events: none;
}
.photo-split-media-portrait { max-width: 320px; margin: 0 auto; }
.photo-split-body { min-width: 0; }
.photo-split-body h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.photo-split-body p { margin: 0 0 1rem; }
.photo-split-body p:last-child { margin-bottom: 0; }
.photo-split-body .photo-note { margin-top: 1rem; }

/* ===== CTA band ===== */
.cta-band {
    position: relative;
    isolation: isolate;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-deep) 100%);
    color: #fff;
    padding: clamp(3rem, 7vw, 5rem) 0;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0;
    z-index: -1;
    background: var(--cta-img, none) center / cover no-repeat;
    opacity: .22;
    filter: saturate(.7);
}
.cta-band::after {
    content: '';
    position: absolute; inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(26, 127, 192, .95), rgba(26, 127, 192, .6));
}
.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
    gap: 2.5rem;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .6rem; color: #fff; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, .8); }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 2rem;
    justify-content: flex-end;
}
.tel-block {
    display: inline-flex;
    flex-direction: column;
    color: #fff;
    line-height: 1.1;
}
.tel-block:hover { color: #fff; }
.tel-block small { font-size: .75rem; letter-spacing: .12em; color: var(--accent); font-weight: 500; }
.tel-block strong {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-cond);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: .03em;
    margin-top: .3rem;
}
.tel-block strong svg { width: .8em; height: .8em; color: var(--accent); }
.tel-block span { font-size: .82rem; color: rgba(255, 255, 255, .75); margin-top: .4rem; }

/* ===== Page hero ===== */
.page-hero {
    position: relative;
    isolation: isolate;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 340px;
}
.page-hero-bg {
    position: absolute; inset: 0;
    z-index: -1;
    background: var(--blue-deep);
}
.page-hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--hero-img) var(--hero-pos, 50% 50%) / cover no-repeat;
    opacity: .5;
}
.page-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 127, 192, .9) 0%, rgba(26, 127, 192, .55) 60%, rgba(26, 127, 192, .3) 100%),
        linear-gradient(180deg, rgba(26, 127, 192, .2), rgba(26, 127, 192, .6));
}
.page-hero-inner {
    padding-top: clamp(4rem, 9vw, 6rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
}
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--font-cond);
    color: var(--accent);
    letter-spacing: .22em;
    font-size: .85rem;
    font-weight: 600;
    margin: 0 0 .75rem;
}
.page-hero-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--accent); }
.page-hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); color: #fff; margin-bottom: .5rem; }
.page-hero-lead { margin: 0; color: rgba(255, 255, 255, .85); }

.breadcrumb {
    background: rgba(0, 0, 0, .35);
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .78rem;
}
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; padding-top: .6rem; padding-bottom: .6rem; }
.breadcrumb li { color: rgba(255, 255, 255, .8); display: flex; align-items: center; gap: .6rem; }
.breadcrumb li + li::before { content: ''; width: 5px; height: 5px; border-top: 1px solid rgba(255,255,255,.5); border-right: 1px solid rgba(255,255,255,.5); transform: rotate(45deg); }
.breadcrumb a { color: rgba(255, 255, 255, .8); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current] { color: #fff; }

/* ===== Price ===== */
.price-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    border: 1px solid var(--line);
    background: #fff;
    margin-bottom: 2.5rem;
}
.price-hero > div { padding: 2rem 2.25rem; }
.price-hero > div + div { border-left: 1px solid var(--line); background: var(--bg-alt); }
.price-hero-label {
    font-family: var(--font-cond);
    letter-spacing: .2em;
    font-size: .78rem;
    color: var(--muted);
    font-weight: 600;
    margin: 0 0 .5rem;
}
.price-hero-value {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .4rem .6rem;
    line-height: 1;
}
.price-hero-value .cond { font-family: var(--font-serif); font-size: 1.1rem; color: var(--blue-deep); font-weight: 600; }
.price-hero-value .num { font-size: clamp(3rem, 6vw, 4.2rem); font-weight: 700; color: var(--blue-deep); }
.price-hero-value .unit { font-family: var(--font-serif); font-size: 1.3rem; color: var(--blue-deep); font-weight: 600; }
.price-hero-value .num { background: linear-gradient(transparent 62%, rgba(255, 210, 63, .55) 62%); }
.price-hero-note { margin: .75rem 0 0; color: var(--muted); font-size: .85rem; }
.price-lead { margin: 0 0 1.5rem; }
.price-lead strong { color: var(--blue-deep); }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table, .info-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--line);
}
.price-table th, .price-table td,
.info-table th, .info-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}
.price-table thead th {
    background: var(--blue-deep);
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: .85rem;
    letter-spacing: .12em;
}
.price-table thead th + th { border-left: 1px solid var(--line-dark); }
.price-table tbody th {
    background: var(--bg-alt);
    width: 22%;
    color: var(--ink);
    text-align: center;
    font-weight: 500;
    font-size: .95rem;
}
.price-table tbody td {
    text-align: center;
    font-family: var(--font-cond);
    font-weight: 600;
    color: var(--blue-deep);
    font-size: 1.5rem;
    letter-spacing: .02em;
}
.price-table tbody td small { font-family: var(--font-sans); font-size: .8rem; font-weight: 500; margin-left: .1rem; }
.price-table tbody th + td + th { border-left: 1px solid var(--line); }
.info-table th {
    background: var(--bg-alt);
    width: 28%;
    font-weight: 500;
    color: var(--blue-deep);
    white-space: nowrap;
    font-size: .92rem;
}
.info-table a { color: var(--blue-deep); border-bottom: 1px solid var(--accent); }
.note {
    color: var(--muted);
    font-size: .86rem;
    margin: 1.25rem 0 0;
    padding-left: 1rem;
    border-left: 2px solid var(--line);
    line-height: 1.9;
}
.subhead {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.25rem;
    margin: 0 0 1rem;
}
.subhead::before { content: ''; width: 10px; height: 10px; background: var(--accent); flex-shrink: 0; }
.subhead small { font-family: var(--font-cond); font-size: .75rem; letter-spacing: .2em; color: var(--muted); font-weight: 600; }
.stack > * + * { margin-top: 2.75rem; }

/* ===== Area / Payment ===== */
.area-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 1rem;
}
.area-card, .payment-card, .person-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 1.75rem 2rem;
}
.area-card h3, .payment-card h3 {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--line);
}
.area-card h3 svg, .payment-card h3 svg { width: 22px; height: 22px; color: var(--blue-deep); flex-shrink: 0; }
.area-card ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: .4rem 1rem; }
.area-card li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }
.area-card li::before { content: ''; width: 7px; height: 7px; background: var(--accent); flex-shrink: 0; }
.payment-card p { color: var(--muted); margin: 0; font-size: .93rem; }
.person-card { border-top: 3px solid var(--blue-deep); }
.person-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.person-card p { color: var(--muted); margin: 0; font-size: .93rem; }

/* ===== Positions（募集職種） ===== */
.position-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.position-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 2rem;
    position: relative;
    transition: border-color .25s, transform .25s;
}
.position-card:hover { border-color: var(--blue-deep); transform: translateY(-3px); }
.position-card .reason-num { font-size: 1.9rem; margin-bottom: .75rem; }
.position-card .reason-icon { position: absolute; top: 1.75rem; right: 1.75rem; color: var(--blue-deep); opacity: .85; }
.position-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.position-card p { color: var(--muted); font-size: .93rem; margin: 0; }
.position-tag {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .08em;
    background: var(--bg-alt);
    color: var(--blue-deep);
    padding: .15rem .6rem;
    margin-bottom: .75rem;
    border: 1px solid var(--line);
}

/* ===== About ===== */
.about-block p { margin-bottom: 1.25rem; }
.about-block .lead { font-family: var(--font-serif); font-size: 1.25rem; color: var(--blue-deep); line-height: 1.8; }
.signature {
    margin-top: 2rem;
    text-align: right;
    font-family: var(--font-serif);
    font-weight: 500;
}
.signature small { display: block; font-size: .78rem; color: var(--muted); letter-spacing: .1em; }
.signature strong { font-size: 1.2rem; letter-spacing: .12em; font-weight: 600; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: start;
}
.contact-info h2, .contact-form-wrap h2 { font-size: 1.4rem; margin-bottom: 1.25rem; }
.contact-card {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-deep) 100%);
    color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
}
.contact-card small { display: block; font-size: .78rem; letter-spacing: .12em; color: var(--accent); }
.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-cond);
    font-size: clamp(2.2rem, 4.5vw, 2.9rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: .03em;
    line-height: 1.1;
    margin: .35rem 0 .75rem;
}
.contact-phone:hover { color: var(--accent); }
.contact-phone svg { width: .75em; height: .75em; color: var(--accent); }
.contact-card p { margin: 0; font-size: .9rem; color: rgba(255, 255, 255, .85); }
.contact-dl { margin: 0; }
.contact-dl dt {
    font-size: .78rem;
    letter-spacing: .12em;
    color: var(--muted);
    margin-top: 1.1rem;
    padding-bottom: .25rem;
    border-bottom: 1px solid var(--line);
}
.contact-dl dt:first-child { margin-top: 0; }
.contact-dl dd { margin: .5rem 0 0; font-size: .95rem; }

.contact-form .form-row { margin-bottom: 1.35rem; }
.contact-form .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    margin-bottom: .45rem;
    color: var(--blue-deep);
    font-size: .92rem;
}
.contact-form .req, .contact-form .opt {
    font-size: .68rem;
    padding: .1rem .5rem;
    font-weight: 500;
    letter-spacing: .08em;
}
.contact-form .req { background: var(--accent); color: var(--accent-text); }
.contact-form .opt { background: var(--bg-alt); color: var(--muted); border: 1px solid var(--line); }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid #cfd6de;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    color: var(--ink);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a5adb8; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue-deep);
    box-shadow: 0 0 0 3px rgba(255, 210, 63, .45);
}
.form-note { font-size: .82rem; color: var(--muted); margin: -.5rem 0 1.5rem; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; }
.alert-success { background: #eaf7ee; color: #1b5e33; border: 1px solid #b9e3c6; }
.alert-error   { background: #fdeeee; color: #8f1d1d; border: 1px solid #f3bcbc; }
.alert ul { padding-left: 1.25rem; list-style: disc; margin: 0; }

/* ===== FAQ ===== */
.faq-list { border-top: 1px solid var(--blue-deep); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item details > summary {
    list-style: none;
    cursor: pointer;
    padding: 1.35rem .5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.1rem;
    color: var(--blue-deep);
    transition: background .2s;
}
.faq-item details > summary::-webkit-details-marker { display: none; }
.faq-item details > summary:hover { background: var(--bg-alt); }
.faq-q-mark, .faq-a-mark {
    font-family: var(--font-cond);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
}
.faq-q-mark { color: var(--blue-deep); }
.faq-a-mark { color: var(--accent-dark); }
.faq-q-text { font-family: var(--font-serif); font-size: 1.08rem; font-weight: 600; line-height: 1.6; }
.faq-toggle { width: 16px; height: 16px; position: relative; }
.faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--blue-deep);
}
.faq-toggle::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-toggle::after  { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); transition: transform .25s; }
.faq-item details[open] > summary .faq-toggle::after { transform: translateX(-50%) scaleY(0); }
.faq-answer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.1rem;
    padding: .25rem .5rem 1.5rem .5rem;
    align-items: start;
}
.faq-answer p { margin: .25rem 0 0; color: var(--ink); }

/* ===== Footer ===== */
.site-footer { background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%); color: rgba(255, 255, 255, .85); }
.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1.5fr 1fr .8fr;
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.brand-footer { color: #fff; margin-bottom: 1.25rem; }
.brand-footer:hover { color: #fff; }
.brand-footer .brand-sub { color: rgba(255, 255, 255, .6); font-family: var(--font-cond); letter-spacing: .2em; font-size: .68rem; }
.footer-lead { font-size: .92rem; margin-bottom: 1.5rem; }
.footer-tel { display: inline-flex; flex-direction: column; color: #fff; line-height: 1.1; }
.footer-tel:hover { color: #fff; }
.footer-tel small { font-size: .72rem; letter-spacing: .1em; color: var(--accent); }
.footer-tel strong { font-family: var(--font-cond); font-size: 2rem; font-weight: 700; letter-spacing: .03em; margin-top: .3rem; }
.footer-grid h4 {
    color: var(--accent);
    font-family: var(--font-cond);
    font-size: .78rem;
    letter-spacing: .22em;
    margin-bottom: 1.1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--line-dark);
    font-weight: 600;
}
.footer-grid a { color: rgba(255, 255, 255, .85); }
.footer-grid a:hover { color: var(--accent); }
.footer-info dl { margin: 0; }
.footer-info dt { font-size: .72rem; color: rgba(255, 255, 255, .65); margin-top: .85rem; letter-spacing: .08em; }
.footer-info dt:first-child { margin-top: 0; }
.footer-info dd { margin: .1rem 0 0; font-size: .9rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .55rem; font-size: .92rem; }
.footer-nav a { display: inline-flex; align-items: center; gap: .5rem; }
.footer-nav a::before { content: ''; width: 6px; height: 1px; background: var(--accent); }
.footer-bottom { background: #0f5f94; padding: 1rem 0; font-size: .78rem; color: rgba(255, 255, 255, .7); }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem 1.5rem; }

/* ===== Floating bar (mobile) ===== */
.floating-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 100;
    display: none;
    grid-template-columns: 1.35fr 1fr;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .18);
}
.floating-tel, .floating-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    min-height: 60px;
}
.floating-tel { background: var(--accent); color: var(--accent-text); }
.floating-tel span { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--font-cond); font-size: 1.3rem; }
.floating-tel small { font-family: var(--font-sans); font-size: .62rem; font-weight: 500; letter-spacing: .06em; }
.floating-form { background: var(--blue-deep); color: #fff; font-size: .95rem; }
.floating-tel:hover { color: var(--accent-text); }
.floating-form:hover { color: #fff; }

/* ===== Scroll reveal =====
   .reveal は JS からのみ付与される（JS 無効時は通常表示）。
   表示完了後は JS がクラスを外し、各要素本来の hover transition に戻す。 */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, .65, .3, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-copy > *, .hero-strip, .hero-bg img { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
    :root { --header-h: 68px; }
    .brand-mark { width: 58px; height: 30px; font-size: .72rem; }
    .brand-name { font-size: 1.1rem; }
    .brand-sub { display: none; }

    .nav-toggle-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px; height: 24px;
        cursor: pointer;
        z-index: 60;
        background: transparent;
        border: 0;
        padding: 0;
    }
    .nav-toggle-btn span {
        display: block;
        height: 2px;
        width: 100%;
        background: var(--blue-deep);
        transition: transform .25s, opacity .25s;
    }
    .nav-toggle:checked + .nav-toggle-btn span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
    .nav-toggle:checked + .nav-toggle-btn span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked + .nav-toggle-btn span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

    .site-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: .5rem 1.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--line);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        transform: translateY(-120%);
        transition: transform .3s ease;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
        align-items: stretch;
        z-index: 55;
    }
    .nav-toggle:checked ~ .site-nav { transform: translateY(0); }
    .site-nav ul { flex-direction: column; gap: 0; width: 100%; }
    .site-nav ul li { border-bottom: 1px solid var(--line); }
    .site-nav ul a {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
        padding: 1rem .25rem;
        font-size: 1rem;
    }
    .site-nav ul a::after { display: none; }
    .site-nav ul a.active { color: var(--blue-deep); border-left: 3px solid var(--accent); padding-left: .75rem; }
    .site-nav ul a small { margin: 0; }
    .header-cta { width: 100%; justify-content: center; padding: .75rem; }

    .reason-list { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
    .flow-list { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
    .flow-list li:nth-child(2n)::before { display: none; }
    .position-list { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .hero { min-height: 0; }
    .hero-bg img { object-position: 72% 50%; }
    .hero-strip .container { grid-template-columns: repeat(2, 1fr); }
    .hero-strip-item { border-right: 0; margin-right: 0; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .hero-strip-item:nth-child(odd) { padding-right: 1rem; border-right: 1px solid rgba(255,255,255,.12); }
    .hero-strip-item:nth-child(even) { padding-left: 1rem; }
    .hero-strip-item:nth-last-child(-n+2) { border-bottom: 0; }

    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta-inner { grid-template-columns: 1fr; gap: 1.75rem; }
    .cta-actions { justify-content: flex-start; }
    .photo-split { grid-template-columns: 1fr; gap: 2rem; }
    .photo-split-media { order: 2; }
    .photo-split-media-portrait { max-width: 280px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid .photo-frame:first-child { grid-column: 1 / -1; grid-row: auto; }
    .gallery-grid .photo-frame:first-child img { aspect-ratio: 16 / 9; }
    .price-hero { grid-template-columns: 1fr; }
    .price-hero > div + div { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 768px) {
    body { padding-bottom: 60px; }
    .floating-bar { display: grid; }
    .hero-actions .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn { width: 100%; }
    .price-table th, .price-table td,
    .info-table th, .info-table td { padding: .8rem .75rem; font-size: .9rem; }
    .price-table tbody td { font-size: 1.25rem; }
    .area-card ul { grid-template-columns: 1fr; }
    .reason-list { grid-template-columns: 1fr; gap: 2rem; }
    .flow-list { grid-template-columns: 1fr; gap: 0; }
    .flow-list li { display: grid; grid-template-columns: 56px 1fr; gap: 0 1.25rem; padding: 0 0 2rem; }
    .flow-list li > .flow-badge { grid-row: 1 / span 3; margin: 0; }
    .flow-list li:not(:last-child)::before {
        top: 56px; bottom: 0; left: 28px; right: auto;
        width: 1px; height: auto;
        background: repeating-linear-gradient(180deg, var(--blue-deep) 0 6px, transparent 6px 12px);
    }
    .faq-item details > summary { padding: 1.1rem .25rem; gap: .8rem; }
    .faq-answer { padding: .25rem .25rem 1.25rem; gap: .8rem; }
    .faq-q-mark, .faq-a-mark { font-size: 1.35rem; width: 1.6rem; }
    .breadcrumb { font-size: .72rem; }
    .price-hero > div { padding: 1.5rem 1.25rem; }
    .contact-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.1rem; }
    .brand-mark { width: 52px; height: 28px; font-size: .66rem; }
    .brand-name { font-size: 1rem; }
    .hero-title { font-size: 1.85rem; letter-spacing: .04em; }
    .hero-lead { font-size: .92rem; line-height: 1.9; }
    .hero-strip .container { grid-template-columns: 1fr; }
    .hero-strip-item, .hero-strip-item:nth-child(odd), .hero-strip-item:nth-child(even) { padding: .7rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .hero-strip-item:last-child { border-bottom: 0; }
    .gallery-grid { grid-template-columns: 1fr; }
}
