@charset "UTF-8";

/* =========================================
   共通変数定義（色やサイズの設定）
   ========================================= */
:root {
    --primary-color: #0067c0;   /* メインの青 */
    --primary-dark: #004a8f;    /* 濃い青（文字や強調） */
    --accent-color: #e60012;    /* 赤（アクセント・価格） */
    --warm-color: #f39800;      /* オレンジ（暖かみ・注意） */
    --line-green: #06c755;      /* LINEの色 */
    --bg-light: #f4f8ff;        /* 薄い背景色 */
    --text-color: #333;         /* 基本の文字色 */
    --gold: #d4af37;            /* ゴールド（実績など） */
    
    /* ヘッダーの高さ（デフォルトはLP用） */
    /* ※トップページだけ高さが違うので、トップのHTML側で上書きします */
    --header-height-pc: 60px; 
    --header-height-sp: 60px;

    /* モーション：イージング */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* レスポンシブ：スペーシング */
    --space-section: 40px;
    --space-content: 15px;
    --container-max: 1100px;
}

/* =========================================
   基本設定 (Base)
   ========================================= */
html {
    scroll-behavior: smooth;
    /* ヘッダー固定分の余白を確保 */
    scroll-padding-top: calc(var(--header-height-pc) + 20px);
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background: #fff;
    line-height: 1.6;
    /* 固定ボタンがあるため下部に余白 */
    padding-bottom: 100px;
}

/* ポップアップ表示時に背景スクロールを止める */
body.modal-open, body.popup-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s, color 0.3s;
}
a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    display: block; /* 画像の下に隙間ができないように */
}

/* =========================================
   レイアウト・ユーティリティ (Layout & Utility)
   ========================================= */
.container {
    max-width: 1100px; /* LP基準の幅 */
    margin: 0 auto;
    padding: 0 15px;
}
/* トップページ用にもう少し広い幅が必要な場合 */
.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.center-wrap, .text-center {
    text-align: center;
}

strong, .bold {
    font-weight: bold;
}

/* --- ユーティリティクラス（インラインstyle置き換え用） --- */
.sup-note {
    font-size: 0.5em;
    vertical-align: top;
}

.text-muted {
    font-size: 0.9rem;
    color: #666;
}

.text-muted-sm {
    font-size: 0.85rem;
    color: #666;
}

.text-free {
    color: var(--accent-color);
    font-weight: bold;
}

.text-accent {
    color: var(--accent-color);
}

.text-primary {
    color: var(--primary-color);
}

.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* アイコンフォント設定 */
.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    font-feature-settings: 'liga';
}

/* =========================================
   ヘッダー (Header)
   ========================================= */
header {
    background: #fff;
    position: relative;
    z-index: 1001;
}

.header-top {
    border-bottom: 3px solid var(--primary-color);
    padding: 10px 0;
    background: #fff;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    /* 画像下の隙間調整 */
    vertical-align: bottom;
}

.header-info {
    text-align: right;
    font-size: 0.8rem;
    color: #333;
    line-height: 1.3;
    margin-left: auto;
}

.header-tel-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 2px;
}

.header-tel-num {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-dark);
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
}

/* =========================================
   グローバルナビゲーション (Global Nav)
   ========================================= */
.global-nav {
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    
    /* スクロール追従設定 */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;

    /* CLS防止: 縮小前後でレイアウトが動かないよう高さを固定 */
    min-height: 44px;

    /* モーション：スクロール縮小時のトランジション */
    transition: background-color 0.4s var(--ease-out-quart),
                box-shadow 0.3s var(--ease-out-quart);
}

/* ナビ縮小時（JSで付与） */
.global-nav.is-shrunk {
    background: rgba(248, 248, 248, 0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.08);
}
/* スクロールバーを隠す */
.global-nav::-webkit-scrollbar { height: 0px; }

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: max-content;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: bold;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: #fff;
}

/* =========================================
   セクション共通 (Sections)
   ========================================= */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.4rem, 2.5vw + 0.5rem, 1.8rem);
    color: var(--primary-color);
    position: relative;
    margin-bottom: 40px;
    font-weight: bold;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* =========================================
   お問い合わせセクション共通 (Contact - 全ページ共通)
   ========================================= */
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.25s var(--ease-in-out), box-shadow 0.25s var(--ease-in-out);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    opacity: 1;
}

.contact-card:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

.contact-card:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

.bg-line { background-color: var(--line-green); }
.bg-tel  { background-color: var(--primary-dark); }
.bg-mail { background-color: var(--warm-color); }

.contact-icon-large {
    font-size: 2.8rem !important;
    margin-bottom: 5px;
    line-height: 1;
    transition: transform 0.3s var(--spring);
}

.contact-card:hover .contact-icon-large {
    transform: scale(1.15);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 12px;
    border-radius: 20px;
    border: 2px solid;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.badge-line { color: var(--line-green); border-color: var(--line-green); }
.badge-tel  { color: var(--primary-dark); border-color: var(--primary-dark); }

/* =========================================
   施工実績共通 (Works - aircon/mado共通)
   ========================================= */
.works-section {
    background: #fff;
}

.works-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.works-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.works-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    background: #fff;
}

.works-photo-item {
    position: relative;
    height: 160px;
    border: none;
    padding: 0;
    display: block;
    width: 100%;
}

.works-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.works-photo-btn {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    display: block;
    position: relative;
    background: transparent;
}

.photo-label {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 2;
    pointer-events: none;
}

.works-body {
    padding: 20px;
}

.works-tag {
    display: inline-block;
    background: #ddd;
    color: #333;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.works-title {
    margin: 5px 0 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.works-breakdown {
    font-size: 0.9rem;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    border: 1px dashed #ccc;
}

.works-breakdown ul {
    margin: 5px 0 0;
    padding-left: 0;
    list-style: none;
}

.works-footer {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    color: var(--accent-color);
    border: 1px solid #eee;
    margin-top: 10px;
}

/* =========================================
   スタッフ紹介共通 (Staff - aircon/mado共通)
   ========================================= */
.staff-section {
    background: #e6f0fa;
}

.staff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.staff-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.staff-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    background: #eee;

    margin-left: auto;
    margin-right: auto;
}

.staff-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.staff-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* =========================================
   フッター (Footer)
   ========================================= */
footer {
    background: #333;
    color: #fff;
    padding: 30px 0 100px; /* 固定ボタン分空ける */
    text-align: center;
}

.footer-logo {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    height: 45px;
    width: auto;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-info {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
    font-size: 0.9rem;
}

.footer-copy {
    border-top: 1px solid #555;
    padding-top: 20px;
    color: #9e9e9e; /* コントラスト比4.7:1 on #333 */
    font-size: 0.8rem;
    margin-top: 20px;
}

.footer-link-wrap {
    margin-bottom: 15px; 
    font-size: 0.8rem;
}
.footer-link-wrap a {
    color: #b0b0b0; /* コントラスト比4.6:1 on #333 */
    margin: 0 10px;
}

/* =========================================
   固定ボタン (Fixed Buttons)
   ========================================= */
.fixed-btn-group {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    background: #fff;
}

.fixed-half-btn {
    width: 50%;
    padding: 12px 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.fixed-line {
    background: var(--line-green);
    border-right: 1px solid rgba(255,255,255,0.3);
}

.fixed-tel {
    background: var(--accent-color);
}

.small-txt {
    font-size: 0.75rem;
    font-weight: normal;
    margin-bottom: 2px;
    opacity: 0.9;
    display: block;
}

/* ボタン内のアイコン横並び調整 */
.btn-icon-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* =========================================
   モーダル (Modal)
   ========================================= */
.modal, .popup-overlay {
    /* display は JS(inline style)で制御するため、ここでは初期非表示を維持 */
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
    justify-content: center;
    align-items: center;
    opacity: 0;
    /* フェードイン・アウトのトランジション */
    transition: opacity 0.3s ease;
}

.modal.active, .popup-overlay.active {
    /* display は JSが先に設定済みのため opacityのみ制御 */
    opacity: 1;
}

.modal-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border: 3px solid #fff;
    background-color: #000;
    transform: scale(0.9);
    transition: transform 0.35s var(--ease-out-expo);
}

.modal.active .modal-content {
    transform: scale(1);
}

/* --- チラシポップアップ(#imagePopup) モバイル修正 ---
   iOS Safari では position:fixed + display:flex の内側要素の
   overflow-y:auto スクロールが効かない問題への対処。
   モバイル時はオーバーレイ側をスクロール可能にする。
   ※ PC表示には影響しない                              */
#imagePopup .modal-content-wrapper {
    width: 90%;
    max-width: 800px;
    cursor: default;
}

@media (max-width: 768px) {
    #imagePopup {
        /* オーバーレイ自体をスクロール可能にする */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* コンテンツが長い場合に上端が見えるよう上寄せ */
        align-items: flex-start;
        padding: 15px 0;
        cursor: default;
    }
    #imagePopup .modal-content-wrapper {
        /* インラインstyleの85vh制限を解除し、全コンテンツを展開 */
        max-height: none !important;
        overflow-y: visible !important;
        width: 92%;
        margin: 0 auto;
    }
}

/* =========================================
   ハンバーガーメニュー (Mobile Drawer)
   ========================================= */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    position: relative;
}
.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark, #1a1a2e);
    border-radius: 2px;
    transition: transform 200ms ease-in-out, opacity 200ms ease-in-out;
    will-change: transform;
}
.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity 200ms ease-out;
}
.nav-drawer.is-open {
    opacity: 1;
}
.nav-drawer-inner {
    position: absolute;
    top: 0; right: 0;
    width: min(280px, 85vw);
    height: 100%;
    background: #fff;
    padding: 72px 0 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.16,1,0.3,1);
    will-change: transform;
}
.nav-drawer.is-open .nav-drawer-inner {
    transform: translateX(0);
}
.nav-drawer-inner a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-dark, #1a1a2e);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    min-height: 48px;
}
.nav-drawer-inner a.active {
    color: var(--primary-color);
}
.nav-drawer-inner a:hover {
    background: var(--bg-light, #f4f8ff);
    opacity: 1;
}

/* =========================================
   スマホ対応 (Responsive)
   ========================================= */
@media (max-width: 768px) {
    html {
        scroll-padding-top: calc(var(--header-height-sp) + 20px);
    }
    
    /* ヘッダーの電話番号などを隠す */
    .header-info {
        display: none;
    }

    /* ハンバーガーボタンを表示 */
    .hamburger-btn {
        display: flex;
    }

    /* デスクトップ用ナビバーごと非表示（ハンバーガーに切替） */
    .global-nav {
        display: none;
    }

    /* スタッフ画像をスマホで小さく */
    .staff-img {
        width: 100px;
        height: 100px;
    }

    .staff-name {
        font-size: 1rem;
    }

    .staff-desc {
        font-size: 0.8rem;
    }
}

/* =========================================
   PC時：電話リンク無効化
   ========================================= */
@media (min-width: 1024px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

/* =========================================
   スクロールフェードイン (Scroll Fade-in)
   main.js の IntersectionObserver と連動
   使い方: HTMLに class="fade-in" を追加
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* スタッガー用: data-delay属性をJSで transition-delay に変換 */

/* バリエーション: 左からスライドイン（選ばれる理由セクション用） */
.slide-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.slide-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* バリエーション: スケールイン（CTAボタン用） */
.scale-in {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    transition: opacity 0.5s var(--spring), transform 0.5s var(--spring);
}

.scale-in.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ヒーロー読み込みシークエンス */
.hero-anim-image {
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.hero-anim-image.is-loaded {
    opacity: 1;
    transform: scale(1);
}

.hero-anim-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.hero-anim-text.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero-anim-sub {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
    transition-delay: 0.2s;
}
.hero-anim-sub.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero-anim-cta {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    transition: opacity 0.5s var(--spring), transform 0.5s var(--spring);
    transition-delay: 0.4s;
}
.hero-anim-cta.is-loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* アニメーション無効設定を尊重（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in, .slide-in-left, .scale-in,
    .hero-anim-image, .hero-anim-text, .hero-anim-sub, .hero-anim-cta {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================
   スキップナビゲーション (Skip Link)
   アクセシビリティ: WCAG 2.4.1
   ========================================= */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--primary-color);
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    top: 0;
    opacity: 1;
}

/* スクリーンリーダー専用（視覚的に非表示） */
.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;
}

/* =========================================
   フォーカスインジケーター (Focus Visible)
   アクセシビリティ: WCAG 2.4.7
   ========================================= */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* =========================================
   タブレット対応 (Tablet: 768px〜1023px)
   ========================================= */
@media (min-width: 768px) {
    :root {
        --space-section: 50px;
        --space-content: 25px;
    }
}

/* =========================================
   タブレット専用 (Tablet only: 768px〜1023px)
   ========================================= */
@media (min-width: 768px) and (max-width: 1023px) {
    /* コンテナ幅：タブレットでは少しゆとりを持たせる */
    .container {
        padding: 0 24px;
    }

    /* ハブカード等のグリッド：2列に調整 */
    .hub-grid,
    [data-stagger] {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ヒーローエリアの高さ：タブレットは中間値 */
    .hero-photo-area {
        height: clamp(220px, 35vw, 380px);
    }

    /* セクション見出しフォントサイズ調整 */
    .section-title {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }

    /* 固定ボタングループ：タブレットでも表示（スマホと同様） */
    .fixed-btn-group {
        display: flex;
    }
    body {
        padding-bottom: 90px;
    }
}

/* =========================================
   デスクトップ対応 (Desktop: 1024px〜)
   ========================================= */
@media (min-width: 1024px) {
    :root {
        --space-section: 60px;
        --space-content: 40px;
        --container-max: 1100px;
    }
    
    /* PC: 固定フローティングボタン非表示 */
    .fixed-btn-group {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
    footer {
        padding-bottom: 30px;
    }
}

/* =========================================
   印刷時 (Print) ※独立したメディアクエリ
   ========================================= */
/* ─── パンくずリスト（共通） ─── */
.breadcrumb-nav { background: #f9f9f9; border-bottom: 1px solid #eee; padding: 8px 0; font-size: 0.85rem; }
.breadcrumb-list { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; margin: 0; padding: 0; }
.breadcrumb-list li::after { content: "›"; margin-left: 6px; color: #999; }
.breadcrumb-list li:last-child::after { content: ""; }
.breadcrumb-list a { color: var(--primary-color); text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }

@media print {
    .fixed-btn-group,
    .global-nav,
    .header-info {
        display: none !important;
    }
    body {
        padding-bottom: 0 !important;
        color: #000 !important;
        background: #fff !important;
    }
    .container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}