@charset "utf-8";

/* ローカルストレージ削除 */
.clear {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #80bf58;
    cursor: pointer;
    padding: 5px 10px;
    color: #fff;
    z-index: 999;
}

.title {
    max-width: 1054px;
    margin: 0 auto;
    position: relative;
}

.title .cap {
    bottom: 5px;
    right: 5px;
}

.page_lead {
    text-align: center;
    margin: 40px 0 50px;
    font-size: clamp(15px, 2.2vw, 22px);
    line-height: 1.8;
}

.page_lead .small {
    font-size: 10px;
    vertical-align: text-top;
    margin-left: 3px;
}

.all_wrap {
    max-width: 1054px;
    width: 90%;
    margin: 0 auto;
}

/* SPのみ */
@media screen and (max-width:730px) {
    .clear {
        display: none;
    }

    .page_lead {
        margin: 30px 0;
    }
}



.wrap01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 0;
}

.wrap01 li {
    width: calc(93%/2);
}

.wrap01 li .flex_wrap {
    display: flex;
    justify-content: space-between;
}

.wrap01 li .flex_wrap .image_wrap {
    width: 56%;
}

.wrap01 li:nth-child(2n-1) .flex_wrap .image .cap {
    bottom: 5px;
    left: 5px;
}

.wrap01 li:nth-child(2n) .flex_wrap .image .cap {
    bottom: 5px;
    right: 5px;
}

.wrap01 li .flex_wrap .point {
    align-self: center;
}

.wrap01 li .txt {
    margin: 20px auto 0;
    font-size: clamp(14px, 1.7vw, 17px);
}


/* SPのみ */
@media screen and (max-width:730px) {

    .wrap01 {
        margin-left: -5.5%;
        margin-right: -5.5%;
        flex-direction: column;
        gap: 40px 0;
    }

    .wrap01 li {
        width: 100%;
    }

    .wrap01 li .flex_wrap {
        width: 90%;
    }

    .wrap01 li:nth-child(2n) .flex_wrap {
        margin-left: auto;
    }

    .wrap01 li .txt {
        width: 90%;
    }
}

.info_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0;
    margin: 100px 0;
}

.info_wrap .box {
    display: flex;
    justify-content: space-between;
    width: calc(93%/2);
}

.info_wrap .box .txt_wrap,
.info_wrap .box .image_wrap {
    width: 48%;
}

.info_wrap .box .image .cap {
    bottom: 5px;
    right: 5px;
}

.info_wrap .box_title {
    text-align: left;
    font-size: clamp(14px, 1.7vw, 17px);
    border-bottom: 1px solid #4c4948;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.info_wrap .box_txt {
    font-size: clamp(12px, 1.3vw, 13px);
}

.info_wrap .box_txt .foot {
    display: block;
    margin-top: 5px;
    font-size: 10px;
}


/* SPのみ */
@media screen and (max-width:730px) {
    .info_wrap {
        margin: 50px 0;
        flex-direction: column;
        gap: 40px 0;
    }

    .info_wrap .box {
        width: 100%;
    }
}

.stamp_btn_wrap {
    background-color: #edebe9;
    padding: 30px;
}

.stamp_btn_wrap .txt {
    color: #008952;
    font-size: clamp(22px, 2vw, 24px);
    text-align: center;
    margin-bottom: 10px;
}

.stamp_btn_wrap .click_icon {
    max-width: 23px;
    width: 10%;
    margin: 0 auto 20px;
    animation: move-y .5s infinite alternate ease-in-out;
}


@keyframes move-y {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(10px);
    }
}

.stamp_btn_wrap .stamp {
    width: 130px;
    margin: 0 auto;
    cursor: pointer;
}

.stamp_btn_wrap .stamp:hover {
    opacity: 0.7;
}

.stamp_btn_wrap .stamp.active {
    cursor: default;
}

.stamp_btn_wrap .stamp.active:hover {
    opacity: 1;
}

.stamp_btn_wrap .stamp_rally_btn {
    cursor: pointer;
    max-width: 375px;
    width: 50%;
    margin: 30px auto 0;
}


/* SPのみ */
@media screen and (max-width:730px) {
    .stamp_btn_wrap .stamp_rally_btn {
        width: 100%;
    }
}


.treasture_link_wrap {
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0;
}

.treasture_link_wrap li {
    font-size: clamp(18px, 2.6vw, 26px);
}

.treasture_link_wrap .prev {
    width: 50%;

}

.treasture_link_wrap .prev a {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 0 0 0 auto;
}

.treasture_link_wrap .prev a::before {
    margin-right: 15px;
    content: "";
    width: 15px;
    height: 15px;
    border: 15px solid transparent;
    border-right: 20px solid #4c4948;
}

.treasture_link_wrap .next {
    width: 50%;

}

.treasture_link_wrap .next a {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 0 auto 0 0;
}

.treasture_link_wrap .next a::after {
    margin-left: 15px;
    content: "";
    width: 15px;
    height: 15px;
    border: 15px solid transparent;
    border-left: 20px solid #4c4948;
}


.treasture_link_wrap .top {
    color: #91b365;
    font-size: clamp(20px, 3vw, 30px);
    width: 100%;
}

.treasture_link_wrap .top a {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.treasture_link_wrap .top a::after {
    margin-left: 15px;
    content: "";
    width: 15px;
    height: 15px;
    border: 15px solid transparent;
    border-left: 20px solid #91b365;
}


/* SPのみ */
@media screen and (max-width:730px) {
    .treasture_link_wrap {
        margin: 30px 0;
    }

    .treasture_link_wrap .top a {
        width: 100%;
    }

    .treasture_link_wrap .prev a {
        margin: 0 auto;
    }

    .treasture_link_wrap .prev a::before {
        border: 10px solid transparent;
        border-right: 15px solid #4c4948;
    }

    .treasture_link_wrap .next a {
        margin: 0 auto;
    }

    .treasture_link_wrap .next a::after {
        border: 10px solid transparent;
        border-left: 15px solid #4c4948;
    }

    .treasture_link_wrap .top a::after {
        border: 10px solid transparent;
        border-left: 15px solid #91b365;
    }
}

.popup_bg {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
}

#stamp_rally {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1000;
}

#stamp_rally .content {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 52%;
    left: 50%;
    max-width: 500px;
    width: 90%;
    height: 90vh;
}

#stamp_rally .wrap {
    height: 90vh;
    background-image: url(../images/treasure/stamp_bg.png);
    background-size: 100% 100%;

    overflow: hidden;
}

#stamp_rally .content .close {
    cursor: pointer;
    position: absolute;
    width: 40px;
    top: -30px;
    right: 0;
}

#stamp_rally .content .help_icon {
    cursor: pointer;
    width: 40px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

#stamp_rally .content .deco01 {
    position: absolute;
    width: 32%;
    top: -30px;
    left: -45px;
}


#stamp_rally .content .deco02 {
    position: absolute;
    width: 51%;
    top: 6%;
    right: -33%;
}

#stamp_rally .content .inner {
    overflow-y: scroll;
    height: 90vh;
    width: 90%;
    margin: 0 auto;
    color: #fff;
    padding: 35px 0;
}


#stamp_rally .content .inner::-webkit-scrollbar {
    display: none;
}

#stamp_rally .content .inner .content_title {
    width: 60%;
    margin: 0 auto;
}

#stamp_rally .content .inner .content_lead {
    text-align: center;
    font-size: clamp(13px, 1.5vw, 15px);
    margin-top: 10px;
}

#stamp_rally .content .inner .btn_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 0;
    margin: 20px 0 30px;
}

#stamp_rally .content .inner .btn_wrap li {
    width: calc(95%/3);
}

#stamp_rally .content .inner .btn_wrap li.active {
    pointer-events: none;
}

#stamp_rally .content .inner .bottom_image {
    width: 80%;
    margin: 0 auto;
}



/* SPのみ */
@media screen and (max-width:730px) {
    #stamp_rally .content .inner {
        padding: 40px 0 10px;
    }

    #stamp_rally .content .deco02 {
        top: 3%;
    }
}



#help_wrap {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1000;
}

#help_wrap .content .close {
    cursor: pointer;
    position: absolute;
    width: 40px;
    top: -30px;
    right: 0;
}

#help_wrap .content {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 52%;
    left: 50%;
    max-width: 500px;
    width: 90%;
    height: 90vh;
}

#help_wrap .content .wrap {
    height: 90vh;
    overflow: hidden;
    overflow-y: scroll;
}

#help_wrap .content .wrap::-webkit-scrollbar {
    display: none;
}