/* 横スクロール防止とレスポンシブ基盤 */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
/* すべての主要コンテナの横幅制御 */
.main,
.section-secondary,
.section-white,
.section-primary,
.fixed-apply-buttons,
.container {
    max-width: 100%;
    /* overflow-x: hidden; */
}

/* Boxing Theme - NO LIMITS キャンペーン */
:root {
    /* ベースカラー */
    --color-base: rgb(20, 25, 35); /* ダークベース */
    --color-accent: rgb(246, 117, 7); /* オレンジ */
    --color-secondary: rgb(236, 0, 64); /* レッド */
    --color-content-bg: rgb(35, 40, 50); /* コンテンツ背景 */
    --color-text-light: rgb(255, 255, 255); /* 明るいテキスト */
    --color-text-dark: rgb(20, 25, 35); /* ダークテキスト */

    /* ボクシングカラー */
    --color-boxing-orange: rgb(246, 117, 7); /* オレンジ */
    --color-boxing-red: rgb(236, 0, 64); /* レッド */
    --color-boxing-gold: rgb(255, 215, 0); /* ゴールド */
    --color-boxing-silver: rgb(192, 192, 192); /* シルバー */
    --color-dark-bg: rgb(15, 20, 30); /* ダーク背景 */
    --color-card-bg: rgba(25, 30, 40, 0.9); /* カード背景 */

    /* グラデーション */
    --gradient-primary: linear-gradient(
        135deg,
        var(--color-boxing-orange) 0%,
        var(--color-boxing-red) 100%
    );
    --gradient-secondary: linear-gradient(
        135deg,
        var(--color-boxing-gold) 0%,
        rgb(255, 193, 7) 100%
    );
    --gradient-dark: linear-gradient(
        135deg,
        var(--color-base) 0%,
        var(--color-dark-bg) 100%
    );

    /* シャドウ */
    --shadow-primary: 0 8px 32px rgba(246, 117, 7, 0.3);
    --shadow-secondary: 0 8px 32px rgba(236, 0, 64, 0.3);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Body - ベース背景 */
body {
    background: var(--gradient-dark),
        url("//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/advance-ticket/naoyainoue/images/grunge.jpg") center/cover no-repeat fixed;
    background-blend-mode: multiply, normal;
    color: var(--color-text-light);
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* 背景エフェクト */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    background: radial-gradient(
            ellipse at 20% 50%,
            rgba(246, 117, 7, 0.12) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 80% 20%,
            rgba(236, 0, 64, 0.1) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 50% 80%,
            rgba(255, 215, 0, 0.08) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(20, 25, 35, 0.85) 0%,
            rgba(15, 20, 30, 0.9) 50%,
            rgba(20, 25, 35, 0.85) 100%
        );
    pointer-events: none;
    z-index: -1;
}

/* グランジテクスチャエフェクト */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/advance-ticket/naoyainoue/images/grunge.jpg") center/cover no-repeat fixed;
    mix-blend-mode: overlay;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    filter: contrast(1.2) brightness(0.8);
}

/* メイン */
.main {
    background: transparent;
}

small {
    font-size: 0.9rem !important;
}
.text_normal{
    font-size:15px;
}
.button-text{
    font-weight: 900;
    font-size:1.2rem;
}
.text-left{
    text-align: left;
}
/* メイン画像 */
.padt30 img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* 固定ボタン */
.fixed-apply-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(
        135deg,
        rgba(20, 25, 35, 0.95) 0%,
        rgba(15, 20, 30, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-top: 3px solid;
    border-image: var(--gradient-primary) 1;
}

.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.apply-now-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 12px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    flex: 1;
    min-width: 0;
}

.apply-now-button:hover {
    background: linear-gradient(
        135deg,
        var(--color-boxing-red) 0%,
        var(--color-boxing-orange) 100%
    );
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary), 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* セクション */
.section-secondary {
    background: linear-gradient(
        135deg,
        var(--color-card-bg) 0%,
        rgba(25, 30, 40, 0.95) 50%,
        rgba(20, 25, 35, 0.98) 100%
    );
    /* border-radius: 24px; */
    margin: 40px 20px;
    /* padding-left: 40px; */
    box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(246, 117, 7, 0.15);
    /* border: 2px solid;
    border-image: linear-gradient(
            135deg,
            rgba(246, 117, 7, 0.6) 0%,
            rgba(236, 0, 64, 0.4) 50%,
            rgba(255, 215, 0, 0.3) 100%
        )
        1; */
    overflow: visible;
    position: relative;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* .section-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 15px rgba(246, 117, 7, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: boxingFlash 3s ease-in-out infinite alternate;
} */

.section-secondary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(246, 117, 7, 0.03) 60deg,
        rgba(236, 0, 64, 0.02) 120deg,
        transparent 180deg,
        rgba(255, 215, 0, 0.02) 240deg,
        rgba(246, 117, 7, 0.03) 300deg,
        transparent 360deg
    );
    /* animation: boxingAura 12s linear infinite; */
    pointer-events: none;
    z-index: -1;
}

@keyframes boxingFlash {
    0% {
        opacity: 0.8;
        box-shadow: 0 2px 15px rgba(246, 117, 7, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        opacity: 1;
        box-shadow: 0 2px 20px rgba(246, 117, 7, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

/* @keyframes boxingAura {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} */

/* セクション内の要素 */
.section-secondary .contents,
.section-secondary .section-card {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.section-secondary h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(246, 117, 7, 0.3);
    position: relative;
}

.section-secondary h2::after {
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-boxing-orange) 20%,
        var(--color-boxing-red) 50%,
        var(--color-boxing-gold) 80%,
        transparent 100%
    );
    height: 3px;
    animation: boxingLine 2s ease-in-out infinite alternate;
}

@keyframes boxingLine {
    0% {
        width: 80px;
        opacity: 0.7;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

.section-secondary h3 {
    color: var(--color-text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    padding-left: 10px;
    text-align: center;
}

/* .section-secondary h3::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--color-boxing-orange);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(246, 117, 7, 0.5);
    animation: boxingPulse 1.5s ease-in-out infinite;
} */

@keyframes boxingPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.section-secondary ul {
    position: relative;
}

.section-secondary li {
    /* margin-bottom: 15px; */
    padding: 25px;
    border-bottom: 1px solid rgba(246, 117, 7, 0.1);
    transition: all 0.3s ease;
}

/* .section-secondary li:hover {
    padding-left: 10px;
    border-bottom-color: rgba(246, 117, 7, 0.3);
    background: rgba(246, 117, 7, 0.05);
    border-radius: 8px;
} */

.section-secondary li:last-child {
    border-bottom: none;
}

.section-white {
    background: var(--color-card-bg);
    border-radius: 20px;
    margin: 30px 20px;
    padding: 30px;
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(246, 117, 7, 0.2);
}

/* アコーディオン */
.accordion {
    border: none;
    background: transparent;
    margin-bottom: 30px;
    position: relative;
    padding-top: 0;
}

/* リボンバッジ */
.ribbon-badge {
    position: absolute;
    top: 10px;
    left: -30px;
    background: linear-gradient(
        135deg,
        var(--color-boxing-gold) 0%,
        rgb(255, 193, 7) 50%,
        var(--color-boxing-gold) 100%
    );
    color: var(--color-text-dark);
    font-size: 1.6em;
    font-weight: 900;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    padding: 12px 20px 12px 20px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 15px 100%, 0% 85%);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3), -3px 0 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
    animation: ribbonPulse 2s ease-in-out infinite alternate;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.ribbon-badge::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(
        135deg,
        rgba(204, 163, 0, 0.6) 0%,
        rgba(180, 140, 0, 0.8) 100%
    );
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
    filter: brightness(0.7);
    transform: translateY(100%);
}

.ribbon-badge::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    filter: brightness(0.8);
    transform: scaleY(0.6);
}

@keyframes ribbonPulse {
    0% {
        transform: rotate(-2deg) scale(1);
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        transform: rotate(-1deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.accordion__button {
    background: linear-gradient(
        135deg,
        var(--color-boxing-orange) 0%,
        var(--color-boxing-red) 50%,
        rgba(236, 0, 64, 0.9) 100%
    );
    color: white;
    padding: 30px 40px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-primary), inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(246, 117, 7, 0.2);
    /* border: 3px solid var(--color-base); */
    /* border-image: linear-gradient(
            135deg,
            rgba(255, 215, 0, 0.8) 0%,
            rgba(246, 117, 7, 0.6) 50%,
            rgba(236, 0, 64, 0.4) 100%
        )
        1; */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.accordion__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    overflow: hidden;
}

.accordion__button:hover::before {
    left: 100%;
}

.accordion__button:hover {
    background: linear-gradient(
        135deg,
        var(--color-boxing-red) 0%,
        var(--color-boxing-orange) 50%,
        rgba(255, 215, 0, 0.9) 100%
    );
    transform: translateY(-4px);
    box-shadow: var(--shadow-secondary), inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(246, 117, 7, 0.4), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.accordion__text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.2em;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.1);
    margin: 0;
    flex-grow: 1;
    /* text-transform: uppercase; */
    letter-spacing: 1.2px;
    position: relative;
    z-index: 2;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center;
}

.accordion__text br {
    display: block;
    content: "";
    margin: 8px 0;
}

/* アコーディオンアイコン */
.accordion_icon {
    position: relative;
    z-index: 3;
    font-size: 1.5em;
    margin-left: 20px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.accordion_icon i {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.accordion__button:hover .accordion_icon {
    transform: rotate(180deg);
    color: var(--color-boxing-gold);
}

.accordion__body_open {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 12px 12px;
    padding: 0;
    /* padding: 30px 0; */
    margin-top: 2px;
}
.accordion__body_open h3 {
    margin-top: 0;
    padding: 10px;
}
.accordion__body {
    padding: 0;
}
.accordion__body h3 {
    margin-top: 0;
    padding-top: 10px;
}
/* 見出し */
h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.3em;
    font-weight: 900;
    text-align: center;
    margin: 40px 0;
    padding: 30px 20px;
    background: linear-gradient(
            135deg,
            var(--color-boxing-orange) 0%,
            var(--color-boxing-red) 30%,
            var(--color-boxing-gold) 60%,
            var(--color-boxing-orange) 100%
        ),
        url("//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/advance-ticket/naoyainoue/images/grunge.jpg") center/cover;
    background-blend-mode: overlay, normal;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 20px rgba(246, 117, 7, 0.3));
    line-height: 1.3;
    position: relative;
    z-index: 10;
    transform: rotate(-1.5deg);
}

/* Safari用フォールバック - JavaScriptで検出されたSafariブラウザ */
.safari-browser h1 {
    background: none !important;
    background-image: url("//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/advance-ticket/naoyainoue/images/grunge-text.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    background-blend-mode: normal !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 20px rgba(246, 117, 7, 0.3)) !important;
}

h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        var(--color-boxing-orange) 0%,
        var(--color-boxing-red) 30%,
        var(--color-boxing-gold) 60%,
        var(--color-boxing-orange) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    z-index: -1;
}

h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.2em;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    padding: 10px 0 15px 0;
    line-height: 1.4;
    background: linear-gradient(
            135deg,
            var(--color-boxing-orange) 0%,
            var(--color-boxing-red) 50%,
            var(--color-boxing-gold) 100%
        ),
        url("//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/advance-ticket/naoyainoue/images/grunge.jpg") center/cover;
    background-blend-mode: overlay, normal;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 15px rgba(246, 117, 7, 0.2));
    position: relative;
    z-index: 5;
}

h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.4;
    margin: 20px 0 15px 0;
    padding: 15px 20px;
    text-align: center;
    background: linear-gradient(
            135deg,
            rgba(246, 117, 7, 0.9) 0%,
            rgba(236, 0, 64, 0.85) 70%,
            rgba(255, 215, 0, 0.8) 100%
        ),
        url("//d1mts1n1u0bek1.cloudfront.net/std/campaigns/1cm/advance-ticket/naoyainoue/images/grunge.jpg") center/cover;
    background-blend-mode: multiply, normal;
    border-radius: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 5;
}

h4 {
    color: var(--color-boxing-orange);
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: var(--shadow-primary);
    filter: none;
}

/* リストアイテム */
/* ul li::before {
    content: "●";
    color: var(--color-boxing-orange);
    font-weight: bold;
    margin-right: 8px;
} */

/* ボタン */
.button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.button:hover {
    background: linear-gradient(
        135deg,
        var(--color-boxing-red) 0%,
        var(--color-boxing-orange) 100%
    );
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary), 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.button--large {
    padding: 18px 25px;
    font-size: 1.1em;
}



/* ハイライトテキスト */
.text-highlight {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: var(--shadow-primary);
}

/* プライマリ */
.section-primary {
    background: var(--color-card-bg);
    border-radius: 20px;
    margin: 30px 20px;
    padding: 30px;
    border: 2px solid var(--color-boxing-orange);
    box-shadow: var(--shadow-primary);
}


    transform: translateX(10px);
    border-color: var(--color-boxing-orange);
}

/* レスポンシブ */
@media (max-width: 768px) {
    /* 基本レイアウト */
    body {
        padding: 0;
        margin: 0;
    }

    .main {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    /* ボタンコンテナ */
    .button-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        width: 100%;
        max-width: none;
    }

    .apply-now-button {
        padding: 12px 20px;
        font-size: 0.9em;
        width: 100%;
        margin: 0;
    }

    /* セクション全般 */
    .section-secondary {
        margin: 15px 10px;
        padding: 15px;
        /* border-radius: 16px; */
        width: calc(100% - 20px);
        max-width: calc(100vw - 20px);
    }

    .section-secondary .contents,
    .section-secondary .section-card {
        padding: 15px;
        width: 100%;
    }

    .section-secondary h3::before {
        animation: none;
    }

    .section-secondary::after {
        animation: none;
    }

    .section-white,
    .section-primary {
        margin: 15px 10px;
        padding: 15px;
        width: calc(100% - 20px);
        max-width: calc(100vw - 20px);
    }

    /* 見出し */
    h1 {
        font-size: 2.5em;
        margin: 20px 0;
        padding: 20px 15px;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    /* アコーディオン */
    .accordion {
        margin-bottom: 15px;
        margin-left: 25px;
        width: calc(100% - 25px);
    }

    .accordion__button {
        padding: 15px;
        margin: 0;
        min-height: 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        border-radius: 12px;
        border: 2px solid;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        width: 100%;
        max-width: 100%;
    }

    .accordion__button:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .accordion__text {
        font-size: 1.3em;
        text-transform: none;
        letter-spacing: 0.5px;
        line-height: 1.3;
        width: calc(100% - 40px);
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-right: 0;
        text-align: center;
    }

    .accordion_icon {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1em;
        margin: 0;
    }

    /* リボンバッジのモバイル調整 */
    .ribbon-badge {
        font-size: 0.75em;
        padding: 10px 16px 10px 16px;
        top: -6px;
        left: 5px;
    }

    .prep_info {
        padding: 15px;
        width: 100%;
    }

    #dcard-info li {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 100%;
    }
}

/* より小さなモバイル画面対応 */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
        margin: 15px 0;
        padding: 15px 10px;
        line-height: 1.1;
    }

    .section-secondary,
    .section-white,
    .section-primary {
        margin: 10px 5px;
        padding: 12px;
        width: calc(100% - 10px);
        max-width: calc(100vw - 10px);
    }

    .accordion {
        margin-left: 0px;
        width: 100%;
    }

    .accordion__button {
        padding: 12px;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .accordion__text {
        font-size: 1.1em;
        letter-spacing: 0.3px;
        line-height: 1.3;
        width: calc(100% - 35px);
        padding-right: 0;
        text-align: center;
    }

    .accordion_icon {
        top: 12px;
        right: 12px;
        font-size: 0.9em;
    }

    .button-container {
        padding: 0 8px;
    }

    /* 小型モバイル用リボンバッジ調整 */
    .ribbon-badge {
        font-size: 0.7em;
        padding: 8px 14px 8px 14px;
        top: 5px;
        left: 5px;
    }
}

/* 横スクロール防止の全体制御 */
.accordion {
    overflow-x: visible;
    max-width: 100%;
}

.section-secondary {
    /* overflow-x: hidden; */
    overflow-y: visible;
    max-width: 100%;
}

/* アニメーション */
@keyframes boxingGlow {
    0% {
        opacity: 0.4;
        transform: translateX(-100%);
    }
    100% {
        opacity: 0.8;
        transform: translateX(100%);
    }
}

/* フェードインアニメーション */
.section-secondary,
.section-white,
.section-primary {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.list--type_rice {
    padding-left: 20px;
}
.list--type_rice li {
    color: #eee;
}
hr.sep {
    margin-top: 40px;
    margin-bottom: 40px;
    border-color: var(--color-boxing-orange);
}
.prepare {
    margin-top: 40px;
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    color: var(--color-text-dark);
}

/* dcard-benefits: PCで3カラム横並び、高さ揃え */
.dcard-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.dcard-benefits li {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(246, 117, 7, 0.2);
}

@media (min-width: 1024px) {
    .dcard-benefits li {
        min-width: 0;
        flex: 1 1 calc(33.333% - 20px);
    }
}

.dcard-benefits li .benefit-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    text-align: center;
}

.dcard-benefits li .benefit-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.dcard-benefits li .benefit-image img {
    width: 128px;
    height: 128px;
    object-fit: contain;
}

.dcard-benefits li .benefit-text {
    color: var(--color-text-dark);
    font-weight: 600;
    line-height: 1.5;
    flex-grow: 1;
    text-align: center;
}

.dcard-benefits li .text-content {
    color: var(--color-text-dark);
    font-weight: 600;
    line-height: 1.5;
    flex-grow: 1;
}

.dcard-benefits li hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid rgba(246, 117, 7, 0.2);
}

.dcard-benefits li .text_small {
    color: var(--color-text-dark);
    font-size: 0.85em;
    opacity: 0.8;
    margin-top: 10px;
}
.benefit-list {
    margin: 0 !important;
    border: 0;
    padding: 0 !important;
    margin-bottom: 0 !important; /* 強制的に下部余白を削除 */
}
.benefit-list li {
    color: #333;
    border: 0;
    font-size: 0.73rem;
    box-shadow: none;
    margin-bottom: 0 !important; /* 強制的に下部余白を削除 */
    display: inline-block;
    line-height: 1.3;
    padding: 10px;
}
.benefit-notice {
    padding: 5px 15px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .dcard-benefits {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0; /* 明示的にmarginを制限 */
    }

    .dcard-benefits li {
        flex: 1 1 100%;
        min-width: auto;
        margin-bottom: 0; /* 追加の下部余白を削除 */
    }
}

.dbarai-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.dbarai-image {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
}

.dbarai-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.dbarai-icon {
    width: 128px;
    height: auto;
}

.dbarai-main {
    width: 128px;
    height: auto;
}

/* サブアコーディオン */
.subaccordion {
    border: 1px solid rgba(246, 117, 7, 0.2);
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.subaccordion-header {
    background: linear-gradient(
        135deg,
        var(--color-boxing-orange) 0%,
        var(--color-boxing-red) 50%,
        var(--color-boxing-gold) 100%
    );
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2em;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 16px rgba(246, 117, 7, 0.4);
    position: relative;
    overflow: hidden;
}

.subaccordion-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.subaccordion-header:hover::before {
    left: 100%;
}

.subaccordion-header:hover {
    background: linear-gradient(
        135deg,
        var(--color-boxing-red) 0%,
        var(--color-boxing-orange) 50%,
        var(--color-boxing-gold) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(246, 117, 7, 0.6);
}

.subaccordion-toggle {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-53%);
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transform-origin: center;
    line-height: 1;
    font-family: "Arial", "Helvetica", sans-serif;
}

.subaccordion-content {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text-dark);
    padding: 20px;
    /* max-height: 1000px; */
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.subaccordion-content.collapsed {
    max-height: 0;
    padding: 0 20px;
}

.subaccordion.expanded .subaccordion-toggle {
    transform: translateY(-53%) rotate(180deg);
}

/* dpoint-steps: PCで3カラム横並び */
.dpoint-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.dpoint-steps .step-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(246, 117, 7, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}


.dpoint-steps .step-header {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dpoint-steps .step-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    text-align: center;
}

.dpoint-steps .step-description {
    color: var(--color-text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.dpoint-steps .step-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dpoint-steps .step-image img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.dpoint-steps .step-result {
    background: rgba(246, 117, 7, 0.1);
    padding: 15px 12px;
    border-radius: 8px;
    color: var(--color-text-dark);
    font-weight: 600;
    border: 1px solid rgba(246, 117, 7, 0.3);
}

.dpoint-steps .step-result strong {
    color: var(--color-boxing-orange);
    font-size: 1.1em;
}

.dpoint-steps .step-result .note {
    font-size: 0.85em;
    margin-top: 8px;
    opacity: 0.8;
}

@media (min-width: 1024px) {
    .dpoint-steps .step-item {
        min-width: 0;
        flex: 1 1 calc(33.333% - 20px);
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .dbarai-images {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .dbarai-image {
        flex: 1 1 calc(50% - 7.5px);
        max-width: 120px;
    }

    .subaccordion-header {
        padding: 15px 60px 15px 20px;
        font-size: 1em;
        text-transform: none;
        letter-spacing: 0.5px;
    }

    .subaccordion-toggle {
        right: 20px;
        top: 50%;
        transform: translateY(-53%);
        width: 25px;
        height: 25px;
        font-size: 1.2em;
        transform-origin: center;
        line-height: 1;
        font-family: "Arial", "Helvetica", sans-serif;
    }

    .subaccordion-content {
        padding: 15px;
    }

    .dpoint-steps {
        flex-direction: column;
        gap: 15px;
    }

    .dpoint-steps .step-item {
        flex: 1 1 100%;
        min-width: auto;
    }

    .dpoint-steps .step-header {
        font-size: 1.1em;
        padding: 8px;
    }

    .dpoint-steps .step-image img {
        max-height: 100px;
    }
}

.setup-guide h4 {
    font-size: 1.2rem;
}

/* setup-steps: PC3カラム、スマホ2カラム、矢印付き */
.setup-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
    position: relative;
}

.setup-step {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(246, 117, 7, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}


/* 矢印を最後の要素以外に追加 */
.setup-step:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    color: var(--color-boxing-orange);
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.setup-number {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.setup-text {
    color: var(--color-text-dark);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.setup-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.setup-image img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* PC表示調整 */
@media (min-width: 1024px) {
    .setup-step {
        min-width: 0;
        flex: 1 1 calc(33.333% - 20px);
    }

    /* 3列目の要素の矢印を非表示 */
    .setup-step:nth-child(3n):after {
        display: none;
    }
}

/* タブレット・スマホ対応 */
@media (max-width: 768px) {
    .setup-steps {
        gap: 15px;
    }

    .setup-step {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
    }

    /* 矢印のサイズ調整 */
    .setup-step:not(:last-child):after {
        right: -20px;
        font-size: 1.5em;
    }

    /* 2列目の要素の矢印を非表示 */
    .setup-step:nth-child(2n):after {
        display: none;
    }

    .setup-number {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }

    .setup-text {
        font-size: 0.9em;
    }

    .setup-image img {
        max-height: 120px;
    }
}

/* To Be Continue スタイリング */
.to-be-continue {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    padding: 30px;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(15, 20, 30, 0.9) 0%,
        rgba(20, 25, 35, 0.95) 50%,
        rgba(15, 20, 30, 0.9) 100%
    );
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid;
    border-image: linear-gradient(
            135deg,
            var(--color-boxing-orange) 0%,
            var(--color-boxing-red) 50%,
            var(--color-boxing-gold) 100%
        )
        1;
    overflow: hidden;
}

.continue-text {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 2.5em;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(
        45deg,
        var(--color-boxing-orange) 0%,
        var(--color-boxing-red) 25%,
        var(--color-boxing-gold) 50%,
        var(--color-boxing-red) 75%,
        var(--color-boxing-orange) 100%
    );
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(246, 117, 7, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: gradientShift 3s ease-in-out infinite alternate,
        textGlow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.continue-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(246, 117, 7, 0.1) 60deg,
        rgba(236, 0, 64, 0.08) 120deg,
        transparent 180deg,
        rgba(255, 215, 0, 0.08) 240deg,
        rgba(246, 117, 7, 0.1) 300deg,
        transparent 360deg
    );
    animation: rotateGlow 8s linear infinite;
    z-index: 1;
}

.to-be-continue::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(246, 117, 7, 0.15) 0%,
        rgba(236, 0, 64, 0.1) 30%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(246, 117, 7, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(246, 117, 7, 0.9))
            drop-shadow(0 0 35px rgba(236, 0, 64, 0.5));
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .to-be-continue {
        margin: 25px 0;
        padding: 20px;
    }

    .continue-text {
        font-size: 1.8em;
        letter-spacing: 2px;
    }
}

/* Platinum タイトル装飾 */
.platinum-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    padding: 20px 25px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.2);
    text-align: center;
    line-height: 1.1;
    font-size: 1.4rem;
}
.platinum-title span{
    font-size:1rem;
    flex-basis: 100%;
    display: block;
}



.platinum-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.3em;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.platinum-highlight {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(45deg, #e6e6e6 0%, #ffffff 50%, #c0c0c0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    line-height: 1.2;
    padding: 2px 0;
}

.platinum-decoration {
    display: none;
}

.platinum-title::before {
    display: none;
}

.platinum-title::after {
    display: none;
}

/* アニメーションを削除してシンプルに */

/* モバイル対応 */
@media (max-width: 768px) {
    /* モバイルでのスクロール問題修正 */
    html {
        height: 100%;
        overflow-y: auto;
    }

    body {
        height: 100%;
        min-height: 100%;
        overflow-x: hidden;
        position: static;
    }

    body::before {
        position: absolute;
        min-height: 100%;
        height: auto;
    }

    .platinum-title {
        margin: 20px 0;
        padding: 15px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
    }

    .platinum-text:first-child,
    .platinum-highlight {
        flex: 0 0 auto;
    }

    .platinum-text:last-child {
        flex-basis: 100%;
        margin-top: 5px;
    }

    .platinum-text {
        font-size: 1.1em;
    }

    .platinum-highlight {
        font-size: 1.3em;
        letter-spacing: 0.5px;
        line-height: 1.3;
        padding: 3px 0;
    }

    .nav-icon img {
        width: 60px;
    }

    /* 固定ボタンのモバイル調整 */
    .fixed-apply-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateZ(0);
        will-change: transform;
    }
}

/* 特典カードスタイリング */
.benefit-card {
    background: linear-gradient(
        135deg,
        rgba(45, 50, 60, 0.95) 0%,
        rgba(55, 60, 70, 0.98) 50%,
        rgba(40, 45, 55, 0.95) 100%
    );
    border-radius: 16px;
    padding: 25px;
    margin: 20px 0;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(160, 160, 160, 0.8) 0%,
        rgba(220, 220, 220, 0.9) 50%,
        rgba(160, 160, 160, 0.8) 100%
    );
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
}

/* 数字バッジを削除 */

.benefit-title {
    color: rgba(220, 220, 220, 0.9);
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.benefit-content {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.4;
    margin: 15px 0;
    text-align: center;
    background: rgba(80, 85, 95, 0.4);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid rgba(192, 192, 192, 0.8);
}

.benefit-description {
    color: rgba(200, 200, 200, 0.9);
    font-size: 1em;
    font-weight: 600;
    margin: 10px 0;
    text-align: center;
    opacity: 0.8;
}

.benefit-notes {
    background: rgba(70, 75, 85, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid rgba(160, 160, 160, 0.3);
}

.benefit-notes li {
    color: var(--color-boxing-silver);
    /* color: rgba(190, 190, 190, 0.9) !important; */
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 8px;
    opacity: 0.9;
}

.benefit-notes li:last-child {
    margin-bottom: 0;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .benefit-card {
        margin: 15px 0;
        padding: 20px;
    }

    .benefit-number {
        top: -8px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }

    .benefit-title {
        font-size: 1.2em;
        margin-bottom: 12px;
    }

    .benefit-content {
        font-size: 1.1em;
        padding: 12px;
    }

    .benefit-description {
        font-size: 0.9em;
    }

    .benefit-notes {
        padding: 12px;
    }
}

/* how-to-prepare セクションスタイリング */
.how-to-prepare-section {
    background: linear-gradient(
        135deg,
        rgba(30, 35, 45, 0.95) 0%,
        rgba(40, 45, 55, 0.98) 50%,
        rgba(30, 35, 45, 0.95) 100%
    );
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid rgba(246, 117, 7, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.prepare-header {
    text-align: center;
    margin-bottom: 30px;
}

.prepare-title {
    color: var(--color-boxing-orange);
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.prepare-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.prepare-steps-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prepare-nav-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(
        135deg,
        rgba(50, 55, 65, 0.8) 0%,
        rgba(60, 65, 75, 0.9) 100%
    );
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(246, 117, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.prepare-nav-item:hover {
    transform: translateX(10px);
    border-color: var(--color-boxing-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(246, 117, 7, 0.2);
    background: linear-gradient(
        135deg,
        rgba(60, 65, 75, 0.9) 0%,
        rgba(70, 75, 85, 0.95) 100%
    );
}

.prepare-nav-item::before {
    content: "→";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-boxing-orange);
    font-size: 1.5em;
    font-weight: bold;
    opacity: 1;
    transition: all 0.3s ease;
}

.prepare-nav-item:hover::before {
    right: 15px;
}

.nav-icon {
    font-size: 2.5em;
    min-width: 80px;
    text-align: center;
    filter: grayscale(0.3) brightness(1.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* デスクトップ用のスタイルをメディアクエリで明示的に指定 */
@media (min-width: 769px) {
    .nav-icon img {
        width: 80px;
    }
}

.nav-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
}

.nav-title {
    color: white;
    font-size: 1.2em;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-description {
    color: rgba(200, 200, 200, 0.8);
    font-size: 0.9em;
    font-weight: 500;
    opacity: 0.9;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .how-to-prepare-section {
        padding: 20px;
        margin: 20px 0;
    }

    .prepare-title {
        font-size: 1.5em;
    }

    .prepare-subtitle {
        font-size: 1.1em;
        font-weight: 600;
    }

    .prepare-nav-item {
        padding: 15px;
        gap: 10px;
    }

    .prepare-nav-item:hover {
        transform: translateX(5px);
    }

    .prepare-nav-item::before {
        display: none;
    }

    .nav-icon {
        font-size: 2em;
        min-width: 50px;
    }

    .nav-title {
        font-size: 1em;
    }

    .nav-description {
        font-size: 0.85em;
    }
}

/* phone_br - スマホ表示のみ */
.phone_br {
    display: none;
}

@media (max-width: 768px) {
    .phone_br {
        display: inline;
    }
}

h4.subtitle {
    line-height: 1.3;
    font-size: 1.4rem;
}

h4.web-entry-note {
    background: rgba(246, 117, 7, 0.1);
    color: var(--color-boxing-orange);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin: 15px 0 0px 0;
    border: 2px solid var(--color-boxing-orange);
    text-shadow: none;
    position: relative;
    letter-spacing: 0.5px;
}

/* h4.web-entry-note::before {
    content: "※";
    margin-right: 4px;
    font-weight: 700;
} */

h4.web-entry-note::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-boxing-orange);
    opacity: 0.6;
}

.copy {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}
footer {
    margin-bottom: 100px;
}

/* アプリダウンロードリンク */
.get_apps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0 40px;
    flex-wrap: wrap;
}

.get_apps a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.get_apps a:hover {
    transform: scale(1.05);
}

.get_apps img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .get_apps {
        gap: 10px;
        margin: 15px 0;
    }

    .get_apps img {
        height: 60px;
    }

    #present > h2 {
        font-size: 1.8em;
    }

    .button-text {
        font-size: 1rem;
    }
}
.list-comment li{
    padding: 0 0 0 10px;
    /* padding: 5px 0 5px 10px; */
    border: 0;
    margin:0;
}

/* スマホのみtext-align:left */
@media (max-width: 768px) {
    .list-comment li{
        text-align: left;
    }
}

/* dカードPLATINUMボタン */
.dcard-platinum-2btn {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.dcard-platinum-2btn a {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 15px 20px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dcard-platinum-2btn a:hover {
    background: var(--color-boxing-orange);
    border-color: var(--color-boxing-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 117, 7, 0.3);
}

.dcard-platinum-1btn {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding-bottom: 40px;
}

.dcard-platinum-1btn a {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 300px;
    max-width: 500px;
}

.dcard-platinum-1btn a:hover {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    border-color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 85, 105, 0.3);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .dcard-platinum-2btn {
        flex-direction: column;
        gap: 10px;
    }

    .dcard-platinum-2btn a {
        flex: none;
        min-width: auto;
        max-width: none;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .dcard-platinum-1btn a {
        min-width: auto;
        max-width: none;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* モーダルスタイル */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-container {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-container--active {
    transform: scale(1);
    opacity: 1;
}

.modal-close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close-button:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.modal-content {
    text-align: center;
}

.modal-content h4 {
    margin: 0 0 20px 0;
    color: var(--color-text-dark);
    font-size: 1.2rem;
}

.modal-content .button {
    display: block;
    margin: 10px 0;
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-content .button:hover {
    background: var(--color-boxing-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 117, 7, 0.3);
}

.modal-content .text_small {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: 20px;
}

.text-bg-muted {
    background: rgba(0, 0, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
}

/* dカード無効ボタン */
.dcard-disable-button {
    background: #9ca3af !important;
    color: #444 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
}

.dcard-disable-button:hover {
    background: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
}

.disable-info {
    background: rgba(156, 163, 175, 0.1);
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        padding: 20px;
        max-height: 85vh;
    }

    .modal-content h4 {
        font-size: 1.1rem;
    }

    .modal-content .button {
        padding: 12px;
        font-size: 0.95rem;
    }

    .disable-info {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}
/* 2507014追加 */
.button.button_gray {
    background: #666;
}
/* 250819追加 */
.sub-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0px 16px;
    padding: 20px 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.2);
    text-align: center;
    line-height: 1.1;
    font-size: 1.4rem;
    color: #fff;
}
.benefit-content02 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    padding: 15px 15px 7px 15px;
}
.benefit-card-center p{
    text-align: center;
    padding: 0px;
}
.benefit-card-center li{
    text-align: center;
}
.list-comment-left{
    margin-top: 10px;
}
.list-comment-left li{
    padding: 0 0 0 110px;
    border: 0;
    margin: 0 auto;
    text-align: left;
}
@media (max-width: 768px){
.list-comment-left li{
    padding: 0px;
} 
}
.wallet-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.wallet-image {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 301px;
}
.wallet-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
.wallet-images {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}
.wallet-image {
    flex: 1 1 calc(50% - 7.5px);
    max-width: 170px;
}
}
.button-container02 {
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 0px;

}
/* 250823追加 */
@media (max-width: 588px) {
.apply-now-button02 {
    padding: 29px 12px;
}
}
@media (max-width: 377px) {
.apply-now-button02 {
    padding: 15px 12px;
}
}
@media (max-width: 354px) {
.apply-now-button02 {
    padding: 29px 12px;
}
}
.text_white {
  color: #ffffff;
  text-decoration: underline;
}