/* section default */
.section{
    position: relative;
    display: grid;
    gap: 30px;
    width: 90%;
    max-width: 1093px;
    margin: 2rem auto 3rem 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: 4rem;
    }
    .title.section .subtitle{
        margin-top: 0;
    }
    .title.section .image-wrapper{
        position: absolute;
        right: 2%;
        top: -50px;
        width: 180px;
    }
}

/* qa section -- */
.qa.section{
    gap: 40px;
}
.qa.section .content .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%;
}
.qa.section .content .text{
    letter-spacing: 1.2px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.qa.section .content{
    border-top: solid 1px #3db134aa;
    border-bottom: solid 1px #3db134aa;
}
.qa.section .content:first-child{
    border-top: solid 2px #3db13490;
}
.qa.section .content:last-child{
    border-bottom: solid 2px #3db13490;
}
.qa.section .content .label > span{
    transform: scaleX(1.1);
}
.qa.section .content .separator{
    border: dashed 1px #3db134;
    transform: scaleY(0.8);
    opacity: 1;
}
.qa.section .content .separator.hide{
    opacity: 0;
    z-index: -2;
}
.qa.section .content .question-wrapper{
    display: grid;
    grid-template-columns: min-content 1fr min-content;
    gap: 20px;
    margin: 30px 0;
}
.qa.section .content .question-wrapper > .label{
    background-color: #3db134;
    color: #ffffff;
}
.qa.section .content .question-wrapper > .text{
    text-align: left;
}
.qa.section .content .question-wrapper > .open-btn{
    width: 25px;
    margin-right: 10px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.qa.section .content .question-wrapper > .open-btn > span{
    display: block;
    content: "";
    transform: rotate(-45deg) matrix(1, 0.45, 0.45, 1, 0, 0);
    border-top: 6px solid #3db134;
    border-right: 6px solid #3db134;
    width: 12px;
    height: 12px;
    position: relative;
}
.qa.section .content .question-wrapper > .open-btn.deactive > .icon{
    transform: rotate(135deg) matrix(1, 0.45, 0.45, 1, 0, 0);
}
.qa.section .content .answer-wrapper{
    display: grid;
    grid-template-columns: min-content 1fr min-content;
    gap: 20px;
    margin: 30px 0;
    height: max-content;
    z-index: -2;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0s ease, transform 0.3s ease, height 0.1s ease;
}
.qa.section .content .answer-wrapper.hide{
    opacity: 0;
    height: 0;
    transform: translateY(-30px);
    margin: 0;
}
.qa.section .content .answer-wrapper.hide > div{
    display: none;
}
.qa.section .content .answer-wrapper > .label{
    background-color: #fff100;
    color: #3db134;
}
.qa.section .content .answer-wrapper > .text{
    text-align: left;
}
.qa.section .content .answer-wrapper > .dummy-elem{
    width: 12px;
    height: 12px;
}
/* -- qa section */

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