@charset "utf-8";

/* ================================
common
================================== */
:root {
    --textcolor: #2E3340;
    --primary-white: #FFF;
}

html {
    font-size: 62.5%;
    /*16px * 62.5% = 10px*/
}

body {
    font-family: 'Noto Sans Japanese',
    Arial,  
    sans-serif;
    font-style: normal;
    color: var(--textcolor);
    line-height: 1.5;

}

img {
    /* width: 100%; */
    height: auto;
}



/* ================================
main
================================== */
.mainvisualPC {
    display: none;
}

.mainvisualSP {
    width: 100%;
}

/* mainvisual pc */
@media screen and (min-width: 769px) {
    .mainvisualPC {
        display: block;
        width: 100%;
    }

    .mainvisualSP {
        display: none;
    }
}


/* ================================
navi
================================== */
.naviGroup {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 53px 7.3%;
    gap: 26px;
    justify-content: center;
}

.navi {
    background-image: linear-gradient(329deg, #f6edf0, #ffdde6);
    width: 137px;
    height: 91px;
    padding: 15px 0;
    /* box-shadow: 2px 2px 20px 0px rgba(175, 175, 175, 0.25); */
    position: relative;
    border-radius: 1px;
}

.navi_caption {
    font-size: 1.1rem;
    text-align: center;
}

.navi_logo {
    font-family: 'Nuosu SIL', Noto Serif JP, monospace;
    font-size: 2.4rem;
    text-align: center;
}

.navi::before {
    content: '';
    display: block;
    position: absolute;
    width: 130px;
    height: 82px;
    border: 0.5px solid #F4AFC0;
    top: 4px;
    left: 3px;
}

.navi::after {
    content: '';
    display: block;
    background-image: url(https://prairiedog.itembox.cloud/item/egift/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 12px;
    height: 11px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;

}

/* navi pc */
@media screen and (min-width: 769px) {
    .navi {
        width: 190px;
        height: 140px;
        padding: 26px 0;
        border-radius: 2px;
    }

    .navi_caption {
        font-size: 1.9rem;
    }

    .navi_logo {
        font-size: 3.5rem;
    }

    .navi::before {
        width: 179px;
        height: 129px;
        border: 1px solid #F4AFC0;
        top: 5px;
        left: 5px;
    }

    .navi::after {
        width: 35px;
        height: 11px;
        bottom: 16px;

    }


}

/* ================================
About
================================== */

.titleAbout {
    text-align: center;
}

.title_egift {
    font-family: 'Noto Serif JP', monospace;
    font-size: 3rem;
    font-weight: 400;
}

.title_mozi {
    font-size: 2rem;
    font-weight: 400;
}

.about_caption {
    font-size: 1.4rem;
    padding: 30px 14%;
    line-height: 2.0;
}

.about_pic {
    padding: 20px 7.6%;
}


/* About PC */
@media screen and (min-width: 769px) {
    .title_egift {
        font-size: 5.1rem;
    }

    .title_mozi {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .about_caption {
        font-size: 2rem;
        text-align: center;
    }

    .about_pic_group {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        max-width: 1080px;
        margin: 40px auto 0;
    }

    .about_pic {
        padding: 0;
    }
}


/* ================================
scene
================================== */

.title_benri {
    display: block;
    font-size: 1.5rem;
    margin-top: 20px;
}

.scene_image {
    max-width: 150px;
    margin: 25px auto 0;
}

.scene_number {
    display: block;
    font-size: 4rem;
    font-family: 'Nuosu SIL', Noto Serif JP, monospace;
    margin-top: 5px;
    text-align: center;
}

.scene_title {
    position: relative;
}

.scene_title::after {
    content: '';
    display: block;
    max-width: 296px;
    height: 1px;
    background-color: #2E3340;
    margin: 15px auto 0;
}

.scene_mozi {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1.5px;
}

.scene_text {
    font-size: 1.4rem;
    line-height: 2.0;
    padding: 10px 12.5%;

}


/* scene PC */
@media screen and (min-width: 769px) {
    .titleAbout {
        margin-top: 40px;
    }
    
    .title_benri {
        font-size: 2.5rem;
        margin-top: 90px;
    }

    .scene_group {
        display: grid;
        grid-template-columns: 200px minmax(0, 1fr);
        align-items: center;
        column-gap: clamp(35px, 6vw, 50px);
        width: calc(100% - 80px);
        max-width: 970px;
        margin: 60px auto 0;
    }

    .scene_image {
        width: 100%;
        max-width: 200px;
        margin: 0;
        justify-self: center;
    }

    .scene_caption {
        min-width: 0;
    }

    .scene_title {
        display: flex;
        align-items: baseline;
        gap: 18px;
        position: relative;
        padding-bottom: 15px;
    }

    .scene_title::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        max-width: none;
        height: 1px;
        margin: 0;
        background-color: #2E3340;
    }

    .scene_number {
        flex-shrink: 0;
        display: block;
        font-size: 4.8rem;
        margin-top: 0;
        line-height: 1;
        text-align: left;
    }

    .scene_mozi {
        display: block;
        min-width: 0;
        font-size: 3.2rem;
        line-height: 1.4;
        text-align: left;
    }

    .scene_text {
        font-size: 2rem;
        line-height: 2;
        padding: 0;
        margin-top: 18px;
    }
}


/* ================================
Howto
================================== */
.titleHowto {
    text-align: center;
    margin-top: 20px;
}

.howto_image_pc {
    display: none;
}

.howto_image_sp {
    margin-top: 25px;
    padding: 0 5.6%;
}

.howto_title {
    margin: 30px auto 0;
    text-align: center;
    font-size: 2rem;
    background-color: #F4AFC0;
    padding: 3px 10px;
    max-width: 160px;
    color: #FFF;
    font-weight: 400;
    letter-spacing: 2px;
    border-radius: 2px;
}

/* Howto pc */
@media screen and (min-width: 769px) {
    .howto_image_pc {
        display: block;
        max-width: 1000px;
        margin: 0 auto;
        margin-top: 60px;
    }

    .howto_image_sp {
        display: none;
    }

    .howto_title {
        font-size: 3.3rem;
        padding: 3px 15px;
        max-width: 262px;
        margin-top: 60px;

    }

    .titleHowto {
        margin-top: 70px;
    }
}

/* ================================
list
================================== */

.title_list {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 5px;
    text-align: center;
    letter-spacing: 2px;
}

.listGroup {
    background-image: linear-gradient(18deg, #faf7f8, #fff7f9);
    padding: 30px 0;
    margin-top: 60px;
}

.list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px 2%;
    gap: 15px;
    justify-content: center;
}

.item_list {
    max-width: 163px;
    border-radius: 2px;
    box-shadow: 2px 2px 20px 0px rgba(175, 175, 175, 0.25);
}

.list_txt {
    padding: 5px;
    background-color: #FFF;
}

.btn_more {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.btn_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    /* background-image: linear-gradient(104deg, #f4c0cd, #e5d5da); */
    background-color: #F4AFC0;
    color: #FFF;
    padding: 13px 48px 13px 32px;
    border-radius: 50px;
    border: 2px solid #fff;
    /* box-shadow: 2px 2px 20px 0 rgba(175, 175, 175, 0.25); */
    position: relative;
}

.btn_link:visited {
    color: #FFF;
}

.btn_link::after {
    content: '';
    display: block;
    background-image: url(https://prairiedog.itembox.cloud/item/egift/btn_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 6px;
    height: 24px;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
}

/* list pc */
@media screen and (min-width: 769px) {
    .title_list {
        font-size: 3rem;
    }

    .item_list {
        max-width: 300px;
    }

    .list_txt {
        font-size: 2.1rem;
        padding: 10px;
    }

    .list {
        gap: 40px;
        padding: 30px 5%;
    }

    .listGroup {
        padding: 60px 0;
        margin-top: 60px;
    }

    .btn_link {
        max-width: 580px;
        font-size: 2.9rem;
        font-weight: 400;
        text-align: center;
        padding: 13px 48px 13px 32px;
        margin-top: 30px;
    }
    
    .btn_link::after {
        width: 8px;
        height: 24px;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    }
}


/* ================================
question
================================== */

.title_question {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 30px;
    text-align: center;
    letter-spacing: 2px;
}

.questionGroup {
    padding: 5px 5.3%;
}

.question_list {
    background-color: #F6F6F6;
    margin-top: 20px;
    padding: 18px 10px;
}

.question_title {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    padding-bottom: 10px;
}

.question_title::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #2E3340;
}

.title_q {
    flex-shrink: 0;
    font-family: 'Nuosu SIL', 'Noto Serif JP', monospace;
    font-size: 2rem;
    line-height: 1.5;
}

.title_text {
    min-width: 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.question_txt {
    font-size: 1.4rem;
    margin-top: 10px;
}

/* question pc */
@media screen and (min-width: 769px) {
    .title_question {
        font-size: 3rem;
        margin-top: 70px;
    }

    .question_list {
        max-width: 1000px;
        margin: 30px auto;
        padding: 23px 45px;
    }

    .title_q {
        font-size: 3.8rem;
    }

    .title_text {
        font-size: 2.5rem;
    }

    .question_txt {
        font-size: 2rem;
    }

}