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

    --color-bgColor01: #FFEEDD;
    --color-bgColor02: #75D4EA;
    --color-bgColor03: #FCE49F;
    --color-btnbk: #0a1421;
    --color-btnOff: #fff;
    --color-border: #7c7b75;
    --color-tokai: #ED6D00;
    --color-black: #000;
    --color-white: #fff;
    --color-gray: gray;
}

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


/*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);
}

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

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

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

.border {
    border: none;
    /* デフォルトの枠線を消す */
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #000;
}

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

/*ハイキュ－ ボタン 共通
----------------------------*/
.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;
    padding: 0;
    /* 必要に応じて初期化 */
    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: 900;
    padding: 26px 0 25px;
    letter-spacing: 0.04em;
    justify-content: center;
    /* 中央寄せ */
}

.btn__left-icon {
    display: flex;
    flex: 19;
    /* 比率a */
    justify-content: center;
}

.btn__right-icon {
    display: flex;
    flex: 12;
    /* 比率c */
    justify-content: center;
}

.btn--shadow {
    box-shadow: 4px 4px 0px 0px #000000;
    /* 右下にぼかしのある黒い影 */
    /*box-shadow: 5px 5px 10px rgba(0, 0, 0, 1.0);*/
}


/*  SKE48スペシャルトークを聴く ボタン
----------------------------*/
.btn-special-talk {
    display: flex;
    align-items: center;
    width: 89.01%;
    height: 80px;
    border-radius: 100px;
    padding: 10px;
    background-color: #000;
    position: relative;
}

.btn-special-talk__text {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 1.0625rem;
    /*17px*/
    line-height: 23px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #75D4EA;
    padding-left: 2em;
}

.btn-special-talk::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 12%;
    width: 100%;
    height: 24px;
    background-image: url(/view/event/ske48/svg/volume-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/*  壁紙ガチャを回す！ ボタン
----------------------------*/
.btn-wallpaper-gacha {
    display: flex;
    align-items: center;
    width: 89.01%;
    height: 80px;
    border-radius: 100px;
    padding: 10px;
    background-color: #000;
    position: relative;
}

.btn-wallpaper-gacha__text {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #75D4EA;
    padding-left: 1.8em;
}

.btn-wallpaper-gacha::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 14.5%;
    width: 100%;
    height: 30px;
    background-image: url(/view/event/ske48/svg/gacha-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/*壁紙ガチャを回す！ ボタンオフ*/
.btn-wallpaper-gacha--off {
    background-color: #B0B0B0;
}

.btn-wallpaper-gacha--off .btn-wallpaper-gacha__text {
    color: #fff;
    opacity: 0.5;
}

.btn-wallpaper-gacha--off::before {
    background-image: url(/view/event/ske48/svg/gacha-white.svg);
    opacity: 0.5;
}


/*  位置情報で壁紙を獲得 ボタン
----------------------------*/
.btn-wallpaper-location {
    display: flex;
    align-items: center;
    width: 89.01%;
    height: 80px;
    border-radius: 100px;
    padding: 10px;
    background-color: #000;
    position: relative;
}

.btn-wallpaper-location__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 0.04em;
    text-align: center;
    padding-left: 1.5em;
    color: #F8B500;
}

.btn-wallpaper-location::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 12.3%;
    width: 100%;
    height: 23px;
    background-image: url(/view/event/ske48/svg/box-orange.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/*コンプリート特典を引き換える ボタン
----------------------------*/
.btn-redemption {
    display: flex;
    align-items: center;
    width: 89.01%;
    height: 80px;
    border-radius: 100px;
    padding: 10px;
    background-color: #000;
    position: relative;
}

.btn-redemption__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.0625rem;
    /*17px*/
    line-height: 30px;
    letter-spacing: 0.04em;
    text-align: center;
    padding-left: 2.7em;
    color: #F8B500;
}

.btn-redemption::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 20.2%;
    width: 100%;
    height: 23px;
    background-image: url(/view/event/ske48/svg/box-orange.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/*  SKE48スペシャルトークを聴く ボタン
----------------------------*/
.btn-limited-talk-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.btn-limited-talk {
    display: flex;
    align-items: center;
    width: 89.01%;
    height: 80px;
    border-radius: 100px;
    padding: 10px;
    background-color: #000;
    position: relative;
}

.btn-limited-talk__text {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 17px;
    line-height: 23px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #F8B500;
    padding-left: 1.7em;
}

.btn-limited-talk::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 16%;
    width: 100%;
    height: 24px;
    background-image: url(/view/event/ske48/svg/volume-orange.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/*スタンプラリー リセットボタンデザイン*/
.btn-reset {
    display: flex;
    align-items: center;
    width: 87.0%;
    height: 49px;
    border-radius: 10px;
    background-color: #C5C5C5;
    position: relative;
}

.btn-reset::before {
    position: absolute;
    content: "";
    top: 0;
    left: 5%;
    transform: translateY(calc(100% + -6px));
    /* 垂直中央にアイコン配置 */
    width: 22px;
    height: 22px;
    background-image: url(/view/event/ske48/svg/reset.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.5;
}

.btn-reset__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-left: 1.5em;
    opacity: 0.5;
}

/*リセットボタン有効化*/
.btn-reset--on {
    background-color: #000;
}

.btn-reset--on::before {
    opacity: 1;
}

.btn-reset--on .btn-reset__text {
    opacity: 1;
}


/* 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-bgColor01);
    background-image: 100%;
    padding-bottom: 0px;
}

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

/*バックグラウンドイメージの繰り返し設定*/
.bg-repeat {
    background-size: 200px;
    background-repeat: repeat;
}

.btn-bg-repeat {
    background-size: cover;
    background-repeat: repeat;
}

.bg-repeat--tile {
    background-size: 30px;
    background-repeat: repeat;
}

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



/* section class="main-visual"
----------------------------------------------- */
.main-Visual {
    background-color: var(--color-bgColor01);
    padding-bottom: 20px;
}

.visual__inner {}

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

.period {
    background-color: #D05F00;
    padding: 14px 0;
}

.period__text {
    color: var(--color-white);
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1rem;
    /*16px*/
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.period__text>span {
    font-size: 1.3125rem;
    /*21px*/
}

.visual__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.125rem;
    /*18px*/
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    padding-top: 47px;
}

.visual__text-padding {
    padding-top: 29px;
}

/*認証セクション
----------------------------------------------- */
.registration--off {
    display: none;
}

.registration {
    padding-top: 15px;
    background-color: var(--color-bgColor01);
}

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

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

.btn-registration {
    color: #000;
    background-color: #F8B500;
}

.btn-login {
    color: #000;
    background-color: #75D4EA;
}

/*アカウント新規登録*/
.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: bold;
    margin: 15.5px auto;
}

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

.btn__registration-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: 15.5px auto;
    padding-right: 1rem;
}

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

.btn__login-icon-size {
    width: 18px;
    height: auto;
}



/* コンテンツ ご注意事項 
----------------------------------------------- */
/*ご注意事項ボタン*/
.warning-content {
    padding: 0 0 20px 0;
    margin: 0 auto 10px auto;
    transition: 0.5s;
    margin-bottom: 55px;
}

.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-color: var(--color-bgColor02);
    width: 100%;
    position: relative;
}

.content-top::before {
    position: absolute;
    content: "";
    top: -20px;
    margin: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/view/event/ske48/img/bg-wave-blue.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.shinkansen {}

.shinkansen__wrapper {
    margin-bottom: 27px;
}

.shinkansen__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 1.5625rem;
    /*25px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-top: 30px;
}

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

/*東海道新幹線車内限定！メンバーによるスペシャルトーク
-----------------------------------------------------*/
.content-train {
    width: 92.00%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #444444;
}

.content-train__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 1.375rem;
    /*22px*/
    line-height: 30px;
    letter-spacing: 1%;
    text-align: center;
    color: #00AEEA;
    padding: 28px 0 27px;
}


/*スケジュール*/
.schedule {
    width: 88.91%;
    border-radius: 20px;
    border: 1px solid #444444;
    margin: 0 auto 23px;
}

.schedule-list {
    margin: 0;
}

.schedule-list__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14.4px 0;
}

.schedule-list__item-title {
    flex: 41;
    text-align: center;
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 0.9375rem;
    /*15px*/
    line-height: 20px;
    letter-spacing: 0.05em;
}

.schedule-list__item-text {
    flex: 59;
    text-align: left;
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 0.9375rem;
    /*15px*/
    line-height: 20px;
    letter-spacing: 0.05em;
    padding-left: 0.2em;
}


/*浜名湖サイクリングオリジナルスマホ壁紙ガチャ
--------------------------------------------------------*/
.content-cycling-top {
    background-color: var(--color-bgColor02);
    padding-top: 48px;
    padding-bottom: 75px;
}

.content-cycling {
    width: 92.00%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #444444;
    background-color: var();
    position: relative;
}

.content-cycling::before {
    position: absolute;
    content: "";
    top: -3.5%;
    left: 40.5%;
    width: 100%;
    height: 70px;
    background-image: url(/view/event/ske48/svg/carbon_bicycle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.content-cycling__title {
    padding-top: 29px;
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 1.375rem;
    /*22px*/
    line-height: 30px;
    letter-spacing: 1%;
    text-align: center;
    color: #00AEEA;
}

.content-cycling__text {
    padding-top: 14px;
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 0.875rem;
    /*14px*/
    line-height: 21px;
    letter-spacing: 0.05em;
    text-align: center;
}

/*オリジナルスマホ壁紙*/
.wallpaper {
    width: 89%;
    margin: 0 auto;
    padding-top: 28px;
}

.wallpaper__title {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}

.wallpaper__text__schedule {
    padding-top: 9px;
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 0.875rem;
    /*14px*/
    line-height: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}

.wallpaper__text {
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 0.75rem;
    /*12px*/
    line-height: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}

.wallpaper-item {
    padding: 13px 0 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}

.wallpaper-item--image {
    width: calc((100% - 16px) / 3);
    aspect-ratio: 20/43;
    /* 横:縦 の比率を指定 */
    object-fit: cover;
    /* 画像を比率にフィットさせる */
}

.border--blue {
    border: 1px solid #9EE1F0;
}

.border--orange {
    border: 1px solid #F8BD00;
}

.wallpaper-item__note {
    padding-top: 5px;
    padding-bottom: 14px;
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 12px;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
}

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

/*リスト*/
.event-warning-list {
    margin: 0;
    padding: 10px 0 30px;
}

.event-warning-list__item {
    position: relative;
    text-align: left;
    font-family: Noto Sans JP;
    font-weight: 400;
    font-size: 0.75rem;
    /*12px*/
    line-height: 20px;
    letter-spacing: 0.05em;

    padding-left: 1.2em;
    /*リスト左スペース調整*/
    padding-right: 0;
    /*リスト右スペース調整*/
}

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

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

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


/*オリジナルスマホ壁紙プレゼント！
-----------------------------------*/
.content-wallpaper-present {
    padding-top: 20px;
    background-color: var(--color-bgColor03);
    position: relative;
}

.content-wallpaper-present::before {
    position: absolute;
    content: "";
    top: -40px;
    margin: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/view/event/ske48/img/bg-wave-yellow.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.wallpaper-present {
    padding-bottom: 49px;
}

.wallpaper-present__text {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 1.125rem;
    /*18px*/
    line-height: 33px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #F19705;
}

.wallpaper-present__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 1.5625rem;
    /*25px*/
    line-height: 30px;
    letter-spacing: 5%;
    text-align: center;
}

/*位置情報を確認して、
浜名湖サイクリングオリジナルスマホ壁紙をGETしよう！*/
.content-cycling__wallpaper-present {
    position: relative;
}

.content-cycling__wallpaper-present::before {
    top: -5.5%;
}

.content-cycling__title--orange {
    color: #F19705;
}

/*オリジナルスマホ壁紙 オレンジ*/
.wallpaper-location {
    width: 91%;
    margin: 0 auto;
    padding-top: 12px;
}

.wallpaper-location__text {
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 0.875rem;
    /*14px*/
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
}

.wallpaper-location__text>span {
    color: #FF0000;
}

.wallpaper-location-items {
    width: 78%;
    margin: 0 auto;
    padding: 21px 0 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 53px;
}

.wallpaper-location-item__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}

.wallpaper-location-item__period {
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 0.875rem;
    /*14px*/
    line-height: 20px;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 2px 0 11px;
}

.wallpaper-location-item--image {
    width: 100%;
    aspect-ratio: 20/43;
    /* 横:縦 の比率を指定 */
    object-fit: cover;
    /* 画像を比率にフィットさせる */
}

.wallpaper-location-item__note {
    padding: 7px 0;
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 12px;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
}

.warning-wallpaper-location {
    padding-top: 10px;
}

.warning-wallpaper-location .event-warning-list {
    padding: 10px 0 22px;
}

.warning-wallpaper-location .event-warning-list__item {
    padding: 0;
}

/*天島サイクルゲート
---------------------------*/
.content-cycle-gate {
    background-color: #FCE49F;
    padding-top: 27px;
}

.content-cycle-gate__wrapper {
    width: 92.00%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #444444;
    position: relative;
}

.content-cycle-gate__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 1.375rem;
    /*22px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #F19705;
    padding-top: 25px;
}

.content-cycle-gate__text {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 0.875rem;
    /*14px*/
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
    padding-top: 19px;
}

.content-cycle-gate__period {
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 0.9375rem;
    /*15px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 10px 0 27px;
}

.warning-content-cycle-gate {
    padding: 19px 0 22px;
}

.warning-content-cycle-gate .event-warning-list {
    padding: 0;
}

/*スタンプ獲得情報
------------------------*/
.content-stamp-status {
    background-color: var(--color-bgColor03);
    padding-top: 30px;
}

.content-stamp-status__wrapper {
    width: 92.00%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #444444;
    position: relative;
}

.stamp-status__title {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 1.375rem;
    /*22px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #F19705;
    padding-top: 25px;
}

.stamp-cycle-gate {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 22px 0 20px;
}

.stamp-cycle-gate__item {}

.stamp-cycle-gate__img {
    width: 88px;
    height: auto;
    padding-bottom: 4px;
}

.last-item .stamp-cycle-gate__img {
    padding-bottom: 0;
}

.stamp-cycle-gate__text {
    font-family: Noto Sans JP;
    font-weight: 900;
    font-size: 0.625rem;
    /*10px*/
    line-height: 15px;
    letter-spacing: 0.05em;
    text-align: center;
}

.stamp-cycle-gate__text--h11 {
    line-height: 11px;
}

/*コンプリート特典
---------------------*/
.complete-benefits {
    padding-top: 30px;
    padding-bottom: 88px;
    background-color: var(--color-bgColor03);
}

.complete-benefits__wrapper {
    width: 92.00%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #444444;
}

/*スケジュール*/
.schedule-benefits {
    width: 98.41%;
    border-radius: 20px;
    border: 1px solid #444444;
    margin: 21px auto 23px;
}

.content-cycling__title--padding {
    padding-top: 26px;
    padding-bottom: 8px;
}

.schedule-list {
    margin: 0;
}

.schedule-list__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14.4px 0;
}

.schedule-list__item-title {
    flex: 41;
    text-align: center;
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 0.9375rem;
    /*15px*/
    line-height: 20px;
    letter-spacing: 0.05em;
}

.schedule-list__item-text {
    flex: 59;
    text-align: left;
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 0.9375rem;
    /*15px*/
    line-height: 20px;
    letter-spacing: 0.05em;
    padding-left: 0.2em;
}


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

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

.exchange-location__title {
    padding-top: 18px;
}

.exchange-location__wrapper {
    width: 91%;
    border: 1px solid #F19705;
    margin: 0 auto;
}

.exchange-location__title {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.25rem;
    /*20px*/
    line-height: 32px;
    letter-spacing: 0.06em;
    text-align: center;
    color: #F19705;
}

.exchange-location__text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 1.125rem;
    /*18px*/
    line-height: 27px;
    letter-spacing: 0.06em;
    text-align: center;
}

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

.warning-wallpaper-exchange-location {
    width: 94%;
    padding-top: 13px;
}

.warning-wallpaper-exchange-location .event-warning-list {
    padding: 9px 0 30px;
}

.warning-wallpaper-exchange-location .event-warning-list__item {
    font-family: Noto Sans JP;
    font-weight: 350;
    font-size: 0.6875rem;
    /*11px*/
    line-height: 20px;
    letter-spacing: 0.05em;
}

.warning-wallpaper-exchange-location span {
    font-weight: 700;
}

.stamp-reset {
    margin-top: 0px;
}

.stamp-reset__text {
    font-family: Noto Sans JP;
    font-weight: 400;
    font-size: 0.625rem;
    /*10px*/
    line-height: 20px;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 23px 0 29px;
}