/************　全体共通　************/
/*　色指定　*/
:root {
    --primary-color: #5c7cc4;
    --primary-btnbg-color: #d7e2fd;
    --primary-bg-color: #d4f0f4;
    --secondary-color: #2ecc71;
    --alert-color: #EF4123;
    --background-color: #ffffff;
    --text-color: #333333;
    --important-color: #c4181f;
}


html {
    overflow-y: scroll;
    overflow-x: hidden;
    width: calc(100vw - calc(100vw - 100%));
    max-width: 768px;
    /* iPadAir、mini辺りをMAXに */
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: var(--primary-bg-color);
}

body {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
    position: relative;
    font-size: 1rem;
    background-color: #fff;
    /*　footerを下部に固定するため　*/
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* ビューポートの高さに合わせる */
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.main {
    /*margin: 1.5rem 1rem; marginだと他ページのbgがある時に使いにくい*/
    padding: 1.5rem 1rem;
    line-height: 1.2;
    overflow-y: unset;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /*　footerを下部に固定するため　*/
    flex: 1;
}

a {
    /*スマホのタップ時に一瞬出る 「水色・灰色のハイライト」を非表示*/
    -webkit-tap-highlight-color: transparent;
}

/*　outline用タイトル等で消しておくもの用　*/
.hidden {
    display: none;
}

/*　空きなどを設定　*/
.bottom-margin1 {
    margin-bottom: 1rem;
}

.bottom-margin2 {
    margin-bottom: 2rem;
}

.padding-top1 {
    padding-top: 1rem;
}

/*　footer　コピーライトここから　*/
footer {
    text-align: center;
    height: 3rem;
    background-color: #fff;
    color: var(--text-color);
    border-bottom: 1px solid #fff;
    box-shadow: 6px 0px 8px rgba(153, 153, 153, 0.2);

    position: relative;
    width: 100%;
    width: 100%;
}

.copyright {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    right: 0;
    font-size: 0.75rem;
}

/*　header.htmlの　hamburger-menuハンバーガーボタン　*/
.menu-btn {
    position: fixed;
    top: 8px;
    right: 10px;
    display: flex;
    height: 45px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 110;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 2px 4px 5px rgb(0, 0, 0, 0.2);
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 4px;
    width: 25px;
    background-color: #333333;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn {
    background-color: transparent;
    box-shadow: none;
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #fff;
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #fff;
}

#menu-btn-check {
    display: none;
}

/* メニューボタンのbox-shadowを消していく　*/
.achievement-goal-body .menu-btn {
    background-color: transparent;
    box-shadow: none;
}

.faq-page-body .menu-btn {
    background-color: transparent;
    box-shadow: none;
}

.user-agreement-ref-body .menu-btn {
    background-color: transparent;
    box-shadow: none;
}

.all-map-body .menu-btn {
    background-color: transparent;
    box-shadow: none;
}

.checkpoint-map-body .menu-btn {
    background-color: transparent;
    box-shadow: none;
}

/*　メニュー部分css　*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: var(--primary-color);
}

.menu-content ul {
    padding: 1rem 4rem 0;
    display: grid;
    grid-template-columns: 1fr;
    /* スマホでは1列 */
}

.menu-content ul li {
    list-style: none;
    background-color: #fff;
    margin-top: 1rem;
    border-radius: 25px;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 0.9375rem;
    box-sizing: border-box;
    color: #333333;
    text-decoration: none;
    padding: 1rem;
    position: relative;
    text-align: center;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 100;
    background-color: var(--primary-color);
    transition: all 0.5s;
    /*アニメーション設定*/
}

.menu-hamburger-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    text-align: center;
    margin-top: 6rem;
    font-size: 1.5rem;
}

#menu-btn-check:checked~.menu-content {
    left: 0;
    /*メニューを画面内へ*/
}

.menu-content ul li a:active,
.menu-content-footer ul li a:active,
.menu-content ul li a:focus,
.menu-content-footer ul li a:focus {
    outline: none;
    color: var(--primary-color);
    /* 必要なら文字色も */
}

@media (min-width: 540px) {
    .menu-content ul {
        grid-template-columns: 1fr 1fr;
        /* 2列にする */
        gap: 15px;
        /* 項目間の余白（任意） */
        margin: 2rem 0 0 0;
    }

    .menu-content ul li {
        margin-top: 0;
    }

    .menu-content ul li a {
        margin: 0;
    }
}

/*　header.blade.phpのheader-bar部分　*/
.header-bar {
    height: 3.75rem;
    background-color: #ffffff;
    display: flex;
    box-shadow: 4px 4px 8px rgba(153, 153, 153, 0.1);
    position: fixed;
    z-index: 80;
    width: 100%;
    max-width: 768px;
}

.header-back-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    top: 10px;
    left: 10px;
}

/* 矢印部分 */
.header-back-btn::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    width: 14px;
    /* 矢印の線の長さ */
    height: 14px;
    /* 矢印の線の長さ */
    border-left: 4px solid black;
    border-bottom: 4px solid black;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* タイトルを中央に固定 */
.header-page-title {
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-48%, -50%);
    font-size: 1.0625rem;
    margin: 0;
    width: 75%;
    white-space: normal;
    text-align: center;
}

h1#page-title {
    margin: auto;
}

/*　indexのheaderのjsスライド部分　*/
.slider-wrapper {
    width: 100%;
    height: 390px;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    height: auto;
    /* 子の画像の高さに合わせる */
    transition: transform 1s ease-in-out;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

/* スマホ幅の場合 画像を幅いっぱいにして高さをautoに　*/
@media (max-width: 440px) {
    .slider-wrapper {
        height: auto;
        /* ラッパーも画像の高さに合わせる */
    }

    .slide-img {
        width: 100%;
        /* 横いっぱい */
        height: auto;
        /* 高さは比率で自動 */
        object-fit: contain;
        /* contain じゃなく cover にすると隙間なしで埋まる */
    }
}


/************　header　ここから各メイン　************/
.header-title-box {
    background-color: #ffffff;
    /*background-image: url(../img/top-test.jpg);*/
    background-repeat: no-repeat;
    background-position: top;
    height: 0;
    padding-top: 55%;
    /* 表示画像の高さ() ÷ 表示画像の幅() ×100 =%でも見た目で修正*/
    background-size: contain;
    margin-top: 0;
}

/* 受付人数が上限になった時の新規プレイヤーの受付終了表示 */
.c-full-notice {
    background-color: #ccc;
    padding: 100px 50px;
}

.registration-btn {
    display: block;
    background-color: var(--primary-color);
    border: 1px solid #fff;
    border-radius: 1.2rem;
    margin: 1rem auto;
    width: 90%;
    height: 2.4rem;
    color: #fff;
    cursor: pointer;
    font-size: 0.9375em;
    font-weight: normal;
}

.registration-btn.is-disabled {
    /*opacity: 0.4; 写真がかぶるとボタンが透ける*/
    cursor: not-allowed;
    pointer-events: none;
    background-color: #ccc;
}

.registration-btn a {
    color: #fff;
    font-size: 0.8rem;
}

.registration-btn-top {
    position: relative;
}

button.registration-btn.registration-btn-bottom.js-go-register {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

/*　タイトル設定　*/
.main-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.0625rem;
    font-weight: bold;
    line-height: 1.2;
    width: 90%;
    text-align: left;
    margin: 2rem auto 0.5rem auto;
}

.index-txt-wrap {
    box-shadow: 0 0 4px rgb(153 153 153 / 0.4);
    padding: 0.8rem 1rem 0.5rem 1rem;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
}


.main-subtitle {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.8125rem;
    /*letter-spacing: 0.5rem;*/
}

.maintxt {
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .maintxt-br {
        display: none;
    }
}


/************　アンケート画面　enquete.blade.php　************/
.questionnaire-body {
    background-color: var(--primary-bg-color);
}

.qsa-main {
    background-color: #fff;
    margin: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 4px rgb(153 153 153 / 0.4);
}

.qsa-title {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--primary-color);
    font-size: 1.0625rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #d0d0d0;
}

.qsa-wrapper {
    margin: 2rem 0;
}

.qsa-subtitle {
    display: block;
    font-size: 0.8125rem;
    font-weight: bold;
    margin-top: 2rem;
}

input,
select {
    -webkit-appearance: none;
    appearance: none;
}

.qsa-selection-wrap {
    position: relative;
}

.qsa-selection-wrap::before {
    position: absolute;
    top: 22px;
    /*矢印の上からの位置*/
    right: 20px;
    /*矢印の右からの位置*/
    content: '';
    width: 15px;
    /*矢印の横幅*/
    height: 10px;
    /*矢印の縦幅*/
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    /*逆三角形の描画*/
    background-color: #7c7c7c;
    /*矢印の色*/
    pointer-events: none;
    /*矢印部分をクリックできるようにする*/
}


select.qsa-selection-box {
    width: 100%;
    height: 3rem;
    font-size: 0.8125rem;
    margin-top: 0.2rem;
    border: solid 1px #d2d1d1;
    border-radius: 0.4rem;
    padding-left: 0.5rem;
    background-color: #fff;
    color: var(--text-color);
}

select.qsa-selection-box:focus-visible {
    outline: 1px solid var(--primary-color);
}

.qsa-selection {
    font-size: 1em;
    cursor: pointer;
}

.error-msg {
    font-size: 0.7rem;
    color: var(--alert-color);
    margin-top: 0.3rem;
}

.check-bottom-btn {
    margin: 1.5rem auto 1rem auto;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
}

/************　アンケート確認画面　enquete-confirm.blade.php　************/
.questionnaire-check-body {
    background-color: var(--primary-bg-color);
}

.qsa-check-main {
    background-color: #fff;
    margin: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 4px rgb(153 153 153 / 0.4);
}

.qsa-check-title {
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 2rem;
}

.qsa-answer {
    padding: 0.5rem;
    border-bottom: 2px dotted #d2d1d1;
    font-size: 0.8125rem;
}

.correct-btn {
    margin-top: 3rem;
    background-color: #b5b5b5;
    width: 100%;
}

/************　利用規約　user-agreement.blade.php　************/
.user-agreement-body {
    background-color: var(--primary-bg-color);
}

.user-agreement-main {
    background-color: #fff;
    margin: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 4px rgb(153 153 153 / 0.4);
}

.user-agreement-title {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--primary-color);
    font-size: 1.0625rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #d0d0d0;
}

.privacy-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    padding-top: 1rem;
}

.user-agreement-txt,
.user-agreement-ref-txt {
    margin: 0.5rem;
    line-height: 1.5;
    white-space: pre-wrap;
    text-align: left;
    font-size: 0.75rem;
}

/*　利用規約の同意用のチェックボックス　*/
.checkboxItem {
    display: flex;
    align-items: center;
    column-gap: 4px;
    width: fit-content;
    line-height: 1;
    cursor: pointer;
    margin: 2rem 0 0 -0.2rem;
    font-size: 0.8125rem;
}

.checkboxItem:not(:last-of-type) {
    margin-bottom: 16px;
}

.checkbox {
    appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    cursor: pointer;
}

.checkbox:checked {
    background-color: var(--primary-color);
}

.checkbox:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 2px;
    width: 12px;
    height: 6px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    transform: rotate(-45deg);
}

/* ボタンが無効のときにグレーに見えるように */
#submitButton:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.back-btn {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    background-color: #b5b5b5;
    width: 100%;
    text-align: center;
}

/* メニューからのご利用規約も設定 */
.user-agreement-ref-main {
    margin: 0 1rem;
    padding-top: 4rem;
}

/************　ホーム　home.blade.php　************/
.header-map-button {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.25rem;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 15px;
    width: 4rem;
    text-align: center;
    padding: 0.2rem 0 0.3rem 0.1rem;
    position: fixed;
    top: 17px;
    right: 65px;
    cursor: pointer;
    box-shadow: 2px 4px 5px rgb(0, 0, 0, 0.3);
}

/*　footerメニューのcss */
.menu-footer-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

section.menu-content-footer {
    width: 100%;
    background-color: var(--primary-color);
}

.menu-content-footer ul {
    padding: 0 4rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    /* スマホでは1列 */
}

.menu-content-footer ul li {
    text-align: center;
}

.menu-content-footer ul li a {
    display: block;
    width: 100%;
    color: var(--text-color);
    background-color: #fff;
    font-size: 0.9375rem;
    box-sizing: border-box;
    text-decoration: none;
    padding: 1rem;
    margin: 1rem 0 0.5rem 0;
    border-radius: 25px;
    cursor: pointer;
}

@media (min-width: 540px) {
    .menu-footer-title {
        margin-bottom: 1.5rem;
    }

    .menu-content-footer ul {
        grid-template-columns: 1fr 1fr;
        /* 2列にする */
        gap: 15px;
        /* 項目間の余白（任意） */
        margin: 0 0 1rem 0;
    }

    .menu-content-footer ul li a {
        margin: 0;
    }
}

/*　スタンプ枠　*/
.stamp-wrap {
    box-shadow: 0 0 4px rgb(153 153 153 / 0.4);
    border-radius: 0.5rem;
    padding: 0.8rem;
    margin-top: 1rem;
}

.stamp-title-box {
    display: flex;
    border-bottom: 1px solid var(--text-color);
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.2rem;

}

.stamp-title {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--text-color);
    text-align: left;
    font-size: 1.0625rem;
    font-weight: bold;
}

.stamp-num-box {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.5rem;
}

.stamp-num-get {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stamp-all-wrap {
    /* width: 100%; */
    /* height: 100%; */
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));*/
    grid-auto-rows: minmax(130px, auto);
    grid-template-columns: repeat(auto-fill, 90px);
    justify-content: center;
    gap: 15px;
    justify-items: center;
    padding: 1rem 0 1.8rem 0;
}

@media (min-width: 414px) {
    .stamp-all-wrap {
        gap: 25px;
    }
}

.stamp-box {
    text-align: center;
    /* display: grid; */
    /* place-items: center; */
    /*display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;*/
    width: 90px;
    /* px指定でスタンプ画像を一定に */
    max-width: 100px;
    /* 最大サイズを設定して過剰拡大防止 */
    aspect-ratio: 1 / 1;
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.stamp-background {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.stamp-txt {
    font-size: 0.8125rem;
    margin-top: 0.6rem;
    font-weight: bold;
    color: var(--text-color);
}

/*　ホームのその他の部分　*/
.campaign-date-box {
    display: flex;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 4px rgb(153 153 153 / 0.4);
    border-radius: 0.5rem;
    padding: 1rem 0.5rem;
    letter-spacing: 0.05rem;
    color: var(--text-color);
}

@media (max-width: 375px) {
    .campaign-date-box {
        display: block;
        text-align: center;
        line-height: 1.4;
        padding: 0.5rem;
    }
}

.campaign-date-name {
    font-size: 0.875rem;
    white-space: nowrap;

}

.campaign-date-txt {
    font-size: 0.875rem;
}


/***********　ここからコンプリート後の特典ページ　***********/
.complete-message-wrap {
    margin-top: 3rem;
}

img.stamp-bonus-image {
    width: 90%;
    display: block;
    margin: auto;
}

@media (min-width: 540px) {
    img.stamp-bonus-image {
        width: 80%;
    }
}

.complete-message-title {
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: var(--important-color);
}

.complete-message-box {
    margin: 1rem 0;
    text-align: center;
    line-height: 1.5;
}

iframe#twitter-widget-0 {
    margin-top: 1rem;
}

/* Xにポストのボタン */
svg.x-logo {
    width: 0.9rem;
    height: 0.9rem;
}

a.btn-x {
    display: inline-block;
    font-size: 0.9rem;
    background-color: #000;
    color: #fff;
    padding: 0.3rem 0.8rem 0.1rem 1rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1rem;
}

/***********　goal_master / achievement_qr_url　***********/

.qr-hint-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 260px;
    height: 260px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border: 6px solid #999;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.qr-hint-card:hover,
.qr-hint-card:focus {
    transform: scale(1.02);
}

.qr-hint-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/***********　goal_master /  achievement_message　***********/

.c-complete-message {
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem auto;
    max-width: 360px;
}

.c-complete-message__title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #444;
}

.c-complete-message__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.c-complete-message__note {
    font-size: 1rem;
    color: #333;
    margin: 1.5rem 0 0;
}

.caption-txt {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin: 0.5rem 0 1rem;
}




/***********　達成目標　achievement-goal.blade.php　***********/
.achievement-goal-main {
    padding-top: 5rem
}

.stampgoal-title-box {
    display: flex;
    align-items: center;
}

.achievement-goal-wrap {
    /*border: 1px solid #d0d0d0;*/
    border-radius: 0.5rem;
    padding: 1.2rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 0 4px rgb(153 153 153 / 0.4);
}

.stampgoal-title {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 1.2rem;
    padding: 0.2rem 1.5rem;
    white-space: nowrap;
}

.stampgoal-state {
    padding: 0.2rem 1.5rem 0.1rem;
    font-weight: bold;
}

.stampgoal {
    background-color: #efefef;
    padding: 1rem;
    text-align: left;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 0.3rem;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.3;
    color: var(--primary-color);
}

.stampgoal-txt {
    margin-top: 0.5rem;
    line-height: 1.5;
    color: var(--text-color);
}

.stampgoal-txt-title {
    margin-top: 2rem;
    color: var(--primary-color);
    white-space: nowrap;
    line-height: 1.5;
    font-weight: bold;
}

@media (min-width: 768px) {
    .stampgoal-txt-title {
        width: 15%;
    }
}

/***********　よくある質問　qa.blade.php　***********/
.faq-main {
    padding-top: 5rem;
}

.faq-box {
    margin-bottom: 1rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0 4px rgb(153 153 153 / 0.4);
    background-color: #fff;
}

.faq-box summary {
    display: grid;
    /*display: flex;　だと右マークが崩れる*/
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1.2rem 2rem 1.2rem 3rem;
    cursor: pointer;
    line-height: 1.3;
    list-style: none;
    color: var(--text-color);
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
    display: none;
}

.faq-box summary::before,
.faq-box p::before {
    position: absolute;
    left: 1em;
    font-weight: bold;
    font-size: 1.3em;
}

.faq-box summary::before {
    color: #75bbff;
    content: "Q";
}

.faq-box summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    content: '';
    transition: transform .5s;
}

.faq-box[open] summary {
    background-color: var(--primary-color);
    border-radius: 0.5rem 0.5rem 0 0;
    color: #fff;
}

.faq-box[open] summary::after {
    transform: rotate(225deg);
    border-color: #fff;
}

.faq-box p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1.2rem 3rem 1.2rem;
    color: #333;
    transition: transform .5s, opacity .5s;
    line-height: 1.3;
}

.faq-box[open] p {
    transform: none;
    opacity: 1;
}

.faq-box p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/***********　地図マップ　checkpoint-map.html　***********/
.map-main {
    padding-top: 6rem;
}

.map-button_box {
    width: 100%;
    position: absolute;
    bottom: 10%;
    cursor: pointer;
    white-space: nowrap;
    margin-left: -1rem;
}

.stamp-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding: .9em 2em;
    border: none;
    border-radius: 25px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.hint-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0 auto;
    padding: .9em 2em;
    border: none;
    border-radius: 25px;
    background-color: #ffffff;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1em;
    margin-top: 1rem;
}

.hint-button.is-invisible {
    visibility: hidden;
    pointer-events: none;
}

/*　mapのピンとボタン　*/
.c-map {
    width: 100%;
    height: 60vh;
}

@media (max-width: 375px) {

    /*　SE以下でmapサイズを小さくする　*/
    .c-map {
        height: 53vh;
    }
}

.c-pin {
    width: 72px;
    height: auto;
}

.stamp-button.is-muted {
    background-color: #ccc;
    color: #fff;
}

.stamp-button[hidden] {
    display: none;
}

.is-hidden {
    display: none;
}

/***********　全体マップ　***********/

/*  地図の描画領域　*/
.allmap__canvas {
    width: 100%;
    height: min(73vh, 720px);
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 375px) {
    .allmap__canvas {
        height: min(68vh, 720px);
    }
}

/* チェックポイントマーカー */
.c-marker {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    background-color: #fff;
    position: relative;
}

.c-marker::after {
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    position: absolute;
    bottom: -15px;
    left: 24px;
    width: 14px;
    height: 15px;
}

.c-marker::before {
    background-color: #000000;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    position: absolute;
    bottom: -15px;
    left: 24px;
    width: 14px;
    height: 15px;
    filter: blur(10px);
    transform: translate(2px, 2px);
    opacity: 0.5;
}

/*　ピン画像をグレーに　*/
.c-marker.is-stamped {
    filter: grayscale(100%) brightness(0.9) contrast(1.05);
    transition: filter 160ms ease-in-out;
}

/*　現在地青ピン　*/
.c-me-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #2b90ff;
    border: 2px solid #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}


/***********　詳細情報　モーダルウィンドウ　***********/

.close-button {
    font-size: 2rem;
    color: #fff;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    text-align: center;
    line-height: 3rem;
    display: block;
    margin: 1rem auto;
}

.close-button:hover {
    background-color: #dbdbdb;
}

.modal-title {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    padding-top: 1.5rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 3.75rem;
    width: 100%;
    height: calc(100% - 3.75rem);
    /* ヘッダー分の高さを引く */
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    z-index: 60;
}

.modal-content {
    position: relative;
}

.stamp-detail-wrap {
    width: 80%;
    margin: 2rem auto;
}

.stamp-detail-imag {
    /*height: 200px;*/
    aspect-ratio: 100 / 60;
    background-size: cover;
    background-repeat: no-repeat;
    border: solid 1px gray;
}

.stamp-detail-txt {
    font-size: 0.9rem;
    color: #fff;
    margin: 1rem 0;
}


/***********　スタンプget　stamp-get　***********/
.stamp-get-main {
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stamp-get_close-label {
    background-color: #191919;
    color: #fff;
    border-radius: 50%;
    width: 3.8rem;
    height: 3.8rem;
    line-height: 1.5;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: 2%;
    right: 5%;
    z-index: 10;
    font-size: 2.5rem;
}

.stamp-get__txt {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stamp-get__imag {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    background-size: cover;
}

.btn-return {
    display: block;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
    font-size: 1rem;
    color: #fff;
    background-color: #999;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
}

.btn-return:hover {
    background-color: #e0e0e0;
}

@media (max-width: 375px) {
    .stamp-get-main {
        padding-top: 0;
    }

    .stamp-get__imag {
        height: 250px;
        width: 250px;
    }
}