/*------------------------------
  共通設定
-------------------------------- */
:root {
    --sp-width: 430px;
    /*  --sp-width: 393px; */

    --color-border: #77B471;
    --color-title1: #3C6051;
    --color-title2: #3B8F50;
    --color-title3: #64B166;
    --color-title4: #3B5F50;

    --color-btnRegOn: #DA307E;
    --color-btnOn: #82BD76;
    --color-btnText: #3C6051;
    --color-btnOff: #D9D9D9;

    --color-tokai: #ED6D00;
    --color-black: #000;
    --color-white: #fff;
    --color-gray: gray;
}

/* --------------------------------
  Layout
-------------------------------- */

/* デバッグ用。一時的に適用 */
/*
 * {
outline: 1px solid red;
}
*/

/*iOS Safari のフォントサイズ自動調整機能off*/
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}


body {
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
        "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
        "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
    font-weight: normal;
    color: var(--color-black);
    background-color: var(--color-gray);
    margin: 0;
}

main {
    margin-top: 66px;
    background-color: var(--color-white);
}

#kingdom *,
#kingdom *::before,
#kingdom *::after {
    box-sizing: border-box;
}

#kingdom ul {
    list-style: none;
    padding-left: 0;
}

#kingdom table {
    border-collapse: collapse;
    border-spacing: 0;
}

.event__border {
    border: none;
    /* デフォルトの枠線を消す */
    border-top: 2px solid var(--color-white);
    /* 線を太く */
    width: 25%;
    margin: 20px auto 15px;
}

.underline {
    color: blue;
    text-decoration: underline solid blue;
    /*iOS Safari でアンダーバー表示が適用されない挙動の対応*/
    -webkit-text-decoration: underline solid blue;
}

.border {
    border: none;
    /* デフォルトの枠線を消す */
    border: 1px solid #82BD76;
    width: 85%;
    margin: 15px auto;
}


/*邪神ちゃん ボタン 共通
----------------------------*/
.btn {
    display: inline-block;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    color: var(--color-white);
    width: 360px;
    max-width: 100%;
    border-radius: 10px;

    text-align: center;
    justify-content: center;
    text-decoration: none;

    border: none;
    /* クリックした際に枠線をnone消す */
    outline: none;
    /* 影を消す */
    box-shadow: none;
    margin: 0;
    /* ブラウザ標準の余白を消す */
    padding: 0;
    /* 必要に応じて初期化 */
    background-color: var(--color-btnOff);
    margin: 0 auto;
}

.btn__wrapper {
    display: flex;
    justify-content: center;
    /* 中央寄せ */
}

.btn__text {
    display: flex;
    flex: 40;
    /* 比率b */
    align-items: center;
    font-size: 1.25rem;
    /*20px*/
    font-weight: 700;
    padding: 26px 0;
    letter-spacing: 0.04em;
    justify-content: center;
    /* 中央寄せ */
    z-index: 1;
}

/*ボタン内側ライン*/
.btn__inside-line {
    position: relative;
}

.btn__inside-line::before {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 1);
    pointer-events: none;
}

/*テキストシャドウの作成*/
.btn__text--shadow {
    position: absolute;
    content: "";
    inset: 0;
    color: white;
    -webkit-text-stroke: 0.2rem white;
    z-index: 0;
}


/*ボイスを聞く ボタン
----------------------------*/
.btn-voice {
    color: var(--color-btnText);
    background-color: var(--color-btnOn);
    width: 100%;
    height: 80px;
}

.btn-voice--icon {
    position: relative;
}

.btn-voice__text {
    margin-left: 2.1rem;
}

.btn-voice--icon::before {
    position: absolute;
    content: "";
    top: 36%;
    left: 20%;
    width: 27.5px;
    height: 100%;
    background-image: url(/view/event/jashinchan/svg/speaker_red.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/*乗車スタンプをゲット！ ボタン
----------------------------*/
.btn-stamp--on {
    background-color: var(--color-btnOn);
}

.btn-stamp--on .btn-stamp__text {
    color: var(--color-btnText);
}

.btn-stamp--on .btn-stamp--icon::before {
    background-image: url(/view/event/jashinchan/svg/box_red.svg);
}

.btn-stamp {
    color: var(--color-btnOff);
    width: 91.6%;
    height: 80px;
}

.btn-stamp__text {
    margin-left: 1.9rem;
}

.btn-stamp--icon {
    position: relative;
}

.btn-stamp--icon::before {
    position: absolute;
    content: "";
    top: 32%;
    left: 0%;
    width: 27.0px;
    height: 100%;
    background-image: url(/view/event/jashinchan/svg/box_gray.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/*特典と交換する ボタン*/
.btn-stamp-winning .btn-stamp__text {
    margin-left: 3.1rem;
}

.btn-stamp-winning .btn-stamp--icon::before {
    left: 28px;
}


/*ARカメラボタン*/
.btn-ar--on {
    background-color: var(--color-btnOn);
}

.btn-ar--on .btn-ar__text {
    color: var(--color-btnText);
}

.btn-ar--on .btn-ar--icon::before {
    background-image: url(/view/event/jashinchan/svg/camera_gray.svg);
}


.btn-ar {
    color: var(--color-btnOff);
    width: 91.6%;
    height: 80px;
}

.btn-ar__text {
    padding-left: 2rem;
}

.btn-ar--icon {
    position: relative;
}

.btn-ar--icon::before {
    position: absolute;
    content: "";
    top: 35%;
    left: 11%;
    width: 27.0px;
    height: 100%;
    background-image: url(/view/event/jashinchan/svg/camera_gray.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.btn-ar--on .btn-ar--icon::before {
    background-image: url(/view/event/jashinchan/svg/camera_red.svg);
}

.btn-ar__text--on {
    color: var(--color-btnText);
}

/*乗車証明書ボタン*/
.btn-ride--on {
    background-color: var(--color-btnOn);
}

.btn-ride--on .btn-ride__text {
    color: var(--color-btnText);
}

.btn-ride--on .btn-ride--icon::before {
    background-image: url(/view/event/jashinchan/svg/meter_red.svg.svg);
}

.btn-ride {
    color: var(--color-btnOff);
    width: 91.6%;
    height: 80px;
}

.btn-ride__text {
    padding-left: 2rem;
}

.btn-ride--icon {
    position: relative;
}

.btn-ride--icon::before {
    position: absolute;
    content: "";
    top: 36%;
    left: 14%;
    width: 32px;
    height: 100%;
    background-image: url(/view/event/jashinchan/svg/meter_gray.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.btn-ride--on .btn-ride--icon::before {
    background-image: url(/view/event/jashinchan/svg/meter_red.svg);
}

.btn-ride__text--on {
    color: var(--color-btnText);
}

/*なごみの湯限定ボイス ボイスを聞くボタン*/
.btn-spa {
    width: 91.6%;
    height: 80px;
    background-color: var(--color-btnOn);
}

.btn-spa__text {
    color: var(--color-btnText);
    padding-left: 2rem;
}

.btn-spa--icon {
    position: relative;
}

.btn-spa--icon::before {
    position: absolute;
    content: "";
    top: 35%;
    left: 8%;
    width: 27.5px;
    height: 100%;
    background-image: url(/view/event/jashinchan/svg/speaker_red.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

/*----------------------------------------------------
  トップページに戻るボタン
-----------------------------------------------------*/
.btn-return {
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    /* ボタン内の文字を中央揃え */
    justify-content: center;
    align-items: center;
    width: 91.6%;
    height: 54.39px;
    border: 2px solid var(--color-black);
    background-color: var(--color-white);
}

.btn-return__text {
    font-size: 1.25rem;
    /*20px*/
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--color-black);
}

/* main class="page-content"
----------------------------------------------- */
.page-content {
    width: var(--sp-width);
    max-width: 430px;
    padding-top: 60px;
    min-height: calc(100vh - 150px);
    margin: auto;
    display: block;
    overflow: hidden;
    background-color: var(--color-white);
    background-image: 100%;
}

.page-content__wrapper {
    width: 91.6%;
    margin-left: auto;
    margin-right: auto;
}

/*------------------------------
  共通設定 ここまで
-------------------------------- */



/* section class="main-visual"
----------------------------------------------- */
.main-Visual {
    background-color: var(--color-black);
    margin-bottom: 12px;
}

.visual__inner {}

.visual__image {
    display: block;
    width: var(--sp-width);
    height: auto;
}

/*認証セクション
----------------------------------------------- */
.registration {
    background-color: var(--color-white);
    margin-top: 5px;
}

.registration__inner {
    width: 91.6%;
    margin: 0 auto;
}

/* 認証処理ボタン 
----------------------------------------------- */
.registration__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.btn-registration,
.btn-login {
    background-color: var(--color-btnRegOn);
    /* 基本色 */
}

/*アカウント新規登録*/
.btn-registration__icon-left {
    flex: 3;
    margin: auto;
    padding-right: 10px;
}

.btn-registration__text {
    flex: 8;
    text-align: center;
    font-size: 1.25rem;
    /*20px*/
    font-weight: 700;
    margin: 16.0px auto;
}

.btn-registration__icon-right {
    flex: 1;
}

.btn-login__icon-size {
    height: auto;
}

/*ログイン*/
.btn-login__icon-left {
    flex: 7;
    margin: auto;
    padding-right: 10px;

}

.btn-login__text {
    flex: 20;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 16.0px auto;
    padding-right: 1rem;
}

.btn-login__icon-right {
    flex: 3;
}

.btn-login__icon-size {
    width: 18px;
    height: auto;
}



/* コンテンツ ご注意事項 
----------------------------------------------- */
/*ご注意事項ボタン*/
.warning-content {
    padding: 13px 0 20px 0;
    margin: 0 auto 10px auto;
    transition: 0.5s;
    background-color: var(--color-white);
}

.toggleWarning {
    cursor: pointer;
    position: relative;
}

.toggleWarning__title {
    color: var(--color-black);
    text-indent: -3em;
    font-size: 1.0rem;
    font-weight: bold;
    margin: 5px;
    text-align: center;
    padding: 8px 0 0px 0;
}

/*icon デザイン*/
.open__icon__block {
    position: absolute;
    right: 35%;
    top: 68%;
    transform: translatey(-50%);
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}

.open__icon {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.open__icon::before,
.open__icon::after {
    position: absolute;
    content: "";
    display: block;
    transition: all 0.3s;
    background: #fff;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 2px;
    transform: translate(-50%, -50%);
}

.open__icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.open__icon.open::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.open__icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

/*icon ログオン時非表示*/
.registration-off {
    display: none;
}

/*  東海道新幹線車内限定
    コンテンツ
----------------------------------------------*/
.content-top {
    background: var(--color-white);
    text-align: center;
}

.bg-img--green {
    padding-top: 20px;
    background-repeat: no-repeat;
    /* 繰り返さない */
    background-size: contain;
    /* 元のサイズのまま */
    background-position: top center;
    /* ← 上に張り付ける */
}

.content-top__wrapper {
    text-align: center;
    position: relative;
}

.content-top__title {
    position: absolute;
    color: var(--color-title1);
    font-size: 1.5625rem;
    /*25px*/
    font-weight: 900;
    line-height: 1.3;
    inset: 0;
    z-index: 1;
}

/*テキストシャドウの作成*/
.text--shadow {
    color: white;
    -webkit-text-stroke: 0.2rem white;
    position: absolute;
    content: "";
    inset: 0;

    padding: 0px;
    z-index: 0;
}

.content-top__img {
    padding-top: 65px;
    width: 98%;
    display: block;
    /* ブロック要素にする */
    margin-left: auto;
    /* 右寄せ */
    margin-right: 0;
}

.content-top__text-wrapper {
    padding-top: 30px;
}

.content-top__text {
    text-align: center;
    font-size: 0.875rem;
    /*14px*/
    font-weight: 500;
    line-height: 1.8;
}

/*キャラクター　ビジュアル*/
.character {
    display: flex;
    justify-content: center;
    /* 全体を横方向中央に寄せる */
    padding-top: 25px;
    gap: 30px;
}

.character__wrapper {
    display: flex;
    flex-direction: column;
    /* 画像とテキストを縦並びに */
    align-items: center;
    /* 画像＋テキストを中央揃え */
    text-align: center;
    /* テキスト中央揃え */
}

.character__img {
    width: 141px;
}

.character__text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-title1);
    padding: 17px 0;
}

/*スケジュール*/
.schedule {
    border: 1px solid var(--color-btnOn);
    border-radius: 10px;
    text-align: center;

    margin: 10px 0 30px;
    background-color: var(--color-white);
    overflow: hidden;
    /* 子要素の角を丸枠に合わせて切り取る */
}

.schedule__title {
    font-size: 1.25rem;
    /*20px*/
    font-weight: 900;
    line-height: 1.78;
}

.schedule__text {
    font-size: 1.25rem;
    /*20px*/
    font-weight: 900;
    color: var(--color-white);
    background-color: var(--color-border);
    line-height: 1.78;
}

.schedule__text>span {
    font-size: 0.9735rem;
    /*15px*/
}

/*ノベリティー　注意事項
-------------------------------*/
.event-warning {
    width: 90%;
    margin: 0 auto;
}

.event-warning>ul {
    list-style: none;
}

/*リスト*/
.event-warning-list {
    padding-left: 5px;
}

.event-warning-list__item {
    position: relative;
    font-size: 0.75rem;
    /*12px*/
    letter-spacing: 0.02em;
    font-weight: 400;
    line-height: 1.7;
    padding-left: 17px;
    /*リスト左スペース調整*/
    padding-right: 0;
    /*リスト右スペース調整*/
    color: var(--color-black);
    text-align: left;
}

.event-warning-list__item::before {
    content: "※";
    position: absolute;
    left: 0.0em;
    /*ドット位置調整*/
}

/*リスト上部のスペース調整*/
.event-warning-list__item:first-child {
    padding-top: 0;
}

/*リスト下部のスペース調整*/
.event-warning-list__item:last-child {
    padding-bottom: 0;
}


/*東海道新幹線3回乗車で抽選！
-------------------------------*/
.main-content {
    text-align: center;
    background-size: 60% auto;
    background-repeat: repeat;
    padding-bottom: 20px;
}

.main-content__wrapper {
    width: 91.6%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 4px 0px #00000040;
    ;
    border-radius: 20px;
    background-color: var(--color-white);
}

.main-content--green {
    padding-top: 30px;
}

.lottery {
    padding: 32px 0 20px;
}

.lottery__title {
    font-size: 1.25rem;
    /*20px*/
    font-weight: 900;
    color: #3B5F50;
}

.lottery__text {
    font-size: 0.8125rem;
    /*13px*/
    font-weight: 700;
    line-height: 1.8;
}

.lottery__text>span {
    font-size: 0.625rem;
    /*10px*/
}

.lottery-stamp {
    display: flex;
    justify-content: center;
    gap: 11px;
    padding: 26px 0 20px;
}

/*灼熱のロウリュイベント1回50名様（1回限りの開催）*/
.benefits {
    padding-top: 10px;
}

.benefits__title {
    font-size: 1.0625rem;
    /*17px*/
    color: var(--color-title4);
    font-weight: 700;
    padding-bottom: 16px;
}

.benefits__title>span {
    background: linear-gradient(transparent 50%, #F6FF00 100%);

}

.benefits__img {
    width: 336px;
}

.benefits__wrapper {
    padding: 10px;
}

.benefits-warning li.event-warning-list__item {
    letter-spacing: 0.01;
}

/*リスト下部のスペース調整*/
.benefits-warning li.event-warning-list__item:last-child {
    padding-bottom: 2rem;
}


/*『灼熱のロウリュイベント』
が当たりました！！
-------------------------------*/
.benefits__title--winning {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
}

/*開催概要　*/
.event-overview {
    margin-top: 16px;
    margin-bottom: 18px;
}

.event-overview__wrapper {
    width: 91%;
    border-radius: 20px;
    border: 2px solid #77B471;
    margin: 0 auto;
}

.event-overview__title {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 20px;
    letter-spacing: 5%;
    text-align: center;
    color: #0D9D60;
    padding: 20px 0 6px;
}

/*スケジュール*/
.vertical-table {
    padding-bottom: 5px;
}

.vertical-table__body-row {}

.vertical-table__inner {
    color: var(--color-black);
    margin: 0 auto;
}

.vertical-table__inner tr {
    height: 29px;
    /* ← 各行の高さを固定 */
}

.vertical-table__body-row {
    font-size: 0.9375rem;
    /*15px*/
    font-weight: 700;
    letter-spacing: 0.04em;
}

th.vertical-table__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 5%;

    text-align: right;
    width: 20.5%;
    white-space: nowrap;
    padding-left: 8px;
}

td.vertical-table__text {
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 5%;
    white-space: nowrap;
    text-align: left;
}

/*リスト*/

.roryuu-warning {
    width: 90%;
    margin: 0 auto;
}

.roryuu-warning>ul {
    list-style: none;
}

.roryuu-warning-list {
    padding-left: 5px;
}

.roryuu-warning-list__item {
    position: relative;
    font-size: 0.875rem;
    /*14px*/
    padding-left: 1rem;
    /*リスト左スペース調整*/
    padding-right: 0;
    /*リスト右スペース調整*/
    color: var(--color-black);
    text-align: left;

    font-family: Noto Sans JP;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0%;
}

.roryuu-warning-list__item::before {
    content: "・";
    position: absolute;
    left: 0.0em;
    /*ドット位置調整*/
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
}

/*リスト上部のスペース調整*/
.roryuu-warning-list__item:first-child {
    padding-top: 0;
}

/*リスト下部のスペース調整*/
.roryuu-warning-list__item:last-child {
    padding-bottom: 1.1rem;
}



/*『オリジナルTシャツ』
が当たりました！
-------------------------------*/
.lottery__t-shirt {
    padding: 26px 0 0 0;
}

.lottery-stamp__t-shirt {
    padding-top: 16px;
}

.benefits__title--winning-t-shirt {
    padding-bottom: 25px;
}

.benefits__wrapper__t-shirt {
    padding: 10px 0 24px;
}

/*引き換え場所　*/
.exchange-location {
    margin-bottom: 20px;
}

.border-exchange-location {
    width: 100%;
    margin: 0 auto;
}

.exchange-location__title {
    margin-top: 12px;
    margin-bottom: 13px;
}

.exchange-location__wrapper {
    width: 91%;
    border-radius: 20px;
    border: 2px solid #77B471;
    margin: 0 auto;
}

.exchange-location__title {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 20px;
    text-align: center;
    color: #0D9D60;
}

.exchange-location__nagomi {
    margin: 0;
    padding: 16px 0 5px;
}

.exchange-location__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.1875rem;
    /*19px*/
    line-height: 32px;
    letter-spacing: 0.02em;
    text-align: center;
}

.exchange-location__text>span {
    font-size: 0.84375rem;
    /*13.5px*/
    line-height: 30px;
}

.exchange-location__note {
    font-family: Noto Sans JP;
    font-weight: 400;
    font-size: 0.75rem;
    /*12px*/
    line-height: 20px;
    text-align: center;
    padding: 5px 0 9px;
}

.exchange-location__text-red {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1rem;
    line-height: 30px;
    text-align: center;
    color: #FF0000;
    padding-bottom: 14px;
}


/*ARフォト
----------------------------------*/
.main-content--ar {
    margin-bottom: 10px;
}

.ar {
    padding: 27px 0 20px;
}

.ar__title {
    font-size: 1.25rem;
    /*20px*/
    font-weight: 900;
    color: #3B5F50;
}

.ar__text {
    font-size: 0.8125rem;
    /*13px*/
    font-weight: 700;
    line-height: 1.8;
}


/*ARフォト　アイコン　サムネイル画像表示*/
.ar-icon {
    padding-top: 26px;
    padding-bottom: 18px;
}

.thumbnail-image-ul__wrapper {
    width: 91.6%;
}

.thumbnail-image-ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 1段目は3等分 */
    gap: 8px;
    /* 画像間の余白 */
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.thumbnail-image-ul_2 {
    grid-template-columns: repeat(2, 1fr);
    /* 1段目は3等分 */
}

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

.thumbnail-image {
    max-width: 100%;
    height: auto;
}

.album-image-body {
    margin: 0 5px;
}

.album-image-body-2 {
    padding-top: 5px;
    margin: 0 65px;
}

.ar-warning li.event-warning-list__item {
    text-align: center;
    letter-spacing: 0.01;
}

/*リスト下部のスペース調整*/
.ar-warning li.event-warning-list__item:last-child {
    padding-bottom: 0.8rem;
}

.ar-warning .event-warning-list__item::before {
    content: none;
}

/*乗車特典プレゼント
---------------------------*/
.card {
    padding: 27px 0 23px;
}

.card__title {
    font-size: 1.25rem;
    /*20px*/
    font-weight: 900;
    color: #3B5F50;
}

.card__text-wrapper {
    width: 199px;
    border: 2.0px solid #64B166;
    border-radius: 88.27px;
    margin: 0 auto;
    margin-bottom: 13px;
}

.card__text {
    padding: 1px 0;
    font-weight: 700;
    font-style: Bold;
    font-size: 1.103rem;
    line-height: 26.48px;
    letter-spacing: 5%;
    text-align: center;
    color: #64B166;
}

.card__img {
    width: 240px;
    height: auto;
}

.card__note {
    font-size: 0.75rem;
    /*12px*/
    font-weight: 400;
}

/*リスト上部のスペース調整*/
.card-warning li.event-warning-list__item:first-child {
    padding-top: 0.3rem;
}

/*リスト下部のスペース調整*/
.card-warning li.event-warning-list__item:last-child {
    padding-bottom: 1.9rem;
}

.card-content {
    padding-bottom: 6px;
}

/*なごみの湯限定
ぺこらのオリジナルボイス
---------------------------*/
.spa-content {
    padding-bottom: 10px;
}

.spa-content__wrapper {
    border: 2px solid #77B471;
    box-shadow: 0px 0px 4px 0px #00000040;

}

.spa {
    padding: 27px 0 12px;
}

.spa__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-style: Black;
    font-size: 1.5rem;
    /*24px*/
    line-height: 35px;
    letter-spacing: 2%;
    color: #3B5F50;
}

.spa__text {
    font-family: Noto Sans JP;
    font-weight: 400;
    font-style: Regular;
    font-size: 0.75rem;
    /*12px*/
    line-height: 35px;
    letter-spacing: -3%;
}

.spa__img {
    width: 323px;
    height: auto;
}

/*リスト上部のスペース調整*/
.spa-warning li.event-warning-list__item:first-child {
    padding-top: 0.3rem;
}

/*リスト下部のスペース調整*/
.spa-warning li.event-warning-list__item:last-child {
    padding-bottom: 0.4rem;
}


/* ここから　ARフォトフレーム
----------------------------------------------- */

/*  
----------------------------------------------*/
.bg-img--green-short {
    background-repeat: no-repeat;
    /* 繰り返さない */
    background-size: contain;
    /* 元のサイズのまま */
    background-position: top center;
    /* ← 上に張り付ける */
    background-size: auto 113px;
    /* ← 高さを200pxに固定 */
    background-repeat: repeat-x;
    /* 横方向に繰り返し */
}

.result__wrapper {
    padding: 75px 0 35px;
}

.result__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 50px;
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    color: #DA307E;
}

.ar-frame__title {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    color: #3C6051;
}

.ar-frame__title>span {
    background: linear-gradient(transparent 50%, #F6FF00 100%);

}

.ar-frame__img {
    padding: 20px 0 28px;
    width: 303px;
    height: auto;
}

.button--inner {
    display: flex;
    flex-flow: column;
    gap: 32px;
}


/*ARフォト
----------------------------------*/
.btm-ar-frame {
    width: 84%;
}

.main-content--ar {
    margin-bottom: 10px;
}

.ar {
    padding: 27px 0 20px;
}

.ar__title {
    font-size: 1.25rem;
    /*20px*/
    font-weight: 900;
    color: #3B5F50;
}

.ar__text {
    font-size: 0.8125rem;
    /*13px*/
    font-weight: 700;
    line-height: 1.8;
}

.btm-ar-frame .btn-ar--icon::before {
    left: 46px;
}

/* stamp modal */

#stampModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#stampModalContent {
    background: linear-gradient(135deg, var(--color-sub1), var(--color-sub3));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    animation: bounceIn 0.5s ease-out;
}

#stampModalTitle {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#stampModalImage {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    animation: pulse 1s infinite;
}

#stampModalSubtitle {
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#closeStampModal {
    background: #FF4500;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

#closeStampModal:hover {
    background: #FF6347;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}



/* 抽選結果 
----------------------------------------------- */

/* T-シャツ当選 
----------------------------------------------*/
.main-content-winning {
    padding-bottom: 40px;
}

.bg-img--green-short {
    background-repeat: no-repeat;
    /* 繰り返さない */
    background-size: contain;
    /* 元のサイズのまま */
    background-position: top center;
    /* ← 上に張り付ける */
    background-size: auto 113px;
    /* ← 高さを固定 */
    background-repeat: repeat-x;
    /* 横方向に繰り返し */
}

.result__wrapper {
    padding: 75px 0 35px;
}

.result__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 50px;
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    color: #DA307E;
}

.winning__title {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    color: #3C6051;
}

.winning__title--failed {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 38px;
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    padding: 30px 0 20px;
}

.winning__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    padding-bottom: 22px;
}

.winning__text--failed {
    padding-bottom: 62px;
}

/* なごみの湯で引き換えるボタン
サイズ調整
------------------------------*/
.btm-stamp-winning {
    width: 84%;
    ;
}



/* ロウリュウ当選 
----------------------------------------------*/
.bg-img--green-short {
    background-repeat: no-repeat;
    /* 繰り返さない */
    background-size: contain;
    /* 元のサイズのまま */
    background-position: top center;
    /* ← 上に張り付ける */
    background-size: auto 113px;
    /* ← 高さを固定 */
    background-repeat: repeat-x;
    /* 横方向に繰り返し */
}

.result__wrapper {
    padding: 75px 0 35px;
}

.result__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 50px;
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    color: #DA307E;
}

.winning__title {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    color: #3C6051;
}

.winning__title>span {
    background: linear-gradient(transparent 50%, #F6FF00 100%);

}

.winning__img {
    padding: 20px 0 28px;
    width: 336px;
    height: auto;
}

.button--inner {
    display: flex;
    flex-flow: column;
    gap: 32px;
}


/*開催概要
----------------------------------*/
.winning-roryuu {
    background-color: var(--color-white);
}

.winning-roryuu .vertical-table__inner tr {
    height: 25px;
    /* ← 各行の高さを固定 */
}

.winning-roryuu .event-overview__wrapper {
    width: 92%;
}

.winning-roryuu .roryuu-warning {
    width: 95%;
    margin: 0 auto;
}

.winning-roryuu .roryuu-warning-list {
    padding-left: 0px;
}

/*リスト下部のスペース調整*/
.winning-roryuu .roryuu-warning-list__item:last-child {
    padding-bottom: 0;
}

.return-section__inner--winning-roryuu {
    padding-top: 24px;
}


.event-overview {
    margin-top: 16px;
    margin-bottom: 18px;
}

.event-overview__wrapper {
    width: 91%;
    border-radius: 20px;
    border: 2px solid #77B471;
    margin: 0 auto;
    padding-bottom:10px;
}

.event-overview__title {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 20px;
    letter-spacing: 5%;
    text-align: center;
    color: #0D9D60;
    padding: 20px 0 6px;
}

/*スケジュール*/
.vertical-table {
    padding-bottom: 5px;
}

.vertical-table__body-row {}

.vertical-table__inner {
    color: var(--color-black);
    margin: 0 auto;
}

.vertical-table__inner tr {
    height: 29px;
    /* ← 各行の高さを固定 */
}

.vertical-table__body-row {
    font-size: 0.9375rem;
    /*15px*/
    font-weight: 700;
    letter-spacing: 0.04em;
}

th.vertical-table__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 5%;

    text-align: right;
    width: 20.5%;
    white-space: nowrap;
    padding-left: 8px;
}

td.vertical-table__text {
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 5%;
    white-space: nowrap;
    text-align: left;
}

/*リスト*/
.on-the-day {
    padding: 10px 0 10px;
}

.roryuu-warning {
    width: 90%;
    margin: 0 auto;
}

.roryuu-warning>ul {
    list-style: none;
}

.roryuu-warning-list {
    padding-left: 5px;
}

.roryuu-warning-list__item {
    position: relative;
    font-size: 0.875rem;
    /*14px*/
    padding-left: 1rem;
    /*リスト左スペース調整*/
    padding-right: 0;
    /*リスト右スペース調整*/
    color: var(--color-black);
    text-align: left;

    font-family: Noto Sans JP;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0%;
}

.roryuu-warning-list__item::before {
    content: "・";
    position: absolute;
    left: 0.0em;
    /*ドット位置調整*/
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
}

/*リスト上部のスペース調整*/
.roryuu-warning-list__item:first-child {
    padding-top: 0;
}

/*リスト下部のスペース調整*/
.roryuu-warning-list__item:last-child {
    padding-bottom: 1.1rem;
}


/* T-シャツ当選 
----------------------------------------------*/
.bg-img--green-short {
    background-repeat: no-repeat;
    /* 繰り返さない */
    background-size: contain;
    /* 元のサイズのまま */
    background-position: top center;
    /* ← 上に張り付ける */
    background-size: auto 113px;
    /* ← 高さを固定 */
    background-repeat: repeat-x;
    /* 横方向に繰り返し */
}

.result__wrapper {
    padding: 75px 0 35px;
}

.result__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 50px;
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    color: #DA307E;
}

.winning__title {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    color: #3C6051;
}

.winning__title>span {
    background: linear-gradient(transparent 50%, #F6FF00 100%);

}

.winning__img {
    padding: 20px 0 28px;
    width: 336px;
    height: auto;
}

.button--inner {
    display: flex;
    flex-flow: column;
    gap: 32px;
}

.winning__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
    padding-bottom: 22px;
}

/* なごみの湯で引き換えるボタン
サイズ調整
------------------------------*/
.btm-stamp-winning {
    width: 84%;
    ;
}