@charset "utf-8";

/* ========== TOKENS ========== */
:root {
    /* colors */
    --c-brand: #006e51;
    --c-brand-strong: #004d38;
    --c-accent: #d4af37;
    --c-text: #2c2c2c;
    --c-muted: #666;
    --c-bg: #fff;
    --c-surface: #f8f6f3;
    --c-border: #e6e6e6;
    --c-gold: #967d4b;
    --c-box: #EDE9E6;

    /* spacing */
    --sp-8: .5rem;
    --sp-12: .75rem;
    --sp-16: 1rem;
    --sp-20: 1.25rem;
    --sp-24: 1.5rem;
    --sp-32: 2rem;
    --sp-40: 2.5rem;
    --sp-48: 3rem;
    --sp-56: 3.5rem;
    --sp-64: 4rem;
    --sp-80: 5rem;
    --sp-96: 6rem;

    /* radius & shadow */
    --radius-6: 6px;
    --radius-12: 12px;
    --radius-pill: 999px;
    --shadow-1: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-2: 0 8px 32px rgba(0, 0, 0, .10);

    /* font-size */
    --fz-12: clamp(11px, 1.8vw, 12px);
    --fz-14: clamp(13px, 2.6vw, 14px);
    --fz-16: clamp(14px, 3.2vw, 16px);
    --fz-18: clamp(16px, 3.8vw, 18px);
    --fz-20: clamp(18px, 4.2vw, 20px);
    --fz-24: clamp(20px, 5.0vw, 24px);
    --fz-28: clamp(22px, 5.6vw, 28px);
    --fz-30: clamp(26px, 9vw, 28px);
    /* 固定ヘッダー*/
    --headfix-h: 90px;
}

@media (min-width: 767px) {
    :root {
        --fz-12: clamp(11px, 1.2vw, 13px);
        --fz-14: clamp(13px, 1.6vw, 15px);
        --fz-16: clamp(14px, 1.8vw, 17px);
        --fz-18: clamp(16px, 2.0vw, 19px);
        --fz-20: clamp(18px, 2.3vw, 22px);
        --fz-24: clamp(20px, 2.8vw, 26px);
        --fz-28: clamp(22px, 3.2vw, 30px);
        --fz-30: clamp(18px, 9vw, 28px);
        /* 固定ヘッダー*/
        --headfix-h: 50px;
    }

}

@media (min-width: 1024px) {
    :root {
        --fz-12: clamp(12px, 0.9vw, 13px);
        --fz-14: clamp(14px, 1.0vw, 16px);
        --fz-16: clamp(16px, 1.1vw, 18px);
        --fz-18: clamp(18px, 1.2vw, 20px);
        --fz-20: clamp(20px, 1.4vw, 22px);
        --fz-24: clamp(22px, 1.6vw, 26px);
        --fz-28: clamp(24px, 1.9vw, 32px);
        --fz-30: clamp(26px, 6vw, 30px);
        /* 固定ヘッダー*/
        --headfix-h: 90px;
    }
}

/* ========== BASE ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--headfix-h);
}


body {
    line-height: 1.75;
    color: var(--c-text);
    background: var(--c-bg);
    letter-spacing: .02em
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul {
    list-style: none
}

h4,
h3 {
    margin-bottom: 0;
}

h4::before,
h4::after {
    border: none;
}

section p,
summary {
    font-size: var(--fz-16);
    line-height: 1.75;
    letter-spacing: .02em;
    color: var(--c-muted);
    margin-bottom: 1.2em;
    font-weight: 400;
}

.container {
    width: calc(100% - 64px);
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px
}

.section {
    padding-block: clamp(48px, 8vw, 96px);
    margin: 0 auto;
}

.section:nth-of-type(odd) {
    background: var(--c-surface);
}

.section:nth-of-type(even) {
    background: var(--c-bg);
}

.section .section-header {
    margin-bottom: 80px;
}

.section--alt {
    background: var(--c-surface)
}

.section-cta {
    text-align: center;
    display: block;
    margin-top: 50px;
    border: 1px solid #fff;
    padding: 50px 40px;
    background: radial-gradient(circle at top left, #faf7f3 0%, transparent 60%),
        radial-gradient(circle at bottom right, #faf7f3 0%, transparent 60%),
        #ffffff;
}

small {
    font-size: var(--fz-12);
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.9;
    color: var(--c-muted);
}

sup {
    font-size: calc(var(--fz-12) * 0.85);
    vertical-align: super;
    line-height: 1;
}

.no-sp {
    display: block
}

.no-pc {
    display: block
}

@media (max-width:1080px) {
    .container {
        width: 100%;
    }
}

@media (max-width:767px) {
    .no-sp {
        display: none
    }

    .section .section-header {
        margin-bottom: var(--sp-24);
    }

    .section-cta {
        margin-top: 20px;
        padding: 25px 10px;
    }
}

@media (min-width:767px) {
    .no-pc {
        display: none
    }
}

#brands {
    margin-top: 0;
    padding-top: clamp(48px, 8vw, 96px);
}

.scroll-offset {
    scroll-margin-top: var(--headfix-h);
}

.subnav-sentinel {
    display: block;
    position: relative;
    top: calc(-1 * var(--headfix-h) - 8px);
    height: 0;
}

@media (max-width: 767px) {
    :root {
        --subnav-h: 56px;
    }

    body {
        padding-bottom: var(--subnav-h);
    }

    .tabs__panel,
    .reason-item,
    .expand-button,
    #popular,
    #reasons,
    #voices,
    #faq,
    #column,
    #instagram,
    #shop,
    #bridal {
        scroll-margin-top: calc(var(--headfix-h) + var(--subnav-h) + 20px);
    }

    #brands [id^="featured-"],
    [id^="all-"] {
        scroll-margin-top: calc(var(--headfix-h) + var(--subnav-h));
    }

}

/* PCでのスクロールマージン */
@media (min-width: 768px) {
    .subnav-sentinel {
        display: block;
        position: relative;
        /* ヘッダー + サブナビぶんを引いてオフセット */
        top: calc(-1 * (var(--headfix-h) + 90px));
        height: 0;
    }

    #brands,
    #bridal,
    [id^="featured-"],
    [id^="all-"] {
        scroll-margin-top: calc(var(--headfix-h) + 24px);
    }

    .tabs__panel,
    .reason-item,
    .expand-button,
    #popular,
    #reasons,
    #voices,
    #faq,
    #column,
    #instagram,
    #shop {
        scroll-margin-top: calc(var(--headfix-h) + 8px);
    }
}

/* ========== MENU ==========
  SPヘッダー（トップページ限定の最小上書き）
  ※ <body class="is-home"> をトップページに付与
========================= */
@media (max-width: 767px) {
    body.is-home header.headfix {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
        z-index: 10;
    }

    body.is-home header.headfix .headfixinner {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        padding: 0;
        margin: 0;
    }

    body.is-home header.headfix .headfixinner ul {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 10px 5px;
        display: flex;
        overflow: hidden;
        gap: 0;
    }

    body.is-home header.headfix .headfixinner ul li {
        min-width: 0;
        overflow: hidden;
    }

    body.is-home header.headfix .headfixinner ul li:last-child {
        margin: 0 0 0 5px;
    }

    body.is-home header.headfix.hide .headfixinner {
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 56px;
    }

    header.headfix.hide .headfixinner ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    body.is-home header.headfix a img {
        height: 32px;
        margin: 20px 0 0 20px;
        padding-bottom: 8px;
    }

    /* common.css の #menu+label:before を上書き */

    body.is-home #menu+label:before {
        width: 32px;
        height: 32px;
        right: 16px;
        top: 16px;
        position: fixed;
        content: "";
        background: url(/bridal/assets/img/header_global_icon_open.svg);
        background-repeat: no-repeat;
        border-radius: 2px;
        z-index: 100;
    }

    body.is-home #menu:checked+label:before {
        background: url(/bridal/assets/img/header_global_icon_close.svg);
    }

    #menu:checked+label+#global {
        z-index: 90;
    }
}


/* ========== TITLES ========== */

.title {
    letter-spacing: .04em;
    font-weight: 300;
    text-align: center;
}

.title--lg {
    color: var(--c-accent);
    font-size: clamp(22px, 4vw, 40px);
    text-align: center;
}

.title--md {
    font-size: clamp(18px, 3vw, 28px);
    margin-bottom: 0;
}

/* サブタイトル（section内の補足テキスト） */
.title-sub {
    display: block;
    font-size: var(--fz-14);
    line-height: 1.6;
    font-weight: 400;
    color: var(--c-muted);
    margin-top: 0.25em;
    letter-spacing: .04em;
    text-align: center;
}

/* ========== BUTTONS (統一先) ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6em;
    padding: .85em 1.2em;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-6);
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease;
}

.btn:hover {
    cursor: pointer;
}

.btn:focus-visible {
    outline: 2px solid color-mix(in oklab, var(--c-accent), white 40%);
    outline-offset: 2px
}

.btn--primary {
    background: var(--c-brand);
    color: #fff;
    box-shadow: var(--shadow-2);
    border-color: rgba(255, 255, 255, .35);
}

.btn--primary:hover {
    background: var(--c-brand-strong);
    transform: translateY(-1px)
}

.btn--accent {
    background: var(--c-accent);
    color: #fff;
    border-color: transparent
}

.btn--secondary {
    background: rgba(255, 255, 255, .7);
    border: 2px solid var(--c-accent);
    color: var(--c-text);
    margin-top: var(--sp-16);
}

.btn--outline:hover {
    background: var(--c-accent);
    color: #fff
}

.btn--secondary {
    background: var(--c-box);
    border: none;
    cursor: pointer;
}

.btn--secondary:hover {
    background: var(--c-surface);
}

.btn--ghost {
    background: rgba(212, 175, 55, .6);
    color: #fff;
    border-color: rgba(255, 255, 255, .35)
}

.btn--ghost:hover {
    background: rgba(212, 175, 55, 1);
}

.btn::after {
    content: "";
    display: inline-block;
    width: 0.6em;
    height: 0.6em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 0.6em;
    transition: transform 0.3s ease;
}

.btn:hover::after {
    transform: rotate(-45deg) translateX(4px);
}

.shop-actions .btn::after {
    display: none;
}

.btn--sm {
    padding: .6em .9em !important;
    font-size: var(--fz-12) !important;
    min-height: 35px !important;
}

.btn--lg {
    padding: 1.05em 1.4em;
    font-size: 18px;
    border-radius: 10px
}

.btn--block {
    display: flex;
    width: 100%
}

.btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* ========== TABS (ブランド/リング共通) ========== */
.tabs {
    display: flex;
    gap: var(--sp-16);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 720px;
    margin: 0 auto 40px
}

.tabs__btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: .9em 1.6em;
    border-radius: 12px;
    cursor: pointer;
    transition: .2s;
    letter-spacing: .02em;
    font-size: var(--fz-14);
}

.tabs__btn:hover {
    border-color: var(--c-accent);
    color: var(--c-text);
    transform: translateY(-2px)
}

.tabs__btn.is-active {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
    position: relative
}

.tabs__btn.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    translate: -50% 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--c-accent);
}

.tabs__panel {
    display: none;
    animation: fadeIn .4s ease
}

.tabs__panel.is-active {
    display: block !important
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ========== RESPONSIVE  ========== */
@media (max-width:767px) {
    .title--lg {
        font-size: 1.5rem
    }

    .tabs {
        margin-bottom: 20px;
    }

    .tabs__btn {
        flex: 1;
        padding: .25rem .5rem;
    }
}

/* ========== GRID & CARD ========== */
.grid {
    display: grid;
    gap: var(--sp-24);
    align-items: stretch;
}

.grid--auto-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid--auto-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid--scroll-x {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    grid-auto-rows: 1fr;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    /* 追加 */
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    /* 1枚ずつ止まる */
    scrollbar-gutter: stable;
}

.grid--scroll-x>* {
    flex: 0 0 280px;
    min-width: 280px;
    scroll-snap-align: start
}

@media (max-width:767px) {

    .grid--auto-2,
    .grid--auto-3 {
        grid-template-columns: 1fr;
    }

}

@media (max-aspect-ratio: 72/100) {
    .hero-bg img {
        object-position: 50% 35%;
    }
}

@media (max-aspect-ratio: 2/3) {
    .hero-bg img {
        object-position: 50% 35%;
    }
}

.card {
    background: #fff;
    box-shadow: var(--shadow-1);
    transition: .2s;
    overflow: hidden
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2)
}

/* ========== TAGS (店舗) ========== */
.tag {
    display: inline-block;
    padding: 2px 8px;
    font-size: .8rem;
    font-weight: 500
}

.tag--utsunomiya {
    background: #967D4B;
    color: #fff
}

.tag--sano {
    background: #555;
    color: #fff
}

.tag--mito {
    background: #fff;
    border: 1px solid #555;
    color: #555
}

/* ========== HERO ========== */
.hero::before {
    content: "";
    position: absolute;
    inset: -10%;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(60% 60% at 30% 55%, rgba(255, 255, 255, .30), transparent 60%),
        radial-gradient(80% 80% at 80% 70%, rgba(255, 255, 255, .18), transparent 70%);
    mix-blend-mode: overlay;
    animation: breath 7s ease-in-out infinite;
}

@keyframes breath {

    0%,
    100% {
        opacity: .65;
    }

    50% {
        opacity: 1;
    }
}

.hero {
    position: relative;
    margin: 0 auto
}

.hero img.logo {
    height: auto;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.hero--lux {
    min-height: 60svh;
    display: grid;
    place-items: end;
    overflow: hidden;
    color: #fff
}


.hero-features {
    display: flex;
    gap: 12px;
    overflow: auto;
    margin: 4px auto 6px;
    scroll-snap-type: x mandatory;
    justify-content: center;
}

.hero-bg,
.hero-bg img,
.hero-innerLayer img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    animation: kb 18s ease-in-out infinite alternate;
}

.hero-bg img {
    object-position: 30% 55%
}

.hero-innerLayer img {
    object-position: 30% 50%
}

@keyframes kb {
    from {
        transform: scale(1.06)
    }

    to {
        transform: scale(1.12) translate3d(1.2%, -1%, 0)
    }
}

.hero-sub span {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 800;
}

.hero-sub small.asterisk {
    margin-top: 0;
    display: block;
    text-align: left;
    color: var(--c-bg);
}

@media (max-width:767px) {
    .hero::before {
        mix-blend-mode: multiply;
    }

    .hero-bg img,
    .hero-innerLayer img {
        transform: none;
        animation: none
    }

    .hero-sub small.asterisk {
        text-align: left;
    }

    .hero-bg,
    .hero-bg img,
    .hero-innerLayer img {
        animation: none;
        transform: none;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: -10%;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(60% 60% at 30% 55%, rgba(255, 255, 255, .30), transparent 60%),
        radial-gradient(80% 80% at 80% 70%, rgba(255, 255, 255, .18), transparent 70%);
    mix-blend-mode: overlay;
    animation: breath 7s ease-in-out infinite;
}

@keyframes breath {

    0%,
    100% {
        opacity: .65
    }

    50% {
        opacity: 1
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: -6%;
    z-index: 3;
    pointer-events: none;
    box-shadow: inset 0 0 160px rgba(0, 0, 0, .18)
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: clamp(16px, 4vw, 24px);
    padding-bottom: calc(env(safe-area-inset-bottom) + 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .25);
}

.hero .badge {
    font-size: clamp(12px, 3.5vw, 13px);
    letter-spacing: .08em;
    background: rgba(212, 185, 135, 1);
    padding: 4px 8px;
    border-radius: 12px;
    display: table;
    margin: 5px auto 5px 0;
    border: 1px solid rgba(255, 248, 240, .2)
}

.hero-title {
    font-size: clamp(18px, 5.5vw, 24px);
    line-height: 1.35;
    font-weight: 700;
    margin: 6px 0 8px
}

.hero-sub {
    font-size: var(--fz-16);
    color: var(--c-bg);
    line-height: 1.7;
    opacity: .92;
    margin: 0 0 12px
}

.hero-feature {
    width: auto;
    max-width: none;
    height: auto;
    padding: clamp(8px, 1.2vw, 12px);
    border-radius: 14px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 14px;
    padding: 10px 12px;
    color: var(--c-muted);
    text-shadow: none;
    max-width: 135px
}

.hero-feature-number {
    font-size: var(--fz-30);
    line-height: 1;
    font-weight: 800;
    color: #b27730;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(255, 255, 255, .8);
    animation: float 5s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

.hero .cta-group {
    display: flex;
    gap: 10px;
}

.hero .cta-group .btn {
    padding: .85em .5em;
    max-width: 500px;
    width: 100%;
}


@media (max-aspect-ratio: 72/100) {
    .hero img.logo {
        margin: 0 auto;
    }

    .hero .badge {
        margin: 5px auto;
    }

    .hero-sub small.asterisk {
        text-align: center;
    }

    .hero--lux {
        min-height: 35vh;
        min-height: 35svh;
        justify-content: center;
    }

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

    .hero .cta-group {
        flex-direction: column;
    }
}

.gift-band {
    margin-top: 10px;
    font-size: var(--fz-12);
}

.gift-band p {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.gift-band strong {
    color: var(--c-brand);
    text-shadow: 0 2px 4px rgba(255, 255, 255, .5);
}

/* === 予約特典チップ === */
.perk-row {
    display: flex;
    justify-content: flex-start;
    margin: 8px 0 10px;
}

.perk-chip {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 5px;
    font-size: var(--fz-14);
    background: rgba(255, 255, 255, .65);
    color: var(--c-text);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 8px;
    box-shadow: var(--shadow-1);
    backdrop-filter: blur(4px);
    text-shadow: none;
    max-width: 500px;
    width: 100%;
}

.perk-chip strong {
    color: var(--c-gold);
    font-weight: 700;
}

.perk-chip .perk-ic {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}


/* SPはCTAとの間隔を少し広げる */
@media (max-width:767px) {
    .perk-row {
        margin: 6px 0 8px;
        justify-content: center;
    }
}


@media (max-aspect-ratio: 3/4) {
    .hero img.logo {
        margin: 0 auto;
    }

    .hero .badge {
        margin: 5px auto;
    }

    .hero-sub small.asterisk {
        text-align: center;
    }

    .hero--lux {
        min-height: 35vh;
        min-height: 35svh;
        justify-content: center;
    }

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

    #global li a {
        font-size: var(--fz-14);
    }

    #global li.pc.watch a {
        font-size: var(--fz-14);
    }
}

@media (min-width:1024px) {
    .hero--lux {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero {
        display: grid;
        grid-template-columns: 1.8fr minmax(680px, 860px) .2fr
    }

    .hero-content {
        position: absolute;
        top: 12%;
        left: 45%;
        text-align: left;
        padding: 0 4vw 0 2vw;
        max-width: 680px;
        display: flow-root;
    }

    .hero-features {
        justify-content: flex-start;
    }

    .hero-title {
        font-size: clamp(24px, 3.2vw, 40px)
    }

    .hero-sub {
        margin-top: 8px;
        font-weight: 600
    }
    .hero .cta-group{
        margin-top: 10px;
    }
    .hero .perk-chip{
        border-radius: 5px;
    }

    .gift-brand strong {
        text-shadow: 0 1px 3px rgba(255, 255, 255, .8);
    }
}

@media (max-width:767px) {

    .hero {
        place-items: center;
        margin: 100px auto 0
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        height: 100%;
    }

    .hero-bottom {
        margin-top: auto;
    }

    .hero-features {
        display: none;
    }

    .hero .badge {
        margin: 2px auto 5px;
    }

    .hero-sub small.asterisk {
        font-size: 10px;
        margin-left: auto;
        margin-right: 20px;
        text-align: right;
    }

    .hero--lux {
        min-height: 78vh;
        min-height: 78svh;
    }

    .gift-band {
        font-size: 12px
    }

    .cta-group,
    .btn-row {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 8px;
    }

    .btn[data-hero="primary"],
    .btn.btn--primary.btn--lg {
        width: 100%;
        min-height: 48px;
        padding: 0.9em 1.1em;
        font-size: clamp(15px, 4.2vw, 16px);
        line-height: 1.4;
        letter-spacing: .02em;
        border-radius: 12px;
        box-shadow: var(--shadow-2);
        text-align: center;
        white-space: normal;
    }

    .btn[data-hero="secondary"],
    .btn.btn--outline {
        width: 100%;
        min-height: 46px;
        padding: 0.85em 1.05em;
        font-size: clamp(15px, 4.2vw, 16px);
        line-height: 1.4;
        border-width: 2px;
        border-radius: 12px;
    }

    .hero-content .cta-group,
    .hero-content .btn-row {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .gift-band strong {
        text-shadow: 0 2px 4px rgba(255, 255, 255, .8);
    }
}

/* =========================
   Bridal Rings Section
   ========================= */

.ring-details-inner {
    text-align: left;
}

.ring-card-lead,
.ring-summary,
.ring-details-inner p {
    font-size: var(--fz-14);
}

/* 画像枠 */

.bridal-rings-section .ranking-ring-card-wrapper {
    object-fit: cover;
    width: 100%;
    max-height: 190px;
}

.bridal-rings-section .title-sub strong.highlight {
    color: var(--c-gold);
    font-weight: 600;
    background: linear-gradient(transparent 70%, rgba(212, 175, 55, .25) 70%);
    padding: 0 2px;
}

/* ── ポイント ───────────── */

.bridal-rings-section .feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 10px 20px;
    background: var(--c-box);
}

.bridal-rings-section .feature-list li:nth-child(5) {
    grid-column: 1 / -1;
    /* 両カラムをまたいで横幅いっぱいに */
}

.bridal-rings-section .feature-point {
    color: var(--c-gold);
    font-weight: 500;
    font-size: var(--fz-14);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.bridal-rings-section .feature-text {
    font-size: var(--fz-14);
    color: var(--c-text);
}

.bridal-rings-section .features-header {
    margin-bottom: 20px;
}

.bridal-rings-section small {
    display: block;
    color: #999;
}

.bridal-rings-section .feature-list {
    margin-bottom: 20px;
    gap: var(--sp-12);
}

.bridal-rings-section a.btn {
    width: 100%;
}

/* ── レスポンシブ ─────────────────────── */


@media (max-width: 767px) {

    .bridal-rings-section .ring-card img {
        max-height: 110px;
    }

    .feature-item {
        position: relative;
        padding: 25px 30px;
        transition: all 0.3s ease;
        flex-direction: column;
    }

    .feature-point {
        position: absolute;
        top: -12px;
        left: 20px;
        color: #967d4b;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .bridal-rings-section .feature-list,
    .bridal-rings-section .feature-grid {
        gap: var(--sp-12);
        grid-template-columns: 1fr 1fr;
    }
}

/* ========== RANKING / BRAND / STORE CARD ======= */
.popular-rings-section .ranking-grid {
    display: grid;
    gap: var(--sp-24);
    grid-auto-flow: column;
    align-items: stretch;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch
}

@media (max-width:767px) {

    .ranking-grid {
        overflow-x: auto;
        padding-bottom: 10px;
        gap: var(--sp-16);
    }

    .ranking-grid>li {
        flex: 0 0 240px;
        min-width: 240px;
        scroll-snap-align: start;
        height: auto;
    }

    .ranking-grid ul.brand-stores {
        margin-bottom: auto;
    }

    .popular-rings-section .view-more-section {
        margin-top: 20px;
    }
}

/* 商品カード（リング） */
.ring-card.card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
    height: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: stretch;
    padding-bottom: 10px;
}

.ring-card-body {
    padding: 10px 10px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    flex: 1;
}

.ring-info {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: .75rem;
}

.ring-card-body .ring-cta {
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fz-12);
}

.ring-card-body .ring-card-title {
    white-space: nowrap;
    font-size: var(--fz-14);
}

.ring-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1
}

.ranking-grid .ring-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.ring-info {
    padding: 25px 25px 0
}

.ring-brand {
    font-size: .9rem;
    color: var(--c-accent);
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: .02em;
    display: flex;
    gap: 15px
}

.ring-name,
.ring-price {
    font-size: .9rem;
    color: var(--c-muted);
}

.ring-description {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: auto;
}

.ring-info .brand-stores {
    margin-top: auto;
}

@media (max-width:767px) {

    .ring-card-body {
        padding: 20px;
    }

    .ring-info {
        gap: .5rem;
        padding: 10px 10px 0;
    }
}

/* ── 初期8件、→18件、→全件 ───────────────── */

/* カード自体を消す */
.brand-card.hidden {
    display: none !important;
}

#showMoreWrapper {
    text-align: center;
    margin: 1.5rem 0;
}

.paged-hidden {
    display: none !important;
}

/* CTA（カード内/セクション） */
.ring-cta,
.expand-button {
    all: unset;
    display: block;
    text-align: center;
    padding: .85em 1.2em;
    border: 2px solid var(--c-accent);
    border-radius: var(--radius-6);
    color: var(--c-muted);
    cursor: pointer;
    text-decoration: none;
    transition: .2s ease;
    font-weight: 500;
    font-size: var(--fz-14);
    background: rgba(255, 255, 255, .7);
}

.expand-button:hover,
.ring-cta:hover,
.expand-button:hover {
    background: var(--c-accent);
    color: #fff
}

.ring-cta::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 0.5em;
    transition: transform 0.3s ease;
}

.ring-cta:hover::after {
    transform: rotate(-45deg) translateX(4px);
}

.store-cta {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .8em 1.2em;
    border-radius: 25px;
    background: var(--c-brand);
    color: #fff;
    cursor: pointer;
    transition: .2s;
}

.store-cta:hover {
    background: var(--c-brand-strong);
    transform: translateY(-2px)
}

/* ========== Problem Section ======= */
.problem-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 20px;
}

.problem-list li {
    padding-left: 28px;
    position: relative;
    margin: 12px 0;
}

.problem-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--c-gold);
    font-weight: bold;
}

.problem-lead {
    text-align: center;
    color: #444;
    background-color: #f8f6f3;
    margin-top: 40px;
    padding: 40px 0;
}

/* .problem-section .section-cta {
    background: radial-gradient(circle at top left, #faf7f3 0%, transparent 60%),
        radial-gradient(circle at bottom right, #faf7f3 0%, transparent 60%);
    border: 1px solid rgba(212, 175, 55, 0.1)
} */

/* ============ Problem list 折りたたみ（SPのみ） ============ */
@media (min-width: 768px) {
    #problemsCollapse .collapsible__toggle {
        display: none !important;
    }
}

@media (max-width: 767px) {
    #problemsCollapse {
        position: relative;
    }

    /* 最初は2項目だけ表示 */
    #problemsCollapse[data-expanded="false"] .problem-list li:nth-child(n+3) {
        display: none;
    }

    /* グラデーションのフェード（閉じている時のみ表示） */
    #problemsCollapse .collapsible__body {
        position: relative;
        padding-bottom: 24px;
    }

    #problemsCollapse[data-expanded="false"] .collapsible__body::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 24px;
        height: 56px;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--c-surface));
    }


    #problemsCollapse .collapsible__toggle {
        display: block !important;
        appearance: none;
        border: none;
        background: none;
        padding: 0;
        margin: 4px auto 0;
        font: inherit;
        color: var(--c-accent);
        text-decoration: underline;
        cursor: pointer;
    }

    #problemsCollapse[data-expanded="true"] .collapsible__toggle {
        margin-top: 12px;
    }

    /* 動きに弱いユーザー配慮：動作を即時に */
    @media (prefers-reduced-motion: reduce) {
        #problemsCollapse .collapsible__body {
            transition: none !important;
        }
    }
}


/* === Reasons Chosen Section === */

.section-header .reasons-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-24);
}

.section-header .intro-text {
    text-align: center;
}

.section-header span.main-title {
    font-size: 1rem;
    color: var(--c-text);
    display: block;
}

.section-header .reason-subtitle-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-header .title-number {
    font-size: 5rem;
    color: var(--c-accent);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0 15px;
    opacity: 0.8;
}

.section-header .title-suffix {
    font-size: 2.2rem;
    color: var(--c-text);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* リスト */
.reason-item {
    align-items: center;
    background-color: var(--c-bg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    margin-bottom: var(--sp-32);
    gap: 0;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.reason-item:nth-child(even) {
    direction: rtl;
}

.reason-item:nth-child(even) .reason-content {
    direction: ltr;
}

.reason-image {
    width: 100%;
    max-height: 300px;
    height: auto;
    object-fit: cover;
}

.reason-content {
    text-align: left;
    padding: 0 40px;
}

.reason-number-wrap {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-16);
    margin-bottom: var(--sp-12);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--c-accent);
    line-height: 1;
}

.reason-title {
    font-size: var(--fz-18);
    line-height: 1.5;
    color: var(--c-muted);
    font-weight: 400;
}

.reason-subtitle {
    font-size: var(--fz-18);
    color: var(--c-accent);
    margin-bottom: var(--sp-12);
}

.reason-description {
    font-size: var(--fz-14);
    color: var(--c-muted);
    line-height: 1.7;
}

/* もっと見るボタン */
.expand-button {
    margin: 50px auto 0;
}

/* 展開エリア */
.expandable-reasons {
    margin-top: var(--sp-32);
    display: none;
}

.expandable-reasons.is-active {
    display: block;
}

.reasons-chosen-section .btn.btn--primary.btn--lg {
    margin-top: var(--sp-20);
}

@media (min-width:768px) {
    .readmore-btn {
        display: none;
    }
}

@media (max-width:767px) {
    .section-header .intro-text {
        letter-spacing: -0.02rem;
    }

    .section-header .title-number {
        font-size: 3.5rem;
    }

    .section-header .title-suffix {
        font-size: 1.8rem
    }

    .reason-content {
        padding: 20px 10px;
    }

    .reason-number {
        font-size: 2.5rem;
    }

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

    .reason-description {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .reason-description.is-open {
        max-height: 500px;
    }

    .readmore-btn {
        display: block;
        background: none;
        border: none;
        color: #ccc;
        text-decoration: underline;
        margin: 4px auto 0;
        font-size: 11px;
    }
}

/* ========== Purchase Benefits Section ========== */

.purchase-benefits-section h3.title-sub {
    font-size: var(--fz-16);
    text-align: center;
    color: var(--c-gold);
}

.purchase-benefits-section .benefit-image img {
    object-fit: cover;
    width: 100%;
}

.purchase-benefits-section .benefit-badge {
    background: var(--c-surface);
    color: var(--c-muted);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.purchase-benefits-section .benefits-showcase {
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    grid-auto-flow: column;
}

.purchase-benefits-section .benefit-item {
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.purchase-benefits-section .benefit-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 10px;
}

.purchase-benefits-section .benefit-description {
    font-size: var(--fz-14);
    margin-bottom: var(--sp-12);
}

.purchase-benefits-section .benefit-content .featured-brand-stores {
    margin-top: auto;
}

/* =========================
   Item / Featured Brands
   （<section class="item section">）
========================= */

.item .featured-brands {
    display: flex;
    flex-direction: column;
    gap: var(--sp-56);
}

/* カード */
.item .featured-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* 偶数番の左右反転（画像とテキストを交互に） */
.item li:nth-child(even) .featured-card {
    direction: rtl;
}

.item li:nth-child(even) .featured-card .featured-content {
    direction: ltr;
}


/* テキスト側 */
.item .featured-content {
    padding: var(--sp-32);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* タイトル/本文 */
.item .featured-brand-name {
    font-size: var(--fz-24);
    font-weight: 600;
    color: var(--c-text);
    letter-spacing: 0.02em;
}

.item .featured-brand-description {
    font-size: var(--fz-14);
    color: var(--c-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* 店舗タグ*/
.item .featured-brand-stores {
    margin-top: var(--sp-12);
    display: flex;
    gap: 5px;
}

/* 画像側（PC：3枚グリッド） */
.item .featured-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 100%;
}

.item .featured-image {
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
    display: block;
    aspect-ratio: 200 / 267;
}

.item .featured-image:hover {
    transform: scale(1.05);
}



/* CTAリンク*/
.item .btn.btn--outline {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.section-cta .btn.btn--primary {
    margin-top: 20px;
}

/* ======= Responsive ======= */
@media (max-width: 767px) {
    .item featured-brands {
        gap: var(--sp-20);
    }

    /* カードは縦積みに */
    .item .featured-card {
        display: flex;
        flex-direction: column-reverse;
        min-height: auto;
    }

    /* SP用：画像横スクロール */
    .item .featured-images {
        display: flex;
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        height: 250px;
    }

    .item li:nth-child(even) .featured-card {
        direction: ltr;
    }

    .item .featured-image {
        flex: 0 0 60%;
        scroll-snap-align: start;
        height: 100%;
    }

    .item .featured-brand-name {
        font-size: var(--fz-18);
    }

    .item .featured-content {
        padding: var(--sp-24);
    }
}

/* =========================
   Item / Brands All
   （ <section class="mobile-filter">）
========================= */
.brand-all {
    font-size: var(--fz-24);
}

.mobile-filter {
    /* position: sticky;
    top: 90px;
    z-index: 2; */
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 30px;
    margin-top: 0;
}

.mobile-filter .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mobile-filter .filter-left,
.mobile-filter .filter-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group p {
    font-size: 0.9rem;
    color: var(--c-muted);
    margin: 0;
    min-width: 80px;
    flex-shrink: 0;
}

.brands-grid {
    padding: 0;
    margin: 0;
}

.brands-grid>.brand-item {
    min-width: 0;
    display: flex;
}

.brand-card-link {
    display: block;
    width: 100%;
    height: 100%;
}

article.brand-card {
    background: var(--c-bg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

article.brand-card .brand-content {
    padding: 10px 10px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 0;
}

.brand-card .brand-content p {
    margin-top: auto;
    font-size: var(--fz-12);
}

.brand-image {
    width: 100%;
    background: linear-gradient(135deg, #f8f6f3, #e8e6e1);
    display: block;
    color: #999;
    font-size: 0.8rem;
    position: relative;
    aspect-ratio: 4 / 3;
}

/* 古い Safari（aspect-ratio 非対応）フォールバック */
@supports not (aspect-ratio: 1 / 1) {
    .brand-image {
        height: auto;
    }

    .brand-thumb {
        position: relative;
        width: 100%;
        padding-top: 75%;
        overflow: hidden;
    }

    /* 75% = 4:3 */
    .brand-thumb>img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.brand-tag {
    background: #f0f0f0;
    color: var(--c-muted);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    margin: 0 auto 20px;
    line-height: 1;
    display: table;
}

/* 指輪タイプボタン / 価格ボタン */
.ring-type-buttons,
.store-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ring-type-btn,
.store-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: var(--fz-12);
    cursor: pointer;
    transition: all 0.2s;
}

.ring-type-btn.is-active,
.store-btn.is-active {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
}

.detail-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* 詳細検索・クリアボタン */
.detail-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #555;
    background: #555;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.detail-btn:hover {
    background: #ccc;
    border: 2px solid #ccc;
}

.clear-all {
    padding: 6px 12px;
    border: 2px solid var(--c-muted);
    border-radius: 15px;
    background: white;
    color: var(--c-muted);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-all:hover {
    background: var(--c-border);
}


/* ドロワー全体 */
.drawer {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999;
}

.drawer[open],
.drawer[aria-hidden="false"],
.drawer:not([hidden]) {
    display: block;
}

/* 背景オーバーレイ */
.drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* パネル本体 */
.drawer__panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 90%;
    max-width: 420px;
    background: #fff;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.4;
}

/* ヘッダー */
.drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.drawer__header h3 {
    font-size: var(--fz-12);
    margin: 0;
}

.drawer__close {
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
}

/* 本文 */
.drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 12px;
}

.drawer__group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 6px 12px;
}

.drawer__section {
    margin: 0;
}

.drawer__section h4 {
    font-size: var(--fz-12);
    margin-bottom: 4px;
    margin-top: 10px;
}

.drawer__section label {
    display: block;
    font-size: var(--fz-12);
    line-height: 1;
}

/* フッター */
.drawer__footer button {
    flex: 1;
    padding: 6px;
    font-size: var(--fz-12);
    margin-top: 0;
}

.chk {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
}

.chk:hover {
    background: var(--c-chip);
}

.chk input[type="checkbox"],
.chk input[type="radio"] {
    width: 15px;
    height: 15px;
    accent-color: var(--c-accent) !important;
    cursor: pointer;
}

.drawer__footer {
    display: flex;
    gap: 12px;
    padding: 8px;
    border-top: 1px solid var(--c-border);
    background: white;
}

@media (max-width: 767px) {
    .drawer__panel {
        max-width: 90%;
        right: 0;
    }

    .drawer__group {
        gap: 0px 3px;
    }

    .mobile-filter .filter-row {
        flex-direction: column;
        gap: 5px;
    }

    .mobile-filter {
        position: static;
        margin: -20px -20px 50px -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        top: 50px;
    }

    .filter-group p {
        min-width: 60px;
        font-size: 0.75rem;
    }

    .ring-type-buttons,
    .store-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .ring-type-btn,
    .store-btn {
        padding: 6px 12px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .detail-btn {
        font-size: 0.8rem;
        padding: 5px 16px;
    }

    .drawer__footer button {
        font-size: clamp(11px, 2.2vw, 12px);
        margin-top: 0;
    }

    article.brand-card .brand-content {
        padding: 5px 5px 10px;
    }

    article.brand-card h4 {
        font-size: 0.75rem;
    }

    article.brand-card .brand-content p {
        margin-top: 0;
        text-align: left;
    }

    article.brand-card .brand-tag {
        margin-bottom: 5px;
    }

    article.brand-card .brand-stores .tag {
        font-size: 0.7rem;
    }
}


/* ========== Testimonials =======  */
.testimonial-grid.grid--scroll-x {
    display: grid;
    gap: var(--sp-24);
    grid-auto-flow: column;
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    margin-top: var(--sp-32);
}

.testimonial-card {
    background: linear-gradient(180deg, #fff 0%, #fff 70%, var(--c-surface) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-12);
    box-shadow: var(--shadow-1);
    padding: var(--sp-24);
    text-align: left;
    transition: .3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-2);
    transform: translateY(-4px);
}

.testimonial-card .testimonial-text {
    font-size: var(--fz-14);
    color: var(--c-muted);
    line-height: 1.7;
    margin-bottom: var(--sp-16);
}

/* フッター */
.testimonial-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--muted);
    background: transparent;
    letter-spacing: -0.1rem;
    font-size: var(--fz-12);
}

@media (max-width: 767px) {
    .testimonial-grid[role="list"] {
        grid-template-columns: initial;
        grid-auto-columns: 70vw;
        grid-auto-rows: 1fr;
    }
}


/* ========== FAQ ========== */
.faq-list {
    max-width: 900px;
    margin: 0 auto 50px;
    list-style: none;
    padding: 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e8e6e1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: var(--c-accent);
}

.faq-details {
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    font-size: 1.1rem;
    color: var(--c-muted);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: transparent;
    margin: 0 auto;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.08);
}

.question-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--c-accent);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.expand-icon {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--c-accent);
    transition: transform 0.3s ease;
}

.faq-details[open] .expand-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    padding: 0 30px 30px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeIn 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.answer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #967d4b;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(150, 125, 75, 0.3);
}



/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 40px;
    background: #f8f6f3;
}

.faq-cta-text {
    margin-bottom: 25px;
}

.answer-text {
    flex: 1;
    line-height: 1.7;
    padding-top: 5px;
}

.answer-text ul li {
    color: var(--c-muted);
}

/* Responsive */
@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .question-icon,
    .answer-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-right: 12px;
    }

    .faq-answer {
        padding: 0 20px 25px 20px;
    }

    .faq-cta {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .faq-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 15px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 15px 20px 15px;
    }

    .faq-cta {
        border-width: 1px;
    }
}

/* ========== Shop info =======  */

.shops {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--sp-12);
}


.shop-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shop-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 68 /43;
    height: 100%;
}

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

.shop-body {
    color: var(--c-muted);
    background: #fff;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.shop-name {
    margin: 10px 0;
    font-size: var(--fz-18);
    font-weight: 700;
    display: block;
}

.shop-small {
    display: block;
    margin-bottom: .2em;
    font-weight: 600;
    color: var(--c-gold);
}

.shop-nap {
    line-height: 1.8;
}

.shop-nap a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted #bbb;
}

.shop-actions {
    display: flex;
    gap: .6rem;
}

.shop-actions .btn.btn--secondary {
    margin-top: 0;
}

.shop-name span {
    margin-left: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .shop-item {
        grid-template-columns: 1fr;
    }

    .shop-body {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .btn {
        font-size: .8rem;
        padding: .45rem .4rem;
    }
}

/* ========== Column / Instagram =======  */

#column .column-item {
    background: var(--c-bg);
    padding-bottom: 10px;
}

#instagram .post {
    border: 1px solid rgba(230, 238, 228);
    border-top: none;
}

#column .column-title {
    font-size: var(--fz-16);
}

#column .more-view,
#instagram .more-view {
    display: table;
    margin-left: auto;
    margin-right: 0;
}

@media (max-width:767px) {

    section#column,
    section#instagram {
        padding-inline: 20px;
        overflow: hidden;
    }
}

@media (max-aspect-ratio: 72 /100) {
    #column .tag-label {
        line-height: 1;
        padding: 2px;
    }

    #column .tag-label .tag::before,
    #column .tag-label .tag::after {
        margin: 0;
    }

    #column .column-image,
    #instagram .post-media-container {
        height: 150px;
    }

    #instagram .instagram-link {
        padding: 4px;
    }

    #instagram .post-meta a {
        font-size: 0.7rem;
    }
}

@media (max-aspect-ratio: 3 /4) {
    #column .tag-label {
        line-height: 1;
        padding: 2px;
    }

    #column .tag-label .tag::before,
    #column .tag-label .tag::after {
        margin: 0;
    }

    #column .column-image,
    #instagram .post-media-container {
        height: 150px;
    }

    #instagram .instagram-link {
        padding: 4px;
    }

    #instagram .post-meta a {
        font-size: 0.7rem;
    }
}

/* ========== サブナビ =======  */
/* サブナビ（SP中心） */
.subnav {
    position: sticky;
    top: 50px;
    z-index: 90;
    border-bottom: 1px solid #eee;
    background: color-mix(in srgb, #967d4b 6%, white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.subnav__list {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
    font-size: var(--fz-12);
    line-height: 1;
}

.subnav__list li {
    margin-bottom: 5px;
}

.chip {
    position: relative;
    padding: 0.5rem .2rem 0.6rem;
    color: var(--c-muted);
    text-decoration: none;
    white-space: nowrap;
}

.chip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: transparent;
    transition: .25s;
}

.chip.-accent,
.chip.is-active {
    color: var(--c-bg);
    background-color: var(--c-accent);
    border: 1px solid var(--c-accent);
}

.chip.is-active::after {
    background: var(--c-bg);
}

/* PC時に全体を中央寄せ */
@media (min-width: 1024px) {
    .subnav {
        top: 63px;
    }

    .subnav__list {
        max-width: 850px;
        margin-inline: auto;
        padding: 10px 16px;
        display: flex;
        justify-content: center;
        gap: 10px 12px;
        overflow: visible;
    }
}

/* === SPだけ固定 === */
@media (max-width: 1023px) {

    /* body,
    html {
        overflow-x: hidden;
    } */

    header.headfix {
        min-height: 55px;
        background: #fff;
    }

    .headfixinner ul li {
        font-size: clamp(12px, 3cqw, 15px);
    }

    :root {
        --subnav-h: 50px;
    }

    .subnav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        z-index: 90;
        border-top: 1px solid #eee;
        border-bottom: 0;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, .08);
        background: color-mix(in srgb, #967d4b 6%, white);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 7px 12px calc(7px + env(safe-area-inset-bottom));
        height: 50px;
    }

    .subnav__list {
        overflow-x: auto;
        margin: 0;
        height: 100%;
    }

    /* コンテンツが隠れないように下に余白を確保 */
    body {
        padding-bottom: calc(var(--subnav-h) + env(safe-area-inset-bottom));
    }

    /* 下部固定では2段目に見えないよう、下マージンは不要 */
    .subnav__list li {
        margin-bottom: 0;
    }
}
