html,
body {
    font-family: "Noto Sans JP", ui-sans-serif, system-ui, sans-serif;
    /* 装飾 blur / 負オフセットのはみ出しで横スワイプしないよう全ページ共通で封じる */
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior-x: none;
}

h1,
h2,
h3,
.font-serif,
.font-display {
    font-family: "Playfair Display", "Noto Sans JP", serif;
}

:root {
    --gemlive-bg: #0a0a1a;
    --gemlive-bg-deep: #060610;
    --gemlive-gold: #c9a84c;
    --gemlive-gold-light: #d4b55e;
    --gemlive-gold-muted: rgb(201 168 76 / 0.35);
    --gemlive-sapphire: #1a3a6e;
    --gemlive-text: rgb(255 255 255 / 0.82);
    --gemlive-text-muted: rgb(255 255 255 / 0.72);
    --gemlive-text-faint: rgb(255 255 255 / 0.4);
    --gemlive-border: rgb(255 255 255 / 0.08);
    --gemlive-logo-plate-top: #faf9f6;
    --gemlive-logo-plate-mid: #f4f0e8;
    --gemlive-logo-plate-bottom: #ebe6de;
    --gemlive-logo-plate-border: #c9a84c;
    --gemlive-logo-plate-border-light: #e4c76b;
    --gemlive-logo-plate-border-dark: #a6852f;
    --gemlive-container-max: 80rem;
    --gemlive-container-narrow: 48rem;
    --gemlive-container-px: 1rem;
    --gemlive-container-px-md: 2rem;
    --gemlive-container-px-lg: 3rem;
    --gemlive-nav-height: 4.625rem;
    --gemlive-nav-height-md: 5.125rem;
    --gemlive-header-gap: 0.5rem;
    --gemlive-header-gap-md: 0.75rem;
    --gemlive-main-pt: calc(var(--gemlive-nav-height) + var(--gemlive-header-gap));
    --gemlive-main-pt-md: calc(var(--gemlive-nav-height-md) + var(--gemlive-header-gap-md));
    --gemlive-main-pb: 4rem;
}

.gemlive-container {
    width: 100%;
    max-width: var(--gemlive-container-max);
    margin-inline: auto;
    padding-inline: var(--gemlive-container-px);
}

@media (min-width: 768px) {
    .gemlive-container {
        padding-inline: var(--gemlive-container-px-md);
    }
}

@media (min-width: 1024px) {
    .gemlive-container {
        padding-inline: var(--gemlive-container-px-lg);
    }
}

.gemlive-container--narrow {
    max-width: var(--gemlive-container-narrow);
}

/* LIVE予定バー — 背景は全幅、中身はサイトコンテナ幅に揃える */
.le-live-ticker > div {
    width: 100%;
    max-width: var(--gemlive-container-max);
    margin-inline: auto;
    padding-inline: var(--gemlive-container-px);
}

@media (min-width: 768px) {
    .le-live-ticker > div {
        padding-inline: var(--gemlive-container-px-md);
    }
}

@media (min-width: 1024px) {
    .le-live-ticker > div {
        padding-inline: var(--gemlive-container-px-lg);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gemlive-site-nav {
    background: rgb(10 10 26 / 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gemlive-border);
}

.gemlive-site-nav.gemlive-nav-transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
}

.gemlive-site-nav.gemlive-nav-transparent.gemlive-nav-scrolled,
.gemlive-site-nav.gemlive-nav-scrolled {
    background: rgb(10 10 26 / 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--gemlive-border);
    box-shadow: 0 4px 24px rgb(0 0 0 / 0.35);
}

.gemlive-nav-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gemlive-gold-muted) 20%,
        var(--gemlive-gold) 50%,
        var(--gemlive-gold-muted) 80%,
        transparent 100%
    );
    opacity: 0.85;
    pointer-events: none;
}

.gemlive-nav-bar {
    min-height: 4.625rem;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .gemlive-nav-bar {
        min-height: 5.125rem;
    }
}

/* ── レスポンシブナビ（JS が幅を計測して desktop / compact を切替） ── */
.gemlive-nav-links,
.gemlive-nav-actions-desktop {
    display: none;
}

.gemlive-nav-mobile-tools {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.gemlive-nav-mobile-panel,
.gemlive-nav-mobile-backdrop {
    display: block;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-links,
.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-actions-desktop {
    display: flex;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-mobile-tools {
    display: none;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-logo {
    flex-shrink: 0;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-actions-desktop {
    flex-shrink: 0;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-links {
    flex: none;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    overflow: hidden;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-action-label {
    display: none;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-action {
    padding: 0.5rem;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-actions {
    padding-left: 0.5rem;
    margin-left: 0;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-link {
    padding: 0.5rem 0.625rem;
    font-size: 0.8125rem;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-link-line {
    left: 0.625rem;
    right: 0.625rem;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-link,
.gemlive-site-nav.gemlive-nav-measuring .gemlive-nav-link {
    flex-shrink: 0;
}

@media (min-width: 768px) and (max-width: 1535px) {
    .gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-bar {
        column-gap: 0.5rem;
    }

    .gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-logo .gemlive-logo-icon {
        height: 3rem;
    }

    .gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-logo .gemlive-logo-wordmark {
        height: 3.25rem;
    }

    .gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-logo.gemlive-logo-plate {
        padding: 0.25rem 0.55rem 0.25rem 0.35rem;
    }
}

@media (min-width: 1536px) {
    .gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-link {
        padding: 0.5rem 0.75rem;
    }

    .gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-link-line {
        left: 0.75rem;
        right: 0.75rem;
    }
}

/* 計測用 — 画面外で自然幅を取得 */
.gemlive-site-nav.gemlive-nav-measuring .gemlive-nav-links,
.gemlive-site-nav.gemlive-nav-measuring .gemlive-nav-actions-desktop {
    display: flex !important;
    position: absolute;
    left: -9999px;
    top: 0;
    visibility: hidden;
    pointer-events: none;
    flex: none !important;
    width: auto !important;
    max-width: none !important;
    overflow: visible !important;
}

.gemlive-site-nav.gemlive-nav-measuring .gemlive-nav-mobile-tools {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.gemlive-nav-links {
    flex-wrap: nowrap;
    align-items: center;
}

.gemlive-nav-action-label {
    display: inline;
}

/* 狭い画面ではワードマークを隠してロゴをコンパクトに */
@media (max-width: 30rem) {
    .gemlive-nav-logo .gemlive-logo-wordmark {
        display: none;
    }

    .gemlive-nav-logo.gemlive-logo-plate {
        padding: 0.15rem 0.35rem 0.15rem 0.25rem;
    }
}

@media (min-width: 30.01rem) and (max-width: 47.99rem) {
    .gemlive-nav-logo .gemlive-logo-icon {
        height: 2.75rem;
    }

    .gemlive-nav-logo .gemlive-logo-wordmark {
        height: 3rem;
    }

    .gemlive-nav-logo.gemlive-logo-plate {
        padding: 0.2rem 0.4rem 0.2rem 0.3rem;
    }
}

.gemlive-nav-logo {
    gap: 0.45rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .gemlive-nav-logo {
        gap: 0.5rem;
    }
}

/* ヘッダーロゴプレート — フッターよりコンパクト */
.gemlive-nav-logo.gemlive-logo-plate {
    padding: 0.3rem 0.7rem 0.3rem 0.45rem;
    border-width: 1px;
    border-radius: 0.5rem;
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.95),
        inset 0 0 0 1px var(--gemlive-logo-plate-border-light),
        0 2px 10px rgb(0 0 0 / 0.22),
        0 0 12px rgb(201 168 76 / 0.22);
}

.gemlive-nav-logo.gemlive-logo-plate:hover {
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 1),
        inset 0 0 0 1px #f0e2b8,
        0 2px 12px rgb(0 0 0 / 0.26),
        0 0 16px rgb(201 168 76 / 0.32);
}

/* ロゴプレート — 明るいクリーム地＋はっきりした金枠（フッター等） */
.gemlive-logo-plate {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem 0.3rem 0.4rem;
    background: linear-gradient(
        165deg,
        var(--gemlive-logo-plate-top) 0%,
        var(--gemlive-logo-plate-mid) 48%,
        var(--gemlive-logo-plate-bottom) 100%
    );
    border: 2px solid var(--gemlive-logo-plate-border);
    border-radius: 0.625rem;
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.95),
        inset 0 0 0 1px var(--gemlive-logo-plate-border-light),
        0 0 0 1px var(--gemlive-logo-plate-border-dark),
        0 4px 16px rgb(0 0 0 / 0.28),
        0 0 18px rgb(201 168 76 / 0.32);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gemlive-logo-plate:hover {
    border-color: var(--gemlive-logo-plate-border-light);
    background: linear-gradient(165deg, #fcfaf7 0%, #f6f2ea 48%, #f0ebe3 100%);
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 1),
        inset 0 0 0 1px #f0e2b8,
        0 0 0 1px var(--gemlive-logo-plate-border),
        0 4px 20px rgb(0 0 0 / 0.32),
        0 0 24px rgb(201 168 76 / 0.42);
}

.gemlive-footer-logo.gemlive-logo-plate {
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem 0.5rem 0.6rem;
}

.gemlive-nav-logo img,
.gemlive-footer-logo img {
    display: block;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.gemlive-logo-plate .gemlive-logo-icon {
    filter: drop-shadow(0 1px 4px rgb(0 0 0 / 0.12));
}

.gemlive-nav-logo .gemlive-logo-icon {
    height: 2.875rem;
}

.gemlive-nav-logo .gemlive-logo-wordmark {
    height: 3.125rem;
}

.gemlive-logo-plate .gemlive-logo-wordmark {
    filter: none;
}

@media (min-width: 768px) {
    .gemlive-nav-logo .gemlive-logo-icon {
        height: 3.375rem;
    }

    .gemlive-nav-logo .gemlive-logo-wordmark {
        height: 3.625rem;
    }
}

@media (min-width: 1024px) {
    .gemlive-nav-logo .gemlive-logo-icon {
        height: 3.625rem;
    }

    .gemlive-nav-logo .gemlive-logo-wordmark {
        height: 3.875rem;
    }
}

.gemlive-footer-logo {
    gap: 0.75rem;
}

.gemlive-footer-logo .gemlive-logo-icon {
    height: 3.5rem;
}

.gemlive-footer-logo .gemlive-logo-wordmark {
    height: 3.75rem;
}

@media (min-width: 768px) {
    .gemlive-footer-logo .gemlive-logo-icon {
        height: 4rem;
    }

    .gemlive-footer-logo .gemlive-logo-wordmark {
        height: 4.5rem;
    }
}

.gemlive-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--gemlive-text-muted);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.gemlive-nav-link:hover,
.gemlive-nav-link.is-active {
    color: var(--gemlive-gold);
}

.gemlive-nav-link-line {
    position: absolute;
    bottom: 0.125rem;
    left: 0.875rem;
    right: 0.875rem;
    height: 1px;
    background: var(--gemlive-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.gemlive-nav-link:hover .gemlive-nav-link-line,
.gemlive-nav-link.is-active .gemlive-nav-link-line {
    transform: scaleX(1);
}

.gemlive-nav-actions {
    border-left: 1px solid var(--gemlive-border);
}

.gemlive-nav-action {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--gemlive-text-muted);
    transition: color 0.2s ease;
}

.gemlive-nav-action:hover {
    color: var(--gemlive-gold);
}

.gemlive-nav-icon-btn {
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.gemlive-nav-icon-btn:hover {
    background: rgb(201 168 76 / 0.08);
}

.gemlive-nav-menu-toggle {
    border: 1px solid var(--gemlive-border);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gemlive-nav-menu-toggle[aria-expanded="true"] {
    border-color: var(--gemlive-gold);
    color: var(--gemlive-gold);
    background: rgb(201 168 76 / 0.12);
}

.gemlive-nav-menu-icon {
    font-size: 1.375rem;
    line-height: 1;
}

.gemlive-nav-action-icon {
    font-size: 1.375rem;
    line-height: 1;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-action-icon {
    font-size: 1.5rem;
}

.gemlive-nav-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgb(0 0 0 / 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gemlive-site-nav.gemlive-nav-menu-open .gemlive-nav-bar {
    position: relative;
    z-index: 50;
}

.gemlive-site-nav.gemlive-nav-menu-open .gemlive-nav-mobile-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gemlive-nav-mobile-panel {
    position: relative;
    z-index: 45;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.gemlive-nav-mobile-panel.gemlive-nav-mobile-open {
    max-height: 85vh;
    opacity: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-mobile-panel.gemlive-nav-mobile-open {
    max-height: min(85vh, 36rem);
}

.gemlive-nav-mobile-inner {
    border-top: 1px solid rgb(201 168 76 / 0.25);
    background: linear-gradient(180deg, rgb(14 14 28 / 0.98) 0%, rgb(6 6 16 / 0.99) 100%);
    padding: 0.75rem 0 1rem;
    box-shadow: inset 0 1px 0 rgb(201 168 76 / 0.08);
}

.gemlive-nav-mobile-heading {
    margin: 0 1rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gemlive-gold);
}

.gemlive-nav-mobile-link {
    display: block;
    padding: 0.8125rem 1rem;
    font-size: 0.9375rem;
    color: var(--gemlive-text);
    border-left: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gemlive-nav-mobile-link:hover,
.gemlive-nav-mobile-link.is-active {
    color: var(--gemlive-gold);
    border-left-color: var(--gemlive-gold);
    background: rgb(201 168 76 / 0.07);
}

.gemlive-nav-mobile-divider {
    height: 1px;
    margin: 0.5rem 1rem;
    background: linear-gradient(90deg, transparent, rgb(201 168 76 / 0.35), transparent);
}

.gemlive-nav-mobile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0 1rem;
}

.gemlive-nav-mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--gemlive-text-muted);
    border: 1px solid var(--gemlive-border);
    border-radius: 0.5rem;
    background: rgb(255 255 255 / 0.03);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gemlive-nav-mobile-action:hover {
    color: var(--gemlive-gold);
    border-color: rgb(201 168 76 / 0.4);
    background: rgb(201 168 76 / 0.08);
}

.gemlive-nav-mobile-search {
    grid-column: 1 / -1;
    cursor: pointer;
    width: 100%;
}

body.gemlive-nav-menu-open {
    overflow: hidden;
}

.gemlive-site-footer {
    background: linear-gradient(180deg, var(--gemlive-bg-deep) 0%, var(--gemlive-bg) 40%);
    border-top: 1px solid var(--gemlive-border);
    overflow-x: clip;
    contain: paint;
}

.gemlive-footer-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gemlive-gold-muted),
        var(--gemlive-gold),
        var(--gemlive-gold-muted),
        transparent
    );
    pointer-events: none;
}

.gemlive-footer-glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
}

.gemlive-footer-glow--left {
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background: rgb(26 58 110 / 0.18);
}

.gemlive-footer-glow--right {
    top: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    background: rgb(201 168 76 / 0.07);
}

.gemlive-footer-heading {
    margin-bottom: 1rem;
    padding-bottom: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    border-bottom: 1px solid var(--gemlive-border-gold);
}

.gemlive-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gemlive-footer-links li + li {
    margin-top: 0.5rem;
}

.gemlive-footer-links a {
    font-size: 0.875rem;
    color: var(--gemlive-text-muted);
    transition: color 0.2s ease;
}

.gemlive-footer-links a:hover {
    color: var(--gemlive-gold);
}

.gemlive-footer-signup {
    padding: 1rem 1.125rem;
    background: rgb(255 255 255 / 0.02);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 0.75rem;
}

.gemlive-footer-signup-label {
    margin-bottom: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gemlive-gold);
}

.gemlive-footer-signup-desc {
    margin-bottom: 0.875rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgb(255 255 255 / 0.45);
}

.gemlive-footer-signup-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gemlive-footer-signup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gemlive-bg);
    text-decoration: none;
    background: var(--gemlive-gold);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gemlive-footer-signup-btn:hover {
    background: var(--gemlive-gold-light);
    color: var(--gemlive-bg);
}

.gemlive-footer-signup-note {
    margin-top: 0.625rem;
    font-size: 0.6875rem;
    color: rgb(255 255 255 / 0.3);
    text-align: center;
}

.gemlive-footer-signup-note a {
    color: var(--gemlive-gold);
    text-decoration: none;
}

.gemlive-footer-signup-note a:hover {
    text-decoration: underline;
}

.gemlive-footer-email {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: #fff;
    background: transparent;
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.gemlive-footer-email::placeholder {
    color: var(--gemlive-text-faint);
}

.gemlive-footer-email:focus {
    border-color: var(--gemlive-gold);
}

.gemlive-footer-contact {
    color: var(--gemlive-text-faint);
    transition: color 0.2s ease;
}

.gemlive-footer-contact:hover {
    color: var(--gemlive-gold);
}

.gemlive-breadcrumb {
    max-width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgb(255 255 255 / 0.3);
    margin: 0 0 1.5rem;
}

.gemlive-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gemlive-breadcrumb__item {
    display: inline-flex;
    align-items: center;
}

.gemlive-breadcrumb__item + .gemlive-breadcrumb__item::before {
    content: '›';
    margin-right: 0.5rem;
    color: rgb(255 255 255 / 0.2);
}

.gemlive-breadcrumb a {
    color: inherit;
    transition: color 0.2s ease;
}

.gemlive-breadcrumb a:hover {
    color: var(--gemlive-gold);
}

.gemlive-breadcrumb__current {
    color: rgb(255 255 255 / 0.5);
}

.gemlive-captured-breadcrumb-wrap .gemlive-breadcrumb {
    margin-bottom: 0.75rem;
}

.gemlive-guide-hero {
    position: relative;
    overflow: hidden;
    padding-top: var(--gemlive-main-pt);
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
}

.gemlive-guide-hero .gemlive-breadcrumb {
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .gemlive-guide-hero {
        padding-top: var(--gemlive-main-pt-md);
        padding-bottom: 3.5rem;
    }
}

#main.gemlive-main--padded {
    padding-top: var(--gemlive-main-pt);
    padding-bottom: var(--gemlive-main-pb);
}

@media (min-width: 768px) {
    #main.gemlive-main--padded {
        padding-top: var(--gemlive-main-pt-md);
        padding-bottom: 5rem;
    }
}

#main.gemlive-main--flush {
    padding-top: 0;
    padding-bottom: var(--gemlive-main-pb);
}

.gemlive-woocommerce footer {
    margin-top: auto;
    flex-shrink: 0;
}

.gemlive-captured-breadcrumb-wrap .gemlive-seo-summary {
    margin-top: -0.25rem;
    margin-bottom: 1.5rem;
    max-width: 48rem;
}

.gemlive-captured-former-h1 {
    margin: 0.5rem 0 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 400;
    color: rgb(255 255 255 / 0.45);
    letter-spacing: 0.02em;
}

.gemlive-captured-content h1 {
    font-weight: 300;
    color: #fff;
}

.gemlive-captured-content h2,
.gemlive-captured-content h3 {
    font-weight: 300;
    color: #fff;
}

.gemlive-captured-content .font-bold.text-white {
    font-weight: 300;
}

.gemlive-captured-content [class*="bg-[#1A1A2E]"],
.gemlive-captured-content [class*="bg-[#1A1A2E]/"] {
    border-color: rgb(255 255 255 / 0.05);
}

.gemlive-captured-content a:hover {
    transition: color 0.2s ease;
}

.gemlive-single-product-wrap .related.products > h2 {
    color: #fff;
    font-weight: 300;
    font-size: 1.25rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.gemlive-single-product-wrap .related.products ul.products {
    margin-top: 0;
}

.gemlive-guide-hero__head {
    max-width: none;
}

.gemlive-guide-layout {
    display: grid;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .gemlive-guide-layout {
        grid-template-columns: 16rem minmax(0, 1fr);
        gap: 2.5rem 3rem;
        align-items: start;
    }

    .gemlive-guide-layout--single {
        grid-template-columns: minmax(0, 1fr);
    }
}

.gemlive-guide-nav {
    background: rgb(26 26 46 / 0.6);
    border: 1px solid rgb(255 255 255 / 0.06);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
}

@media (min-width: 1024px) {
    .gemlive-guide-nav {
        position: sticky;
        top: 6.5rem;
    }
}

.gemlive-guide-nav__label {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gemlive-gold);
    margin-bottom: 0.75rem;
    padding-inline: 0.5rem;
}

.gemlive-guide-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.gemlive-guide-nav__link {
    display: block;
    padding: 0.5rem 0.625rem;
    font-size: 0.8125rem;
    color: rgb(255 255 255 / 0.55);
    border-radius: 0.5rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.gemlive-guide-nav__link:hover {
    color: var(--gemlive-gold);
    background: rgb(255 255 255 / 0.04);
}

.gemlive-guide-body {
    min-width: 0;
}

.gemlive-guide-section {
    scroll-margin-top: 6rem;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.06);
}

.gemlive-guide-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.gemlive-guide-section__title {
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.25rem;
}

.gemlive-guide-lead {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgb(255 255 255 / 0.55);
    margin-bottom: 1.25rem;
}

.gemlive-guide-lead--sub {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.8125rem;
}

.gemlive-guide-steps {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gemlive-guide-step {
    display: flex;
    gap: 1rem;
    background: rgb(26 26 46 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.05);
    border-radius: 1rem;
    padding: 1.25rem;
}

.gemlive-guide-step__num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgb(10 10 26);
    border: 1px solid rgb(201 168 76 / 0.35);
    color: var(--gemlive-gold);
    font-size: 0.875rem;
    font-weight: 500;
}

.gemlive-guide-step__title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.375rem;
}

.gemlive-guide-step__text {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 0.55);
    margin: 0;
}

.gemlive-guide-step__link {
    margin-top: 0.625rem;
    margin-bottom: 0;
}

.gemlive-guide-step__link a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--gemlive-gold);
}

.gemlive-guide-step__link a:hover {
    color: var(--gemlive-gold-light);
}

.gemlive-guide-notice {
    background: rgb(10 10 26 / 0.7);
    border: 1px solid rgb(201 168 76 / 0.2);
    border-radius: 0.875rem;
    padding: 1rem 1.125rem;
}

.gemlive-guide-notice--sub {
    border-color: rgb(255 255 255 / 0.06);
}

.gemlive-guide-notice__heading {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgb(255 255 255 / 0.75);
    margin-bottom: 0.625rem;
}

.gemlive-guide-notice__list {
    margin: 0;
    padding-left: 1.125rem;
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 0.5);
}

.gemlive-guide-notice__list li + li {
    margin-top: 0.375rem;
}

.gemlive-guide-card {
    background: rgb(26 26 46 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.05);
    border-radius: 1rem;
    padding: 1.125rem 1.25rem;
    margin-bottom: 0.875rem;
}

.gemlive-guide-card--flat {
    margin-top: 1.25rem;
}

.gemlive-guide-card__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gemlive-guide-card__text {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 0.55);
    margin: 0;
}

.gemlive-guide-status-grid {
    display: grid;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .gemlive-guide-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gemlive-guide-status {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem 1rem;
    background: rgb(26 26 46 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.05);
    border-radius: 0.75rem;
}

.gemlive-guide-status__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gemlive-gold);
}

.gemlive-guide-status__desc {
    font-size: 0.75rem;
    color: rgb(255 255 255 / 0.5);
}

.gemlive-guide-meta {
    font-size: 0.75rem;
    color: rgb(255 255 255 / 0.4);
    margin: 0 0 1rem;
}

.gemlive-guide-table-wrap {
    overflow-x: auto;
    border: 1px solid rgb(255 255 255 / 0.06);
    border-radius: 0.875rem;
}

.gemlive-guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.gemlive-guide-table th,
.gemlive-guide-table td {
    padding: 0.625rem 0.875rem;
    text-align: center;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
}

.gemlive-guide-table th {
    background: rgb(26 26 46 / 0.8);
    color: rgb(255 255 255 / 0.7);
    font-weight: 500;
}

.gemlive-guide-table td {
    color: rgb(255 255 255 / 0.55);
}

.gemlive-guide-table tbody tr:nth-child(even) td {
    background: rgb(255 255 255 / 0.02);
}

.gemlive-guide-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    text-align: center;
    background: rgb(26 26 46 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.05);
    border-radius: 1rem;
}

.gemlive-guide-cta__text {
    font-size: 0.875rem;
    color: rgb(255 255 255 / 0.55);
    margin-bottom: 1rem;
}

.gemlive-guide-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--gemlive-gold);
    color: var(--gemlive-bg);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.gemlive-guide-cta__btn:hover {
    background: var(--gemlive-gold-light);
}

.gemlive-guide-section--flush {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.gemlive-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gemlive-faq-item {
    border: 1px solid rgb(255 255 255 / 0.06);
    border-radius: 0.75rem;
    background: rgb(26 26 46 / 0.35);
    overflow: hidden;
}

.gemlive-faq-item__question {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    cursor: pointer;
    list-style: none;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
}

.gemlive-faq-item__question::-webkit-details-marker {
    display: none;
}

.gemlive-faq-item__question::after {
    content: '+';
    margin-left: auto;
    flex-shrink: 0;
    font-size: 1.125rem;
    color: rgb(201 168 76 / 0.8);
    line-height: 1.4;
}

.gemlive-faq-item[open] .gemlive-faq-item__question::after {
    content: '−';
}

.gemlive-faq-item__q,
.gemlive-faq-item__a {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1;
}

.gemlive-faq-item__q {
    background: rgb(201 168 76 / 0.15);
    color: #c9a84c;
    border: 1px solid rgb(201 168 76 / 0.25);
}

.gemlive-faq-item__a {
    background: rgb(255 255 255 / 0.06);
    color: rgb(255 255 255 / 0.7);
    border: 1px solid rgb(255 255 255 / 0.08);
}

.gemlive-faq-item__answer {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0 1.125rem 1.125rem;
    border-top: 1px solid rgb(255 255 255 / 0.04);
}

.gemlive-faq-item__body {
    flex: 1;
    min-width: 0;
}

.gemlive-faq-item__body p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgb(255 255 255 / 0.65);
}

.gemlive-faq-item__links {
    margin: 0.875rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.gemlive-faq-item__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    font-size: 0.8125rem;
}

.gemlive-faq-support__grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .gemlive-faq-support__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gemlive-ring-size-chart__heading {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.25rem;
}

.gemlive-ring-size-chart__group + .gemlive-ring-size-chart__group {
    margin-top: 1.5rem;
}

.gemlive-ring-size-chart__group-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgb(255 255 255 / 0.7);
    margin-bottom: 0.625rem;
}

.gemlive-ring-size-chart__notes {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 0.4);
}

.gemlive-ring-size-chart__notes p {
    margin: 0;
}

.gemlive-ring-size-chart__notes p + p {
    margin-top: 0.25rem;
}

.gemlive-page-guide-link {
    margin: -1rem 0 1.5rem;
    font-size: 0.8125rem;
}

.gemlive-page-guide-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gemlive-gold);
    transition: color 0.2s ease;
}

.gemlive-page-guide-link a:hover {
    color: var(--gemlive-gold-light);
}

.gemlive-page-guide-link__sep {
    margin: 0 0.5rem;
    color: rgb(255 255 255 / 0.2);
}

.gemlive-page-guide-link--account {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

/* ── サポート導線ハブ（FAQ・ガイド） ── */
.gemlive-support-hub--section {
    padding: 3rem 0 3.5rem;
    background: linear-gradient(180deg, rgb(8 8 18 / 0) 0%, rgb(201 168 76 / 0.06) 50%, rgb(8 8 18 / 0) 100%);
    border-top: 1px solid rgb(201 168 76 / 0.15);
}

.gemlive-support-hub__head {
    margin-bottom: 1.5rem;
    text-align: center;
}

.gemlive-support-hub__eyebrow {
    margin: 0 0 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--gemlive-gold);
}

.gemlive-support-hub__title {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 600;
    color: #fff;
}

.gemlive-support-hub__lead {
    margin: 0.625rem auto 0;
    max-width: 100%;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 0.55);
    word-break: keep-all;
    line-break: strict;
    overflow-wrap: normal;
    text-wrap: pretty;
}

@media (min-width: 768px) {
    .gemlive-support-hub__lead {
        white-space: nowrap;
    }
}

.gemlive-support-hub__grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .gemlive-support-hub__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .gemlive-support-hub--section .gemlive-support-hub__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gemlive-support-hub__card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1rem 1rem 0.875rem;
    border: 1px solid var(--gemlive-border);
    border-radius: 0.75rem;
    background: rgb(255 255 255 / 0.03);
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.gemlive-support-hub__card:hover {
    border-color: rgb(201 168 76 / 0.45);
    background: rgb(201 168 76 / 0.08);
    transform: translateY(-1px);
}

.gemlive-support-hub__card--highlight {
    border-color: rgb(201 168 76 / 0.5);
    background: linear-gradient(135deg, rgb(201 168 76 / 0.14) 0%, rgb(255 255 255 / 0.04) 100%);
    box-shadow: 0 0 0 1px rgb(201 168 76 / 0.12) inset;
}

.gemlive-support-hub__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgb(201 168 76 / 0.12);
    color: var(--gemlive-gold);
    font-size: 1.25rem;
}

.gemlive-support-hub__card--highlight .gemlive-support-hub__icon {
    background: rgb(201 168 76 / 0.22);
}

.gemlive-support-hub__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1 1 auto;
    min-width: 0;
}

.gemlive-support-hub__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
}

.gemlive-support-hub__desc {
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgb(255 255 255 / 0.5);
}

.gemlive-support-hub__arrow {
    flex-shrink: 0;
    align-self: center;
    font-size: 1.25rem;
    color: rgb(255 255 255 / 0.25);
    transition: color 0.2s ease, transform 0.2s ease;
}

.gemlive-support-hub__card:hover .gemlive-support-hub__arrow {
    color: var(--gemlive-gold);
    transform: translateX(2px);
}

.gemlive-support-hub--compact {
    margin: -0.5rem 0 1.75rem;
}

.gemlive-support-hub__title--compact {
    margin: 0 0 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgb(255 255 255 / 0.55);
}

.gemlive-support-hub--compact .gemlive-support-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .gemlive-support-hub--compact .gemlive-support-hub__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gemlive-support-hub--compact .gemlive-support-hub__card {
    padding: 0.75rem;
    gap: 0.625rem;
}

.gemlive-support-hub--compact .gemlive-support-hub__icon {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    border-radius: 0.5rem;
}

.gemlive-support-hub--compact .gemlive-support-hub__label {
    font-size: 0.8125rem;
}

.gemlive-support-hub--compact .gemlive-support-hub__desc {
    display: none;
}

.gemlive-support-hub--compact .gemlive-support-hub__arrow {
    display: none;
}

.gemlive-nav-mobile-heading--sub {
    margin-top: 0.25rem;
}

.gemlive-nav-mobile-heading--mega {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    color: #c9a84c;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gemlive-nav-mobile-link--support {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gemlive-nav-mobile-link--support i {
    font-size: 1.125rem;
    color: rgb(255 255 255 / 0.45);
}

.gemlive-nav-mobile-link--support.is-highlight {
    font-weight: 600;
    color: var(--gemlive-gold);
}

.gemlive-nav-mobile-link--support.is-highlight i {
    color: var(--gemlive-gold);
}

/* ドロワー — PC ではメインナビを隠し、フッター相当の詳細導線を表示 */
.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-drawer-main,
.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-drawer-actions {
    display: none;
}

.gemlive-nav-drawer-detail-heading {
    margin-top: 0;
}

.gemlive-site-nav:not(.gemlive-nav-desktop) .gemlive-nav-drawer-detail {
    margin-top: 0.25rem;
}

.gemlive-site-nav:not(.gemlive-nav-desktop) .gemlive-nav-drawer-detail-heading {
    margin-top: 0.5rem;
}

.gemlive-nav-drawer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    padding: 0 1rem 0.25rem;
}

@media (min-width: 768px) {
    .gemlive-nav-drawer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem 1.5rem;
    }
}

.gemlive-nav-drawer-col-heading {
    margin: 0 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gemlive-gold);
}

.gemlive-nav-drawer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gemlive-nav-drawer-link {
    display: block;
    padding: 0.3125rem 0;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: rgb(255 255 255 / 0.72);
    transition: color 0.2s ease;
}

.gemlive-nav-drawer-link:hover {
    color: var(--gemlive-gold);
}

.gemlive-nav-menu-toggle--desktop {
    border: 1px solid var(--gemlive-border);
}

.gemlive-nav-dropdown {
    position: relative;
}

.gemlive-nav-panel-toggle[aria-expanded="true"] {
    border-color: var(--gemlive-gold);
    color: var(--gemlive-gold);
    background: rgb(201 168 76 / 0.12);
}

.gemlive-nav-flyouts {
    position: relative;
}

.gemlive-nav-dropdown-panel {
    position: fixed;
    top: calc(var(--gemlive-nav-height, 4.5rem) + 0.5rem);
    right: max(1rem, env(safe-area-inset-right, 0px));
    left: auto;
    z-index: 60;
    width: min(20rem, calc(100vw - 2rem));
    padding: 1rem;
    border: 1px solid rgb(201 168 76 / 0.28);
    border-radius: 0.75rem;
    background: linear-gradient(180deg, rgb(20 20 36 / 0.98) 0%, rgb(8 8 18 / 0.99) 100%);
    box-shadow:
        0 12px 32px rgb(0 0 0 / 0.35),
        inset 0 1px 0 rgb(201 168 76 / 0.1);
}

.gemlive-site-nav.gemlive-nav-desktop .gemlive-nav-account .gemlive-nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(18rem, calc(100vw - 2rem));
}

.gemlive-nav-dropdown-panel__title {
    margin: 0 0 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gemlive-text);
}

.gemlive-nav-dropdown-panel__meta {
    margin: 0 0 0.875rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgb(255 255 255 / 0.58);
    word-break: break-all;
}

.gemlive-nav-dropdown-panel__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    padding: 0.6875rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gemlive-nav-dropdown-panel__btn--primary {
    color: #1a1a2e;
    background: linear-gradient(135deg, #e8d5a3 0%, #c9a84c 100%);
    border: 1px solid #c9a84c;
}

.gemlive-nav-dropdown-panel__btn--primary:hover {
    background: linear-gradient(135deg, #f0e2b8 0%, #d4b45e 100%);
}

.gemlive-nav-dropdown-panel__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    margin-top: 0.625rem;
    padding: 0.5rem;
    font-size: 0.8125rem;
    color: rgb(255 255 255 / 0.68);
    transition: color 0.2s ease;
}

.gemlive-nav-dropdown-panel__link:hover {
    color: var(--gemlive-gold);
}

.gemlive-nav-dropdown-panel__note {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
    color: rgb(255 255 255 / 0.5);
}

.gemlive-nav-dropdown-panel__note a {
    color: var(--gemlive-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gemlive-nav-dropdown-panel__note a:hover {
    color: #e8d5a3;
}

.gemlive-nav-cart {
    position: relative;
}

.gemlive-nav-cart-toggle {
    position: relative;
}

.gemlive-nav-cart-count {
    position: absolute;
    top: 0.125rem;
    right: 0.125rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
    color: #1a1a2e;
    background: linear-gradient(135deg, #e8d5a3 0%, #c9a84c 100%);
}

.gemlive-nav-cart-items {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
    max-height: 14rem;
    overflow-y: auto;
}

.gemlive-nav-cart-item + .gemlive-nav-cart-item {
    margin-top: 0.625rem;
}

.gemlive-nav-cart-item__link {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gemlive-nav-cart-item__link:hover {
    color: var(--gemlive-gold);
}

.gemlive-nav-cart-item__media {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.375rem;
    overflow: hidden;
    background: rgb(255 255 255 / 0.06);
}

.gemlive-nav-cart-item__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gemlive-nav-cart-item__body {
    min-width: 0;
    flex: 1;
}

.gemlive-nav-cart-item__name {
    display: block;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--gemlive-text);
}

.gemlive-nav-cart-item__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    color: rgb(255 255 255 / 0.55);
}

.gemlive-nav-cart-overflow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    color: rgb(255 255 255 / 0.5);
    text-align: center;
}

.gemlive-nav-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0 0.875rem;
    padding: 0.625rem 0.75rem;
    border: 1px solid rgb(201 168 76 / 0.2);
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    color: rgb(255 255 255 / 0.72);
    background: rgb(255 255 255 / 0.03);
}

.gemlive-nav-search-form {
    display: grid;
    gap: 0.625rem;
}

.gemlive-nav-search-form__input {
    width: 100%;
    padding: 0.6875rem 0.75rem;
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gemlive-text);
    background: rgb(255 255 255 / 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gemlive-nav-search-form__input::placeholder {
    color: rgb(255 255 255 / 0.38);
}

.gemlive-nav-search-form__input:focus {
    outline: none;
    border-color: rgb(201 168 76 / 0.55);
    box-shadow: 0 0 0 2px rgb(201 168 76 / 0.18);
}

.gemlive-nav-account {
    position: relative;
}

.gemlive-product-guide-link {
    margin: 0.625rem 0 0;
    font-size: 0.75rem;
}

.gemlive-product-guide-link a,
.gemlive-product-guide-link--inline {
    color: var(--gemlive-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gemlive-product-guide-link a:hover,
.gemlive-product-guide-link--inline:hover {
    color: var(--gemlive-gold-light);
}

.gemlive-captured-content ol.gemlive-ol {
    list-style-type: decimal;
    list-style-position: outside;
    padding-left: 1.5rem;
}

.gemlive-captured-content ol.gemlive-ol > li {
    margin-top: 0.375rem;
    line-height: 1.7;
}

.gemlive-captured-content ol.gemlive-ol > li:first-child {
    margin-top: 0;
}

/* ── トップページ SP レイアウト ── */

/* トップ H1 — title と同一テキスト。意図した改行は display_lines + __line */
.gemlive-home-hero h1.gemlive-home-title {
    text-wrap: pretty;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.gemlive-home-title__line {
    display: block;
}

@media (min-width: 1024px) {
    .gemlive-home-hero h1.gemlive-home-title {
        font-size: clamp(1.875rem, 2.65vw, 3.25rem);
        line-height: 1.28;
        letter-spacing: 0.01em;
    }
}

/* トップ H2 — 2行の行間を詰め、CTA ボタンとの余白を確保 */
.gemlive-page-home .gemlive-home-hero-h2s {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-top: 1rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .gemlive-page-home .gemlive-home-hero-h2s {
        gap: 0.1875rem;
        margin-top: 1.25rem;
        margin-bottom: 2.25rem;
    }
}

.gemlive-page-home .gemlive-home-hero-h2s__line {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .gemlive-page-home .gemlive-home-hero-h2s__line {
        font-size: 1.0625rem;
        line-height: 1.5;
    }
}

/* PickUp 商品情報オーバーレイ（全幅共通・画像上に載せるスタイル） */
.gemlive-page-home .gemlive-home-hero-pickup .absolute.bottom-4 {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 0.875rem 0.75rem;
    background: linear-gradient(
        to top,
        rgba(10, 10, 26, 0.92) 0%,
        rgba(10, 10, 26, 0.65) 55%,
        transparent 100%
    );
    border: none;
    border-radius: 0 0 1.25rem 1.25rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.gemlive-page-home .gemlive-home-hero-pickup .absolute.bottom-4 p:first-child {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.125rem;
}

@media (max-width: 767px) {
    .gemlive-page-home .gemlive-captured-content section {
        scroll-margin-top: var(--gemlive-nav-height);
    }

    /* ヒーロー — 1画面に収まるコンパクトレイアウト */
    .gemlive-page-home .gemlive-home-hero {
        min-height: auto;
    }

    .gemlive-page-home .gemlive-home-hero > .relative.z-10 {
        padding-top: 5.25rem;
        padding-bottom: 4.75rem;
    }

    .gemlive-page-home .gemlive-home-hero > .relative.z-10 > .flex {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 1.25rem;
    }

    .gemlive-page-home .gemlive-home-hero .w-full.lg\:w-2\/5 {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }

    /* PickUp: オーバーレイ維持・中庸サイズ（旧 8.75rem 過少 / 全幅は過大） */
    .gemlive-page-home .gemlive-home-hero-pickup {
        width: 14.5rem;
        height: 14.5rem;
        margin-inline: auto;
    }

    .gemlive-page-home .gemlive-home-hero-pickup .rounded-3xl {
        border-radius: 1rem;
    }

    .gemlive-page-home .gemlive-home-hero-pickup .absolute.-top-3 {
        top: -0.375rem;
        right: -0.375rem;
        padding: 0.25rem 0.75rem;
        font-size: 0.6875rem;
    }

    /* 下部グラデ帯で画像上に商品情報（おしゃれなオーバーレイ） */
    .gemlive-page-home .gemlive-home-hero-pickup .absolute.bottom-4 {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 0.75rem 0.625rem;
        background: linear-gradient(
            to top,
            rgba(10, 10, 26, 0.92) 0%,
            rgba(10, 10, 26, 0.65) 55%,
            transparent 100%
        );
        border: none;
        border-radius: 0 0 1rem 1rem;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .gemlive-page-home .gemlive-home-hero-pickup .absolute.bottom-4 p:first-child {
        font-size: 0.6875rem;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 0.125rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .gemlive-page-home .gemlive-home-hero-pickup .absolute.bottom-4 p:last-child {
        font-size: 0.9375rem;
        line-height: 1.25;
    }

    .gemlive-page-home .gemlive-home-hero h1 {
        font-size: 1.5rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }

    .gemlive-page-home .gemlive-home-hero .w-full.lg\:w-3\/5 > span {
        margin-bottom: 0.625rem;
        font-size: 0.625rem;
        padding: 0.25rem 0.75rem;
    }

    .gemlive-page-home .gemlive-home-hero .w-full.lg\:w-3\/5 > p {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
        line-height: 1.55;
    }

    .gemlive-page-home .gemlive-home-hero-ctas {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .gemlive-page-home .gemlive-home-hero-ctas > a {
        width: 100%;
        justify-content: center;
        padding: 0.6875rem 0.5rem;
        font-size: 0.75rem;
        gap: 0.25rem;
        border-radius: 0.625rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .gemlive-page-home .gemlive-home-hero-ctas > a i {
        font-size: 0.875rem;
    }

    .gemlive-page-home .le-live-ticker {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .gemlive-page-home .le-live-ticker-link {
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.75rem;
        line-height: 1.45;
    }

    .gemlive-page-home .le-live-ticker-text {
        flex: 1 1 auto;
        min-width: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    /* カテゴリ */
    .gemlive-page-home .gemlive-home-categories {
        padding-block: 2.75rem;
    }

    .gemlive-page-home .gemlive-home-categories h2 {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .gemlive-page-home .gemlive-home-categories .grid {
        gap: 0.75rem;
    }

    .gemlive-page-home .gemlive-home-categories .grid > a {
        padding: 1rem;
        border-radius: 1rem;
    }

    .gemlive-page-home .gemlive-home-categories .grid > a .w-12 {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .gemlive-page-home .gemlive-home-categories .grid > a h3 {
        font-size: 0.9375rem;
        margin-bottom: 0.125rem;
    }

    .gemlive-page-home .gemlive-home-categories .grid > a p {
        font-size: 0.6875rem;
        line-height: 1.4;
    }

    /* イチオシ商品 */
    .gemlive-page-home .gemlive-home-featured {
        padding-block: 2.75rem;
    }

    .gemlive-page-home .gemlive-home-featured > .w-full > .flex.items-end {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
        margin-bottom: 1.25rem;
    }

    .gemlive-page-home .gemlive-home-featured h2 {
        font-size: 1.375rem;
    }

    .gemlive-page-home .gemlive-home-featured .grid {
        gap: 1rem;
    }

    .gemlive-page-home .gemlive-home-featured .bg-\[\#1A1A2E\] > .p-5 {
        padding: 1rem;
    }

    .gemlive-page-home .gemlive-home-featured .gemlive-product-actions {
        gap: 0.5rem;
    }

    .gemlive-page-home .gemlive-home-featured .gemlive-product-actions .button,
    .gemlive-page-home .gemlive-home-featured .gemlive-product-actions a,
    .gemlive-page-home .gemlive-home-featured .gemlive-product-actions button {
        width: 100%;
        min-height: 2.75rem;
        justify-content: center;
    }

    /* 配信予定 */
    .gemlive-page-home .gemlive-home-schedule {
        padding-block: 2.75rem;
    }

    .gemlive-page-home .gemlive-home-schedule .text-center.mb-10 {
        margin-bottom: 1.5rem;
    }

    .gemlive-page-home .gemlive-home-schedule h2 {
        font-size: 1.375rem;
    }

    .gemlive-page-home .gemlive-home-schedule .grid {
        gap: 0.75rem;
        margin-bottom: 0;
    }

    .gemlive-page-home .gemlive-home-schedule .grid > a {
        padding: 0.875rem;
        border-radius: 0.875rem;
    }

    /* ジャーニー CTA */
    .gemlive-page-home .gemlive-home-journey {
        padding-block: 3.5rem;
    }

    .gemlive-page-home .gemlive-home-journey h2 {
        font-size: 1.5rem;
        letter-spacing: 0.06em;
        margin-bottom: 0.75rem;
    }

    .gemlive-page-home .gemlive-home-journey > .relative.z-10 > p {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
        padding-inline: 0.5rem;
    }

    .gemlive-page-home .gemlive-home-journey .flex.flex-col {
        width: 100%;
        gap: 0.75rem;
    }

    .gemlive-page-home .gemlive-home-journey .flex.flex-col > a {
        width: 100%;
        justify-content: center;
        padding-block: 0.875rem;
    }

    /* お客様の声 */
    .gemlive-page-home .gemlive-home-testimonials {
        padding-block: 2.75rem;
    }

    .gemlive-page-home .gemlive-home-testimonials .flex.flex-col {
        gap: 2rem;
    }

    .gemlive-page-home .gemlive-home-testimonials blockquote {
        font-size: 1.375rem;
        line-height: 1.45;
        margin-bottom: 1.5rem;
    }

    .gemlive-page-home .gemlive-home-testimonials .space-y-6 > div {
        padding-left: 0.875rem;
    }

    .gemlive-page-home .gemlive-home-testimonials .w-full.lg\:w-2\/5 .aspect-\[3\/4\] {
        max-width: 18rem;
        margin-inline: auto;
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 360px) {
    .gemlive-page-home .gemlive-home-hero-ctas {
        grid-template-columns: 1fr;
    }

    .gemlive-page-home .gemlive-home-hero-pickup {
        width: 12.5rem;
        height: 12.5rem;
    }
}

/* タブレット（縦積み〜lg直前）: 中央寄せを明示 */
@media (min-width: 768px) and (max-width: 1023px) {
    .gemlive-page-home .gemlive-home-hero .w-full.lg\:w-2\/5 {
        display: flex;
        justify-content: center;
    }

    .gemlive-page-home .gemlive-home-hero-pickup .absolute.bottom-4 p:first-child {
        font-size: 0.8125rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .gemlive-page-home .gemlive-home-hero-pickup .absolute.bottom-4 p:last-child {
        font-size: 1.0625rem;
        line-height: 1.25;
    }
}

/* Returns / exchange / resize form */
.gemlive-returns-form__layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .gemlive-returns-form__layout {
        grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
        align-items: start;
    }
}

.gemlive-returns-form__policy {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
}

.gemlive-returns-form {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.5rem;
}

.gemlive-returns-form__section + .gemlive-returns-form__section {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gemlive-returns-form__heading {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem;
}

.gemlive-returns-form__type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .gemlive-returns-form__type-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gemlive-returns-form__type {
    display: block;
    cursor: pointer;
}

.gemlive-returns-form__type input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gemlive-returns-form__type span {
    display: block;
    text-align: center;
    padding: 0.875rem 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 26, 0.5);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.gemlive-returns-form__type input:checked + span,
.gemlive-returns-form__type input:focus-visible + span {
    border-color: #C9A84C;
    color: #fff;
    background: rgba(201, 168, 76, 0.08);
}

.gemlive-returns-form__field {
    margin: 0 0 1rem;
}

.gemlive-returns-form__field label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.375rem;
}

.gemlive-returns-form__field .required {
    color: #C9A84C;
}

.gemlive-returns-form__field input[type="text"],
.gemlive-returns-form__field input[type="email"],
.gemlive-returns-form__field input[type="tel"],
.gemlive-returns-form__field select,
.gemlive-returns-form__field textarea {
    width: 100%;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 26, 0.8);
    color: #fff;
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
}

.gemlive-returns-form__row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gemlive-returns-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.gemlive-returns-form__checks {
    display: grid;
    gap: 0.625rem;
    border: 0;
    margin: 0;
    padding: 0;
}

.gemlive-returns-form__checks label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.gemlive-returns-form__agree {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.gemlive-returns-form__agree a {
    color: #C9A84C;
}

.gemlive-returns-form__warnings {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
}

.gemlive-returns-form__warnings ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
}

.gemlive-returns-form__notice {
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.gemlive-returns-form__notice--success {
    border: 1px solid rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.1);
    color: #fff;
}

.gemlive-returns-form__notice--error {
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.1);
    color: #fff;
}

.gemlive-returns-form__notice-title {
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.gemlive-returns-form__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.gemlive-returns-form__btn--primary {
    background: #C9A84C;
    color: #0A0A1A;
    font-weight: 600;
}

.gemlive-returns-form__btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.gemlive-returns-form__actions {
    margin: 1.5rem 0 0;
}

.gemlive-sr-admin__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: end;
    margin: 1rem 0 1.5rem;
}

.gemlive-sr-admin__detail-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 960px) {
    .gemlive-sr-admin__detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.gemlive-sr-admin__dl {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 0.5rem 1rem;
    margin: 0;
}

.gemlive-sr-admin__dl dt {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.gemlive-sr-admin__dl dd {
    margin: 0;
    color: #fff;
}

.gemlive-sr-admin__warn {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(201, 168, 76, 0.12);
    color: #fff;
}

.gemlive-sr-admin__attach {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gemlive-account-order-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.gemlive-account-order-actions .gemlive-returns-form__btn {
    text-decoration: none;
}

.gemlive-account-receipt-hint {
    margin: 0;
    flex: 1 1 100%;
}

/* Phase 18 deferred UI */
.gemlive-journal-card,
.gemlive-live-archive-card,
.gemlive-support-page-card,
.gemlive-home-bento-card {
    background: rgb(26 26 46 / 0.45);
}

.gemlive-category-icon {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
}

.gemlive-category-icon--ring {
    width: 1.65rem;
    height: 1.65rem;
}

.gemlive-category-icon--bracelet {
    width: 1.7rem;
    height: 1.7rem;
}

.gemlive-category-icon.text-2xl,
.text-2xl.gemlive-category-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.gemlive-category-icon--ring.text-2xl,
.text-2xl.gemlive-category-icon--ring {
    width: 2rem;
    height: 2rem;
}

.gemlive-category-icon--bracelet.text-2xl,
.text-2xl.gemlive-category-icon--bracelet {
    width: 2.05rem;
    height: 2.05rem;
}

.gemlive-category-icon.text-xl,
.text-xl.gemlive-category-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.gemlive-category-icon--ring.text-xl,
.text-xl.gemlive-category-icon--ring {
    width: 1.55rem;
    height: 1.55rem;
}

.gemlive-category-icon--bracelet.text-xl,
.text-xl.gemlive-category-icon--bracelet {
    width: 1.6rem;
    height: 1.6rem;
}

.gemlive-journal-card a,
.gemlive-live-archive-card a {
    color: inherit;
    text-decoration: none;
}

.gemlive-liver-profile__meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.gemlive-liver-profile__meta-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 0.75rem;
    background: rgb(255 255 255 / 0.04);
}

.gemlive-liver-profile__meta-badge-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgb(201 168 76 / 0.9);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.gemlive-liver-profile__meta-badge-value {
    color: rgb(255 255 255 / 0.82);
    font-size: 0.8125rem;
    line-height: 1.5;
    text-decoration: none;
}

a.gemlive-liver-profile__meta-badge-value:hover {
    color: #c9a84c;
}

.gemlive-ls-live-transcript__details {
    border-color: rgb(255 255 255 / 0.1);
}

.gemlive-ls-live-transcript__summary {
    list-style: none;
}

.gemlive-ls-live-transcript__summary::-webkit-details-marker {
    display: none;
}

.gemlive-ls-live-transcript__summary::after {
    content: "+";
    color: rgb(255 255 255 / 0.45);
    font-size: 1.125rem;
    line-height: 1;
}

.gemlive-ls-live-transcript__details[open] .gemlive-ls-live-transcript__summary::after {
    content: "−";
}

.gemlive-office-map__frame {
    display: block;
    border: 0;
    min-height: 16rem;
}

.gemlive-nav-mega p {
    margin: 0;
}

.gemlive-home-journey .gemlive-home-journey__cta {
    margin-top: 0;
}

/* Journal / ジュエリー辞典 */
.gemlive-journal-lead {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgb(255 255 255 / 0.65);
    margin: 0 0 1.5rem;
    max-width: 42rem;
}

.gemlive-journal-cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: rgb(255 255 255 / 0.8);
    border: 1px solid rgb(255 255 255 / 0.15);
    border-radius: 9999px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.gemlive-journal-cat-pill:hover,
.gemlive-journal-cat-pill.is-active {
    border-color: rgb(201 168 76 / 0.5);
    color: #c9a84c;
}

.gemlive-journal-section__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.375rem;
}

@media (min-width: 768px) {
    .gemlive-journal-section__title {
        font-size: 1.25rem;
    }
}

.gemlive-journal-section__desc {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgb(255 255 255 / 0.5);
    margin: 0;
    max-width: 40rem;
}

.gemlive-journal-section__link {
    font-size: 0.8125rem;
    color: #c9a84c;
    text-decoration: none;
}

.gemlive-journal-section__link:hover {
    text-decoration: underline;
}

.gemlive-journal-card__badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.625rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.6875rem;
    line-height: 1.3;
    color: #c9a84c;
    background: rgb(201 168 76 / 0.1);
    border: 1px solid rgb(201 168 76 / 0.25);
    border-radius: 0.375rem;
}

.gemlive-journal-card__badge--link {
    text-decoration: none;
}

.gemlive-journal-card__badge--link:hover {
    background: rgb(201 168 76 / 0.16);
}

.gemlive-journal-card__title {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .gemlive-journal-card__title {
        font-size: 1rem;
    }
}

.gemlive-journal-card__excerpt {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgb(255 255 255 / 0.55);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gemlive-journal-card__more {
    font-size: 0.75rem;
    color: #c9a84c;
}

.gemlive-journal-article__meta {
    margin: 0 0 1rem;
}

.gemlive-journal-article__lead {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgb(255 255 255 / 0.75);
    margin: 0 0 1.5rem;
    padding-left: 0.875rem;
    border-left: 2px solid rgb(201 168 76 / 0.5);
}

.gemlive-journal-body {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgb(255 255 255 / 0.78);
}

.gemlive-journal-body > *:first-child {
    margin-top: 0;
}

.gemlive-journal-body h2 {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin: 2rem 0 0.75rem;
    padding-left: 0.75rem;
    border-left: 2px solid #c9a84c;
    scroll-margin-top: 5.5rem;
}

.gemlive-journal-body h3 {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgb(201 168 76 / 0.95);
    margin: 1.5rem 0 0.5rem;
}

.gemlive-journal-body p {
    margin: 0 0 1rem;
}

.gemlive-journal-body ul,
.gemlive-journal-body ol {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.gemlive-journal-body li {
    margin-bottom: 0.375rem;
}

.gemlive-journal-body li + li {
    margin-top: 0.25rem;
}

.gemlive-journal-body a {
    color: #c9a84c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gemlive-journal-body a:hover {
    color: #d4b55e;
}

.gemlive-journal-body strong {
    color: #fff;
    font-weight: 500;
}

.gemlive-journal-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0 1.25rem;
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 0.875rem;
}

.gemlive-journal-table {
    width: 100%;
    min-width: 32rem;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.gemlive-journal-table th,
.gemlive-journal-table td {
    padding: 0.625rem 0.75rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgb(255 255 255 / 0.06);
}

.gemlive-journal-table th {
    background: rgb(26 26 46 / 0.85);
    color: rgb(255 255 255 / 0.75);
    font-weight: 500;
    white-space: nowrap;
}

.gemlive-journal-table td {
    color: rgb(255 255 255 / 0.62);
}

.gemlive-journal-table tbody tr:nth-child(even) td {
    background: rgb(255 255 255 / 0.02);
}

.gemlive-journal-panel {
    margin-top: 2rem;
    padding: 1.125rem 1.25rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 1rem;
    background: rgb(26 26 46 / 0.35);
}

.gemlive-journal-panel--cta {
    border-color: rgb(201 168 76 / 0.3);
    background: rgb(255 255 255 / 0.03);
}

.gemlive-journal-panel__title {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.75rem;
}

.gemlive-journal-panel__text {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 0.65);
    margin: 0 0 1rem;
}

.gemlive-journal-faq {
    margin: 0;
}

.gemlive-journal-faq__item + .gemlive-journal-faq__item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgb(255 255 255 / 0.06);
}

.gemlive-journal-faq__q {
    font-size: 0.875rem;
    font-weight: 500;
    color: #c9a84c;
    margin: 0 0 0.375rem;
}

.gemlive-journal-faq__a {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 0.65);
    margin: 0;
}

.gemlive-journal-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.gemlive-journal-cta-buttons__primary,
.gemlive-journal-cta-buttons__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    border-radius: 0.5rem;
    text-decoration: none;
}

.gemlive-journal-cta-buttons__primary {
    background: #c9a84c;
    color: #0a0a1a;
    font-weight: 500;
}

.gemlive-journal-cta-buttons__primary:hover {
    background: #d4b55e;
}

.gemlive-journal-cta-buttons__secondary {
    border: 1px solid rgb(255 255 255 / 0.2);
    color: #fff;
}

.gemlive-journal-cta-buttons__secondary:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

.gemlive-journal-aside-links {
    margin-top: 1.5rem;
}

.gemlive-journal-aside-links__title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.5rem;
}

.gemlive-journal-aside-links__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gemlive-journal-aside-links__list li + li {
    margin-top: 0.375rem;
}

.gemlive-journal-aside-links__list a {
    color: #c9a84c;
    font-size: 0.875rem;
    text-decoration: none;
}

.gemlive-journal-aside-links__list a:hover {
    text-decoration: underline;
}

.gemlive-journal-aside-links__when {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: rgb(255 255 255 / 0.4);
}

/* Journal layout v2 */
.gemlive-journal-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem 1.125rem;
    border: 1px solid rgb(201 168 76 / 0.22);
    border-radius: 1rem;
    background: linear-gradient(135deg, rgb(201 168 76 / 0.08), rgb(26 26 46 / 0.55));
}

@media (min-width: 768px) {
    .gemlive-journal-hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.375rem 1.5rem;
    }
}

.gemlive-journal-hero__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 0.72);
    max-width: 36rem;
}

.gemlive-journal-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-shrink: 0;
}

.gemlive-journal-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(255 255 255 / 0.18);
    color: #fff;
    text-decoration: none;
}

.gemlive-journal-hero__btn:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

.gemlive-journal-hero__btn--primary {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a1a;
    font-weight: 500;
}

.gemlive-journal-hero__btn--primary:hover {
    background: #d4b55e;
    border-color: #d4b55e;
    color: #0a0a1a;
}

.gemlive-journal-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .gemlive-journal-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .gemlive-journal-bento {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

.gemlive-journal-bento__card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: start;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 26 46 / 0.45);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.gemlive-journal-bento__card:hover {
    border-color: rgb(201 168 76 / 0.45);
    transform: translateY(-1px);
}

.gemlive-journal-bento__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: rgb(201 168 76 / 0.12);
    color: #c9a84c;
    font-size: 1.125rem;
}

.gemlive-journal-bento__body {
    min-width: 0;
}

.gemlive-journal-bento__title {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
}

.gemlive-journal-bento__desc {
    display: block;
    font-size: 0.75rem;
    line-height: 1.55;
    color: rgb(255 255 255 / 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gemlive-journal-bento__count {
    align-self: center;
    font-size: 0.6875rem;
    color: rgb(255 255 255 / 0.45);
    white-space: nowrap;
}

.gemlive-journal-block {
    margin-bottom: 2.5rem;
}

.gemlive-journal-block--related {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgb(255 255 255 / 0.08);
}

.gemlive-journal-block__head {
    margin-bottom: 1rem;
}

.gemlive-journal-block__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.25rem;
}

.gemlive-journal-block__desc {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: rgb(255 255 255 / 0.5);
    margin: 0;
}

.gemlive-journal-hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .gemlive-journal-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gemlive-journal-hub-card {
    border-radius: 1rem;
    border: 1px solid rgb(201 168 76 / 0.28);
    background: linear-gradient(160deg, rgb(201 168 76 / 0.1), rgb(26 26 46 / 0.7));
    overflow: hidden;
}

.gemlive-journal-hub-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
}

.gemlive-journal-hub-card__eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: #c9a84c;
    margin-bottom: 0.5rem;
}

.gemlive-journal-hub-card__title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 0.5rem;
}

.gemlive-journal-hub-card__excerpt {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgb(255 255 255 / 0.6);
    margin: 0 0 1rem;
    flex: 1;
}

.gemlive-journal-hub-card__cta {
    font-size: 0.8125rem;
    color: #c9a84c;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.gemlive-journal-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .gemlive-journal-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .gemlive-journal-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

.gemlive-journal-card-grid--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .gemlive-journal-card-grid--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gemlive-journal-cat-hero {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 1rem 1.125rem;
    border-radius: 1rem;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 26 46 / 0.4);
}

.gemlive-journal-cat-hero__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgb(201 168 76 / 0.12);
    color: #c9a84c;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.gemlive-journal-cat-hero__desc {
    margin: 0 0 0.375rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgb(255 255 255 / 0.68);
}

.gemlive-journal-cat-hero__meta {
    margin: 0;
    font-size: 0.75rem;
    color: rgb(255 255 255 / 0.4);
}

.gemlive-journal-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .gemlive-journal-layout {
        grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
        gap: 2.5rem;
    }
}

.gemlive-journal-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .gemlive-journal-sidebar {
        display: block;
        position: sticky;
        top: 6rem;
    }
}

.gemlive-journal-sidebar__inner {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 26 46 / 0.45);
}

.gemlive-journal-sidebar__label {
    margin: 0 0 0.625rem;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.45);
}

.gemlive-journal-sidebar__toc {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.06);
}

.gemlive-journal-sidebar__toc-list,
.gemlive-journal-sidebar__link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gemlive-journal-sidebar__toc-list li + li,
.gemlive-journal-sidebar__link-list li + li {
    margin-top: 0.375rem;
}

.gemlive-journal-sidebar__toc-list a,
.gemlive-journal-sidebar__link-list a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgb(255 255 255 / 0.65);
    text-decoration: none;
}

.gemlive-journal-sidebar__toc-list a:hover,
.gemlive-journal-sidebar__link-list a:hover {
    color: #c9a84c;
}

.gemlive-journal-toc-mobile {
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .gemlive-journal-toc-mobile {
        display: none;
    }
}

.gemlive-journal-toc-mobile__details {
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 0.75rem;
    background: rgb(26 26 46 / 0.45);
    overflow: hidden;
}

.gemlive-journal-toc-mobile__summary {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: #c9a84c;
    cursor: pointer;
    list-style: none;
}

.gemlive-journal-toc-mobile__summary::-webkit-details-marker {
    display: none;
}

.gemlive-journal-toc-mobile__list {
    margin: 0;
    padding: 0 1rem 0.875rem 1.75rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgb(255 255 255 / 0.65);
}

.gemlive-journal-toc-mobile__list a {
    color: inherit;
    text-decoration: none;
}

.gemlive-journal-toc-mobile__list a:hover {
    color: #c9a84c;
}

.gemlive-journal-main {
    min-width: 0;
    max-width: 42rem;
}

@media (min-width: 1024px) {
    .gemlive-journal-main {
        max-width: none;
    }
}

.gemlive-journal-article-head {
    margin-bottom: 1.25rem;
}

.gemlive-journal-article-head .gemlive-journal-card__badge {
    margin-bottom: 0.75rem;
}

