.scroll-hide::-webkit-scrollbar {
            display: none;
        }

        .scroll-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
            scroll-behavior: smooth;
        }

        /* 横スクロール領域の左右ナビ */
        .hscroll-wrap {
            position: relative;
        }

        .hscroll-btn {
            position: absolute;
            /* スクロール領域下部の padding 分を差し引き、カードの中心に合わせる */
            top: calc(50% - 14px);
            transform: translateY(-50%);
            z-index: 2;
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6fa3, #c94fff);
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            /* ‹ › は字形が下寄りのため、flex中央揃え＋下パディングで円の中心に合わせる */
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            padding: 0 0 4px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(255, 100, 180, 0.45);
            opacity: 0.9;
        }

        .hscroll-btn:hover {
            opacity: 1;
        }

        .hscroll-btn.prev {
            left: -6px;
        }

        .hscroll-btn.next {
            right: -6px;
        }

        /* ドラッグ中はリンクを誤クリックしない */
        .scroll-hide.dragging a {
            pointer-events: none;
        }

        /* ==== ここから: インラインstyle外部化分 ==== */

        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/static/assets/images/index-background.png');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }

        .page-container {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 420px;
            box-sizing: border-box;
            min-width: 0;
            margin: 0 auto;
            padding: 16px;
        }

        .top-panel {
            text-align: center;
            padding: 22px 14px;
            border-radius: 22px;
            background: linear-gradient(180deg,#fff0f6,#ffe4f3);
            border: 2px solid #f3b6d8;
            box-shadow: 0 0 20px rgba(255,150,200,0.5);
        }

        .top-panel-title {
            margin: 0;
            color: #d85b9f;
            font-size: 28px;
        }

        .top-panel-sub {
            margin: 6px 0 0;
            color: #9b6b86;
        }

        .waiting-count {
            color: #d85b9f;
            font-size: 22px;
            font-weight: bold;
        }

        .cta-register {
            display: block;
            margin: 18px 0 28px;
            padding: 16px;
            text-align: center;
            border-radius: 999px;
            background: linear-gradient(135deg,#ff6fa3,#c94fff);
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 8px 18px rgba(255,100,180,0.45);
        }

        .section-title {
            text-align: center;
            color: #d85b9f;
        }

        .section-title--mb10 {
            margin-bottom: 10px;
        }

        .section-title--mt28 {
            margin-top: 28px;
        }

        .section-title--mt30 {
            margin-top: 30px;
        }

        .section-title--mt34 {
            margin-top: 34px;
        }

        .pickup-card {
            background: radial-gradient(circle at top,#fff,#ffeaf4);
            border-radius: 20px;
            padding: 14px;
            margin-bottom: 24px;
            border: 2px solid #f3b6d8;
            box-shadow: 0 6px 18px rgba(255,150,200,0.35);
        }

        .pickup-card-row {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .pickup-avatar {
            width: 76px;
            height: 76px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #ffc3e2;
            background: #fff;
            flex-shrink: 0;
        }

        .avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pickup-name {
            color: #6b4a68;
        }

        .pickup-divination {
            font-size: 12px;
            color: #777;
            margin: 2px 0 0;
        }

        .pickup-status--active {
            font-size: 12px;
            color: #ff6fa3;
            font-weight: bold;
            margin: 4px 0 0;
        }

        .pickup-status--muted {
            font-size: 12px;
            color: #999;
            margin: 4px 0 0;
        }

        .pickup-cta {
            display: block;
            margin-top: 12px;
            padding: 12px;
            border-radius: 999px;
            background: linear-gradient(135deg,#ff6fa3,#c94fff);
            color: #fff;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 6px 14px rgba(255,100,180,0.4);
        }

        .hscroll-track {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 10px 12px 20px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .hscroll-track.is-centered {
            justify-content: center;
        }

        .waiting-card {
            min-width: 150px;
            scroll-snap-align: center;
            background: radial-gradient(circle at top,#fff,#ffeaf4);
            border-radius: 18px;
            padding: 12px;
            text-align: center;
            box-shadow: 0 6px 16px rgba(255,150,200,0.28);
            border: 2px solid #ffd6ec;
            box-sizing: border-box;
        }

        .waiting-avatar {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 8px;
            border: 3px solid #ffc3e2;
        }

        .waiting-name {
            font-size: 14px;
            color: #6b4a68;
            font-weight: bold;
        }

        .waiting-status {
            font-size: 11px;
            color: #ff6fa3;
            margin-top: 3px;
        }

        .waiting-cta {
            display: block;
            margin-top: 8px;
            padding: 8px;
            border-radius: 999px;
            background: #ff7dbd;
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            font-weight: bold;
        }

        .cta-more {
            display: block;
            text-align: center;
            margin: 10px 0 28px;
            padding: 14px;
            border-radius: 999px;
            background: linear-gradient(135deg,#ff6fa3,#c94fff);
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 6px 16px rgba(255,100,180,0.4);
        }

        .hscroll-track-ranking {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 4px 2px 14px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .ranking-card {
            min-width: 150px;
            scroll-snap-align: center;
            background: radial-gradient(circle at top,#fff,#ffeaf4);
            border: 2px solid #f3b6d8;
            border-radius: 18px;
            padding: 12px;
            text-align: center;
            text-decoration: none;
            color: #333;
            box-shadow: 0 6px 16px rgba(255,150,200,0.35);
            box-sizing: border-box;
        }

        .ranking-card--first {
            min-width: 155px;
            box-shadow: 0 8px 20px rgba(255,150,200,0.35);
            transform: scale(1.03);
        }

        .rank-badge {
            width: 30px;
            height: 30px;
            margin: 0 auto 8px;
            border-radius: 50%;
            color: #fff;
            font-weight: bold;
            line-height: 30px;
        }

        .rank-badge.rank-1 {
            background: linear-gradient(135deg,#ffd86b,#ffb347);
        }

        .rank-badge.rank-2 {
            background: linear-gradient(135deg,#d7d7d7,#aaa);
        }

        .rank-badge.rank-3 {
            background: linear-gradient(135deg,#d8a06b,#b87333);
        }

        .rank-badge.rank-other {
            background: #f9a4cc;
        }

        .ranking-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 8px;
            border: 3px solid #ffd6ec;
        }

        .ranking-name {
            font-size: 14px;
            font-weight: bold;
            color: #6b4a68;
        }

        .ranking-sub {
            font-size: 11px;
            color: #888;
            margin-top: 4px;
        }

        .ranking-status {
            margin-top: 10px;
            padding: 7px;
            border-radius: 999px;
            color: #fff;
            font-size: 12px;
            font-weight: bold;
        }

        .ranking-status--active {
            background: #ff7dbd;
        }

        .ranking-status--inactive {
            background: #aaa;
        }

        .cta-ranking-more {
            display: block;
            text-align: center;
            margin: 4px 0 28px;
            padding: 12px;
            border-radius: 999px;
            background: linear-gradient(135deg,#ff6fa3,#c94fff);
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 6px 16px rgba(255,100,180,0.35);
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 12px;
        }

        .review-card {
            min-width: 0;
            background: rgba(255,255,255,0.82);
            border: 1px solid #f4bfdc;
            border-radius: 16px;
            padding: 12px;
            box-shadow: 0 4px 12px rgba(255,150,200,0.22);
        }

        .review-text {
            font-size: 12px;
            color: #777;
            line-height: 1.6;
            margin: 0;
            overflow-wrap: anywhere;
        }

        .review-more-wrap {
            text-align: center;
            margin-bottom: 26px;
        }

        .review-more-link {
            display: inline-block;
            text-decoration: none;
            background: rgba(255,255,255,0.82);
            color: #d85b9f;
            border: 1px solid #f4bfdc;
            border-radius: 999px;
            padding: 10px 22px;
            font-size: 13px;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(255,150,200,0.22);
        }

        .premium-panel {
            background: linear-gradient(180deg,#fff,#ffeaf6);
            border-radius: 24px;
            padding: 18px;
            text-align: center;
            border: 2px solid #e8c489;
            box-shadow: 0 0 20px rgba(220,170,80,0.3);
        }

        .premium-caption {
            color: #a67c52;
        }

        .gradient-cta-block {
            display: block;
            padding: 12px;
            border-radius: 999px;
            background: linear-gradient(135deg,#ff6fa3,#c94fff);
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }

        .tag-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .tag-link {
            padding: 12px;
            border-radius: 12px;
            background: #f9a4cc;
            color: #fff;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
        }

        .powerstone-widget {
            background: linear-gradient(135deg,#f7d6ff,#ffeaf6,#e8d7ff);
            border-radius: 22px;
            padding: 18px;
            text-align: center;
            box-shadow: 0 0 18px rgba(200,150,255,0.25);
        }

        .powerstone-img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 18px;
            margin-bottom: 12px;
        }

        .powerstone-caption {
            color: #6b4a68;
            font-weight: bold;
            margin: 0 0 10px;
        }

        .column-widget {
            display: grid;
            gap: 10px;
        }

        .column-link {
            display: block;
            background: #fff;
            border: 1px solid #f4bfdc;
            border-radius: 16px;
            padding: 14px;
            text-decoration: none;
            color: #6b4a68;
            box-shadow: 0 4px 12px rgba(255,150,200,0.18);
        }

        .faq-panel {
            background: #fff;
            border-radius: 18px;
            border: 1px solid #f4bfdc;
            padding: 14px;
            box-shadow: 0 4px 12px rgba(255,150,200,0.18);
        }

        .faq-link {
            display: block;
            padding: 12px 0;
            color: #6b4a68;
            font-weight: bold;
            text-decoration: none;
        }

        .faq-link.has-divider {
            border-bottom: 1px solid #f7d6e8;
        }

        .cta-faq-more {
            display: block;
            text-align: center;
            margin: 16px 0 30px;
            padding: 12px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid #ff9ecb;
            color: #d85b9f;
            text-decoration: none;
            font-weight: bold;
        }

/* bootstrap の a:hover(青) がクラス色(詳細度0,1,0)に勝つのを防ぐ。ホバーでも各ボタンの色を保つ */
.cta-register:hover { color: #fff; }
.pickup-cta:hover { color: #fff; }
.waiting-cta:hover { color: #fff; }
.cta-more:hover { color: #fff; }
.cta-ranking-more:hover { color: #fff; }
.review-more-link:hover { color: #d85b9f; }
.tag-link:hover { color: #fff; }
.column-link:hover { color: #6b4a68; }
.faq-link:hover { color: #6b4a68; }
.gradient-cta-block:hover { color: #fff; }
.cta-faq-more:hover { color: #d85b9f; }
