@charset "UTF-8";

/* font定義 */
@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 300;
    src: url("../webfonts/notosansjp/notosansjp-light.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-light.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-light.otf") format("opentype");
}

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    src: url("../webfonts/notosansjp/notosansjp-regular.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-regular.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-regular.otf") format("opentype");
}

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    src: url("../webfonts/notosansjp/notosansjp-bold.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-bold.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-bold.otf") format("opentype");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: normal;
    src: url("../webfonts/YakuHanJP/YakuHanJP-Regular.woff2") format("woff2"), url("../webfonts/YakuHanJP/YakuHanJP-Regular.otf") format("opentype");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: Bold;
    src: url("../webfonts/YakuHanJP/YakuHanJP-Bold.woff2") format("woff2"), url("../webfonts/YakuHanJP/YakuHanJP-Bold.otf") format("opentype");
}

/* カラーコード */
:root {
    /* メインカラー(ボーダー) */
    --main-bg-color: #AFB7D7;
    /* タイトル（大） */
    --contentBox-title-bg-color: #073C8F;
    --contentBox-title-font-color: #FFFFFF;
    /* タイトル（中・枠） */
    --itemBox-title-bg-color: #073C8F;
    --itemBox-title-font-color: #073C8F;
    /* タイトル（中・二重線） */
    --itemBox-title-type2-bg-color: #CAB726;
    --itemBox-title-type2-font-color: #CAB726;
    /* STEP */
    --step-bg-color: #F2F2F2;
    --step-title-font-color: #073C8F;
    /* ボタン1 */
    --button1-bg-color: #073C8F;
    --button1-font-color: #FFFFFF;
    --button1-shadow-color: #AFB7D7;
    /* ボタン2*/
    --button2-bg-color: #ffffff;
    --button2-font-color: #073C8F;
    --button2-border-color: #073C8F;
    --button2-shadow-color: #073C8F;
    /* ボタン3 */
    --button3-bg-color: #073C8F;
    --button3-font-color: #f5f1d5;
    --button3-shadow-color: #073C8F;
    /* リンク */
    --link-color: #ae3210;
    /* 注釈（※文） */
    --accent-color: #073C8F;
    /* モーダル */
    --title-text-color: #333;
    --title-underBar-color: #073C8F;
    /* お問い合わせ */
    --inquiry-bg-color: #F2F2F2;
    --inquiry-font-color: #333333;
    /* フッター */
    --footer-bg-color: #000000;
    --footer-font-color: #FFFFFF;
}

/* 要素セレクタに対するスタイル */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 110%;
    }
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #333333;
    overflow-wrap: anywhere;
    /* 収まらない場合に折り返す */
    word-break: normal;
    /* 単語の分割はデフォルトに依存 */
    font-size: 1.5rem;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
    /* ふわっと表示 */
}

body.loaded {
    opacity: 1;
}

/* ユーティリティクラス */
.sp-only {
    display: block;
}

@media (min-width: 768px) {
    .sp-only {
        display: none;
    }
}

.pc-only {
    display: none;
}

@media (min-width: 768px) {
    .pc-only {
        display: block;
    }
}

.text-color-link {
    color: #0071bc;
}

.text-color-link>img {
    width: 1em;
    margin-left: 0.4rem;
    position: relative;
    top: 0.1rem;
}

.bracket-adjust {
    font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
}

.inline-block {
    display: inline-block;
}

.indent-second-line {
    /* 2行目以降を1文字下げる */
    padding-left: 1em;
    text-align: left;
    text-indent: -1em;
}

.font-bold {
    font-weight: bold;
}

.font_nomal {
    font-weight: normal !important;
}

.accent-color {
    color: var(--accent-color);
    font-weight: bold;
}

.prize-color {
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 1em;
}

.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb1rem {
    margin-bottom: 1rem !important;
}

.mb3rem {
    margin-bottom: 3rem !important;
}

.mb4rem {
    margin-bottom: 4rem;
}

.align_items-start {
    align-items: flex-start !important;
}

.text_left {
    text-align: left !important;
}

.border {
    background-color: var(--main-bg-color);
    height: 0.5px;
}

.border_line {
    text-decoration: underline;
}

/* ユーティリティクラス 終わり*/
/* header */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.header h1 {
    width: 100%;
}

.header__img {
    width: 100%;
}

/* main-container */
.main-container {
    background-color: var(--main-bg-color);
    width: 100%;
}

.main-container__inner {
    margin: 0 auto;
    /* max-width: 1180px; */
    max-width: 780px;
    width: 100%;
    background-color: #ffffff;
}

/* top */
.top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0 3rem;
}

.top__overview {
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-right: 2rem;
    margin-left: 2rem;
    line-height: 1.7;
}

.top__inner {
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .top__inner {
        width: 80%;
    }
}

.top__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}

.top__sns>a {
    width: 4.6rem;
}

.top__sns>a:first-of-type {
    margin-right: 2.6rem;
}

.top__nav {
    display: flex;
    flex-wrap: wrap;
    /* 折り返し許可 */
    column-gap: 1rem;
    /* アイテム間の横の隙間 */
    row-gap: 1.4rem;
    /* アイテム間の縦の隙間 */
}

.top__nav>a {
    flex: 0 0 auto;
    /* 自動縮小しない */
}

.top__nav>a>img {
    margin-top: 1rem;
}

.contentBox__title {
    height: 10rem;
    background-color: var(--contentBox-title-bg-color);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
    color: var(--contentBox-title-font-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contentBox__title--black {
    background-color: #000000;
}

.contentBox__title--black span {
    color: #ffffff;
}

.contentBox__title--button {
    border: none;
    width: 100%;
    justify-content: space-around;
}

.contentBox__inner {
    padding: 2.8rem 1.5rem 4rem;
}

@media (min-width: 768px) {
    .contentBox__inner {
        padding: 2.8rem 14% 4rem;
    }
}

.contentBox__overview {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 2.8rem;
    line-height: 1.7;
}

.contentBox__img {
    text-align: center;
    margin-bottom: 2rem;
}

.contentBox__img--fukidashi {
    text-align: center;
}

.contentBox__img--fukidashi>img {
    width: 100%;
}

@media (min-width: 768px) {
    .contentBox__img--fukidashi>img {
        width: 70%;
    }
}

.contentBox__notes {
    overflow-wrap: break-word;
    padding-left: 1em;
    text-align: left;
    text-indent: -1em;
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
}

.contentBox__notes--type2 {
    overflow-wrap: break-word;
    padding-left: 3em;
    text-align: left;
    text-indent: -3em;
    font-size: 1.3rem;

    /* 賞品名（文章のみ）のデザイン修正用 */
    margin: 0 14px;
}

.contentBox__textBox {
    color: #003b83;
    background-color: #f1f9fc;
    font-weight: bold;
    padding: 2rem 1rem;
}

.contentBox__link {
    margin-top: 2rem;
}

.contentBox__button {
    text-align: center;
}

.itemBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 3rem;
}

.itemBox__title {
    width: 30rem;
    text-align: center;
    color: var(--itemBox-title-font-color);
    font-size: 1.8rem;
    font-weight: bold;
    border: 1px solid var(--itemBox-title-bg-color);
    padding: 0.2rem 0;
    margin-bottom: 2rem;
}

.itemBox__title--type2 {
    color: var(--itemBox-title-type2-font-color);
    border: none;
    font-size: 2.1rem;
    padding: 0;
}

.itemBox__title--type3 {
    border: none;
    font-size: 1.6rem;
    padding: 0;
}

.itemBox__title--type4 {
    border: none;
    font-size: 1.9rem;
    padding: 0;
    text-decoration: underline;
    color: var(--step-title-font-color);
}

.itemBox__title--type2>p:nth-of-type(1),
.itemBox__title--type3>p:nth-of-type(1) {
    border-bottom: solid 0.4rem var(--itemBox-title-type2-bg-color);
    margin-bottom: 0.2rem;
}

.itemBox__title--type2>p:nth-of-type(2),
.itemBox__title--type3>p:nth-of-type(2) {
    border-bottom: solid 0.2rem var(--itemBox-title-type2-bg-color);
    margin-bottom: 0.6rem;
}

.itemBox__title--type2>p:nth-of-type(3),
.itemBox__title--type3>p:nth-of-type(3) {
    border-bottom: solid 0.2rem var(--itemBox-title-type2-bg-color);
    margin-top: 0.6rem;
}

.itemBox__title--type2>p:nth-of-type(4),
.itemBox__title--type3>p:nth-of-type(4) {
    border-bottom: solid 0.4rem var(--itemBox-title-type2-bg-color);
    margin-top: 0.2rem;
}

.itemBox__title--stamprally {
    margin-top: 3.4rem;
}

.itemBox__img {
    margin-bottom: 3rem;
}

.itemBox__text {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}

.itemBox__text--type2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.itemBox__notes {
    overflow-wrap: break-word;
    padding-left: 1em;
    text-align: left;
    text-indent: -1em;
    margin-bottom: 1rem;
}

.step {
    background-color: var(--step-bg-color);
    padding: 1.8rem 1.4rem;
}

.step__oneStep>p:nth-of-type(1) {
    font-weight: bold;
    margin-bottom: 0.2rem;
    color: #003b83;
}

.step__oneStep>p:nth-of-type(2) {
    margin-bottom: 1.6rem;
    font-size: 0.9em;
}

.spot__box {
    margin-bottom: 1.4rem;
}

.spot__category {
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    left: -0.4rem;
}

.spot__spots>li {
    font-size: 1.4rem;
    padding-left: 1.8em;
    text-align: left;
    text-indent: -1.8em;
}

.spot__notes {
    font-size: 1.4rem;
    color: #f45897;
    overflow-wrap: break-word;
    padding-left: 0em;
    text-align: left;
    text-indent: -1em;
}

.notesBox {
    height: 30rem;
    width: 100%;
    padding: 1.8rem 1rem;
    overflow-y: auto;
    border-radius: 0.7rem;
    border: solid 2px #999999;
    font-size: 1.4rem;
}

.notesBox::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 1rem;
}

.notesBox__overview {
    margin-bottom: 1.6rem;
}

.notesBox__itemBox {
    margin-bottom: 1.6rem;
}

.notesBox__itemName {
    margin-left: -0.6em;
}

.notesBox__content>li {
    overflow-wrap: break-word;
    padding-left: 1em;
    text-align: left;
    text-indent: -1em;
}

/* inquiry */
.inquiry {
    background-color: var(--inquiry-bg-color);
    width: 100%;
}

.inquiry__inner {
    color: var(--inquiry-font-color);
    margin: 0 auto;
    max-width: 950px;
    width: 100%;
    padding: 3rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inquiry__text {
    font-size: 1.4rem;
    margin-top: 1.4rem;
}

.inquiry__text>a {
    color: var(--inquiry-font-color);
    text-decoration: underline;
}

.inquiry__text--title {
    margin-top: 0;
    font-weight: bold;
}

.inquiry__text--title>span {
    display: inline-block;
}

.inquiry__notes {
    font-size: 1.4rem;
    margin-top: 1.4rem;
    max-width: 30rem;
}

.inquiry__notes>li {
    padding-left: 1em;
    text-align: left;
    text-indent: -1em;
}

/* footer */
.footer {
    background-color: var(--footer-bg-color);
    color: var(--footer-font-color);
    font-weight: 300;
    text-align: center;
    font-size: 1.2rem;
    padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
    .footer {
        font-size: 1.4rem;
    }
}

/* スクリーンリーダー用のスタイル */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* スクリーンリーダー用のスタイル 終わり */
/* TOPへ戻るボタン関連 */
#scroll-to-top {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    width: 70px;
    aspect-ratio: 1;
    opacity: 0;
    /* 初期は透明 */
    pointer-events: none;
    /* 非表示時はクリック無効 */
    transition: opacity 0.3s ease;
    /* フェードのアニメーション */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (min-width: 768px) {
    #scroll-to-top {
        width: 105px;
    }
}

#scroll-to-top.show {
    opacity: 1;
    /* 表示時は不透明 */
    pointer-events: auto;
    /* クリック有効 */
}

/* ボタン関連 */
/* メインカラーボタン */
.button1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30rem;
    border-radius: 1.2rem;
    box-shadow: 0 0.5rem var(--button1-shadow-color);
    padding: 2.4rem 0 1.5rem;
    line-height: 1.4;
    border: none;
    background-color: var(--button1-bg-color);
    color: var(--button1-font-color);
    font-size: 1.7rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.button1--disabled {
    background-color: #444 !important;
    box-shadow: 0 0.5rem #000000 !important;
    color: #ffffff;
    pointer-events: none !important;
    font-size: 21px !important
}

.button1--blue {
    background-color: #003b83;
}

.button1>img {
    width: 1em;
    position: relative;
}

/* サブカラーボタン */
.button2 {
    width: 100%;
    max-width: 32rem;
    border-radius: 5rem;
    border: solid 1px var(--button2-border-color);
    box-shadow: 0 0.4rem var(--button2-shadow-color);
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    background-color: var(--button2-bg-color);
    color: var(--button2-font-color);
    font-size: 1.6rem;
    cursor: pointer;
    text-align: center;
}

.button2>img {
    width: 1em;
    margin-left: 1.2rem;
    position: relative;
    top: -0.2rem;
}

/* サブカラーボタン */
.button3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30rem;
    border-radius: 5rem;
    box-shadow: 0 0.5rem var(--button3-shadow-color);
    padding: 2rem 0 2rem;
    line-height: 1.4;
    border: none;
    background-color: var(--button3-bg-color);
    color: var(--button3-font-color);
    font-size: 1.7rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

/* チェックボックス */
.checkBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: initial;
    margin-bottom: 2rem;
    cursor: pointer
}

.checkBox-Input {
    width: 0;
    margin: 0;
    opacity: 0
}

.checkBox-Input:checked+.checkBox-DummyInput {
    background: #e8f0fe !important;
    border: solid 1px gray
}

.checkBox-Input:checked+.checkBox-DummyInput::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hlY2siPjxwb2x5bGluZSBwb2ludHM9IjIwIDYgOSAxNyA0IDEyIj48L3BvbHlsaW5lPjwvc3ZnPg==") no-repeat center;
    background-size: contain
}

.checkBox-DummyInput {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    min-width: 25px;
    width: 25px;
    height: 25px;
    background: #fff;
    border: solid 1px #888
}

.checkBox-LabelText {
    display: inline;
    margin-left: 1rem;
}

.checkBox_error {
    height: 1.4rem;
    color: #e60146;
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
}

/* アコーディオン */
.accordion {
    max-width: 600px;
    margin: 40px auto;
    font-family: system-ui, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.accordion button {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion button:hover {
    background: #f9f9f9;
}

.chev {
    font-size: 4rem;
    transition: transform .25s ease;
}

.chev.rotate {
    transform: rotate(180deg);
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
    background: #fff;
}

.content.open {
    padding: 12px 20px 20px 20px;
}

.content p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* レシート撮影のポイント */
.modal-area__howto-contents>img {
    width: 100%;
    max-width: 780px
}

.modal-area__howto-menu {
    padding-right: 500%;
    padding-left: 500%;
    margin-right: -500%;
    margin-left: -500%
}

.modal-area {
    text-align: center
}

.modal-area__overlay {
    position: absolute;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    display: none;
    width: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.modal-area__howto>p>img {
    max-width: 400px
}

.modal-area__howto-checkbox {
    display: none
}

.modal-area__howto-close {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 10px;
    height: 10px;
    font-size: 15px;
    color: #282c34
}

.modal-area__howto-close:hover {
    color: #4b5361;
    cursor: pointer
}

.modal-area__howto-o-close {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    width: 100%;
    height: 100%
}

.modal-area__howto-contents>img {
    max-width: 580px
}

.modal-area__howto-menu {
    position: relative;
    display: block;
    padding: 10px 0;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: var(--title-text-color);
    text-align: center;
    background-color: var(--title-bg-color)
}

.modal-area__howto-menu::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    padding-right: 0;
    padding-left: 0;
    margin: 0 auto;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
    content: "";
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #9c7600), color-stop(75%, #9c7600), to(transparent));
    background-image: linear-gradient(to right, transparent, #9c7600 25%, #9c7600 75%, transparent);
    background-image: -webkit-gradient(linear, left top, right top, from(var(--title-underBar-color)), to(var(--title-underBar-color)));
    background-image: linear-gradient(to right, var(--title-underBar-color), var(--title-underBar-color));
    background-repeat: no-repeat;
    background-position: center
}

.modal-area__howto input:checked~.modal-area__howto-o-close {
    z-index: 9998
}

.modal-area__howto-wrap {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 90%;
    max-width: 500px;
    padding: 40px 18px 30px;
    margin: 20px auto;
    overflow: hidden;
    background-color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.modal-area__howto input:checked~.modal-area__overlay {
    z-index: 9997;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-duration: .5s;
    animation-duration: .5s
}

.modal-area__howto input:checked~.modal-area__overlay .modal-area__howto-wrap {
    z-index: 9999;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}