/* ════════════════════════════════════════════
   STAFFS-CHOICE LP — DESIGN TOKENS
════════════════════════════════════════════ */
:root {
    --black: #0c0c0c;
    --off-black: #141414;
    --dark: #1e1e1e;
    --dark-mid: #2a2a2a;
    --mid: #444444;
    --gray: #888888;
    --gray-dark: #333;
    --gray-light: #bbbbbb;
    --border: #2e2e2e;
    --border-light: #e4e4e0;
    --off-white: #f5f5f0;
    --white: #ffffff;

    /* アクセントカラー（桜色：春商戦）*/
    --accent: #e8547a;
    --accent-dark: #c4325c;
    --accent-bg: #2d0f18;
    --accent-tint: #fdf0f4;

    --amber: #e8960a;
    --amber-bg: #2a1e00;
    --amber-tint: #fff8e8;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-mono: 'DM Mono', monospace;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.2s ease;
}

/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--black);
    font-size: 14px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.topbar__logo img {
    width: auto;
    height: 28px;
}

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

ul {
    list-style: none;
}

/* ════════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════════ */
.sc-container {
    width: 100%;
    max-width: 1500px;
    margin-inline: auto;
    padding-inline: 20px;

    /* @media (min-width: 768px) {
        padding-inline: 40px;
    }

    @media (min-width: 1200px) {
        padding-inline: 64px;
    }

    @media (min-width: 1500px) {
        padding-inline: 80px;
    } */
}

.sc-inner {
    padding-block: 64px;

    @media (min-width: 768px) {
        padding-block: 88px;
    }

    @media (min-width: 1200px) {
        padding-block: 112px;
    }
}

/* ════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
.sc-display-xl {
    font-family: var(--font-display);
    /* モバイルは少し抑えめに（スマホ時に大きすぎる対策） */
    font-size: clamp(40px, 11vw, 110px);
    line-height: .92;
    letter-spacing: -.05em;
}

@media (min-width: 480px) {
    .sc-display-xl {
        font-size: clamp(52px, 14vw, 140px);
    }
}

.sc-display-md {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 52px);
    letter-spacing: .04em;
    line-height: 1;
}

.sc-heading-lg {
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.sc-eyebrow {
    font-family: var(--font-mono);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
}

/* アイブロウ共通ラッパー（横線 + テキスト） */
.sc-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sc-eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   BADGE
════════════════════════════════════════════ */
.sc-badge {
    display: inline-block;

    font-weight: 500;
    letter-spacing: -.05em;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size:14px;
    text-transform: uppercase;
}

.sc-badge--accent {
    background: var(--accent-tint);
    color: var(--accent-dark);
}

.sc-badge--amber {
    background: var(--amber-tint);
    color: #9a6200;
}

.sc-badge--dark {
    background: var(--dark-mid);
    color: var(--gray-light);
}

.sc-badge--new {
    background: var(--accent);
    color: var(--white);
    padding: 6px 12px;
    line-height: 1;
    font-size: 12px;
}

.sc-badge--white {
    background: var(--gray-dark);
    color: var(--white);
}

/* ════════════════════════════════════════════
   BUTTON
════════════════════════════════════════════ */
.sc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: .04em;
    white-space: nowrap;
    text-decoration: none;
}

.sc-btn--primary {
    background: var(--accent);
    color: var(--white);
}

.sc-btn--primary:hover {
    background: var(--accent-dark);
}

.sc-btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .4);
}

.sc-btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .05);
}

.sc-btn--dark {
    background: var(--black);
    color: var(--white);
}

.sc-btn--dark:hover {
    background: var(--dark);
}

.sc-btn--lg {
    font-size: 15px;
    padding: 18px 36px;
}

.sc-btn--full {
    width: 100%;
    justify-content: center;
}

/* ════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════ */
.sc-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(12, 12, 12, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.sc-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    max-width: 1500px;
    margin-inline: auto;
    padding-inline: 20px;

    @media (min-width: 768px) {
        padding-inline: 40px;
    }
}

.sc-topbar__logo {
    display: flex;
    align-items: center;
}

.sc-topbar__cta {
    font-size: 12px;
    font-weight: 700;
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sc-topbar__cta:hover {
    background: var(--accent-dark);
    color: var(--white);
}

/* ════════════════════════════════════════════
   S1: HERO
════════════════════════════════════════════ */
.sc-hero {
    background: var(--black);
    color: var(--white);
    padding-top: 56px;
    position: relative;
    overflow: hidden;
}

.sc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 84, 122, .1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(232, 84, 122, .05) 0%, transparent 50%);
    pointer-events: none;
}

.sc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.sc-hero__inner {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - 56px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-block: 48px;

    @media (min-width: 768px) {
        padding-block: 72px 80px;
    }
}

.sc-hero__instrument-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.sc-hero__instrument {
    position: absolute;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, .4));
}

/* モバイル（基本） */
.sc-hero__instrument--horizon {
    top: 10%;
    right: 40%;
    width: min(320px, 90vw);
    opacity: 0.2;
    transform: rotate(-5deg);
}

.sc-hero__instrument--pacifica {
    top: 10%;
    right: 20%;
    width: min(320px, 90vw);
    opacity: 0.2;
    transform: rotate(1deg);
}

.sc-hero__instrument--ariapro2 {
    top: 10%;
    right:0;
    width: min(320px, 90vw);
    opacity: 0.2;
    transform: rotate(5deg);
}

@media (min-width: 768px) {
    .sc-hero__instrument--horizon {
        top: 10%;
        right: 30%;
        width: min(320px, 90vw);
        opacity: 1;
        transform: rotate(-5deg);
    }

    .sc-hero__instrument--pacifica {
        top: 10%;
    right: 15%;
    width: min(320px, 90vw);
    opacity: 1;
    transform: rotate(1deg);
    }

    .sc-hero__instrument--ariapro2 {
        top: 10%;
        right:0;
        width: min(320px, 90vw);
        opacity: 1;
        transform: rotate(5deg);
    }
}

.sc-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.sc-hero__eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.sc-hero__title {
    color: var(--white);
    margin-bottom: 8px;
}

.sc-hero__title-part {
    display: inline-block;
    white-space: nowrap;
    line-height: 1.05;
}

.sc-hero__title-accent {
    color: var(--accent);
}

.sc-hero__subtitle {
    font-size: clamp(13px, 2vw, 18px);
    color: var(--gray-light);
    font-weight: 500;
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.8;
}

.sc-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.sc-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;

    @media (min-width: 480px) {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.sc-hero__scroll {
    position: absolute;
    bottom: 32px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    writing-mode: vertical-rl;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .2em;
    color: var(--gray);
    text-transform: uppercase;

    @media (min-width: 768px) {
        right: 40px;
    }
}

.sc-hero__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gray), transparent);
    margin-top: 8px;
}

/* ════════════════════════════════════════════
   S2: REASON
════════════════════════════════════════════ */
.sc-reason {
    background: var(--off-black);
    color: var(--white);
}

.sc-reason__header {
    margin-bottom: 48px;
}

.sc-reason__header .sc-eyebrow {
    margin-bottom: 12px;
}

.sc-reason__lead {
    font-size: clamp(13px, 1.8vw, 16px);
    color: var(--gray-light);

    font-weight: 500;
    line-height: 1.9;
}

.sc-reason__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;

    @media (min-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sc-reason__card {
    background: var(--dark);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}

.sc-reason__card:hover {
    background: var(--dark-mid);
}

.sc-reason__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.sc-reason__card:hover::before {
    transform: scaleX(1);
}

.sc-reason__num {
    font-family: var(--font-display);
    font-size: 72px;
    color: rgba(232, 84, 122, .15);
    line-height: 1;
    margin-bottom: 16px;
}

.sc-reason__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.sc-reason__body {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.85;
    font-weight: 500;
}

.sc-reason__body strong {
    color: var(--white);
    font-weight: 500;
}

/* ════════════════════════════════════════════
   SECTION HEADER（共通）
════════════════════════════════════════════ */
.sc-section-header {
    margin-bottom: 48px;
}

.sc-section-header .sc-eyebrow {
    margin-bottom: 10px;
}

.sc-section-header__title {
    margin-bottom: 12px;
}

.sc-section-header__desc {
    font-size: 14px;
    color: #555;

}

/* ════════════════════════════════════════════
   S3: COORDINATE
════════════════════════════════════════════ */
.sc-coordinate {
    background: var(--off-white);
}

.sc-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    align-items: center;
}

.sc-sort-select {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .08em;
    padding: 7px 28px 7px 12px;
    border-radius: 6px;
    border: 1.5px solid var(--border-light);
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 2px center;
    color: #666;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.sc-filter-btn {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .08em;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--border-light);
    background: var(--white);
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.sc-filter-btn:hover,
.sc-filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.sc-coord-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;

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

    @media (min-width: 1400px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sc-coord-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.sc-coord-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.sc-coord-card__header {
    background: var(--black);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc-coord-card__type {
    font-family: var(--font-mono);
    color: var(--accent);
    text-transform: uppercase;
}

.sc-coord-card__body {
    padding: 24px;
}

.sc-coord-card__staff {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-coord-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-mid);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent);
}

.sc-coord-card__avatar img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
}

.sc-coord-card__staff-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.sc-coord-card__staff-store {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.sc-coord-card__image {
    width: 100%;
    padding-top: 75%;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.sc-coord-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.sc-coord-card__image-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    width: 48px;
    height: 48px;
    font-size: 20px;
}

.sc-coord-card__image:hover .sc-coord-card__image-icon {
    background: var(--sakura, #e8547a);
    color: #fff;
}

.sc-coord-card__image-placeholder {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: .1em;
    color: var(--gray-light);
}

.sc-coord-card__quote {
    font-size: 14px;
    color: #444;
    border-left: 2px solid var(--accent);
    padding-left: 12px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.sc-coord-items {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.sc-coord-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition);
    text-decoration: none;
}

.sc-coord-item:last-child {
    border-bottom: none;
}

.sc-coord-item:hover {
    background: var(--off-white);
}

.sc-coord-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 26px;
    border-radius: 3px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    flex-shrink: 0;
    letter-spacing: -0.1em;
    line-height: 1;
    text-align: center;
}

.sc-coord-item__icon--body {
    background: #eeebff;
    color: #5a42b8;
}

.sc-coord-item__icon--amp {
    background: var(--accent-tint);
    color: var(--accent-dark);
}

.sc-coord-item__icon--efx {
    background: var(--accent-tint);
    color: var(--accent-dark);
}

.sc-coord-item__icon--set {
    background: var(--amber-tint);
    color: #9a6200;
}

.sc-coord-item__name {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-coord-item__price {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-dark);
    flex-shrink: 0;
}

/* セール価格表示 */
.sc-coord-item__price-regular {
    display: block;
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 10px;
    line-height: 1.4;
}

.sc-coord-item__price-sale {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
}

.sc-coord-item__link {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    background: #e8f0fb;
    color: #1a5fa8;
    font-weight: 500;
    flex-shrink: 0;
    transition: background var(--transition);
}

.sc-coord-item__link:hover {
    background: #1a5fa8;
    color: var(--white);
}

.sc-coord-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    gap: 12px;
    flex-wrap: wrap;
}

.sc-coord-card__total-label {
    font-size: 10px;
    color: var(--gray);
    font-family: var(--font-mono);
    letter-spacing: .06em;
    margin-bottom: 2px;
}

.sc-coord-card__total-price {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent-dark);
    letter-spacing: .02em;
    line-height: 1;
}

.sc-coord-card__total-note {
    font-size: 10px;
    color: var(--accent-dark);
    margin-top: 3px;
}

/* ════════════════════════════════════════════
   S4: BRANDS
════════════════════════════════════════════ */
.sc-brands {
    background: var(--black);
    color: var(--white);
}

.sc-brands__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 48px;

    @media (min-width: 900px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sc-brand-panel {
    background: var(--dark);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}

.sc-brand-panel:hover {
    background: #232323;
}

.sc-brand-panel__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.sc-brand-panel__num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .15em;
    color: var(--gray);
    margin-bottom: 20px;
}

.sc-brand-panel__logo-img {
    margin: 6px 0 10px;
}
.sc-brand-panel__logo-img img {
    max-height: 36px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

.sc-brand-panel__logo {
    font-family: var(--font-display);

    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: .04em;
    line-height: 1;
    margin-bottom: 6px;
}

.sc-brand-panel__sub {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 24px;
}

.sc-brand-panel__count {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 24px;
}

.sc-brand-panel__models {
    margin-bottom: 28px;
}

.sc-brand-series {
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.sc-brand-series:last-child {
    border-bottom: 1px solid var(--border);
}

.sc-brand-series__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.sc-brand-series__desc {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.7;
    margin: 8px 0;
}

.sc-brand-series__link {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--accent);
    border: 1px solid rgba(232, 84, 122, .3);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: var(--transition);
}

.sc-brand-series__link:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.sc-brand-panel__cta {
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (min-width: 480px) {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.sc-brand-panel__link {
    font-family: var(--font-mono);

    letter-spacing: .08em;
    color: var(--accent);
    border: 1px solid rgba(232, 84, 122, .3);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: center;
}

.sc-brand-panel__link:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ════════════════════════════════════════════
   S5: GATEWAY
════════════════════════════════════════════ */
.sc-gateway {
    background: var(--off-white);
}

.sc-gateway__price-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.sc-gateway__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    @media (min-width: 768px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sc-gateway-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    transition: var(--transition);
    cursor: pointer;
    display: block;
}

.sc-gateway-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(232, 84, 122, .12);
}

.sc-gateway-card--all {
    border-style: dashed;
    background: var(--off-white);
}

.sc-gateway-card__bar {
    height: 3px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.sc-gateway-card__name {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: .04em;
    margin-bottom: 4px;
    color: var(--black);
}

.sc-gateway-card__count {
    font-size: 12px;
    color: var(--gray);
    font-family: var(--font-mono);
    margin-bottom: 12px;
}

.sc-gateway-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.sc-gateway-card__tag {
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--off-white);
    color: var(--gray);
}

.sc-gateway-card__link {
    font-size: 10px;
    color: #1a5fa8;
    font-family: var(--font-mono);
}

/* ════════════════════════════════════════════
   S6: DELIVERY
════════════════════════════════════════════ */
.sc-delivery {
    background: var(--off-black);
    color: var(--white);
}

.sc-delivery__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;

    @media (min-width: 900px) {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 80px;
    }
}

.sc-delivery__big-num {
    font-family: var(--font-display);
    font-size: clamp(72px, 18vw, 160px);
    color: var(--accent);
    line-height: .85;
    letter-spacing: -.02em;
}

.sc-delivery__big-unit {
    font-family: var(--font-display);
    font-size: clamp(20px, 4vw, 36px);
    color: var(--accent);
    letter-spacing: .04em;
    margin-bottom: 16px;
}

.sc-delivery__tagline {
    font-size: clamp(13px, 2vw, 17px);
    color: var(--gray-light);
    font-weight: 500;
    line-height: 1.9;
}

.sc-delivery__tagline em {
    font-style: normal;
    color: var(--white);
    font-weight: 500;
}

.sc-delivery__points {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sc-delivery__point {
    background: var(--dark);
    padding: 24px 28px;
    border-radius: var(--radius-sm);
}

.sc-delivery__point:first-child {
    border-radius: var(--radius-md) var(--radius-md) var(--radius-sm) var(--radius-sm);
}

.sc-delivery__point:last-child {
    border-radius: var(--radius-sm) var(--radius-sm) var(--radius-md) var(--radius-md);
}

.sc-delivery__point-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-delivery__point-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.sc-delivery__point-desc {
    font-size: 14px;
    color: var(--gray-light);
    font-weight: 500;
    line-height: 1.8;
    padding-left: 16px;
}

/* ════════════════════════════════════════════
   S_BEGINNER: 初心者タイプナビゲーション
   ※管理者限定表示（公開時は .sc-beginner--preview を削除）
════════════════════════════════════════════ */
.sc-beginner {
    background: var(--off-white);
    border-top: 1px solid var(--border-light);
    position: relative;
}

/* 管理者限定バッジ */
.sc-beginner--preview::before {
    content: '⚠️ ADMIN PREVIEW';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #f59e0b;
    color: #000;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    padding: 4px 0;
    z-index: 10;
}

.sc-beginner--preview {
    padding-top: 28px;
}

/* タブ */
.sc-bgn-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.sc-bgn-tab {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    bottom: -2px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition);
}

.sc-bgn-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.sc-bgn-panel {
    display: none;
}

.sc-bgn-panel.active {
    display: block;
}

/* タイプグリッド */
.sc-bgn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 599px) {
    .sc-bgn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.sc-bgn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.sc-bgn-item__thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}

.sc-bgn-item:hover .sc-bgn-item__thumb {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(232, 84, 122, .15);
}

.sc-bgn-item__thumb img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    display: block;
}

.sc-bgn-item__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    line-height: 1.3;
}

/* モーダルオーバーレイ */
.sc-bgn-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, .6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sc-bgn-modal.open {
    display: flex;
}

.sc-bgn-modal__content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.sc-bgn-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    color: var(--gray);
    background: none;
    border: none;
    line-height: 1;
    transition: color var(--transition);
}

.sc-bgn-modal__close:hover {
    color: var(--black);
}

.sc-bgn-modal__img {
    width: 100% !important;
    height: 200px !important;
    object-fit: contain;
    margin: 16px 0;
    display: block;
}

.sc-bgn-modal__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.sc-bgn-modal__desc {
    font-size: 13px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 24px;
}

.sc-bgn-modal__btn {
    display: block;
    text-align: center;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition);
}

.sc-bgn-modal__btn:hover {
    background: var(--accent-dark);
    color: var(--white);
}

.sc-bgn-all-link {
    text-align: center;
    margin-top: 8px;
}

/* ════════════════════════════════════════════
   #BEGINNER: タイプ別ガイド
════════════════════════════════════════════ */
.sc-beginner {
    background: var(--off-white);
    border-top: 1px solid var(--border-light);
}

/* アイコン：透遠バックグラウンド、SVG内部の色をそのまま使用 */
.sc-beginner__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4em;
    height: 1.4em;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 0.1em;
    flex-shrink: 0;
}

.sc-beginner__icon {
    display: block;
    width: 100%;
    height: 100%;
}

.sc-beginner__admin-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
    border-radius: var(--radius-sm);
    letter-spacing: .04em;
}

/* タブ */
.sc-bgn-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
}

.sc-bgn-tab {
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid var(--border-light);
    border-radius:6px 6px 0 0;
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: .04em;
}

.sc-bgn-tab.active,
.sc-bgn-tab:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* パネル */
.sc-bgn-panel {
    display: block;
}

.sc-bgn-panel[hidden] {
    display: none;
}

/* サムネイルグリッド */
.sc-bgn-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    list-style: none;
    margin-bottom: 32px;
}

@media (max-width: 599px) {
    .sc-bgn-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.sc-bgn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
}

.sc-bgn-item:hover .sc-bgn-thumb {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(232, 84, 122, .15);
}

.sc-bgn-item:hover .sc-bgn-thumb img {
    transform: scale(1.05);
}

.sc-bgn-item p {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* 円形サムネイル */
.sc-bgn-thumb-wrap {
    position: relative;
    display: inline-block;
}

.sc-bgn-thumb {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-light);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sc-bgn-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

@media (min-width: 960px) {
    .sc-bgn-thumb {
        width: 200px;
        height: 200px;
    }
}

/* 全商品リンク */
.sc-bgn-all-link {
    text-align: center;
    margin-top: 8px;
}

/* 右上のアイコンバッジ */
.sc-bgn-thumb__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    pointer-events: none;
}

/* モーダル */
.sc-bgn-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.sc-bgn-modal[hidden] {
    display: none;
}

.sc-bgn-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    cursor: pointer;
}

.sc-bgn-modal__content {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
}

.sc-bgn-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--black);
    transition: background var(--transition);
    line-height: 1;
}

.sc-bgn-modal__close:hover {
    background: var(--border-light);
}

.sc-bgn-modal__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-right: 32px;
}

.sc-bgn-modal__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    display: block;
}

.sc-bgn-modal__content p {
    font-size: 14px;
    color: #444;
    line-height: 1.85;
}

.sc-bgn-modal__btn-wrap {
    text-align: center;
    margin-top: 20px;
}

/* ════════════════════════════════════════════
   S5: PICKS
════════════════════════════════════════════ */
.sc-picks {
    background: var(--white);
    border-top: 1px solid var(--border-light);
}

.sc-picks__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;

    @media (min-width: 640px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media (min-width: 960px) {
        grid-template-columns: repeat(3, 1fr);
    }
    @media (min-width: 1200px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* カード：縦組み（画像上・コンテンツ下） */
.sc-pick-card {
    display: block;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    transition: box-shadow var(--transition), transform var(--transition);
}

.sc-pick-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

/* 画像エリア：カード幅全体・固定高280px */
.sc-pick-card__img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--off-white);
}

.sc-pick-card__img img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}

.sc-pick-card__img-placeholder {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.sc-pick-card__body {
    padding: 14px 16px;
}

.sc-pick-card__brand {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: 4px;
}

.sc-pick-card__title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.sc-pick-card__quote {
    font-size: 12px;
    color: #555;
    border-left: 2px solid var(--accent);
    padding-left: 8px;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 500;
}

.sc-pick-card__cta {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--accent);
    border: 1px solid rgba(232, 84, 122, .4);
    border-radius: 4px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    text-align: center;
}

.sc-pick-card__cta:hover,
.sc-pick-card:hover .sc-pick-card__cta {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.sc-pick-card__staff {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-pick-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dark-mid);
    flex-shrink: 0;
    overflow: hidden;
    /* 親カードの hover transform 時のぼやけ軽減 */
    transform: translateZ(0);
    isolation: isolate;
}

.sc-pick-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    backface-visibility: hidden;
}

.sc-pick-card__staff-info {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
}

.sc-pick-card__staff-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
}

/* ════════════════════════════════════════════
   S8: STAFF LIST
════════════════════════════════════════════ */
.sc-staff-list {
    background: var(--off-white);
    border-top: 1px solid var(--border-light);
}

.sc-staff-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;

    @media (min-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
    }

    @media (min-width: 900px) {
        grid-template-columns: repeat(4, 1fr);
    }

    @media (min-width: 1200px) {
        grid-template-columns: repeat(5, 1fr);
    }
}

.sc-staff-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}

.sc-staff-chip:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(232, 84, 122, .1);
}

.sc-staff-chip--empty {
    border-style: dashed;
    background: transparent;
    opacity: .6;
}

.sc-staff-chip__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dark-mid);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--accent);
}

.sc-staff-chip__avatar img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.sc-staff-chip--empty .sc-staff-chip__avatar {
    background: var(--off-white);
    border: 1.5px dashed var(--gray-light);
    color: var(--gray-light);
    font-size: 20px;
}

.sc-staff-chip__name {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.sc-staff-chip__store {
    font-size: 12px;
    color: var(--gray);
    font-family: var(--font-mono);
    letter-spacing: .04em;
}

.sc-staff-chip__btn {

    margin-top: 4px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--accent);
    border: 1px solid rgba(232, 84, 122, .4);
    border-radius: 4px;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.sc-staff-chip:hover .sc-staff-chip__btn {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.sc-staff-chip--empty .sc-staff-chip__name {
    color: var(--gray);
    font-weight: 500;
}

/* ════════════════════════════════════════════
   S9: FINAL CTA
════════════════════════════════════════════ */
.sc-final-cta {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sc-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232, 84, 122, .1) 0%, transparent 70%);
    pointer-events: none;
}

.sc-final-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.sc-final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 80px);
    letter-spacing: -.04em;
    line-height: .95;
    margin-bottom: 24px;
    text-align: left;
}

.sc-final-cta__title em {
    font-style: normal;
    color: var(--accent);
}

@media (min-width: 768px) {
    .sc-final-cta__title {
        text-align: center;
    }
}

.sc-final-cta__desc {
    font-size: clamp(13px, 1.8vw, 16px);
    color: var(--gray-light);
    font-weight: 500;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 40px;
    line-height: 1.9;
}

.sc-final-cta__btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;

    @media (min-width: 480px) {
        flex-direction: row;
        justify-content: center;
    }
}

.sc-final-cta__sub-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.sc-final-cta__sub-link {
    text-align: center;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    min-width: 140px;
}

a.sc-final-cta__sub-link:hover {
    border-color: var(--accent);
    background: rgba(232,84,122,.08);
}

a.sc-final-cta__sub-link:hover .sc-final-cta__sub-link-btn {
    opacity: 1;
    transform: translateY(0);
}

.sc-final-cta__sub-link-label {
    font-size: 10px;
    color: var(--gray);
    font-family: var(--font-mono);
    letter-spacing: .1em;
    margin-bottom: 4px;
}

.sc-final-cta__sub-link-value {
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
}

.sc-final-cta__sub-link-btn {
    display: inline-block;
    font-size: 10px;
    font-family: var(--font-mono);
    letter-spacing: .08em;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease;
}

/* ════════════════════════════════════════════
   SITE FOOTER
════════════════════════════════════════════ */
.sc-site-footer {
    background: var(--off-black);
    color: var(--gray);
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.sc-site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;

    @media (min-width: 768px) {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.sc-site-footer__logo {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: .1em;
    color: var(--white);
}

.sc-site-footer__copy {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

/* ════════════════════════════════════════════
   ANIMATION
════════════════════════════════════════════ */
.sc-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.sc-fade-up.visible {
    opacity: 1;
    transform: none;
}

.sc-fade-up:nth-child(2) {
    transition-delay: .1s;
}

.sc-fade-up:nth-child(3) {
    transition-delay: .2s;
}

.sc-fade-up:nth-child(4) {
    transition-delay: .3s;
}

/* ════════════════════════════════════════════
   コーデカード — サブアイテム選択（ラジオボタン）
   ============================================ */

/* 選択可能なアイテム行 */
.sc-coord-item--selectable {
    cursor: pointer;
    border-radius: 6px;
    transition: background .18s, box-shadow .18s;
    padding: 10px 14px;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.sc-coord-item--selectable:hover {
    background: rgba(255,255,255,.07);
}

.sc-coord-item--selectable.is-selected {
    background: rgba(232, 84, 122, .12);
    box-shadow: inset 0 0 0 1.5px rgba(232, 84, 122, .45);
}

/* チェックボックス本体 — カスタム */
.sc-coord-item__checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 2px solid rgba(0,0,0,.3);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: border-color .18s, background .18s;
    flex-shrink: 0;
}

.sc-coord-item__checkbox:checked {
    border-color: var(--sakura, #e8547a);
    background: var(--sakura, #e8547a);
}

.sc-coord-item__checkbox:checked::after {
    content: '';
    display: block;
    width: 9px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sc-coord-item__checkbox:focus-visible {
    outline: 2px solid var(--sakura, #e8547a);
    outline-offset: 2px;
}

/* TOTAL変動アニメーション */
@keyframes sc-total-update {
    0%   { opacity: .4; transform: scale(.96); }
    100% { opacity: 1;  transform: scale(1); }
}

.js-coord-total.is-updating {
    animation: sc-total-update .25s ease;
}

/* ════════════════════════════════════════════
   カメラアイコンボタン
   ============================================ */

.sc-coord-item__name {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.sc-item-img-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: rgba(232, 84, 122, 0.3);
    color: var(--sakura, #e8547a);
    cursor: pointer;
    font-size: 11px;
    flex-shrink: 0;
    transition: background .18s, color .18s;
    padding: 0;
}

.sc-item-img-btn:hover {
    background: var(--sakura, #e8547a);
    color: #fff;
}

.sc-coord-card__image-icon.sc-item-img-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
    background: rgba(255, 255, 255, .5);
}

/* ════════════════════════════════════════════
   画像モーダル
   ============================================ */

.sc-img-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.sc-img-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-img-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
    cursor: pointer;
}

.sc-img-modal__content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    max-width: min(480px, 90vw);
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    animation: sc-modal-in .22s ease;
}

@keyframes sc-modal-in {
    from { opacity: 0; transform: scale(.94); }
    to   { opacity: 1; transform: scale(1); }
}

.sc-img-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.08);
    color: #333;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s;
}

.sc-img-modal__close:hover {
    background: rgba(0,0,0,.18);
}

.sc-img-modal__img-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.sc-img-modal__img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
}

.sc-img-modal__name {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-align: center;
}

/* ════════════════════════════════════════════
   カードヘッダー — スタッフ・本体名
   ============================================ */

/* ヘッダー: スタッフ（左）・バッジ（右） */
.sc-coord-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 16px;
}

.sc-coord-card__header .sc-coord-card__staff {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.sc-coord-card__header .sc-coord-card__staff-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-coord-card__header .sc-coord-card__staff-store {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-coord-card__header .sc-badge {
    flex-shrink: 0;
    margin-left: auto;
}

/* 本体名（大きめフォント） */
.sc-coord-card__body-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.4;
    padding: 0;
}

/* ════════════════════════════════════════════
   コーデサマリー（TOTAL上部）
   ============================================ */

.sc-coord-summary {
    display: none;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
    margin-bottom: 8px;
    word-break: break-all;
}

.sc-coord-summary.is-visible {
    display: block;
}

/* 注醈3（セット選択時のみ表示） */
.sc-coord-note {
    display: none;
    font-size: 12px;
    color: #666;
    text-align: right;
    margin-top: 8px;
}

.sc-coord-note.is-visible {
    display: block;
}
