body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
}
main.hidden {
    visibility: hidden;;
}
.outer {
    width: 100%;
    min-height: 100Vh;
    background: linear-gradient(132deg, #503402, #80580D);
}
.container {
    padding: 0 0 75px 0;
    margin: 0 0 0 0;
}
.main_section {
    width: 100%;
    height: 100vh;
    max-width: calc(100vh * 0.563);
    max-height: calc(100vw * 1.778);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.logo_box {
    height: 12%;
    margin: 0 auto;
}
.logo_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.comment_box {
    height: 7%;
    background: #fff;
    width: 90%;
    border-radius: 15px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(3.5vw, 16px);
    line-height: 1.4;
    font-weight: 600;
}
.map_box.nonedisplay + .comment_box {
    margin: 0 0 70% 0;
}
.map_box {
    width: 90%;
    margin: 0 auto;
    position: relative;
    background: url(./img/02map.png) center center / contain no-repeat;
}
.map_box.nonedisplay {
    display: none;
}
.map_box::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 139.4%;
}
.map_box.comp::after {
    content: "";
    display: block;
    width: 90%;
    height: 20%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-3deg);
    opacity: 0;
    background: url(./img/cleared.png) center center / contain no-repeat;
    animation: comp 0.4s ease-in 2s forwards;
}
.map_box.comped::after {
    content: "";
    display: block;
    width: 90%;
    height: 20%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-3deg);
    opacity: 1;
    background: url(./img/cleared.png) center center / contain no-repeat;
}
@keyframes comp {
    0% {
        transform: translate(-50%,-50%) rotate(0deg) scale(3);
        opacity: 0;
    } 100% {
        transform: translate(-50%,-50%) rotate(-3deg) scale(1);
        opacity: 1;
    }
}

.stamp_container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.stamp_list-outer {
    width: 25%;
    position: absolute;
    background-color: #fff;
    border: solid 3px #7F531F;
    border-radius: 50%;
}
.stamp_list-outer::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
}
/* スタンプ配置 */
.stamp_list-outer.stamp01 {
    top: 75%;
    left: 43%;
    transform: rotate(10deg);
}
.stamp_list-outer.stamp02 {
    top: 52%;
    left: 67%;
    transform: rotate(-15deg);
}
.stamp_list-outer.stamp03 {
    top: 35%;
    left: 40%;
    transform: rotate(4deg);
}
.stamp_list-outer.stamp04 {
    top: 18%;
    left: 12%;
    transform: rotate(-10deg);
}
.stamp_list-outer.stamp05 {
    top: 5%;
    left: 52%;
    transform: rotate(3deg);
}

.stamp_content {
    width: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
    background: url(./img/stamp.png) center center / contain no-repeat;
    visibility: hidden;
    will-change: transform,animation,position;
}
.stamp_content.display {
    visibility: visible;
}
.stamp_content.getStamp {
    visibility: visible;
    opacity: 0;
    animation: stampOn 0.7s ease-in 2.15s forwards;
}
main.hidden .stamp_content.display {
    visibility: hidden;;
}
@keyframes stampOn {
    0% {
        transform: scale(3);
        opacity: 0;
    } 100% {
        transform: scale(1);
        opacity: 1;
    }
}
.stamp_content::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
}
/* .stamp_content.stamp01 {
}
.stamp_content.stamp02 {
}
.stamp_content.stamp03 {
}
.stamp_content.stamp04 {
}
.stamp_content.stamp05 {
} */


.btnBox {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 60px;
}

.useBtn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    text-align: center;
    line-height: 60px;
    font-weight: 800;
    color: #fff;
    background-color: #57D806;
    font-size: min(4vw, 30px);
}

.btnBox div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 60px;
    font-weight: 800;
    color: #fff;
    background-color: #BABABA;
    font-size: min(4vw, 30px);
}
.coupon_outer {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-modal__content {
    width: 90%;
    background-color: #fff;
    border-radius: 2px;
    padding: 0 0 25px 0;
    overflow: hidden;
}

.c-modal__title {
    width: 100%;
    height: 75px;
    text-align: center;
    line-height: 75px;
    font-size: min(4vw, 25px);
    font-weight: 800;
    color: #fff;
    background-color: #72B9FF;
}

.c-modal__text {
    font-size: 14px;
    width: 90%;
    margin: 25px auto 0;
}

.c-modal__text p {

}

.c-modal__btnBox {
    width: 90%;
    margin: 25px auto 0;
}

.usedBtn, .backBtn {
    display: block;
    border: none;
    width: 100%;
    height: 50px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: min(3.5vw, 20px);
    font-weight: 800;
    border-radius: 30px;
}

.usedBtn {
    background-color: #57D806;
}

.backBtn {
    margin: 15px 0 0 0;
    background-color: #969696;
}


.subsection {
    max-width: 800px;
    width: 90%;
    background-color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 5%;
    margin: 45px auto 0;
}
.subsection_title {
    text-align: center;
    font-weight: 600;
    font-size: 25px;
}
.subsection_content {
    font-size: 14px;
    margin: 1.2em 0 0 0;
}
.subsection_content p {
    margin: 0 0 0.5em 0;
    display: flex;
}
.subsection_content p::before {
    content: "※";
}