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

    --color-bgColor: #104660;
    --color-btnbk: #0a1421;
    --color-btnOff: #fff;
    --color-mainText: #65412F;
    --color-border: #7c7b75;
    --color-tokai: #ED6D00;
    --color-black: #000;
    --color-white: #fff;
    --color-gray: gray;
}

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

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

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

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

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

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

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

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

/*ボタン 共通
----------------------------*/
.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);*/
}


/*  Special Movieを視聴する ボタン
----------------------------*/
.btn-reproduction {
    display: flex;
    align-items: center;
    width: 92.18%;
    height: 80px;
    border-radius: 5px;
    padding: 10px;
    background-color: #A88F4F;
    position: relative;
}

.btn-reproduction::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 10.1%;
    width: 100%;
    height: 19px;
    background-image: url(/view/event/zerobaseone/svg/camera.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.btn-reproduction__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.125rem;
    /*18px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-left: 2rem;
}

/*  チーム ボタン（非活性）
----------------------------*/
.btn-teams {
    display: flex;
    align-items: center;
    width: 92.18%;
    height: 60px;
    border-radius: 5px;
    padding: 10px;
    background-color: #5C7387;
    position: relative;
}

.btn-teams::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 31.0%;
    width: 100%;
    height: 20px;
    background-image: url(/view/event/zerobaseone/svg/key02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.5;
}

.btn-teams__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.125rem;
    /*18px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-left: 2rem;
    opacity: 0.5;
}

/*活性*/
.btn-teams--on {
    background-color: #A88F4F;
}

.btn-teams--on::before {
    background-image: url(/view/event/zerobaseone/svg/key03.svg);
    opacity: 1;
}

.btn-teams--on .btn-teams__text {
    opacity: 1;
}

/*  限定壁紙をGET! ボタン
----------------------------*/
.btn-wallpaper__text--done {
    display: none;
}

.btn-wallpaper {
    display: flex;
    align-items: center;
    width: 92.18%;
    height: 80px;
    border-radius: 5px;
    padding: 10px;
    background-color: #5C7387;
    position: relative;
}

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

.btn-wallpaper__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.125rem;
    /*18px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-left: 2.5rem;
    opacity: 0.5;
}

/*活性*/
.btn-wallpaper--on {
    background-color: #A88F4F;
}

.btn-wallpaper--on::before {
    background-image: url(/view/event/zerobaseone/svg/box.svg);
    opacity: 1;
}

.btn-wallpaper--on .btn-wallpaper__text {
    opacity: 1;
}

/*取得済*/
.btn-wallpaper--done .btn-wallpaper__text {
    display: none;
}

.btn-wallpaper--done::before {
    left: 28.0%;
}

.btn-wallpaper--done .btn-wallpaper__text--done {
    display: block;
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.125rem;
    /*18px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-left: 2.0rem;
    opacity: 0.5;
}

/*  抽選に参加する ボタン
----------------------------*/
.btn-lottery {
    display: flex;
    align-items: center;
    width: 92.18%;
    height: 80px;
    border-radius: 5px;
    padding: 10px;
    background-color: #A88F4F;
    position: relative;
}

.btn-lottery:disabled {
    background-color: #5C7387;
}

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

.btn-lottery__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.125rem;
    /*18px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-left: 2rem;
}

/*  送付先住所を登録する ボタン
----------------------------*/
.btn-winning {
    display: flex;
    align-items: center;
    width: 92.18%;
    height: 80px;
    border-radius: 5px;
    padding: 10px;
    background-color: #A88F4F;
    position: relative;
}

.btn-winning__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.125rem;
    /*18px*/
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
}

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

/*注意事項 共通
-------------------------------*/
.event-warning {
    width: 94%;
    margin: 0 auto;
}

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

.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 span {
    color: #FF0000;
}

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

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

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

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

/* section class="main-visual"
----------------------------------------------- */
.main-Visual {
    background-color: var(--color-bgColor);
}

.visual__wrapper {}

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

.visual-text__wrapper {
    /* height: 100%; */
    background-color: #092741;
    background-image: url("/view/event/zerobaseone/img/bgv-star-81.webp");
    background-size: 95%;
    background-repeat: no-repeat;
    background-position: 10px 13px;
    /*xy*/
    pointer-events: none;
    padding: 36px 0 28px;
}

.visual-text__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.125rem;
    /*18px*/
    line-height: 33px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
}

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

.registration {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #092741;
}

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

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

.btn-registration {
    color: #fff;
    background-color: #A88F4F;
    border-radius: 5px;
}

.btn-login {
    color: #fff;
    background-color: #A88F4F;
    border-radius: 5px;
}

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

.btn-registration__text {
    flex: 8;
    text-align: center;
    font-family: Noto Sans JP;
    font-size: 1.25rem;
    /*20px*/
    font-weight: bold;
    margin: 15.4px auto;
    color: #fff;
}

.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-family: Noto Sans JP;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 15.4px auto;
    padding-right: 1rem;
    color: #fff;
}

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

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



/* コンテンツ ご注意事項 
----------------------------------------------- */
.warning-content {
    padding: 5px 0 35px 0;
    margin: 0 auto;
    transition: 0.5s;
    background-color: #092741;
}

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

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

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


/*----------------------
  東海道新幹線 車内限定コンテンツ
----------------------*/
.content {
    padding-bottom: 10px;
}

.content__wrapper {
    display: block;
    background-color: var(--color-bgColor);
    padding-top: 0px;
}

.content-body__wrapper {
    width: 100%;
    height: auto;
}

.content-shinkansen__wrapper {
    padding: 16px 0 10px;
}

.content-shinkansen__title {
    font-family: Noto Serif JP;
    font-weight: 500;
    font-size: 1.5rem;
    /*24px*/
    line-height: 31px;
    letter-spacing: 0.03em;
    /*3%*/
    text-align: center;
    color: #fff;
    padding-top: 3px;
    position: relative;
}

.content-shinkansen__title::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 4.3%;
    width: 100%;
    height: 27px;
    background-image: url(/view/event/zerobaseone/svg/star.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.content-shinkansen__title::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 90.0%;
    width: 100%;
    height: 27px;
    background-image: url(/view/event/zerobaseone/svg/star.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

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

/*----------------------
  東海道新幹線車内限定
Special Movie
----------------------*/
.content-board__wrapper {
    display: block;
    width: 91.61%;
    background-color: #092741;
    border-radius: 10px;
    border: 1px solid #A88F4F;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    color: #fff;
}

.content-board__title {
    font-family: Noto Serif JP;
    font-weight: 500;
    font-size: 1.25rem;
    /*20px*/
    line-height: 30px;
    letter-spacing: 0.09em;
    text-align: center;
    padding-top: 17px;
}

.border-body {
    padding: 13px 0 0;
}

.board-time__wrapper {
    padding: 12px 0 14px;
}

.board-time__time {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.0625rem;
    /*17px*/
    line-height: 26px;
    letter-spacing: 0.05em;
    text-align: center;
}

.board-time__time>span {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 0.8125rem;
    /*13px*/
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
}

.content-board .event-warning {
    padding: 14px 0 18px;
}


/*----------------------------
デジタルノベルティ
-----------------------------*/
.content-novelty .content__wrapper {
    padding-top: 6px;
}

.digital .content-board__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.0625rem;
    /*17px*/
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 11px 0 25px;
}

.digital .btns__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

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

.content-novelty .event-warning {
    width: 91.8%;
}

/*----------------------------
Special Movieを視聴して
全9種からひとつ選んで選んで
スマホ壁紙をGETしよう！
-----------------------------*/
.wallpaper {
    padding-bottom: 18px;
}

.wallpaper .content-board__title {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.0625rem;
    /*17px*/
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
}

.wallpaper-items {
    width: 84.07%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3列 */
    gap: 20.5px;
    /* 画像間の余白 */
    list-style: none;
    padding: 17px 0 8px;
    margin: 0 auto;
}

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

.wallpaper-item__title {
    font-family: Noto Serif JP;
    font-weight: 900;
    font-size: 0.625rem;
    /*10px*/
    line-height: 16px;
    letter-spacing: 0.05em;
    text-align: center;
}

.wallpaper .event-warning {
    padding: 4px 0 17px;
}

/*--------------------------
東海道新幹線車内限定
Present Campaign
---------------------*/
.inside-Shinkansen .content__wrapper {
    padding-top: 11px;
}

.content-board-text__wrapper {
    padding: 12px 0 12.5px;
}

.inside-Shinkansen .content-board__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 0.9375rem;
    /*15px*/
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
}

.content-board__text-gap {
    padding-top: 27px;
    width: auto;
}


.present-board__wrapper {
    border: 1px solid #A88F4F;
    margin: 0 auto;
    width: 91.06%;
}

.present-board-item {
    display: flex;
}

.present-board__number {
    width: 16%;
    font-family: Noto Serif JP;
    font-weight: 400;
    font-size: 1.875rem;
    /*30px*/
    letter-spacing: 0.05em;
    color: #A88F4F;
    border-bottom: 1px solid #A88F4F;
    padding-left: 1.2rem;
}

.present-board__text {
    width: 84%;
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1rem;
    /*16px*/
    line-height: 28px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #A88F4F;
    padding: 12.0px 0;
}

.present-board__text--2nd {
    padding: 9.0px 0 15.0px;
}

.border__none {
    border-bottom: 0;
}


/*キャンペーン概要および応募要項*/
.overview__wrapper {
    padding: 32px 0 10px;
}

.overview__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 0.9375rem;
    /*15px*/
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;

    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0.5px;
    text-decoration-skip-ink: auto;
}

/*あなたの当選者IDは*/
.winning__wrapper {
    padding: 40px 0 29px;
}

.winning__text {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.1875rem;
    /*19px*/
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #A88F4F;
}

.winning__number {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 1.75rem;
    /*28px*/
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-top: 20px;
}

.inside-Shinkansen .event-warning {
    padding: 5px 0 9px;
}



:root {
    --jr-red: #092741;
    --jr-red-dark: #092741;
    --font-code: 'Noto Sans JP', monospace;
}

.code-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 2px solid var(--jr-red);
    border-radius: 10px;
    padding: 12px 16px;
    max-width: 600px;
    margin: 20px auto;
}

.code-text {
    font-family: var(--font-code);
    font-size: 30px;
    font-weight: 700;
    color: var(--jr-red);
    background: #f8f8f8;
    padding: 4px 8px;
    border-radius: 4px;
    word-break: break-all;
}

.copyButton {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--jr-red);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.copyButton:hover {
    background: var(--jr-red-dark);
}

.copy-icon {
    width: 16px;
    height: 16px;
}