@charset "UTF-8";

/* ========================================================
   1. 外部フォント（源ノ明朝/Shippori Mincho・Montserrat・Garamond）
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Noto+Serif+JP:wght@400;600;700&family=Shippori+Mincho:wght@500;700&display=swap');

/* ========================================================
   2. ベーススタイル＆変数定義
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #004d33;          /* 統一スタバグリーン */
    --text-white: #ffffff;
    --text-sub: rgba(255, 255, 255, 0.85);
    --border-light: rgba(255, 255, 255, 0.2);
    --card-bg: rgba(0, 0, 0, 0.18);
    
    --font-en-head: 'Montserrat', sans-serif;
    --font-en-century: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    --font-en-serif: 'Cormorant Garamond', Georgia, serif;
    --font-ja-mincho: "source-han-serif-japanese", "Source Han Serif JP", "Genno Mincho", "Noto Serif JP", 'Shippori Mincho', "Yu Mincho", "游明朝", serif;
    --font-ja-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: var(--font-ja-sans);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
}

body.is-loading,
body.modal-open {
    overflow: hidden;
}

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

/* ========================================================
   3. オープニング（暗転フラッシュ）
========================================================= */
.opening-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #051a12;
    transition: transform 0.9s cubic-bezier(0.85, 0, 0.15, 1);
    transform: translateY(0);
}
.opening-overlay.is-opened { transform: translateY(-100%); }

.opening-stage {
    position: relative;
    width: 300px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) { .opening-stage { width: 380px; } }

.flash-wrapper { position: absolute; width: 100%; height: 100%; top: 0; left: 0; transition: opacity 0.3s ease; z-index: 2; }
.flash-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; visibility: hidden; }
.flash-img.is-active { opacity: 1; visibility: visible; }

.main-hero-view {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0; object-fit: cover; opacity: 0;
    transform: scale(1.1); transition: opacity 0.8s var(--ease-out-expo), transform 1.4s var(--ease-out-expo); z-index: 1;
}
.opening-overlay.is-hero-phase .main-hero-view { opacity: 1; transform: scale(1); }
.opening-overlay.is-hero-phase .flash-wrapper { opacity: 0; }
.opening-overlay.is-fadeout .opening-stage { opacity: 0; }
.opening-overlay.is-hidden { display: none; }


/* ========================================================
   4. ヘッダー（タイポグラフィ ＆ PC/SP改行制御）
========================================================= */
.lookbook-header {
    text-align: center;
    padding: 120px 24px 90px;
    background-color: var(--bg-dark);
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.brand-logo { 
    display: flex; 
    justify-content: center;
    align-items: center;
    margin-bottom: 50px; 
    width: 100%;
}
.brand-logo img {
    max-width: 280px;
    width: 100%;
    height: auto !important;
    object-fit: contain;
    display: block;
}
@media (min-width: 768px) { 
    .brand-logo { margin-bottom: 60px; } 
    .brand-logo img { max-width: 340px; }
}

.concept-lead { 
    max-width: 820px; 
    margin: 0 auto; 
    text-align: center;
}

.sub-credit {
    font-family: var(--font-en-century);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-sub);
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.main-title-mincho { 
    font-family: var(--font-ja-mincho);
    font-size: 20px; 
    font-weight: 400; 
    letter-spacing: 0.1em; 
    margin-bottom: 32px; 
    line-height: 1.9; 
    color: var(--text-white);
}

.concept-lead p.lead-text { 
    font-size: 13px; 
    letter-spacing: 0.08em; 
    line-height: 2.3; 
    color: var(--text-sub); 
}

/* PC/SP改行切り替え用指定 */
.pc-br {
    display: inline;
}
.sp-br {
    display: none;
}

/* ヘッダーのふわっと浮き出るキーフレーム設定 */
.js-header-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: headerFadeIn 1.2s var(--ease-out-expo) forwards;
}

body:not(.is-loading) .js-header-reveal.delay-1 { animation-delay: 0.2s; }
body:not(.is-loading) .js-header-reveal.delay-2 { animation-delay: 0.4s; }
body:not(.is-loading) .js-header-reveal.delay-3 { animation-delay: 0.6s; }
body:not(.is-loading) .js-header-reveal.delay-4 { animation-delay: 0.8s; }

@keyframes headerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .pc-br {
        display: none;
    }
    .sp-br {
        display: inline;
    }
    
    .concept-lead p.lead-text {
        text-align: left;
    }
    
    .sub-credit,
    .main-title-mincho {
        text-align: center;
    }
    
    .main-title-mincho {
        font-size: 17px;
        line-height: 1.8;
    }
}


/* ========================================================
   5. ナビゲーション（Glassmorphism固定）
========================================================= */
.lookbook-nav {
    position: sticky;
    top: 0;
    background-color: rgba(0, 77, 51, 0.92); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
    padding: 14px 20px; 
    display: flex; 
    justify-content: flex-start; 
    gap: 24px;
    overflow-x: auto; 
    white-space: nowrap; 
    -webkit-overflow-scrolling: touch;
}
.lookbook-nav::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { 
    .lookbook-nav { justify-content: center; overflow-x: visible; padding: 18px 0; gap: 36px; } 
}

.lookbook-nav a { 
    display: inline-flex; 
    flex-direction: column; 
    align-items: center; 
    color: rgba(255, 255, 255, 0.45); 
    transition: all 0.3s var(--ease-out-expo); 
    padding: 4px 6px; 
}
.nav-num { 
    font-family: var(--font-en-head); 
    font-size: 13px; 
    font-weight: 600; 
    letter-spacing: 0.12em; 
}
.nav-theme { 
    font-size: 9px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
}
.lookbook-nav a:hover, 
.lookbook-nav a.active { 
    color: var(--text-white); 
    transform: translateY(-1px);
}


/* ========================================================
   6. ルックセクション ＆ メインスライダー
========================================================= */
.lookbook-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 20px 0;
}

.look-section {
    margin-bottom: 110px;
    padding-bottom: 90px;
    border-bottom: 1px solid var(--border-light);
}
.look-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.look-main-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
}
@media (min-width: 768px) {
    .look-main-grid { 
        display: grid;
        grid-template-columns: 52% 1fr; 
        gap: 60px; 
        align-items: start; 
    }
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4; 
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 2px;
}
@media (min-width: 768px) {
    .slider-container {
        position: sticky;
        top: 90px;
    }
}

.slider-wrapper { 
    display: flex; 
    width: 100%; 
    height: 100%; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
}
.slider-wrapper::-webkit-scrollbar { display: none; }
.slider-slide { 
    width: 100%; 
    height: 100%; 
    flex-shrink: 0; 
    scroll-snap-align: start; 
    overflow: hidden;
}
.slider-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.8s var(--ease-out-expo);
}
.slider-container:hover .slider-slide img {
    transform: scale(1.05);
}

.slider-btn {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0,0,0,0.5); 
    border: 1px solid var(--text-white); 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    cursor: pointer; 
    font-size: 11px; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    z-index: 10; 
    color: var(--text-white);
    transition: all 0.3s ease;
}
.slider-btn:hover { background: var(--text-white); color: #000; }
.btn-prev { left: 16px; } 
.btn-next { right: 16px; }
@media (min-width: 768px) { .slider-btn { display: flex; } }

.slider-dots { 
    position: absolute; 
    bottom: 18px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 8px; 
    z-index: 10; 
}
.dot { 
    width: 6px; 
    height: 6px; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.4); 
    cursor: pointer; 
    transition: all 0.3s ease; 
}
.dot.active { 
    background: var(--text-white); 
    width: 22px; 
    border-radius: 3px; 
}


/* ========================================================
   7. 右情報エリア
========================================================= */
.look-info-box { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    width: 100%; 
    min-width: 0;
}

.look-meta { 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
    border-bottom: 1px solid var(--border-light); 
    padding-bottom: 14px; 
}

.look-number { 
    font-family: var(--font-en-head); 
    font-size: 13px; 
    font-style: italic;
    font-weight: 300; 
    letter-spacing: 0.2em; 
    text-transform: uppercase; 
    color: var(--text-sub);
    line-height: 1;
}

.look-theme-tag { 
    font-family: var(--font-en-head); 
    font-size: 32px; 
    font-weight: 700;
    letter-spacing: 0.08em; 
    text-transform: uppercase; 
    line-height: 1.1;
    color: var(--text-white);
}

.look-caption-text { 
    font-size: 13px; 
    line-height: 2.0; 
    letter-spacing: 0.04em; 
    color: var(--text-white);
    opacity: 0.92;
}


/* ========================================================
   8. スタッフ＆ドリンク（★矢印の下線を完全に消去）
========================================================= */
.look-details-stack {
    display: flex;
    flex-direction: column;
    gap: 18px; 
    width: 100%;
}

.look-profile-block {
    background-color: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 20px 20px; 
    display: flex;
    flex-direction: column;
    gap: 22px; 
    border-radius: 3px;
}

.profile-unit {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}
.profile-unit:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.prof-staff-name { 
    font-family: var(--font-en-head);
    font-size: 12px; 
    font-weight: 500; 
    letter-spacing: 0.1em; 
    border-left: 2px solid var(--text-white); 
    padding-left: 8px; 
    text-transform: uppercase; 
    margin-bottom: 2px;
}

.prof-staff-name a.is-link {
    color: var(--text-white);
    text-decoration: none !important; /* 全体の下線解除 */
    transition: opacity 0.2s ease;
    display: inline;
}

.prof-staff-name a.is-link .link-text {
    text-decoration: underline !important; /* テキスト部分のみ下線適用 */
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.45) !important;
}

.prof-staff-name a.is-link:hover .link-text {
    opacity: 0.8;
    text-decoration-color: var(--text-white) !important;
}

.prof-staff-name .link-icon {
    font-size: 11px;
    font-family: var(--font-ja-sans);
    margin-left: 3px;
    text-decoration: none !important; /* 矢印の下線を打ち消し */
    display: inline-block;
}

.prof-drink-label { 
    font-family: var(--font-en-head);
    font-size: 10px; 
    font-weight: 500; 
    letter-spacing: 0.18em; 
    color: var(--text-sub); 
    opacity: 0.65;
    text-transform: uppercase; 
    margin-top: 2px;
}

.prof-drink-name { 
    font-family: var(--font-ja-sans); 
    font-size: 14px; 
    font-weight: 700; 
    letter-spacing: 0.03em; 
    line-height: 1.35;
    margin-top: 2px;
    margin-bottom: 2px; 
}

.prof-drink-text { 
    font-family: var(--font-ja-sans);
    font-size: 11.5px; 
    line-height: 1.6; 
    color: var(--text-sub); 
}


/* ========================================================
   9. 着用商品カード
========================================================= */
.look-items-slider-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.items-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 6px;
}
.items-grid::-webkit-scrollbar { display: none; }

.item-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    width: 38%;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    color: var(--text-white);
}
@media (max-width: 767px) {
    .item-card {
        width: 42%;
    }
}

.item-card:hover {
    transform: translateY(-3px);
}

.item-img-box { 
    aspect-ratio: 3 / 4; 
    background-color: #fff; 
    overflow: hidden; 
    margin-bottom: 8px; 
    border: none;
    border-radius: 2px;
}
.item-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s var(--ease-out-expo);
}
.item-card:hover .item-img-box img {
    transform: scale(1.08);
}

.item-brand { 
    font-family: var(--font-en-head);
    font-size: 8.5px;             
    font-weight: 300;             
    margin-bottom: 4px; 
    color: rgba(255, 255, 255, 0.55); 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.item-name { 
    font-family: var(--font-ja-sans);
    font-size: 11px; 
    font-weight: 400;
    line-height: 1.4; 
    height: 2.8em; 
    overflow: hidden; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    margin-bottom: 8px; 
    letter-spacing: 0.02em; 
    color: #ffffff;
}

.item-meta-row {
    display: flex;
    justify-content: space-between; 
    align-items: baseline;
    border-top: 1px solid var(--border-light);
    padding-top: 6px;
    margin-top: auto;
    font-family: var(--font-en-head);
}
.item-size { font-size: 10px; letter-spacing: 0.06em; font-weight: 500; color: var(--text-sub); }
.item-price { font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; }


/* ========================================================
   9.5. アイテム一覧（ALL ITEMS）CTAブロック
========================================================= */
.all-items-cta-block {
    margin: 100px calc(50% - 50vw) 0;
    padding: 90px 24px;
    background-color: #023822;
    border: none !important;
    text-align: center;
    width: 100vw;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-sub {
    font-family: var(--font-en-century);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-sub);
    margin-bottom: 8px;
    opacity: 0.85;
}

.cta-title {
    font-family: var(--font-en-head);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: var(--text-white);
}

.cta-lead {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--text-sub);
    margin-bottom: 36px;
}

.all-items-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 42px;
    background-color: var(--text-white);
    color: #000;
    font-family: var(--font-en-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 40px;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.all-items-btn:hover {
    background-color: #004d33;
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.all-items-btn .btn-arrow {
    font-size: 14px;
    font-family: var(--font-ja-sans);
    transition: transform 0.2s ease;
}

.all-items-btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}


/* ========================================================
   10. スクロール連動フェードイン
========================================================= */
.js-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.js-reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================================
   11. フッターエリア
========================================================= */
.lookbook-footer {
    background-color: var(--bg-dark);
    border-top: none !important;
    padding: 60px 24px 80px;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.pagetop-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagetop-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
    opacity: 0.85;
}

.pagetop-btn:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.pagetop-btn .arrow-icon { 
    font-size: 20px; 
    font-family: var(--font-ja-sans);
    line-height: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.footer-brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer-brand-logo img {
    max-width: 220px;
    width: 100%;
    height: auto !important;
    object-fit: contain;
    display: block;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-nav-list {
        flex-direction: row;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.footer-nav-list a {
    font-family: var(--font-en-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-sub);
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.copyright {
    font-family: var(--font-en-head);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-sub);
    opacity: 0.7;
}


/* ========================================================
   12. 追従ボタン ＆ 店舗モーダル（★取扱店舗の矢印下線を消去）
========================================================= */
.store-trigger-floating {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), visibility 0.4s ease;
    pointer-events: none;
}

.store-trigger-floating.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.store-trigger-btn {
    background-color: rgba(5, 26, 18, 0.9);
    color: var(--text-white);
    border: 1px solid var(--border-light);
    padding: 12px 22px;
    border-radius: 40px;
    font-family: var(--font-ja-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.store-trigger-btn:hover {
    background-color: var(--text-white);
    color: #000;
    border-color: var(--text-white);
}

.store-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 26, 18, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s ease;
}

.store-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.store-modal-container {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 540px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 2px;
    padding: 36px 28px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s var(--ease-out-expo);
}

.store-modal-overlay.is-active .store-modal-container {
    transform: translateY(0) scale(1);
}

.store-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    line-height: 1;
}

.store-modal-close:hover {
    opacity: 1;
}

.store-modal-header {
    text-align: center;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 18px;
}

.modal-sub {
    font-family: var(--font-en-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    opacity: 0.7;
    display: block;
    margin-bottom: 4px;
}

.modal-title {
    font-family: var(--font-ja-sans);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.modal-lead {
    font-size: 12px;
    color: var(--text-sub);
}

.store-modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-list-simple {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.store-list-simple li {
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.store-list-simple li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.store-link-title {
    font-family: var(--font-ja-sans);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

.store-link-title .link-text {
    text-decoration: underline !important;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.4) !important;
}

.store-link-title:hover .link-text {
    opacity: 0.8;
    text-decoration-color: var(--text-white) !important;
}

.store-link-title .link-icon {
    font-size: 12px;
    margin-left: 2px;
    text-decoration: none !important; /* 矢印の下線を打ち消し */
}

.store-meta-text {
    font-size: 12px;
    color: var(--text-white);
    margin-top: 2px;
}

.store-meta-sub {
    font-size: 11px;
    color: var(--text-sub);
}

.store-note {
    font-size: 10.5px;
    color: var(--text-sub);
    line-height: 1.6;
    margin-top: 8px;
}