/* ==========================================
   KRONE – Main Stylesheet
   ========================================== */

/* ------------------------------------------
   1. Variables
   ------------------------------------------ */
:root {
    --bg:          #fff7ed;
    --bg-light:    #fff7ed;
    --bg-section:  #fff7ed;
    --gold:        #c1a959;
    --gold-line:   #b78106;
    --brown-dark:  #795401;
    --gray-title:  #5d5d5d;
    --brown-text:  #5d5d5d;
    --brown-body:  #2F2E2E;
    --brown-sub:   #5d5d5d;
    --white:       #ffffff;
    --font-jp:     'Shippori Mincho', 'ヒラギノ明朝 ProN', 'Yu Mincho', serif;
    --font-en:     'Sorts Mill Goudy', Georgia, serif;
    --sidebar-w:   200px;
    --transition:  0.3s ease;
}

/* ------------------------------------------
   2. Reset / Base
   ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-jp);
    background-color: var(--bg);
    color: var(--brown-body);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    color: var(--gray-title);
}

h2 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gray-title);
}

.br-sp { display: none; }
.br-pc { display: inline; }

/* ------------------------------------------
   3. PC サイドバー
   ------------------------------------------ */
.site-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 40px 20px;
    gap: 40px;
}

.sidebar-logo { display: block; }
.sidebar-logo .logo-img,
.sidebar-logo img {
    width: 140px;
    height: auto;
}

.sidebar-nav {
    top: 0rem;
    position: relative;
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sidebar-nav a {
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--brown-body);
    padding: 8px 16px;
    display: block;
    transition: color var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav a.current {
    color: var(--gold);
}

.sidebar-instagram {
    color: var(--brown-sub);
    transition: color var(--transition);
    margin-top: auto;
}
.sidebar-instagram:hover { color: var(--gold); }

/* サイドバーのロゴボックス */
.sidebar-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 0 0 40px 0;
    padding: 28px 20px;
    width: 120%;
    flex-shrink: 0;
}
.sidebar-logo-box .logo-img,
.sidebar-logo-box img {
    width: 120px;
    height: auto;
    display: block;
}

/* ------------------------------------------
   4. SP ヘッダー
   ------------------------------------------ */
.site-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 200;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

.header-logo .logo-img,
.header-logo img {
    height: 48px;
    width: auto;
}

.header-inner .site-logo img,
.header-inner .logo-img { height: 44px; width: auto; }

/* SP ヘッダーのロゴボックス */
.header-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 0 0 16px 0;
    padding: 10px 18px;
    height: 100%;
}
.header-logo-box .logo-img,
.header-logo-box img {
    height: 40px;
    width: auto;
    display: block;
}

/* ハンバーガーボタン */
.hamburger-btn {
    width: 40px;
    height: 40px;
    position: relative;
    padding: 0;
    display: block;
}

.hamburger-btn span {
    position: absolute;
    left: 9px;
    width: 22px;
    height: 2px;
    background: var(--brown-dark);
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.hamburger-btn span:nth-child(1) { top: 13px; }
.hamburger-btn span:nth-child(2) { top: 19px; }
.hamburger-btn span:nth-child(3) { top: 25px; }


/* ------------------------------------------
   5. ハンバーガーモーダル
   ------------------------------------------ */
.nav-modal {
    position: fixed;
    inset: 0;
    background: var(--bg-light);
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    background: url('../images/hamburgermenu-bg.webp') no-repeat center center;
    background-size: cover;
}

.nav-modal:not([hidden]) {
    opacity: 1;
    pointer-events: all;
}

.nav-modal[hidden] {
    display: flex !important;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close span {
    position: absolute;
    width: 24px;
    height: 1.5px;
    background: var(--brown-dark);
}
.modal-close span:first-child { transform: rotate(45deg); }
.modal-close span:last-child  { transform: rotate(-45deg); }

.modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.modal-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.modal-logo-img { width: 50%; height: auto; top: 0rem; position: relative;}
.modal-logo-sub {
    font-family: var(--font-en);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--brown-sub);
}

.modal-ornament { margin-top: 4px; }

.modal-nav ul {
    display: flex;
    flex-direction: column;
}

.modal-nav a {
    font-family: var(--font-en);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--brown-body);
    display: block;
    padding: 8px 24px;
    transition: color var(--transition);
}
.modal-nav a:hover { color: var(--gold); }

.modal-instagram {
    color: var(--brown-sub);
    transition: color var(--transition);
}
.modal-instagram:hover { color: var(--gold); }

.modal-footer-links {
    display: flex;
    gap: 24px;
    border-top: 1px solid var(--brown-sub);
    padding-top: 16px;
    width: 100%;
    justify-content: center;
}
.modal-footer-copyright {
    position: absolute;
    bottom: 0;
    margin: 10px;
}

.modal-footer-links a {
    font-size: 0.7rem;
    color: var(--brown-sub);
    transition: color var(--transition);
}
.modal-footer-links a:hover { color: var(--gold); }

.modal-coin { opacity: 0.5; }
.coin-medallion { width: 60px; height: auto; }

/* ------------------------------------------
   6. PC トップヘッダー（内部ページ）
   ------------------------------------------ */
.site-top-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 100;
    align-items: stretch;
}

.top-header-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.top-header-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 0 0 40px 0;
    padding: 28px 20px;
    flex-shrink: 0;
    min-width: 160px;
    width: 240px;
    height: 126px;
}
.top-header-logo-box .logo-img,
.top-header-logo-box img {
    width: 120px;
    height: auto;
    display: block;
}

.top-header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px 0 32px;
}
.top-header-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}
.top-header-nav a {
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--brown-body);
    padding: 8px 18px;
    display: block;
    transition: color var(--transition);
}
.top-header-nav a:hover,
.top-header-nav a.current {
    color: var(--gold);
}

.top-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    flex-shrink: 0;
}
.top-header-instagram {
    color: var(--brown-sub);
    transition: color var(--transition);
    display: flex;
    align-items: center;
}
.top-header-instagram:hover { color: var(--gold); }

.top-header-reserve {
    font-family: var(--font-en);
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    background: var(--gold);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 2px;
    transition: background var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.top-header-reserve:hover { background: var(--brown-dark); }

/* ------------------------------------------
    7. ヒーロートップアクション（トップページ PC）
   ------------------------------------------ */
.hero-top-actions {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 150;
    align-items: center;
    gap: 20px;
    padding: 20px 32px;
}
.hero-instagram-link {
    color: var(--white);
    display: flex;
    align-items: center;
    transition: opacity var(--transition);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
.hero-instagram-link:hover { opacity: 0.75; }

.hero-reserve-btn {
    position: relative;
    display: block;
    font-family: var(--font-en);
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    background: var(--gold);
    color: var(--white);
    padding: 0.25rem 2.5rem;
    transition: background var(--transition);
    white-space: nowrap;
    text-align: center;
    border-radius: 50px;
    line-height: normal;
}
.hero-reserve-btn .float-reserve-btn-image {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
}
.hero-reserve-btn:hover { background: var(--brown-dark); }

/* ------------------------------------------
   8. メインコンテンツ
   ------------------------------------------ */
.site-main {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
}

.page-home {
    position: relative;
    overflow: hidden;
}

/* ------------------------------------------
   9. ヒーロー
   ------------------------------------------ */
.hero-section {
    position: relative;
    width: 100%;
    height: 90svh;
    min-height: 500px;
    overflow: hidden;
    border-radius: 0 0 0 200px;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    background: #1a0f05;
    background-size: cover;
    background-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    background: transparent;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(61,42,16,0.3) 0%,
        rgba(61,42,16,0.1) 50%,
        rgba(61,42,16,0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 40px 24px;
    text-align: left;
	mix-blend-mode: screen;
}

.hero-catch-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    z-index: 3;
}
.hero-catch-list-sp {
    display: none;
}
.hero-catch-icon-wrap { display: contents; }
.hero-catch-en { width: 50%; height: auto; filter: brightness(0) invert(1); }
.hero-catch-coin { width: 10%; height: auto; filter: brightness(0) invert(1); }
.hero-catch-circles { width: 13%; height: auto; transform: translate(-100%, 45%); z-index:-1;}
.hero-catch-list2 { display: flex; top: -4%; position: relative; }
.hero-ornament { margin: 16px 0; }

.hero-tagline {
    font-family: var(--font-jp);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.12em;
    margin-top: 8px;
}
.hero-catch-tagline-p { display: inline;
    font-family: var(--font-jp);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.12em;
    margin-top: 8px;
}
.hero-catch-tagline-img { display: none;
}

.hero-catch-wing { width: 70px; height: auto; filter: brightness(0) invert(1); }
.hero-modal-logo-img { width: 100%; height: auto; top: 0rem; position: relative; transform: rotate(-99deg);}
.hero-modal-logo-sp{display: none; transform: rotate(-99deg);}

.hero-reserve-banner {display: none;}

/* ------------------------------------------
   10. 共通ボタン
   ------------------------------------------ */
.btn-line,
.btn-reserve,
.btn-line-shop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-jp);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 10px 24px;
    border-radius: 2rem;
    width: 500px;
    max-width: 100%;
    transition: all var(--transition);
    place-self: center;
    position: relative;
}

.btn-line {
    background: var(--brown-dark);
    color: var(--white);
    white-space: nowrap;
}
.btn-line:hover { background: var(--brown-text); }

.btn-reserve {
    border: 1px solid var(--gold);
    background-color: var(--gold);
    color: var(--white);
}
.reserve-arrow {
    position: absolute;
    right: 20px;
}
.btn-reserve:hover { background: var(--brown-dark); border: 1px solid var(--brown-dark); color: var(--white); }

.btn-line-shop {
    width: 100%;
    justify-content: center;
    background: linear-gradient(#31B46C, #6AC661, #91d35a);
    color: var(--white);
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 16px;
    padding: 10px 24px;
    position: relative;
    isolation: isolate;
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-line-shop::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(#05b04c, #4cae3e, #3b8b2e);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
    pointer-events: none;
}
.btn-line-shop:hover::before { opacity: 1; }

.line-icon { width: 35px; height: 35px; object-fit: contain; position: absolute; left:20px; }
.btn-line-shop svg { position: absolute; right: 20px; }

.instagram-shop-btns {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 16px 40px;
    padding: 24px 0px;
}

.btn-instagram-shop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-jp);
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
    color: var(--white);
    background: linear-gradient(to right, #fe628e, #ff7470, #ff9048, #fe9e59, #fe628e, #e149d3, #975ae6);
    position: relative;
    isolation: isolate;
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-instagram-shop::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to right, #d4792a, #c95530, #b81f36, #a81c55, #9c1470);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
    pointer-events: none;
}
.btn-instagram-shop:hover::before { opacity: 1; }
.btn-instagram-shop--card { max-width: 100%; }
.instagram-icon-btn { width: 35px; height: 35px; object-fit: contain; position: absolute; left:20px; }
.instagram-btn-arrow { position: absolute; right: 20px; }

.btn-gallery {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 40px;
    border: 1px solid var(--brown-dark);
    color: var(--brown-dark);
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all var(--transition);
}
.btn-gallery:hover { background: var(--brown-dark); color: var(--white); }

.view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    font-size: 0.9rem;
    color: var(--brown-body);
    letter-spacing: 0.08em;
    transition: color var(--transition);
    border-bottom: var(--brown-body) solid 1px;
    justify-content: flex-end;
    margin-right: 36px;
}
.view-more-link:hover { color: var(--gold); border-bottom: var(--gold) solid 1px; }

.view-more-line {
    width: 120px;
    height: 1px;
    background: var(--brown-sub);
    opacity: 0.4;
    margin-top: 8px;
}

/* ------------------------------------------
   11. セクション共通
   ------------------------------------------ */
.section-ornament {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin: 8px 0;
}

.section-ornament-bottom { text-align: center; margin: 8px 0; }

.section-coin-icon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 8px;
}

.section-divider {
    position: absolute;
    z-index: 1;
    right: 0;
    left: 0;
    margin: auto;
    transform: translateY(-50%);
}

/* ------------------------------------------
   12. Instagramコンセプト共通セクション
   ------------------------------------------ */
.instagram-concept-hero-section {
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.top-concept-catch-paper {
    position: absolute;
    top: 0%;
    left: 0%;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

.top-concept-catch-rope {
    position: absolute;
    top: 3%;
    right: 4%;
    width: 380px;
    max-width: 50%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

/* ------------------------------------------
   13. コンセプトセクション
   ------------------------------------------ */
.concept-section {
    padding: 80px 0 120px;
    position: relative;
    z-index: 1;
}

.concept-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.concept-inner-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.concept-intro {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.concept-intro-coin  { width: 48px; height: auto; }
.concept-intro-en    { height: 32px; width: auto; }

.concept-image-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);}
.concept-image { object-fit: cover; }

.concept-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.concept-title {
    font-size: 2.25rem;
    line-height: 1.65;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.concept-body-sp {
    display: none;
}

.concept-inner > .btn-reserve {
    display: flex;
    width: 500px;
    margin: 32px 0 0;
}

/* ------------------------------------------
   14. コイン紹介
   ------------------------------------------ */
.coin-intro-section {
    background: url('../images/texture-paper.webp') center/cover no-repeat;
    padding: 120px 0;
}

.coin-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.coin-intro-header { text-align: center; margin-bottom: 60px; }

.top-coin-title-coin {
    width: 48px;
    height: auto;
}

.coin-intro-title {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 500;
    margin-top: 12px;
}

.coin-type-list {
    background: url('../images/coin-inner-texture-bg.webp') center/cover no-repeat;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 34px;
    opacity: 0.91;
    align-items: center;
    justify-items: center;
    justify-content: space-evenly;
}

.coin-type-item {
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.coin-type-flag-wrap {
    position: relative;
    width: 100%;
    max-width: 180px;
}

.coin-type-flag { width: 92px; height: 47px; top: 52px; left: -30px; position: relative; }
.coin-type-coin-img { width: 227px; height: auto; object-fit: contain; border-radius: 50%; margin-top: 8px; }
.coin-type-coin-en { font-family: var(--font-en); font-size: 0.8rem; font-style: italic; color: var(--brown-sub); }

.coin-type-country {
    font-size: 0.75rem;
    color: var(--brown-sub);
    letter-spacing: 0.08em;
}

.coin-type-name {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.coin-type-name span {
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--brown-sub);
}

.coin-intro-view-more {
    text-align: center;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.coin-main-text {
    font-size: 0.9375rem;
    line-height: 2;
    color: #2F2E2E;
    margin: 0 auto;
    margin-top: 24px;
}

/* ------------------------------------------
   15. 制作フロー
   ------------------------------------------ */
.flow-section {
    background: url('../images/flow-bg-texture.webp') center/cover no-repeat;
    background-color: var(--bg);
    padding: 80px 0;
}

.flow-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.flow-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.flow-title {
    line-height: 1.6;
    color: var(--white);
}

.flow-title-intro {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.flow-steps {
    display: flex;
    gap: 24px;
    align-items: start;
    width: 80%;
    justify-self: center;
    justify-content: center;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    position: relative;
}

.flow-step-num {
    font-family: var(--font-en);
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1;
    position: absolute;
    align-self: flex-start;
    transform: translateX(-25%) translateY(-50%);
}

.flow-step-image-wrap { width: 100%; border-radius: 2px; overflow: hidden; border-radius: 20px;}
.flow-step-image { object-fit: cover; aspect-ratio: 1 / 1.1; width: 100%; height: 100%; }
.flow-step-arrow { transform: translateY(-100%); align-self: center; }
.flow-step-arrow-image { max-width: none;}

.flow-step-title {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--white);
}

.flow-coin-print {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 13px;
    transform: translateX(75%) translateY(-75%);
    z-index: -1;
}

.flow-coin-icon  { width: 52px; height: auto; }
.order-intro-en  { width: 140px; height: auto; }

.flow-reserve {
    text-align: -webkit-center;
    margin-top: 48px;
}

/* ------------------------------------------
   16. 店舗情報
   ------------------------------------------ */
.shops-section { padding: 80px 0; background: var(--bg-light); }

.shops-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.shop-card-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}
.page-home .shops-header { grid-column: 1 / -1; }

.shops-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.shops-header-sp { display: none; }

.shops-intro-string {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

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

.shop-card {
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 32px;
}

.shop-image-wrap { overflow: hidden; }
.shop-image { width: 100%; height: 240px; object-fit: cover; border-radius: 28px; }
.shop-info { padding: 20px 0px; display: flex; flex-direction: column; gap: 6px; }
.shop-name { font-weight: 500; font-size: 0.95rem; }
.shop-address { font-size: 0.85rem; color: var(--brown-sub); line-height: 1.7; }
.shop-tel { font-size: 0.85rem; color: var(--brown-sub); }
.shop-card .btn-line-shop { margin: 0 0 16px; width: 100%; }

.shops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.shops-grid .shop-card { margin-bottom: 0; }
.page-about .shops-inner { max-width: 1200px; }

/* ------------------------------------------
   17. ギャラリープレビュー
   ------------------------------------------ */
.gallery-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.gallery-preview-header {
    margin-bottom: 40px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.gallery-intro-en {
    width: 120px;
    height: auto;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-preview-item { overflow: hidden; border-radius: 2px; aspect-ratio: 1; }
.gallery-preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-preview-item:hover img { transform: scale(1.04); }

/* ------------------------------------------
   18. Instagram
   ------------------------------------------ */
.instagram-section { padding: 60px 0; background: var(--bg-light); }

.instagram-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.instagram-title {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 32px;
}

/* ------------------------------------------
   19. Gallery ページ
   ------------------------------------------ */
.gallery-section { padding: 60px 0 80px; }

.gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid-item { overflow: hidden; border-radius: 2px; aspect-ratio: 1; }
.gallery-grid-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-grid-item:hover .gallery-grid-image { transform: scale(1.04); }

.gallery-empty {
    text-align: center;
    padding: 60px;
    color: var(--brown-sub);
    font-size: 0.9rem;
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;

    background: var(--white);
    width: fit-content;
    padding: 10px 20px;
    border-radius: 50px;
    border: solid #e7e0d8 1px;
    place-self: center;
}

.gallery-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--brown-body);
    border: 1px solid rgba(121,84,1,0.25);
    border-radius: 2px;
    transition: all var(--transition);
}

.gallery-pagination .page-numbers.current,
.gallery-pagination .page-numbers:hover {
    background: var(--brown-dark);
    color: var(--white);
    border-color: var(--brown-dark);
}

.gallery-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #f2a661;
    transition: all var(--transition);
}
.gallery-page-num.is-current,
.gallery-page-num:hover { background: #f2a661; color: var(--white); }

.gallery-page-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #f2a661;
    transition: color var(--transition);
}
.gallery-page-arrow:hover { color: var(--gold-line); }

/* Figma実測版 gallery */
.page-gallery .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px; }
.page-gallery .gallery-grid-item { aspect-ratio: 1; overflow: hidden; border-radius: 15px; background: #e8e0d4; border: 1px solid #707070;}
.page-gallery .gallery-grid-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.page-gallery .gallery-grid-item:hover .gallery-grid-image { transform: scale(1.04); }

/* ------------------------------------------
   20. ページヘッダー共通
   ------------------------------------------ */
.page-hero-section {
    padding: 80px 24px 60px;
    text-align: center;
    background: var(--bg-light);
    background-image: url('../images/texture-paper.webp');
}

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

.page-hero-icon img { width: 56px; height: auto; }
.page-hero-title { margin: 0; }
.page-hero-coin-icon { width: 70%; }

.page-hero-ornament {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.page-hero-line { width: 200px; height: auto; display: block; }
.ornament-svg { width: 100%; max-width: 370px; height: auto; display: block; margin: 0 auto; }

/* ------------------------------------------
   21. About ページ
   ------------------------------------------ */
.about-intro-section { padding: 80px 0; }

.about-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 38.5fr 61.5fr;
    gap: 80px;
    align-items: center;
}

.about-intro-image {
    width: 100%;
    object-fit: cover;
    border-radius: 34px;
}

.about-intro-right { display: flex; flex-direction: column; gap: 20px; }

/* .about-intro-title {
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--brown-text);
} */

.about-intro-body p {
    font-size: 1rem;
    line-height: 2;
    color: var(--brown-body);
    margin-bottom: 16px;
}
.about-intro-body p:last-child { margin-bottom: 0; }

/* ------------------------------------------
   22. コイン詳細（About ページ内）
   ------------------------------------------ */
.coins-section { padding: 80px 0; background: var(--bg-section); }

.coins-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.coins-header { text-align: center; margin-bottom: 48px; }

.coins-title {
    margin-top: 12px;
}

.coins-list { display: flex; flex-direction: column; gap: 0; }

.coins-card { background: #ffffff; padding: 48px 60px; border-radius: 48px; }

.coin-row { display: flex; align-items: center; gap: 20px; }
.coin-row--border { border-bottom: 1px solid rgba(93,93,93,0.12); }
.coin-row-left { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.coin-row-coin { width: 160px; height: auto; object-fit: contain; border-radius: 50%; }
.coin-row-flag { width: 68px; height: auto; }
.coin-row-right { display: flex; flex-direction: column; gap: 10px; padding: 1.5rem 0; }
.coin-row-country { font-size: 1.25rem; font-weight: 500; color: var(--brown-text); letter-spacing: 0.06em; }
.coin-row-name { font-size: 1.625rem; font-weight: 500; line-height: 1.6; color: var(--brown-text); gap: 8px; display: flex; flex-direction: row; justify-content: flex-start;}
.coin-row-name span { font-family: var(--font-en); font-size: 1rem; font-style: italic; color: var(--brown-sub); }
.coin-row-body { font-size: 1.125rem; line-height: 2; color: var(--brown-body); margin-top: 8px; }

.coin-row-title {
    display: grid;
    align-items: center;
    justify-content: flex-start;
    grid-auto-flow: column;
}

.coin-country-wrap      { display: flex; align-items: row; gap: 8px; width: 100%; justify-items: start;}

.coin-detail-card { padding: 40px 0; }
.coin-divider { border: none; border-top: 1px solid rgba(121,84,1,0.15); margin: 40px 0 0; }

.coin-detail-top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.coin-detail-image-wrap {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.coin-detail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(121,84,1,0.15);
}

.coin-detail-flag { width: 60px; height: auto; flex-shrink: 0; }
.coin-detail-country { font-size: 0.75rem; color: var(--brown-sub); letter-spacing: 0.08em; }

.coin-detail-name {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.coin-detail-name span {
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--brown-sub);
}

.coin-detail-body {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--brown-sub);
}

.coins-summary { font-size: 1rem; line-height: 2; color: var(--brown-body); margin-top: 40px; }
.coins-view-more { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 40px; }

/* ------------------------------------------
   23. テキストページ（利用規約/プライバシーポリシー）
   ------------------------------------------ */
.text-page-header { padding: 60px 40px 48px; background: var(--bg-section); text-align: center; }
.text-page-header-inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.text-page-title { width: max-content; margin: 0 auto; }
.text-page-body { padding: 60px 0 80px; background: var(--bg-section); }
.text-page-body-inner { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

.text-content {
    background: #ffffff;
    border-radius: 4px;
    padding: 56px 80px;
    max-width: 1223px;
    margin: 0 auto;
    border: 1px solid #707070;
    border-radius: 37px;
}

.text-content > p { font-size: 1.125rem; line-height: 2; color: var(--brown-body); margin-bottom: 24px; }
.text-content h2 { font-size: 1.125rem; font-weight: 600; letter-spacing: 0.05em; color: var(--brown-text); margin: 32px 0 12px; }
.text-content ul { list-style: disc; padding-left: 28px; margin-bottom: 24px; }
.text-content ul li { font-size: 1.125rem; line-height: 2; color: var(--brown-body); }
.terms-contact, .privacy-updated { margin-top: 40px; font-size: 0.9rem; color: var(--brown-sub); font-style: italic; }

/* ------------------------------------------
   24. フッター
   ------------------------------------------ */
.site-footer {
    background: url('../images/footer-bg.webp') center/cover no-repeat;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 100;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    text-align: center;
    flex-wrap: wrap;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-nav ul {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
}

.footer-nav a {
    font-family: var(--font-en);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-instagram { color: rgba(255,255,255,0.7); transition: color var(--transition); display: flex;}
.footer-instagram:hover { color: var(--gold); }

.footer-sub-links-sp {
    display: none;
    font-family: var(--font-jp);
    font-size: 0.7rem;
    letter-spacing: 0.1em; 
}

.footer-sub-links {
    display: flex;
    gap: 24px;
    width: 100%;
    grid-column: 3;
    justify-content: flex-end;
}

.footer-sub-links a {
    font-size: 0.7rem;
    color: rgba(255,255,255);
    transition: color var(--transition);
}
.footer-sub-links a:hover { color: rgba(255,255,255,0.9); }

.footer-copyright {
    font-family: var(--font-en);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    grid-column: 2;
    justify-self: center;
    /* コントラスト比確保（#756c64 背景に対し 5.1:1 / WCAG AA 合格） */
    color: #fff;
}

.footer-divider {
    background: #756c64;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding-top: 1rem;
}

/* ------------------------------------------
   25. Contact ページ
   ------------------------------------------ */
.contact-shops .shops-inner { max-width: 1200px; }

.contact-instagram {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(93,93,93,0.15);
}

.contact-instagram-label {
    font-size: 0.875rem;
    color: var(--brown-sub);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.contact-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-en);
    font-size: 1rem;
    font-style: italic;
    color: var(--brown-text);
    transition: color var(--transition);
}
.contact-instagram-link:hover { color: var(--gold-line); }

/* ------------------------------------------
   26. Instagramフィード（ヒーロー直下）
   ------------------------------------------ */
.instagram-hero-section {
    background: var(--bg);
    padding: 40px 0 24px;
}

.instagram-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.instagram-icon-bg {
    display: flex;
    align-items: center;
    width: fit-content;
    height: fit-content;
    background-color: white;
    border-radius: 50%;
    border: solid #dadada 5px;
    position: relative;
    z-index: 6;
}

.instagram-content-bg {
    display: flex;
    align-items: flex-start;
    padding: 8px 16px;
    background-color: white;
    border-radius: 25px;
    border: solid #dadada 5px;
    z-index: 5;
    position: relative;
    top: -69px;
    margin-bottom: -69px;
    height: 500px;
    overflow: overlay;
    flex-direction: column;
}

.instagram-hero-icon { margin: 20px; }

.instagram-hero-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brown-sub);
    font-family: var(--font-en);
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    transition: color var(--transition);
}
.instagram-hero-icon-link:hover { color: var(--gold); }
.instagram-hero-icon-link span { font-style: italic; }

/* ------------------------------------------
   27. ギャラリーマーキー（無限横スクロール）
   ------------------------------------------ */
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.gallery-marquee-section {
    overflow: hidden;
    background: var(--bg);
    padding: 0;
    line-height: 0;
}

.gallery-marquee-track-wrap {
    overflow: hidden;
    width: 100%;
}

.gallery-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}
.gallery-marquee-track:hover { animation-play-state: paused; }

.gallery-marquee-item {
    flex-shrink: 0;
    width: 240px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.gallery-marquee-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ------------------------------------------
   28. フローティング予約ボタン
   ------------------------------------------ */
.float-reserve-btn {
    position: fixed;
    right: 32px;
    top: 80%;
    transform: translateY(-50%) scale(0.85);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    line-height: 0;
}

.float-reserve-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.float-reserve-btn.is-near-footer {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.85);
}

.float-reserve-btn.is-visible:hover {
    transform: translateY(-50%) scale(1.05);
}

.float-reserve-btn-image {
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.25));
}

.float-reserve-btn-image.hero-reserve-img {
    width: auto;
    height: 44px;
    filter: none;
}

/* ------------------------------------------
   28b. SP予約バナー（ヒーロー直下）
   ------------------------------------------ */
.hero-reserve-banner {
    display: none;
}

/* ------------------------------------------
   29. フェードインアニメーション
   ------------------------------------------ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ==========================================
   30. PC: 内部ページ レイアウト切替
   ========================================== */
@media (min-width: 769px) {
    body:not(.home) .site-sidebar    { display: none; }
    body:not(.home) .site-top-header { display: flex; }
    body:not(.home) .site-main       { margin-left: 0; }
    body.home .hero-top-actions      { display: flex; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .top-header-nav a        { padding: 8px 12px; font-size: 0.9rem; }
    .top-header-actions      { gap: 12px; padding: 0 16px; }
    .top-header-logo-box     { min-width: 120px; padding: 0 16px; }
    .top-header-reserve      { padding: 8px 14px; font-size: 0.8125rem; }
}

/* ==========================================
   31. レスポンシブ: タブレット (max-width: 1024px)
   ========================================== */
@media (max-width: 1024px) {
    :root { --sidebar-w: 200px; }

    .concept-inner       { gap: 40px; }
    .coin-type-list      { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .flow-steps          { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gallery-grid        { grid-template-columns: repeat(3, 1fr); }
    .about-intro-inner   { gap: 48px; }
    .coins-card          { padding: 32px 40px; }
    .text-content        { padding: 40px 48px; }
    .page-gallery .gallery-grid { gap: 24px; }
    .shops-grid          { gap: 24px; }
    .float-reserve-btn   { display: none; }
}

/* ==========================================
   32. レスポンシブ: SP (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
    /* ヘッダー */
    .header-logo-box {
        border-radius: 0 0 16px 0;
        padding: 4px 18px;
    }
    .header-logo-box .logo-img,
    .header-logo-box img {
        height: 56px;
        width: auto;
        display: block;
    }
    .hamburger-btn {
        padding: 12px;
        background: white;
        border-radius: 50%;
    }
    .header-inner { padding: 0 10px; }

    /* サイドバー非表示、SPヘッダー表示 */
    .site-sidebar       { display: none; }
    .site-top-header    { display: none !important; }
    .hero-top-actions   { display: none !important; }
    .site-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .site-main { margin-left: 0; }

    /* ヒーロー */
    .hero-catch-en { width: 160px; }
    .hero-tagline  { font-size: 2vw; }
    .hero-catch-tagline-p { display: none;
    }
    .hero-catch-tagline-img { display: inline;
    }

    .hero-section {
        width: 90%;
        margin-left: auto;
        border-radius: 0 0 0 150px;
    }
    .hero-video {
        src: url('../videos/hero-movie-sp.mp4');
    }
    .hero-catch-list {
        display: none;
    }
    .hero-catch-coin { width: 30%; margin-bottom: 10px;}
    .hero-catch-list-sp {
        display: inline;
    }
    .hero-catch-en-sp { width: 100%; height: auto;}
    .hero-catch-list2 {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 0.2fr;
        top: 0;
        align-items: center;
    }
    .hero-catch-wing {
        width: 100%;
        height: auto;
        filter: brightness(0) invert(1);
    }
    .hero-modal-logo-sp{
        display: inline;
        position: absolute;
        transform: translate(0%, -100%) rotate(-99deg);
        width: 40%;
    }

    .hero-reserve-banner {
        display: grid;
        background: linear-gradient(45deg, #A6927A,#775832);
        justify-content: center;
        padding: 10px 0px 10px 4px;
        grid-template-columns: 1fr 1.1fr;
        margin: 20px 0 0 0;
    }
    .hero-reserve{
        display: flex;
        flex-direction: row;
        padding: 0 14px;
    }
    .hero-reserve-banner .btn-reserve{
        padding: 12px 20px;
        width: 100%;
        line-height: 1rem;
        font-family: Inter;
        font-weight: 400;
        letter-spacing: 1.4px;
        font-style: normal;
        font-size: 14px;
        background-color: white;
        color: #775832;
        text-align: center;
        padding: 15px;
    }

    .hero-reserve-banner-disclaimer {
        border-right: solid;
        color: white;
        line-height: 1rem;
        font-family: Inter;
        font-weight: 400;
        letter-spacing: 1.4px;
        font-style: normal;
        font-size: 14px;
        padding: 0px 0rem 0px 1rem;
    }

    /* LINE予約 */
    .line-reserve-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .line-reserve-divider { display: none; }
    .top-concept-catch-rope {
        display: none;
    }
    .top-concept-catch-paper {
        display: none;
    }

    /* コンセプト */
    .concept-section { padding: 60px 0 80px; }
    .concept-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
        justify-content: center;
    }
    .concept-inner-main { order: 1; grid-template-columns: 1fr; min-width: 0; }
    .concept-image-wrap { order: 0; min-width: 0; }
    .concept-image      { aspect-ratio: 4/3; width: 100%; }
    .concept-title      { font-size: 2rem; }
    .concept-intro {
        flex-direction: column;
    }
    .concept-text-wrap {
        align-items: center;
    }
    .concept-body {
        display: none;
    }
    .concept-body-sp {
        display: block;
        overflow-wrap: break-word;
        margin-top: 24px;
    }
    .concept-inner > .btn-reserve {
        order: 2;
        width: 100%;
    }

    .section-divider {
        width: 30%;
    }

    /* コイン紹介 */
    .coin-intro-section { padding: 120px 0; }
    .coin-intro-inner   { padding: 0 20px; }
    .coin-type-list     { grid-template-columns: 1fr; display: grid; padding: 20px 0;}
    .coin-intro-title   { font-size: 2rem; }
    .top-coin-title-en { width:70%; height: auto; }
    .coin-intro-view-more { align-items: center;}
    .view-more-link {margin-right: 0;}

    /* 制作フロー */
    .flow-section   { padding: 60px 0; }
    .flow-inner     { padding: 0 20px; }
    .flow-steps     { display: grid; grid-template-columns: 1fr; gap: 32px; width: 100%; margin: auto;}
    .flow-step-image { height: 100%; width: 100%; max-width: none; aspect-ratio: 2 / 1}
    .flow-step-arrow { transform: translateY(0%); margin:auto;}
    .flow-step-arrow-image { transform: rotateZ(90deg);}
    .flow-step-num   { transform: translateX(0) translateY(-50%);}
    .flow-title     { font-size: 2rem; text-align: left;}
    .flow-step-title { font-size: 1.5rem; }
    .flow-coin-print { position: absolute; transform: translateX(25%) translateY(150%); z-index: 0;}
    .flow-coin-print-icon { width: 80px; height: auto; }

    /* 店舗情報 */
    .shops-section { padding: 60px 0; }
    .shops-inner   { padding: 0 20px; }
    .shops-header   { flex-direction: column; }
    .shops-header-sp { display: inline; display: flex; flex-direction: row; align-items: center; gap: 2px;}
    .shop-intro-coin-left.pc { display: none; }
    .shop-intro-coin-right.pc { display: none; }
    .shop-intro-coin-img-sp { width: 80px; height: auto; }
    .shop-intro-en { width: 80%; height: auto; }
    .shop-card-list { grid-template-columns: 1fr; }
    .shop-image    { height: 200px; }
    .page-home .shops-inner { grid-template-columns: 1fr; gap: 0; }
    .shops-grid    { grid-template-columns: 1fr; gap: 32px; }

    /* ギャラリープレビュー */
    .gallery-preview-inner { padding: 0 20px; }
    .gallery-preview-grid  { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-preview-title { font-size: 1.4rem; }

    /* Instagram */
    .instagram-section { padding: 48px 0; }
    .instagram-inner   { padding: 0 20px; }
    .instagram-content-bg {    height: 380px;}
    .instagram-shop-btns { flex-direction: column; }

    /* ページヘッダー */
    .page-hero-section   {
        padding: none;
        height: 50vh;
        align-content: center;
    }
    .page-hero-title     { font-size: 2rem; line-height: 2.5rem;}
    .page-hero-coin-icon { width: 40%; }
    .page-hero-en        {height: 30px; width: auto; }

    /* Gallery ページ */
    .gallery-inner   { padding: 0 20px; }
    .gallery-grid    { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-section { padding: 40px 0 60px; }
    .page-gallery .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-pagination { margin-top: 40px; }

    /* About */
    .about-intro-section { padding: 40px 0 0 0; }
    .about-intro-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }
    .about-intro-image { aspect-ratio: 4/3; border-radius: 20px;}
    .about-intro-title { font-size: 1.5rem; }

    /* コイン詳細 */
    .coins-section { padding: 60px 0 0 0; }
    .coins-inner   { padding: 0 20px; }
    /* .coins-title   { font-size: 1.5rem; } */
    .coins-card    { padding: 24px 20px; border-radius: 20px;}
    .coin-detail-top         { flex-wrap: wrap; }
    .coin-detail-image-wrap  { width: 80px; height: 80px; }
    .coin-row                { grid-template-columns: 1fr; gap: 20px; display:gap; flex-direction: column; margin-top: 1rem;}
    .coin-row-left           { flex-direction: row; justify-content: flex-start; gap: 20px; }
    .coin-row-right          { padding: 0 0 1rem 0; }
    .coin-row-coin           { width: 140px; height: auto; }
    .coin-row-name           { font-size: 1.25rem; display: flex; flex-direction: column;}
    .coin-row-body           { font-size: 0.9375rem; }
    .coin-row-title          { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
    .coin-country-divider   { display: none; }
    .coin-country-wrap      { display: grid; align-items: center; gap: 8px; align-items: center; grid-template-columns: 1fr 1fr; width: 100%; justify-items: start; align-items: baseline;}
    /* テキストページ */
    .text-page-header      { padding: 40px 20px 32px; }
    .text-page-title        { font-size: 1.75rem; line-height: 2.5rem;}
    .text-page-body         { padding: 32px 0 60px; }
    .text-page-body-inner   { padding: 0 16px; }
    .text-content           { padding: 28px 20px; border-radius: 24px;}
    .text-content > p,
    .text-content ul li     { font-size: 0.9375rem; }

    /* フッター */
    .footer-inner      { padding: 24px 0; flex-direction: column; gap: 24px;}
    .footer-nav ul     { gap: 2px; flex-direction: column; }
    .footer-sub-links  { display: none; }
    .footer-sub-links-sp { display: inline; }
    .site-footer { background: url('../images/footer-bg-sp.webp') center/cover no-repeat; }

    /* Instagram ヒーロー */
    .instagram-hero-section { padding: 28px 0 0px; }
    .instagram-hero-inner   { padding: 0 16px; }
    .instagram-content-bg   { height: 380px; }

    /* マーキー */
    .gallery-marquee-item { width: 140px; aspect-ratio: 2 / 3; }
    .gallery-marquee-track { animation-duration: 28s; }

    /* SP改行 */
    .br-sp { display: inline; }
    .br-pc { display: none; }
}

/* ==========================================
   33. レスポンシブ: 小型SP (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
    .page-gallery .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .modal-nav a    { font-size: 1.0rem; padding: 2px 24px;}
    .modal-logo-img {
        width: 42%;
    }
}

/* ==========================================
   34. レスポンシブ: 極小SP (max-width: 375px)
   ========================================== */
@media (max-width: 375px) {
    .gallery-preview-grid,
    .gallery-grid   { grid-template-columns: 1fr; }
    .hero-tagline   { font-size: 0.85rem; }
    .modal-nav a    { font-size: 1.3rem; }
}