        /* --- CSSリセット & 基本設定 --- */
        body,
        h1,
        h2,
        h3,
        p,
        ul,
        li {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #fdfdfd;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img,
        iframe {
            max-width: 100%;
            height: auto;
            vertical-align: bottom;
            border: none;
        }

        /* --- ヘッダー --- */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #fff;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-logo {
            font-weight: bold;
            font-size: 24px;
            font-family: serif;
        }

        .header-nav ul {
            display: flex;
            list-style: none;
        }

        .header-nav li a {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: bold;
            transition: color 0.3s;
        }

        .header-nav li a:hover {
            color: #bfa980;
        }

        /* --- メインビジュアル (Hero) --- */
        .hero {
            position: relative;
            text-align: center;
            color: white;
            background-color: #333;
        }

        .hero-image-container {
            width: 100%;
            height: 60vh;
            overflow: hidden;
            display: flex;
        }

        .hero-image-container .image-half {
            width: 50%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-color: #555;
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: italic;
            color: #aaa;
        }

        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.5);
            padding: 30px 40px;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .hero h1 {
            font-family: serif;
            font-size: 2.8em;
            margin-bottom: 0.5em;
            font-weight: normal;
        }

        .hero p {
            font-size: 1.1em;
        }

        /* --- コンテンツ共通スタイル --- */
        .section {
            padding: 80px 40px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: serif;
            font-size: 2.2em;
            font-weight: normal;
            margin-bottom: 10px;
            color: #333;
        }

        .section-title p {
            font-size: 14px;
            color: #bfa980;
            font-weight: bold;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .content-text h3 {
            font-family: serif;
            font-size: 1.8em;
            font-weight: normal;
            margin-bottom: 20px;
            border-left: 3px solid #bfa980;
            padding-left: 15px;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            min-height: 350px;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            font-style: italic;
        }

        /* --- 各セクション --- */
        #concept {
            background-color: #f8f8f8;
        }

        /* --- サービスセクション --- */
        /* style.css 内 */
        .service-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            gap: 30px;
            text-align: center;
            max-width: 800px; 
            margin: 0 auto;  
        }
        .service-card {
            border: 1px solid #eee;
            background-color: #fff;
            padding: 30px;
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .service-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .service-card h3 {
            font-family: serif;
            font-size: 1.5em;
            color: #bfa980;
            margin-bottom: 15px;
        }

        .service-card .price {
            font-size: 1.8em;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .service-card .price span {
            font-size: 0.6em;
            font-weight: normal;
        }

        .service-card p {
            text-align: left;
            font-size: 0.9em;
            margin-bottom: 20px;
        }

        .service-card ul {
            list-style: none;
            text-align: left;
            font-size: 0.9em;
            margin-bottom: 30px;
        }

        .service-card li {
            padding-left: 1.5em;
            background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23bfa980"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: 1em;
            margin-bottom: 10px;
        }

        .service-card .card-label {
            display: inline-block;
            background-color: #2c3e50;
            color: white;
            padding: 5px 15px;
            font-size: 0.8em;
            font-weight: bold;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        /* --- スタイリング事例セクション --- */
        #gallery {
            background-color: #f8f8f8;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 15px;
            font-size: 14px;
            transform: translateY(100%);
            transition: transform 0.4s;
        }

        .gallery-item:hover .caption {
            transform: translateY(0);
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            min-height: 300px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            text-align: center;
            transition: filter 0.4s;
        }

        .gallery-item:hover .gallery-placeholder {
            filter: brightness(0.95);
        }

        /* ギャラリー新グリッド */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            grid-auto-flow: dense;
        }

        .gallery-item.item-large {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .gallery-item.item-large .gallery-placeholder {
            min-height: 400px;
        }

        .gallery-item.item-wide {
            grid-column: span 2;
        }

        /* --- 店舗・アクセスセクション --- */
        #access {
            background-color: #2c3e50;
            color: #f0f0f0;
        }

        #access .section-title p {
            color: #bfa980;
        }

        .access-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .store-photos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .store-info-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .store-info-list li {
            display: flex;
            margin-bottom: 15px;
            align-items: baseline;
        }

        .store-info-list .label {
            font-weight: bold;
            width: 80px;
            flex-shrink: 0;
        }

        .map-container {
            width: 100%;
            height: 400px;
            background-color: #555;
            margin-bottom: 30px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .cta-button {
            display: inline-block;
            background-color: #bfa980;
            color: white;
            padding: 15px 40px;
            font-weight: bold;
            border-radius: 5px;
            transition: opacity 0.3s;
            text-align: center;
        }

        .cta-button:hover {
            opacity: 0.8;
        }

        /* --- フッター --- */
        .footer {
            background-color: #333;
            color: #ccc;
            text-align: center;
            padding: 40px 20px;
            font-size: 14px;
        }

        /* ===============================================
   レスポンシブ対応 (768px以下のスクリーン)
   =============================================== */

        @media (max-width: 768px) {

            /* --- 全体的な調整 --- */
            .section {
                padding: 60px 20px;
                /* 余白を少し狭くする */
            }

            /* --- ヘッダー --- */
            .header {
                flex-direction: column;
                /* ロゴとナビを縦並びに */
                padding: 15px;
            }

            .header-logo {
                margin-bottom: 15px;
            }

            .header-nav li a {
                padding: 10px;
                font-size: 13px;
            }

            /* --- メインビジュアル --- */
            .hero-image-container {
                flex-direction: column;
                /* 2枚の写真を縦積みに */
                height: 70vh;
                /* 高さを少し調整 */
            }

            .hero-image-container .image-half {
                width: 100%;
                height: 50%;
            }

            .hero h1 {
                font-size: 2em;
                /* 文字を少し小さく */
            }

            .hero p {
                font-size: 1em;
            }

            /* --- 2カラムレイアウトを1カラムに --- */
            .content-grid,
            .access-grid {
                grid-template-columns: 1fr;
                /* 1カラムに変更 */
            }

            .access-grid .store-photos {
                order: 2;
                /* スマホでは写真が情報の下に来るように順番変更 */
            }

            .access-grid .store-info {
                order: 1;
            }

            /* --- 3カラム、4カラムレイアウトを1カラムに --- */
            .service-container,
            .gallery-container,
            .gallery-grid {
                grid-template-columns: 1fr;
                /* 1カラムに変更 */
            }

            .gallery-item.item-large, .gallery-item.item-wide {
                grid-column: span 1;
                grid-row: span 1;
            }

            .gallery-item.item-large .gallery-placeholder {
                min-height: 250px;
            }
        }
        /* service.html の詳細説明エリアのスタイル */
.service-details-container {
    margin-top: 100px;
}
.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}
/* 奇数番目と偶数番目で写真とテキストの配置を入れ替える */
.service-detail-item:nth-child(even) .image-placeholder {
    order: 2;
}
.service-detail-item:nth-child(even) .content-text {
    order: 1;
}
.service-detail-item ul {
    list-style: none;
    margin-top: 20px;
}
.service-detail-item li {
    margin-bottom: 10px;
}

/* レスポンシブ対応：スマホでは1カラムに */
@media (max-width: 768px) {
    .service-detail-item {
        grid-template-columns: 1fr;
    }
    .service-detail-item:nth-child(even) .image-placeholder {
        order: initial; /* PC用の順番指定をリセット */
    }
    .service-detail-item:nth-child(even) .content-text {
        order: initial;
    }
}
/* サービスカードをリンクにした際のスタイル調整 */
a.service-card-link {
    display: block; /* aタグをブロック要素にして、幅と高さを持つようにする */
    color: #333; /* リンクのデフォルト色（青）をリセット */
    text-decoration: none; /* リンクの下線を消す */
}
/* ===============================================
   Serviceページ 詳細説明エリアのスタイル
   =============================================== */
.service-details-container {
    margin-top: 100px;
}
.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-top: 80px; /* ジャンプしたときに見出しがヘッダーに隠れないように調整 */
    margin-top: -80px; /* 上のpadding分を相殺 */
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}
.service-detail-item:first-child {
    border-top: 1px solid #eee;
    margin-top: -30px; /* 最初のアイテムだけマージンを調整 */
}
/* 奇数番目と偶数番目で写真とテキストの配置を入れ替える */
.service-detail-item:nth-child(even) .image-placeholder {
    order: 2;
}
.service-detail-item:nth-child(even) .content-text {
    order: 1;
}
.service-detail-item ul {
    list-style: none;
    margin-top: 20px;
}
.service-detail-item li {
    margin-bottom: 10px;
}

/* レスポンシブ対応：スマホでは1カラムに */
@media (max-width: 768px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        padding-top: 60px;
        margin-top: -60px;
    }
    .service-detail-item:first-child {
        margin-top: -30px;
    }
    .service-detail-item:nth-child(even) .image-placeholder {
        order: initial; /* PC用の順番指定をリセット */
    }
    .service-detail-item:nth-child(even) .content-text {
        order: initial;
    }
}
/* サービスカードをリンクにした際のスタイル調整 */
a.service-card-link {
    display: block;
    color: #333;
    text-decoration: none;
}
/* --- スマホ用固定電話ボタン --- */
.fixed-call-btn {
    display: none; /* PCでは隠す */
}

@media (max-width: 768px) {
    .footer {
        padding-bottom: 80px; /* ボタンと被らないように余白確保 */
    }
    .fixed-call-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #bfa980; /* お店のテーマカラー（ゴールド） */
        color: white;
        font-weight: bold;
        font-size: 18px;
        text-decoration: none;
        z-index: 9999; /* 最前面に表示 */
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    .fixed-call-btn .icon {
        margin-right: 10px;
        font-size: 20px;
    }
}

/* ===============================================
   モダンデザイン用スタイル (modern-style.css より統合)
   =============================================== */

/* --- CSS Reset & Fonts --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    color: #333;
    background-color: #fcfcfc;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.header-logo,
.service-card .price {
    font-family: 'Noto Serif JP', serif !important;
}

:root {
    --primary-color: #bfa980;
    --primary-dark: #a8946e;
    --dark-bg: #1a202c;
    --text-color: #333;
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up {
    transform: translateY(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.fade-left {
    transform: translateX(40px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Header --- */
.header {
    background-color: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}

.header-nav li a {
    position: relative;
}

.header-nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.header-nav li a:hover::after {
    width: 70%;
}

/* --- Hero Section --- */
.hero {
    height: 80vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 !important;
    background-color: transparent !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-text {
    z-index: 1 !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 20px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
}

.hero h1 {
    font-size: 3.5em !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2em !important;
    font-weight: 300 !important;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

/* --- Sections --- */
.section {
    padding: 120px 40px !important;
}

.section-title h2 {
    font-size: 2.5em !important;
    letter-spacing: 0.05em;
}

.section-title p {
    letter-spacing: 0.2em;
}

.container {
    max-width: 1200px !important;
}

.content-grid {
    gap: 80px !important;
}

.content-text h3 {
    font-size: 2em !important;
    line-height: 1.4 !important;
}

.rounded-image {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

/* --- Service Cards --- */
.service-card {
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    position: relative;
    overflow: hidden;
    padding: 50px 40px !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-8px) !important;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* --- Gallery Override --- */
.gallery-item {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    aspect-ratio: 1/1;
    background: #eee;
}

.btn-outline {
    display: inline-block;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 45px;
    font-weight: bold;
    border-radius: 40px;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* --- Access Override --- */
.dark-section {
    background-color: var(--dark-bg) !important;
    color: #fff !important;
}

.dark-section h2,
.dark-section h3 {
    color: #fff !important;
}

.dark-section p,
.dark-section li {
    color: #f0f0f0 !important;
}

#access {
    background-color: var(--dark-bg) !important;
}

.access-grid {
    gap: 70px !important;
}

.store-photos img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
}

.cta-button {
    border-radius: 40px !important;
}

.store-info-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.store-info-list .label {
    color: var(--primary-color) !important;
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Hero CTA Buttons --- */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 169, 128, 0.4);
}

.btn-ghost {
    display: inline-block;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* --- Service Page: Intro & Details --- */
.service-intro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 60px;
    line-height: 2;
}

.service-intro h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.service-detail-image {
    height: 400px;
    width: 100%;
}

.service-detail-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.service-detail-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    border-left: none;
    padding-left: 0;
}

.detail-specs {
    padding-left: 0;
    color: #555;
}

.detail-flow-title {
    margin-top: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.detail-flow-steps {
    list-style-type: decimal;
    margin-left: 20px;
    padding-top: 15px;
    color: #555;
}

.detail-flow-steps li {
    margin-bottom: 1em;
}

.card-label.dark-label {
    background-color: var(--dark-bg);
}

.price-suffix {
    font-size: 0.6em;
    font-family: 'Noto Sans JP', sans-serif;
}

/* --- 2×2 Service Grid --- */
.service-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    max-width: 900px;
    margin: 0 auto;
}

.service-grid-4 .service-card h3 {
    display: block;
    width: fit-content;
    margin: 0 auto 15px auto;
    font-size: 1.6em !important;
    color: var(--primary-dark) !important;
    letter-spacing: 0.08em;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.card-label.shirt-label {
    background: linear-gradient(135deg, #5b7fa6, #6e9cc7);
}

.card-label.coat-label {
    background: linear-gradient(135deg, #6b5b4e, #8a7668);
}

@media (max-width: 600px) {
    .service-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

/* --- Owner Page --- */
.owner-name-wrap {
    margin-bottom: 25px;
}

.owner-title {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-bottom: 5px;
}

.owner-name {
    border: none;
    padding-left: 0;
    font-size: 2.2em;
    line-height: 1.2;
    margin-bottom: 5px;
}

.owner-name-en {
    display: block;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.25em;
    font-family: 'Noto Serif JP', serif;
}

.owner-subtitle {
    font-size: 1.5em;
    font-weight: normal;
    margin-bottom: 20px;
}

.owner-section-block {
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.owner-section-heading {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.timeline {
    list-style: none;
    border-left: 2px solid #eee;
    padding-left: 20px;
}

.timeline li {
    margin-bottom: 1.5em;
}

.qa-list dt {
    font-weight: bold;
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
    margin-top: 30px;
}

.qa-list dt:first-of-type {
    margin-top: 20px;
}

.qa-list dd {
    margin: 10px 0 0 15px;
    color: #555;
}

/* --- Gallery Intro --- */
.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 60px;
}

/* --- Store Photos: subtle border for dark background --- */
.store-photos img {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* --- Utility Classes --- */
.mb-80 { margin-bottom: 80px; }
.mb-120 { margin-bottom: 120px; }
.pt-50 { padding-top: 50px; }

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .section {
        padding: 80px 20px !important;
    }

    .hero {
        height: 70vh !important;
    }

    .hero h1 {
        font-size: 2.2em !important;
    }

    .content-grid {
        gap: 40px !important;
    }

    .access-grid {
        gap: 40px !important;
    }

    /* Hamburger menu - mobile */
    .hamburger {
        display: flex;
    }

    .header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
    }

    .header-logo {
        margin-bottom: 0 !important;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .header-nav.active {
        display: block;
    }

    .header-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .header-nav li a {
        display: block;
        padding: 16px 30px !important;
        font-size: 15px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    /* Gallery caption always visible on mobile */
    .gallery-item .caption {
        transform: translateY(0) !important;
        position: relative !important;
        background: rgba(0, 0, 0, 0.75);
    }

    /* Fix content hidden behind fixed footer */
    main {
        padding-bottom: 70px;
    }

    /* Hero CTA responsive */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-ghost,
    .btn-ghost-dark {
        padding: 14px 32px;
        font-size: 14px;
        width: 80%;
        text-align: center;
    }

    .scene-grid {
        grid-template-columns: 1fr !important;
    }

    .consultation-cta {
        flex-direction: column !important;
        align-items: center !important;
    }

    .consultation-cta .btn-primary,
    .consultation-cta .btn-ghost-dark {
        width: 85%;
    }
}

/* ===============================================
   「こんなシーンで」セクション
   =============================================== */
.scene-section {
    background-color: #f7f5f0;
}

.scene-intro {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    color: #555;
    line-height: 2;
}

.scene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.scene-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.scene-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.scene-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.scene-card:hover::before {
    transform: scaleX(1);
}

.scene-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.scene-card-content {
    padding: 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.scene-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15em;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--dark-bg);
    border-left: none;
    padding-left: 0;
}

.scene-card p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .scene-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .scene-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   無料相談バナーセクション
   =============================================== */
.consultation-banner {
    background: linear-gradient(135deg, #1a202c 0%, #2c3e50 100%);
    text-align: center;
    color: #fff;
}

.consultation-content {
    max-width: 750px;
    margin: 0 auto;
}

.consultation-content h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.2em;
    font-weight: 500;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: 0.05em;
}

.consultation-content p {
    font-size: 1.05em;
    line-height: 2;
    color: #ddd;
    margin-bottom: 36px;
}

.consultation-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ghost-dark {
    display: inline-block;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-ghost-dark:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
}