/* 汎用パーツ */
body {
    background-image: url('../images/bg_img.jpg');
    background-position: center;
}

/* ガチャアニメーション関連 */
/* 抽選アニメーションモーダル */
.gacha-animation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
    pointer-events: none; /* タッチ反応なし */
}

.gacha-animation-container {
    width: calc(100% - 40px);
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    margin: 0 20px;
    background-image: url('/images/omikuji/tsurub_kuji_bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: slideIn 0.4s ease-out;
    border-radius: 40px;
    overflow: hidden;
}

.gacha-animation-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.gacha-loading-text {
    font-size: 40px;
    font-weight: 900;
    color: #FFF;
    text-align: center;
    margin-bottom: 8px;
}

.gacha-shake-animation {
    width: 90%;
    max-width: 350px;
    height: auto;
}

.gacha-skip-button {
    position: absolute;
    top: 16px;
    right: 24px;
    background-color: #FFF;
    border: 1px solid #333;
    color: #333;
    font-size: 16px;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10001;
    transition: opacity 0.2s ease;
}

.gacha-skip-button:hover {
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 結果表示エリア */
.gacha-result-container {
    padding: 20px;
    text-align: center;
    animation: resultFadeIn 0.5s ease-in-out;
}

@keyframes resultFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bg-rot {
    background-color: #DE5B44;
}

.border-rot {
    border-color: #DE5B44;
}

.select-icon {
    position: absolute;
    top: -28px;
    right: 16px;
    content: '';
    display: block;
    width: 16px;
    height: 10px;
    background-image: url("/images/down-arrow.svg");
    background-size: contain;
}

.min-2h-screen {
    min-height: 130vh;
}

.display-id {
    position: absolute;
    right: 16px;
    top: 8px;
    color: #C0C0C0;
}

/* フォームボタン */
.form-btn-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}

.form-btn {
    width: 240px;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: #DE5B44 solid 1px;
    border-radius: 100px;
}

.btn-next {
    color: #FFF;
    background-color: #DE5B44;
    border: #DE5B44 solid 1px;
    margin-bottom: 16px;
}

.btn-next:hover {
    color: #DE5B44;
    background-color: #FFF;
}

.btn-prev {
    font-size: 20px;
    font-weight: 600;
    color: #214B63;
}

.btn-prev:hover {
    color: #214B63;
}

.btn-top {
    color: var(--Text, #333);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    letter-spacing: 0.64px;
}

/* エラーメッセージ */
.error-message-area {
    background-color: #DE5B44;
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    mix-blend-mode: multiply;
}

/* タイトルパーツ部分 */
.title-parts {
    margin-bottom: 32px;
}

.title-parts-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.title-parts-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.title-parts-body h2 {
    font-size: 40px;
    font-weight: 600;
    background: linear-gradient(transparent 70%,#ff0 25%);
    mix-blend-mode: multiply;
    line-height: 130%;
    letter-spacing: 10%;
}

.title-parts-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #DE5B44;
    line-height: 130%;
    letter-spacing: 10%;
    margin-top: 4px;
}

.title-parts-header figure {
    width: 50%;
}

.title-parts-width-line {
    content: "";
    width: calc(50% - 64px);
    height: 7px;
    background-color: #333;
    display: block;
    margin: 0 16px;
}

.title-parts-width-line-full {
    content: "";
    width: calc(100% - 32px);
    height: 5px;
    background-color: #333;
    display: block;
    margin: 0 16px;
}

/* ポイント部分 */
.point-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 64px;
}

.point-area-title {
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background-color: #333;
    padding: 8px 24px;
    margin-bottom: 32px;
}

.point-area-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.point-area-body .point {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0 16px;
}

.point-area-body .point-name {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-top: 16px;
}

.point-area-body figure img {
    height: 48px;
}

.limit-point-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 16px;
}

.limit-point-area a {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin: 16px;
    margin-bottom: 0;
}

.limit-point-area a:hover {
    color: #999;
}

.limit-point-area span {
    font-size: 20px;
    font-weight: 600;
}

.point-area-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.point-change-note {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    border: solid 2px #DE5B44;
    background-color: #FFF;
    padding: 16px;
    margin: 0 16px 32px 16px;
}

.btn-rot {
    min-width: 292px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    background-color: #DE5B44;
    border-radius: 16px;
    border: solid 2px #DE5B44;
    padding: 16px 48px;
    transition: background 0.3s ease;
}

.btn-rot:hover {
    background-color: #fff;
    border: solid 2px #DE5B44;
    color: #DE5B44;
}

.btn-tsurub {
    min-width: 292px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    background-color: #7AAF3D;
    border-radius: 16px;
    border: solid 2px #7AAF3D;
    padding: 16px 48px;
    transition: background 0.3s ease;
}

.btn-tsurub:hover {
    background-color: #fff;
    border: solid 2px #7AAF3D;
    color: #7AAF3D;
}

.btn-rot-blue {
    min-width: 292px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    background-color: #214B63;
    border-radius: 16px;
    border: solid 2px #214B63;
    padding: 16px 48px;
    transition: background 0.3s ease;
}

.btn-rot-blue:hover {
    background-color: #fff;
    border: solid 2px #214B63;
    color: #214B63;
}

.btn-primary {
    width: 100%;
    display: block;
    background: #214b63;
    color: white;
    border-radius: 16px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.72px;
    line-height: 1.3;
    transition: background 0.3s ease;
    padding: 16px 24px;
    box-sizing: border-box;
    border: solid 1px #214b63;
}

.btn-primary:hover {
    color: #214b63;
    background-color: #fff;
    border: solid 1px #214b63;
}

.btn-rot-profile {
    color: #666;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-rot-profile:hover {
    color: #999;
}

.change-late-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.change-late-title {
    font-size: 20px;
    font-weight: bold;
}

/* 獲得ポイント合計 */
.point-get-total-area {
    margin-bottom: 48px;
}

.point-get-total-area-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 16px;
    margin: 0 16px;
    border-bottom: 2px dotted #333;
}

.point-get-total-area-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.point-get-total-area-body .point {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0 16px;
}

.point-get-total-area-body .point-name {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-top: 16px;
}

.point-get-total-area-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 8px 16px;
}

/* ポイント履歴 */
.point-history-area-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 16px;
    margin: 0 16px;
    border-bottom: 2px dotted #333;
}

.point-history-area-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 10px;
}

.point-history-content {
    width: calc(100% - 32px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px;
}

.history-title {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-right: 8px;
}

.history-title .date {
    font-size: 16px;
    color: #333;
}

.history-title .title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.history-point {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: end;
    font-size: 24px;
    font-weight: 600;
}

.history-point .get-point{
    color: #DE5B44;
}

.history-point .get {
    color: #DE5B44;
    font-size: 18px;
}

.history-point .use-point {
    color: #21A4BB;
}

.history-point .use {
    color: #21A4BB;
    font-size: 18px;
}

.b-line {
    border-bottom: 1px solid #666;
}

/* ポイント交換 */
.point-change-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-change {
    display: inline-block;
    width: 288px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: #DE5B44;
    border-radius: 16px;
    border: solid 2px #DE5B44;
    padding: 16px 20px;
}

.btn-change:hover {
    color: #DE5B44;
    background-color: #fff;
    border: solid 2px #DE5B44;
}

.btn-change-disabled {
    display: inline-block;
    width: 288px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: #C0C0C0;
    border-radius: 16px;
    padding: 16px 20px;
}

.btn-back {
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: #333;
    border-radius: 32px;
    border: solid 2px #333;
    padding: 16px 64px;
}

.btn-back:hover {
    color: #333;
    background-color: #fff;
    border: solid 2px #333;
}

.swal-vertical-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* クーポン */

.btn-coupon {
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background-color: #DE5B44;
    border-radius: 8px;
    border: solid 1px #DE5B44;
    padding: 4px 12px;
}

.btn-coupon:hover {
    color: #DE5B44;
    background-color: #fff;
    border: solid 1px #DE5B44;
}

.empty-coupon-text {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-top: 32px;
}

/* プロフィール登録 */
.profile-note {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    border: solid 2px #DE5B44;
    background-color: #FFF;
    padding: 16px;
    margin: 32px 0;
}

/* QR獲得 */
.qr-success-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.point-get-image {
    width: 100%;
    max-width: 320px;
}

/* 抽選会 */
.point-lottery-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lottery-image figure {
    max-width: 288px;
    margin-bottom: 32px;
}

.lottery-image figure img {
    border-radius: 8px;
}

.lottery-detail {
    width: 288px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border: solid 2px #DE5B44;
    background-color: #FFF;
    padding: 16px 32px;
    margin-bottom: 32px;
}

.lottery-detail .first {
    font-size: 20px;
    font-weight: 600;
    color: #DE5B44;
}

.lottery-detail .second {
    font-size: 20px;
    font-weight: 600;
    color: #214B63;
}

.lottery-detail .note {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 16px;
}

.joined {
    font-size: 20px;
    font-weight: 600;
    color: #DE5B44;
}

.btn-lottery {
    display: inline-block;
    width: 288px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: #DE5B44;
    border-radius: 16px;
    border: solid 2px #DE5B44;
    padding: 16px 20px;
}

.btn-lottery:hover {
    color: #DE5B44;
    background-color: #fff;
    border: solid 2px #DE5B44;
}

/* メンテナンス */
.maintenance-text {
    font-size: 24px;
    font-weight: 600;
    color: #D93025;
    text-align: center;
}

.maintenance-period {
    font-size: 16px;
    font-weight: 400;
}

/* ページネーションスタイル */
.pagination-container {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
}

.pagination-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #214B63;
    color: #214B63;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination-number:hover {
    background-color: #214B63;
    color: #fff;
}

.pagination-active {
    background-color: #214B63;
    color: #fff;
}

.pagination-active:hover {
    background-color: #214B63;
    color: #fff;
}

.pagination-ellipsis {
    color: #666;
    font-weight: bold;
}

/* ガチャページ専用スタイル */
.gacha-area {
    padding-bottom: 40px;
}

/* キャラクター画像エリア */
.gacha-character-area {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.gacha-character-area figure img {
    border-radius: 40px;
}

/* ポイント表示エリア */
.gacha-points-display {
    background-color: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.gacha-points-display .point-label {

}

.gacha-points-display .point-display {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.gacha-points-display .point-display .point {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0 16px;
}

.gacha-points-display .point-display .point-name {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-top: 16px;
}

.gacha-points-display .point-display figure img {
    height: 48px;
}

/* ガチャボタンエリア */
.gacha-button-area {
    margin-bottom: 48px;
}

.gacha-button-area .btn-disabled {
    min-width: 292px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    background-color: #CCCCCC;
    border-radius: 16px;
    border: solid 2px #CCCCCC;
    padding: 16px 48px;
    cursor: not-allowed;
}

/* トップに戻るボタン */
.btn-back-top {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s;
}

.btn-back-top:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

/* 説明セクション */
.info-section {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.info-section-header {
    background-color: #333;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.info-section-header.expandable:after {
    content: '▼';
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
}

.info-section-header.expandable.expanded:after {
    transform: rotate(180deg);
}

.info-section-body {
    padding: 20px;
    background-color: #fff;
}

.info-section-body.collapsible {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.info-section-body.collapsible.expanded {
    max-height: 2000px;
    padding: 20px;
    transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

/* 手順リスト */
.step-list {
    counter-reset: step-counter;
    padding: 0;
}

.step-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    list-style: none;
}

.step-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #DE5B44;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* 特典セクション */
.benefit-section {
    background-color: #fff9e6;
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.benefit-section h3 {
    color: #DE5B44;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

/* FAQ セクション */
.faq-section {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 20px;
}

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

.faq-question {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question-mark {
    background-color: #DE5B44;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question-text {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px 0 60px;
}

.faq-answer.expanded {
    max-height: 500px;
    padding: 15px 20px 15px 60px;
    transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

.faq-answer-text {
    color: #666;
    line-height: 1.6;
}

/* ナビゲーションエリア */
.navigation-area {
    padding: 20px 0;
    text-align: center;
}

.navigation-area .btn-back {
    margin-bottom: 10px;
}

/* モバイル最適化 */
@media (max-width: 640px) {
    .info-section-header {
        font-size: 16px;
        padding: 12px 15px;
    }

    .step-list li {
        padding-left: 40px;
    }

    .step-list li:before {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* ガチャトップページ */
.gacha-landing-info {
    margin-bottom: 40px;
}

.gacha-landing-info-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.gacha-landing-info-title-top {
    width: 124px;
    padding: 6px 12px;
    background: #333333;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 8px;
}

.gacha-landing-info-title-h2 {
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
}

.gacha-landing-info-title-h2 h2 {
    display: inline-block;
}

.gacha-landing-info-detail {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
}

.under-line-yellow {
    background: linear-gradient(transparent 70%, #ff0 25%);
}

.gacha-landing-steps-section {
    display: flex;
    flex-direction: column;
}

.gacha-landing-steps-title {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.gacha-landing-step {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
}

.gacha-landing-step-number {
    width: 36px;
    height: 36px;
    border: 2px solid #de5b44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #de5b44;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.gacha-landing-step-content {
    flex: 1;
}

.gacha-landing-step-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 4px;
}

.gacha-landing-step-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #828282;
    margin: 0;
}

.gacha-landing-step-text a {
    color: #9e4131;
    text-decoration: underline;
}

.gacha-landing-coupon-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.gacha-landing-coupon-card {
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gacha-landing-coupon-card h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 130%;
}
.gacha-landing-coupon-card h4 span {
    font-size: 14px;
}

.gacha-landing-coupon-card ul {
    font-size: 14px;
    list-style: disc;
    padding-left: 20px;
}

.title-badge{
    width: 260px;

    /* 画像のアスペクト比（サンプル画像 287x95 を想定） */
    aspect-ratio: 260 / 68;

    /* 背景に土台画像（@2x などの高解像度も提供できると◎） */
    background-image: image-set(
        url("/images/title_bg.svg") 1x
    );
    background-repeat: no-repeat;
    background-position: center;

    /* 中央配置 */
    display: grid;
    place-items: center;
    text-align: center;
}

.title-badge p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 130%;
}

.gacha-landing-dotline {
    width: 99vw;
    height: 5px;
    background-image: image-set(
        url("/images/dot-line.svg") 1x
    );
    background-size: 453.4px 5px;
    margin-left: calc(50% - 50vw);
    margin-top: 80px;
    margin-bottom: 80px;
}

.gacha-landing-faq-section {
    margin-bottom: 54px;
}

.gacha-landing-faq-title {
    display: inline-block;
    background: linear-gradient(transparent 70%, #ff0 25%);
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    margin-bottom: 40px;
}

.gacha-landing-faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
}

.gacha-landing-faq-content {
    padding: 16px;
}

.gacha-landing-faq-question {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #de5b44;
    margin: 0 0 12px;
}

.gacha-landing-faq-answer {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #333333;
    margin: 0;
}
