/* 공통 디자인 */
body {
    font-family: 'NanumSquareNeo', sans-serif;
    color: #333;
}
* {
    box-sizing: border-box;
}
main {
    padding: 9rem 1.5rem 3rem;
}
/* header */
header {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    background: #fff;
    z-index: 999;
}
header a {
    display: block;
    height: 4.5rem;
}
header a img {
    height: 100%;
}
.index header .back {
    display: none;
}
.back {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.back .back_ico {
    display: block;
    width: 1.8rem; height: 1.8rem;
    background: url(../img/arrow-1.png) no-repeat center/contain;
}
.back .header_tit {
    font-size: 1.7rem;
}


/* index */
.index_banner {
    display: block;
    margin-bottom: 3.5rem;
}
.index_banner img {
    width: 100%;
    display: block;
}
.index_slide {
    margin-bottom: 3.5rem;
}
.index_tit {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.homeSlide .banner {
    background: #FEF5F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 1.5rem;
    padding: 1.5rem 0;
}
.homeSlide .banner img {
    display: block;
    height: 5rem;
    margin-bottom: 1.5rem;
}
.homeSlide .banner .tit {
    font-size: 1.7rem;
}
.homeSlide .banner .tit b {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #E9383E;
    margin-top: .5rem;
}
.index_qna > .index_tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.index_qna > .index_tit a {
    font-size: 1.6rem;
    color: #EB6260;
}
.index_qna > a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #FEF5F5;
    border: .1rem solid #EA444A;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.index_qna > a p {
    font-size: 1.8rem;
    font-weight: 600;
}
.index_qna > a .ico {
    display: block;
    width: 4rem; height: 4rem;
    background: url(../img/arrow-6.png) no-repeat center/contain;
}

/* home */
.main_tit {
    font-size: 2rem;
    color: #EA3F45;
    font-weight: 600;
    margin-bottom: 3rem;
}
.home-img {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}
.home-img img {
    width: 90%;
}
.home_pre {
    display: block;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #585858;
    word-break: break-all;
    margin-bottom: 2rem;
}
.dot_ico {
    position: relative;
    height: 6rem;
}
.dot_ico::before {
    content: '';
    position: absolute;
    width: 49.9%; height: 95%;
    background: transparent;
    display: block;
    left: 0; top: 0;
    border-right: .2rem dotted #EA4248;
}
/* .dot_ico .box {
    position: relative;
    width: 50%;
    height: 100%;
    border-right: .2rem dotted #EA4248;
} */
.dot_ico:after {
    position: absolute;
    content: '';
    width: 1rem; height: 1rem;
    border-radius: 50%;
    background: #EA4248;
    left: 50%; bottom: 0;
    transform: translateX(-50%);
}
.link_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EB615F;
    border-radius: 1rem;
    text-align: center;
    padding: 2rem 0;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    gap: 1rem;
}
.red_btn {
    margin-top: 2rem;
}
.link_btn .arrow {
    display: block;
    width: 2.7rem; height: 2.7rem;
    background: url(../img/arrow-4.png) no-repeat center/contain;
}


/* qna */
.qna_box {
    border: .1rem solid #EA4248;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}
.question_inner {
    background: #FEF5F5;
    padding: 1.5rem;
    /* border-top-left-radius: 1rem;
    border-top-right-radius: 1rem; */
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.qna_box.open .question_inner {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: .1rem solid #EA4248;
}
.ques_box {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.question_inner .question {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.1rem;
    max-width: 23rem;
}
.question_inner .ques_ico {
    display: block;
    width: 4rem; height: 4rem;
    background: url(../img/arrow-6.png) no-repeat center/contain;
}
.question_inner .q_ico {
    display: block;
    width: 2rem; height: 2rem;
    background: url(../img/arrow-3.png) no-repeat center/contain;
}
.qna_box.open .question_inner .q_ico {
    background-image: url(../img/arrow-2.png);
}
.qna_box .answer {
    display: none;
    padding: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.4;
}
.qna_box.open .answer {
    display: block;
}

/* vs */
.vs_img {
    display: block;
    width: 100%;
}
.vs_title {
    font-size: 1.8rem;
    color: #EA4046;
    font-weight: 600;
    padding: 4rem 0 1.5rem;
}
.vs_sub_tit {
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: .5rem;
}
.vs_cont {
    font-size: 1.6rem;
    color: #515151;
    line-height: 1.4;
    padding-bottom: 1.5rem;
}
.dot_ico.vs {
    margin-top: 3rem;
}
.gre_btn {
    background: #59C48F;
    margin-top: 2.5rem;
}
.gre_btn.link_btn .arrow {
    background-image: url(../img/arrow-5.png);
}

/* sub */
.sub_title {
    position: relative;
    font-size: 1.7rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: .1rem solid #EA484E;
    border-radius: 1.5rem;
    padding: .7rem 1.5rem;
    background: #FEF5F5;
    font-weight: 600;
    margin-left: 2rem;
}
.sub_title img {
    height: 3rem;
}
.sub_title.D img {
    height: 2.5rem;
}
.contents {
    background: #F4F4F6;
    border-radius: 1rem;
    font-size: 1.6rem;
    padding: 4rem 2rem 1.5rem;
    margin-top: -20px;
    margin-bottom: 3rem;
    line-height: 1.4;
}

@media screen and (min-width: 280px) and (max-width: 345px) {
    .question_inner .question { 
        max-width: 21rem;
    } 
}