@import url(../css/root.css);

/* ms6 */
#ms6 {
    border-top: 1px solid #ddd;
}

/* stit */
.stit .tt {
    display: inline-block;
    background-color: #fff6f6;
    color: var(--main-color);
    border-radius: 10px;
    padding: 5px 30px;
}
/* subtop */
#subtop {
    position: relative;
    overflow: hidden;
}
#subtop > .brWrp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* border-radius: 0 0 0 100px; */
    z-index: -1;
}
#subtop > .brWrp > .bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover !important;
}
#subtop .fbox {
    height: 350px;
}
#subtop .fbox h1 {
    line-height: 1.1em;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,1);
}
#subtop .fbox h1 strong {
    color: #fff;
}
@media (max-width:992px) {
    #subtop > .brWrp {
        border-radius: 0;
    }
    #subtop .fbox {
        height: 300px;
    }
    #subtop .fbox h1 {
        font-size: 40px;
    }
}
@media (max-width:768px) {
    #subtop {
        background-size: cover !important;
    }
    #subtop .fbox h1 {
        font-size: 30px;
    }
}

/* sitecon */
.sitecon {
    display: inline-block;
}
.sitecon .dashed {
    height: 10px;
    width: 1px;
    background-color: rgba(255,255,255,.3);
    margin: 0 15px;
    display: inline-block;
}


/* hrDvd */
.hrDvd {
    background: linear-gradient(to right, #fff, #aaa, #fff);
    height: 1px;
    width: 100%;
    margin: 50px 0;
}
/* sub1 */
#sub1 .sec1 {
    background: url(../img/sub1_bg1.png) right top no-repeat;
}

/* prBoxs */
.prBoxs > div {
    padding: 15px;
}
.prBoxs .item {
    height: 220px;
    padding: 15px 45px;
    border-radius: 15px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    background-color: #fcfcfc;
}
.prBoxs .item .icon {
    width: 65px;
}
.prBoxs .item .tcon {
    width: calc(100% - 65px);
    padding-right: 30px;
}
@media (max-width:768px) {
    .prBoxs > div {
        padding: 5px;
    }
    .prBoxs .item {
        height: auto;
        padding: 35px 20px;
        border-radius: 10px;
    }
    .prBoxs .item .icon {
        width: 45px;
    }
    .prBoxs .item .tcon {
        width: calc(100% - 45px);
    }
    .prBoxs .item .tcon br {
        display: none;
    }
}




/* faq */
#qnaWrp .qnaItem {
    position: relative;
}
#qnaWrp .qnaItem + .qnaItem {
    margin-top: 15px;
}
#qnaWrp .qnaItem:last-child {
    border-bottom-width: 2px;
}
#qnaWrp .qnaItem > div {
    position: relative;
    padding: 20px;
}
#qnaWrp .qnaItem .qna_a {
    background-color: #fff;
}
#qnaWrp .qnaItem .qna_q {
    padding: 20px 60px;
    cursor: pointer;
    background-color: #e8e8e8;
}
#qnaWrp .qnaItem .qna_q .actBtn {
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 0;
    height: 100%;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#qnaWrp .qnaItem.act .qna_q .actBtn {
    transform: rotate(180deg);
}
#qnaWrp .qnaItem .qna_q h3 {
    font-weight: 700;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
#qnaWrp .qnaItem .qna_q h4 {
    margin-bottom: 0px;
}
#qnaWrp .qnaItem .qna_q h3,
#qnaWrp .qnaItem .qna_q h4 {
    color: #666;
    line-height: 1.3em;
}
#qnaWrp .qnaItem.act .qna_q {
    background-color: #444243;
}
#qnaWrp .qnaItem.act .qna_q h3,
#qnaWrp .qnaItem.act .qna_q h4 {
    color: #fff;
}
@media (max-width:768px){
    #qnaWrp .qnaItem .qna_q {
        padding: 15px 40px;
        padding-right: 35px;
    }
    #qnaWrp .qnaItem .qna_q h3 {
        left: 15px;
    }
    #qnaWrp .qnaItem .qna_q .actBtn {
        background-size: 10px !important;
        right: 10px;
    }
}