.section{
    position: relative;
    display: grid;
    gap: 30px;
    width: 90%;
    max-width: 1093px;
    margin: 4rem auto 1rem auto;
    color: #000;
}
.section .title-wrapper > .title{
    color: #3db134;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 4.5px;
    margin: 0 auto;
}
.section .title-wrapper > .subtitle{
    color: #3db134;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 8px auto 0 auto;
    letter-spacing: 1px;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

.section .text{
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

@media (min-width: 769px){
    .section{
        gap: 40px;
    }
    .section .title-wrapper > .title{
        font-size: 32px;
        letter-spacing: 4px;
    }
    .section .title-wrapper > .subtitle{
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    .section .text{
        letter-spacing: 3px;
        line-height: 1.7;
    }
}

/* title */
@media (min-width: 769px){
    .title.section{
        margin-bottom: 3rem;
    }
    .title.section .subtitle{
        margin-top: 0;
    }
    .title.section .image-wrapper{
        position: absolute;
        right: 5%;
        top: -10px;
        width: 180px;
    }
}

/* introduction section -- */
.introduction.section{
    gap: 20px;
}
.introduction.section .title-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.introduction.section .subtitle{
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    transform: none;
    font-size: 20px;
    font-weight: 600;
}
.introduction.section .tag-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.introduction.section .tags{
    text-align: left;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.introduction.section .image-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}
.introduction.section .image-wrapper > img{
    position: relative;
    width: 100%;
}
.introduction.section .contents-wrapper{
    display: grid;
    gap: 20px;
    
}
.introduction.section .contents-wrapper .title-wrapper{
    display: flex;
    justify-content: center;
}
.introduction.section .contents-wrapper .title-wrapper .title{
    text-align: left;
    margin: 0 auto;
}
.introduction.section .contents-wrapper .text-wrapper .text{
    font-size: 16px;
}
.introduction.section .contents-wrapper .movie-wrapper{
    margin: 2rem auto;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.introduction.section .contents-wrapper .movie-wrapper .movie{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.introduction.section .contents-wrapper .movie-wrapper .movie > iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (min-width: 769px){
    .introduction.section .contents-wrapper .movie-wrapper{
        max-height: 530px;
    }
    .introduction.section .contents-wrapper .movie-wrapper .movie > iframe{
        top: 50%;
        left: 50%;
        max-width: 910px;
        max-height: 530px;
        transform: translate(-50%, -50%);
    }
}
/* -- introduction section */

/* qa section -- */
.qa.section{
}
.qa.section .question-wrapper{
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 20px;
}
.qa.section .question-wrapper .label{
    font-family: "Corbel";
    font-weight: 600;
    font-size: 24px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #3db134;
    color: #ffffff;
}
.qa.section .question-wrapper .text{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.2px;
    display: flex;
    justify-content: start;
    align-items: center;
    color: #3db134;
}
.qa.section .answer-wrapper{
    display: grid;
    grid-template-areas:
        "image"
        "text";
    gap: 20px;
}
.qa.section .answer-wrapper .text-wrapper{ grid-area: text; }
.qa.section .answer-wrapper .image-wrapper{ grid-area: image; }

@media (min-width: 769px){
    .qa.section{
        gap: 30px;
    }
    .qa.section .answer-wrapper{
        grid-template-areas:
            "text image";
        grid-template-columns: 2fr 1fr;
    }
}
/* -- qa section */



.bottom-btn-wrapper{
    position: fixed;
    width: 100%;
    bottom: 0px;
    background: #fff;
    padding: 30px 0px;
    z-index: 99;
}
.btn-box{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
}
.btn-box > a{
    font-family: "YuGothic Bold", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 30px) / 3);
    margin-right: 10px;
    border: 1px solid #3eb134;
    color: #3eb134;
    padding: 11px 10px 8px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.btn-box > a:first-child{
    color: #fff;
    background: #ee7300;
    border: 1px solid transparent;
}
@media (min-width: 769px){
    .btn-box > a{
        width: calc((100% - 90px) / 3);
        margin-right: 30px;
        font-size: 14px;
        padding: 15px 0px 12px;
    }
}

.bottom-btn-height-reflection{
    height: 125px;
}
@media (min-width: 769px){
    .bottom-btn-height-reflection{
        height: 110px;
    }
}


.footer{
    margin-top: 90px;
}
@media (min-width: 769px){
    .footer{
        margin-top: 150px;
    }
}