/* 공통디자인 */
body {
    font-family: 'NanumSquare', sans-serif;
    color: #3e3e39;
}
* {
    box-sizing: border-box;
}
.cont-inner {
    padding: 0 2rem 3rem;
}
#wrap {
    padding-bottom: 5rem;
}

/* index */
#indexLoadImg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #fff;
}
.indeximg-area {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translate(-50%);
    width: 95%;
}
.indexImg {
    width: 100%;
}
.index-text {
    font-family: 'NanumSquareNeo';
    position: absolute;
    font-size: 2.5rem;
    top: 30%; left: 50%;
    transform: translateX(-50%);
    line-height: 1.6;
}
.index-text strong {
    font-size: 4.5rem;
    font-weight: 900;
}
.indexText {
    position: absolute;
    display: inline-block;
    background: #90CC3C;
    color: #fff;
    font-size: 1.8rem;
    padding: 1rem 3rem;
    text-align: center;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.17) 4px 4px 5px;
}

/* header */
.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7.5rem;
    padding: 0 2rem;
}
.logo img {
    width: 100%;
}
.prevBtn {
    display: block;
    width: 1.2rem;
}
.logoBtn {
    display: block;
    width: 7.5rem;
}
.homeBtn {
    display: block;
    width: 2.5rem;
}

/* text_header */
.text_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
    padding: 0 2rem;
}
.text_header img {
    width: 100%;
}
.prevBtn {
    display: block;
    width: 1.2rem;
}
.logo_title {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.1rem;
}
.homeBtn {
    display: block;
    width: 2.3rem;
}
/* home */
.topInner {
    padding: 1.5rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.topInner > li {
    width: calc(100% / 2 - 0.5rem);
    margin-bottom: 1rem;
}
.topInner > li a {
    display: block;
}
.topInner > li a img {
    width: 100%;
    border: 1px solid #E6E5E5;
    border-radius: .71rem;
    box-shadow: rgba(0, 0, 0, 0.05) 1.95px 1.95px 5px;
}
.midInner {
    padding: 0 2rem 1rem;
}
.midInner > li {
    margin-bottom: 1.5rem;
}
.midInner > li a {
    display: block;
}
.midInner > li a img {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 3px;
    border-radius: 0.5rem;
}
.news-area > li{
    position: relative;
    padding: 0 2rem;
}
.newsLink {
    display: flex;
    gap: 1rem;
}
.newsLink img {
    display: block;
    width: 49%;
}
.newsLink .news-text {
    width: 49%;
}
.main_text {
    font-size: 1.7rem;
    font-weight: 700;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}
.date {
    font-size: 1.3rem;
}
.moreBtn {
    position: absolute;
    right: 2rem; bottom: 0;
    display: block;
    font-size: 1.5rem;
    background: #DCDDDD;
    padding: .5rem 1rem;
    border-radius: .5rem;
}
.btmInner {
    padding: 3rem 2rem;
}
.btmInner > li a img {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.08) 1.95px 1.95px 3px;
    border-radius: .5rem;
}
/* info */
.info-cont {
    display: block;
    margin: 1.5rem 2rem;
    padding: 1.5rem;
    border: 1px solid #C4C5C5;
    border-radius: 1rem;
}
.infoTitle {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #4E4C4C;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E3E4E4;
}
.infoTitle img {
    display: block;
    width: 4rem;
    margin-right: 1.5rem;
}
.infoText {
    font-size: 1.5rem;
    line-height: 1.4;
    padding-top: 1.5rem;
    white-space: pre-wrap;
}
.point3 {
    font-size: 1.6rem;
    font-weight: 800;
}
/* change */
.tip_box {
    margin: 1.5rem 2rem;
    border: 1px solid #E2E3E3;
    border-radius: 1rem;
    padding: 1.5rem;
}
.tip_box.open {
    background: rgba(144, 204, 60, 0.15);
}
.title_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tip_box.open .title_inner {
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
}
.tip_title {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.3;
    max-width: 28rem;
}
.ctip_box.open .change_title {
    line-height: 1.3;
}
.title_inner i {
    display: block;
    width: 1.3rem; height: 1.3rem;
    background: url(../img/down.png) no-repeat center/contain;
}
.tip_box.open .title_inner i {
    display: none;
}
.tip_cont {
    font-size: 1.5rem;
    line-height: 1.4;
    display: none;
}
.tip_box.open .tip_cont {
    display: block;
    padding-top: 1.5rem;
}
.tip_cont .point2 {
    font-size: 1.5rem;
    font-weight: 700;
}
/* application */
.appliInner {
    padding: 3rem 0;
}
.appli-title {
    padding: 0 2rem;
    font-size: 1.8rem;
    font-weight: 800;
}
.appli-img {
    display: block;
    margin: 4rem auto 2rem;
    width: 70%;
}
.appli-text {
    width: 100%;
    text-align: center;
}
.appli-sub_title {
    font-size: 2rem;
    font-weight: 800;
    color: #454141;
    padding-top: 1rem;
}
.appli-cont {
    font-size: 1.7rem;
    color: #454141;
    padding: 1.5rem 0;
}
.appli_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.2) 1.95px 1.95px 3px;
    margin: 1.5rem 2rem;
    font-size: 1.9rem;
    padding: 1.8rem 1.5rem;
    border-radius: 1rem;
}
.appli_btn.btn1 {
    background: #90CC3C;
    color: #fff;
    font-weight: 700;
}
.appli_btn.btn2 {
    background: #595757;
    font-weight: 700;
    color: #fff;
}
.appli_btn img {
    width: 2rem;
}
/* news */
.news-text-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 49%;
}
.news-inner {
    margin-bottom: 1.5rem;
}
.news-inner .news-img {
    width: 49%;
    height: 10rem;
}
/* qna */
.qna_box {
    margin: 0 2rem ;
    border: 1px solid #F3F3F3;
    border-bottom: none;
}
.qna_box.open {
    background: #EEF7E2;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border: none;
}
.question_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #F3F3F3;
}
.qna_box.open .question_inner{
    border-bottom-color: #fff;
}
.question {
    font-size: 1.7rem;
    line-height: 1.3;
    font-weight: 700;
    max-width: 26rem;
}
.qna_box.open .question {
    color: #606060;
    font-weight: 800;
}
.question_inner i {
    display: inline-block;
    background: url(../img/down.png) no-repeat center/contain;
    width: 1.2rem; height: 1.2rem;
}
.qna_box.open .question_inner i {
    background-image: url(../img/up.png);
}
.answer {
    display: none;
    font-size: 1.5rem;
    padding: 1.5rem;
    line-height: 1.4;
}
.qna_box.open .answer {
    display: block;
}

@media screen and (min-width: 280px) and (max-width: 310px) {
    .logo_title {
        font-size: 1.7rem;
    }
    .tip_title {
        max-width: 19rem;
    }
    .question {
        max-width: 19rem;
    }
}