@charset "UTF-8";

/* =========================================================
   Sample CSS (Based on common-web-style.md Template)
   ========================================================= */

/* ---------- 1. Basic Elements ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ページ内リンクをスムーズスクロール。sticky header 分だけ着地位置を下げる */
html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 400;
    /* Standard weight */
    margin: 0;
    color: #000;
    line-height: 1.6;
}

/* ---------- 2. Typography utilities (独自・Bootstrap utility 卒業) ---------- */
.bold {
    font-weight: bold;
}

.big50 {
    font-size: 32px;
    line-height: 0.9;
}

.big30 {
    font-size: 24px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .big50 {
        font-size: 50px;
    }

    .big30 {
        font-size: 30px;
    }
}

.big20 {
    font-size: 20px;
}

/* 可変表示テキスト：画面幅で文字が伸び縮みする。数字＝最大px（.big50 と揃えて50）。
   clamp() の使用は .clamp* クラスのみ許可（hero など見せ場専用）。見出しは原則 big 系（固定px） */
.clamp44 {
    font-size: clamp(24px, 6.6vw, 44px);
    line-height: 1;
}

.text18 {
    font-size: 18px;
}

.small14 {
    font-size: 14px;
}

/* ---------- 3. Color utilities ---------- */
.gray {
    color: #6c757d;
}

/* ---------- Layout utilities ---------- */
.center {
    text-align: center;
}

.text-white {
    color: #fff;
}

/* ---------- Spacing utilities (px統一スケール: 0 / 4 / 8 / 16 / 24 / 48 / 64 / 96 / 128) ---------- */
/* margin-top（6/7/8 はセクション間隔用に拡張） */
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 4px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 24px;
}

.mt-5 {
    margin-top: 48px;
}

.mt-6 {
    margin-top: 64px;
}

.mt-7 {
    margin-top: 96px;
}

.mt-8 {
    margin-top: 128px;
}

/* margin-bottom */
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 4px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-5 {
    margin-bottom: 48px;
}

/* margin-right (end) */
.me-0 {
    margin-right: 0;
}

.me-1 {
    margin-right: 4px;
}

.me-2 {
    margin-right: 8px;
}

.me-3 {
    margin-right: 16px;
}

.me-4 {
    margin-right: 24px;
}

.me-5 {
    margin-right: 48px;
}

/* margin-left (start) */
.ms-0 {
    margin-left: 0;
}

.ms-1 {
    margin-left: 4px;
}

.ms-2 {
    margin-left: 8px;
}

.ms-3 {
    margin-left: 16px;
}

.ms-4 {
    margin-left: 24px;
}

.ms-5 {
    margin-left: 48px;
}

/* margin-x auto */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* padding */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 4px;
}

.p-2 {
    padding: 8px;
}

.p-3 {
    padding: 16px;
}

.p-4 {
    padding: 24px;
}

.p-5 {
    padding: 48px;
}

/* padding-top */
.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 4px;
}

.pt-2 {
    padding-top: 8px;
}

.pt-3 {
    padding-top: 16px;
}

.pt-4 {
    padding-top: 24px;
}

.pt-5 {
    padding-top: 48px;
}

/* padding-bottom（6/7/8 はセクション間隔用に拡張） */
.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 4px;
}

.pb-2 {
    padding-bottom: 8px;
}

.pb-3 {
    padding-bottom: 16px;
}

.pb-4 {
    padding-bottom: 24px;
}

.pb-5 {
    padding-bottom: 48px;
}

.pb-6 {
    padding-bottom: 64px;
}

.pb-7 {
    padding-bottom: 96px;
}

.pb-8 {
    padding-bottom: 128px;
}

/* padding-left (start) */
.ps-0 {
    padding-left: 0;
}

.ps-1 {
    padding-left: 4px;
}

.ps-2 {
    padding-left: 8px;
}

.ps-3 {
    padding-left: 16px;
}

.ps-4 {
    padding-left: 24px;
}

.ps-5 {
    padding-left: 48px;
}

/* padding-y */
.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-3 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-4 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.py-5 {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* =========================================================
   Grid System (独自・全カラム / Bootstrap互換)
   Portions adapted from Bootstrap v5.3.3 (https://getbootstrap.com)
   Copyright 2011-2024 The Bootstrap Authors / Licensed under MIT
   ========================================================= */

/* Container */
.container,
.container-fluid {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

/* Gutters g-0 〜 g-5 */
.row.g-0 {
    --gutter-x: 0;
    --gutter-y: 0;
}

.row.g-1 {
    --gutter-x: 4px;
    --gutter-y: 4px;
}

.row.g-2 {
    --gutter-x: 8px;
    --gutter-y: 8px;
}

.row.g-3 {
    --gutter-x: 16px;
    --gutter-y: 16px;
}

.row.g-4 {
    --gutter-x: 24px;
    --gutter-y: 24px;
}

.row.g-5 {
    --gutter-x: 48px;
    --gutter-y: 48px;
}

.row[class*="g-"] {
    margin-top: calc(-1 * var(--gutter-y));
    margin-right: calc(-0.5 * var(--gutter-x));
    margin-left: calc(-0.5 * var(--gutter-x));
}

.row[class*="g-"]>* {
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--gutter-y);
}

/* カードグリッド: 2列(モバイル)時のカード間ガターを画面端余白(12px)と一致させる。
   横・縦とも12pxに揃え均等グリッドに。md以上は元のガター据え置き */
@media (max-width: 767px) {
    .row.card-grid {
        --gutter-x: 12px;
        --gutter-y: 12px;
    }
}

/* Columns — base (xs) */
.col-1 {
    flex: 0 0 auto;
    width: 8.333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

/* sm (576px+) */
@media (min-width: 576px) {
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* md (768px+) */
@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* lg (992px+) */
@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* xl (1200px+) */
@media (min-width: 1200px) {
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* xxl (1400px+) */
@media (min-width: 1400px) {
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .2s ease;
}

a:hover {
    opacity: 0.7;
}

/* ---------- 4. Header & Navigation (Common Template) ---------- */
.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-weight: bold;
}

.logo img {
    display: block;
    height: 60px;
    width: auto;
}

/* ---------- 5. Layout ---------- */
.main {
    width: 100%;
}

.w-100 {
    width: 100%;
}

/* ---------- 6. Footer ---------- */
.footer {
    padding: 96px 0 0;
    background: #e595b9;
    color: #fff;
    line-height: 1.6;
}

.footer a {
    color: #fff;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer2 {
    text-align: center;
    background: #000;
    color: #e595b9;
    padding: 48px 0;
}

.copyright {
    font-size: 14px;
}

/* =========================================================
   Horizontal Rule (区切り線シリーズ)
   ========================================================= */
.b-hr {
    border: 0;
    border-top: 1px solid currentColor;
    margin: 24px 0;
    opacity: 0.5;
}

.b-hr-dot {
    border: 0;
    border-top: 2px dotted currentColor;
    margin: 24px 0;
    opacity: 0.7;
}

/* =========================================================
   Card & 見出し装飾部品（クラスを足すだけ／外すだけ）
   ========================================================= */
/* 白背景カード（白bg＋枠＋角丸＋内側余白）。height:100% で横並び時に等高 */
.card {
    height: 100%;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 24px;
}

/* 見出し左の縦棒（bbbブランド緑）。クラスを足すだけ／外すだけ */
.bar-pink {
    border-left: 5px solid #e595b9;
    padding-left: 8px;
}

/* ドット：余白のみ。HTMLに「・」直書き＋色クラス（.text-pink 等）で着色 */
.dot {
    margin-right: 2px;
}

/* リスト先頭のアイコン画像（check.png 等）。本文に合わせ20px・中央揃え */
.check {
    width: 20px;
    height: auto;
    margin-right: 8px;
    margin-top: -2px;
    vertical-align: middle;
}

/* 余白は section が持つ。中＝padding（pt- pb-）、外＝margin（mt-）。container は中央寄せだけ。
   padding は相殺しないので必ず効く。広げたい section だけ pt- や pb- を足す */
section {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* =========================================================
   Button base (Bootstrap独立化 — 本体含めて自前)
   sorkas 5/18 ポートを bbb に取り込み（⚪︎リング装飾は sorkas 固有のため除外）
   ========================================================= */
.btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px #f4cbe0;
}

.btn-lg {
    padding: 8px 16px;
    font-size: 20px;
    border-radius: 8px;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 4px;
}

/* variant ごとに色を #hex 直書き（color / bg / border の3点を base・hover・active で持つ） */
.btn-pink {
    color: #fff;
    background-color: #e595b9;
    border-color: #e595b9;
}

.btn-pink:hover {
    color: #fff;
    background-color: #d97aa6;
    border-color: #d97aa6;
}

.btn-pink:active {
    color: #fff;
    background-color: #c96695;
    border-color: #c96695;
}

.btn-gray {
    color: #121212;
    background-color: transparent;
    border-color: #121212;
}

.btn-gray:hover {
    color: #fff;
    background-color: #121212;
    border-color: #121212;
}

.btn-gray:active {
    color: #fff;
    background-color: #121212;
    border-color: #121212;
}

/* =========================================================
   Background & Text Color utilities
   ========================================================= */

.bg-black {
    background-color: #000;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-pink {
    background-color: #e595b9;
}

.text-pink {
    color: #e595b9;
}

/* =========================================================
   Display / Flex / Sizing / Misc utilities
   （Bootstrap 卒業: CDN を読まず実使用分のみ自前で持つ）
   ========================================================= */

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.min-vh-100 {
    min-height: 100vh;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 6px;
}

.rounded-pill {
    border-radius: 9999px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.text-decoration-none {
    text-decoration: none;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6;
}

.fw-normal {
    font-weight: 400;
}

/* badge（小ラベル）。色は bg-*／text-* を併用 */
.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 6px;
}

/* アイコン（bootstrap-icons 卒業: SVG 背景で自前。16px・本文中央付近） */
.ico {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: -2px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.ico-chevron-right {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23121212'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.ico-calendar {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23121212'%3e%3cpath d='M14 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M1 3.857C1 3.384 1.448 3 2 3h12c.552 0 1 .384 1 .857v10.286c0 .473-.448.857-1 .857H2c-.552 0-1-.384-1-.857z'/%3e%3cpath d='M6.5 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2'/%3e%3c/svg%3e");
}

/* =========================================================
   Tables (独自・実使用分のみ / Bootstrap互換)
   ========================================================= */

.table {
    width: 100%;
    margin-bottom: 16px;
    vertical-align: top;
    border-color: #dee2e6;
}

.table> :not(caption)>*>* {
    padding: 8px 8px;
    border-bottom: 1px solid #dee2e6;
}

/* アクセス情報表：外枠なし・縦余白たっぷり・ラベル(th)は太字解除して左寄せ */
.info-table> :not(caption)>*>* {
    padding: 20px 8px;
    vertical-align: middle;
}

.info-table th {
    width: 96px;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
    color: #6c757d;
}

.table>thead {
    vertical-align: bottom;
}

.table>tbody {
    vertical-align: inherit;
}

/* table-bordered */
.table-bordered> :not(caption)>* {
    border-width: 1px 0;
    border-style: solid;
    border-color: #dee2e6;
}

.table-bordered> :not(caption)>*>* {
    border-width: 0 1px;
    border-style: solid;
    border-color: #dee2e6;
}

/* table-hover */
.table-hover>tbody>tr:hover>* {
    background-color: #f2f2f2;
}

/* =========================================================
   Forms (独自・実使用分のみ)
   Portions adapted from Bootstrap v5.3.3 (https://getbootstrap.com)
   Copyright 2011-2024 The Bootstrap Authors / Licensed under MIT
   ========================================================= */

.form-label {
    margin-bottom: 8px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}

.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #e595b9;
    outline: 0;
    box-shadow: 0 0 0 4px #f4cbe0;
}

textarea.form-control {
    min-height: calc(24px + 12px + 2px);
}

.form-check {
    display: block;
    min-height: 24px;
    padding-left: 24px;
    margin-bottom: 2px;
}

.form-check-input {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #bfbfbf;
    appearance: none;
    print-color-adjust: exact;
}

.form-check .form-check-input {
    float: left;
    margin-left: -24px;
}

.form-check-input[type="checkbox"] {
    border-radius: 4px;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input:focus {
    border-color: #e595b9;
    outline: 0;
    box-shadow: 0 0 0 4px #f4cbe0;
}

.form-check-input:checked {
    background-color: #e595b9;
    border-color: #e595b9;
}

.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-label {
    cursor: pointer;
}

/* =========================================================
   Design Templates (コピペ用テンプレ)
   ========================================================= */

/* ---------- 3ステップフロー ---------- */
.step-arrow {
    background: #121212;
    color: #fff;
    padding: 14px 32px 14px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.step-num {
    background: #e595b9;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.takeaway-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 16px 20px;
    background: #fff;
    margin-top: 24px;
}

.takeaway-label {
    color: #e595b9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.takeaway-text {
    font-weight: 700;
    margin-top: 6px;
}

/* ---------- 4ステップロードマップ ---------- */
.roadmap-milestone-label {
    color: #6c757d;
    font-size: 12px;
    letter-spacing: 0.96px;
    font-weight: 600;
}

.roadmap-milestone-title {
    font-weight: 700;
    margin-bottom: 14px;
}

.roadmap-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #e595b9;
    border: 2px solid #e595b9;
    background: #fff;
}

.roadmap-circle-filled {
    background: #e595b9;
    color: #fff;
}

/* ---------- 2×2マトリクス ---------- */
.matrix-2x2-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    gap: 16px;
}

.matrix-y-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #6c757d;
    font-size: 14px;
    grid-row: 1;
    grid-column: 1;
    align-self: center;
    justify-self: center;
}

.matrix-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    grid-row: 1;
    grid-column: 2;
}

.matrix-x-label {
    grid-row: 2;
    grid-column: 2;
    text-align: center;
    color: #6c757d;
    font-size: 14px;
}

.matrix-x-label::before,
.matrix-x-label::after {
    content: "——";
    color: #e595b9;
    margin: 0 8px;
}

.matrix-cell {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    min-height: 160px;
}

.matrix-cell-highlight {
    background: #fdeff5;
    border-color: #f0c4d9;
    color: #e595b9;
}

.matrix-coord {
    color: #6c757d;
    font-size: 14px;
}

@media (max-width: 576px) {
    .matrix-y-label {
        display: none;
    }

    .matrix-2x2-wrap {
        grid-template-columns: 1fr;
    }

    .matrix-2x2 {
        grid-column: 1;
    }

    .matrix-x-label {
        grid-column: 1;
    }
}

/* ===== hero スライダー（Swiper 11・進捗バー同期） ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-swiper {
    height: calc(100vh - 62px);
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 62px);
    overflow: hidden;
}

/* 背景レイヤー：店内写真を画面いっぱいに中央表示（cover）。写真未設置でもピンク地で成立（img 差し替えで即完成）。
   白文字の可読性は scrim（暗ピンク・単色＋opacity 分離）で確保する */
.hero-bg {
    position: absolute;
    inset: 0;
    background-color: #e595b9;
    background-size: cover;
    background-position: center;
}

/* 白文字の可読スクリム（暗ピンク・単色＋opacity 分離）。装飾は実要素で持つ（擬似要素禁止） */
.hero-scrim {
    position: absolute;
    inset: 0;
    background: #2e1f27;
    opacity: 0.2;
}

.hero-bg1 {
    background-image: url("../img/s1.png");
}

.hero-bg2 {
    background-image: url("../img/s2.png");
}

.hero-bg3 {
    background-image: url("../img/s3.png");
}

.hero-bg4 {
    background-image: url("../img/s4.png");
}

.hero-copy {
    position: relative;
    z-index: 1;
    transform: translateY(-30px);
    /* 左右のナビ矢印(約40px)に文字が被らないよう左右に余白 */
    padding-left: 44px;
    padding-right: 44px;
    /* 写真背景でも読めるよう白文字に影 */
    text-shadow: 0 2px 14px #000;
}

/* 左右ナビ矢印（白・hover で緑＋矢印方向に5px スライド） */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    color: #e595b9;
}

.hero-swiper .swiper-button-prev:hover {
    transform: translateX(-5px);
}

.hero-swiper .swiper-button-next:hover {
    transform: translateX(5px);
}

/* スライド最上部（header 直下）の autoplay 進捗バー（2px 緑） */
.hero-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e595b9;
    z-index: 20;
}

/* スライド遷移を強めの ease-out（急発進→急減速） */
.hero-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.05, 0.9, 0.1, 1);
}

/* pagination：白枠の輪郭丸。現在地は白枠の中に緑丸 */
.hero-swiper .swiper-pagination {
    bottom: 160px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    border: 1.5px solid #fff;
    background: transparent;
    opacity: 1;
    margin: 0 7px;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #e595b9;
    background-clip: content-box;
    padding: 2px;
}

/* =========================================================
   mascotcat 固有（欧文アクセント / 数字見せ場 / メーカーロゴ / 地図）
   ========================================================= */

/* 欧文アクセント（Staatliches）。店名ロゴ・数字に使う */
.gfont {
    font-family: 'Staatliches', 'Noto Sans JP', sans-serif;
    letter-spacing: 1px;
}

/* 大見出しスケール（数字の見せ場用）。固定px＋768pxで一段（可変は .clamp のみ） */
.big60 {
    font-size: 36px;
    line-height: 1;
}

.big80 {
    font-size: 48px;
    line-height: 1;
}

@media (min-width: 768px) {
    .big60 {
        font-size: 60px;
    }

    .big80 {
        font-size: 80px;
    }
}

/* お店の取扱カテゴリ（特集リスト＝アピールの主役）。大題字＋本文、罫線区切り */
.lineup-item {
    padding: 32px 0;
    border-top: 1px solid #dee2e6;
}

/* 台数は題字脇のピンク差し色。大小の数字＋単位を基線で揃える（big50混在でも下端一致） */
.lineup-count {
    display: inline-flex;
    align-items: baseline;
    margin-left: 12px;
}

/* 数字を gfont（Staatliches）で見せると和文よりベースラインが高く出る。数字側を下げて単位と下端を揃える（書体・サイズ依存・big50＝3px） */
.lineup-count.gfont .big50 {
    position: relative;
    top: 3px;
}

/* 取扱メーカーロゴ（事実表示・カラー常時表示で明るく） */
.maker-logo {
    width: 100%;
    height: 64px;
    object-fit: contain;
}

/* Googleマップ埋め込み（レスポンシブ 16:9） */
.map-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    /* スクショで地図(別ドメインiframe)が取り込めず白抜けする時のフォールバック色。ライブ表示ではマップが上に描画され見えない */
    background: #e9ecef;
}