/* 공통 디자인 */
body {
    font-family: 'NanumSquareNeo', sans-serif;
    color: #333;
}
html{
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
main {
    padding: 8rem 1.5rem 2rem;
}
.no-scroll {
    overflow: hidden;
    height: 100%;
}
.main_tit {
    font-size: 2rem;
    font-weight: 800;
    color: #007AFF;
    padding-bottom: 2.5rem;
}
/* index */

#indexLoadImg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #007AFF;
}
#indexLoadImg .logo {
    position: absolute;
    display: block;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
}

/* header */
.header_main {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 6rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 990;
}
.header_main a {
    display: block;
    height: 3rem;
}
.header_main a img {
    display: block;
    height: 100%;
}
.header_main .menu_ico {
    position: absolute;
    right: 1.5rem; top: 50%;
    transform: translateY(-50%);
    width: 2.5rem; height: 2.5rem;
    background: url(../img/menu.png) no-repeat center/contain;
}
.header_main .menu_ico:after {
    position: absolute;
    display: block;
    content: '';
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 4rem; height: 4rem;
    background: transparent;
}
.back {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: 995;
    display: none;
}
.back.open {
    display: block;
}
nav {
    position: fixed;
    right: -66%; top: 0;
    width: 65%; height: 100vh;
    background: #fff;
    z-index: 999;
    overflow-y: scroll;
    transition: .3s;
}
nav.open {
    right: 0;
}
.nav_logo {
    text-align: right;
    padding: 1.5rem;
}
.nav_logo .close_ico {
    position: relative;
    display: inline-block;
    width: 1.8rem; height: 1.8rem;
    background: url(../img/close.png) no-repeat center/contain;
}
.nav_logo .close_ico::after {
    position: absolute;
    display: block;
    content: '';
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 4rem; height: 4rem;
    background: transparent;
}
.nav_menu {
    padding: 1.5rem 0;
}
.nav_menu li .toggle {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0075FF;
}
.nav_menu li .toggle .header_arrow {
    display: block;
    width: 1.1rem; height: 1.1rem;
    background: url(../img/sub-arrow-down.png) no-repeat center/contain;
}
.nav_menu li .toggle.open .header_arrow {
    background-image: url(../img/sub-arrow-up.png);
}
.header_sub {
    display: none;
    background: #EAF5FF;
    padding: 1.5rem;
}
.header_sub.open {
    display: block;
}
.header_sub .black {
    font-size: 1.7rem;
    font-weight: 600;
}
.header_sub .black.padding {
    padding: 2rem 0 3rem;
}
.header_sub .black.margin {
    margin: 2rem 0;
}
.header_sub > a {
    display: block;
}
.header_sub .border {
    position: relative;
    padding: .7rem 0 .7rem 2rem;
    font-size: 1.6rem;
    color: #414140;
}
.header_sub .border::before {
    position: absolute;
    display: block;
    content: '';
    width: 1rem; height: .1rem;
    background: #464646;
    left: .5rem; top: 50%;
    transform: translateY(-50%);
}
.header_sub .border::after {
    position: absolute;
    display: block;
    content: '';
    width: .1rem; height: 2.9rem;
    background: #464646;
    top: -1.4rem; left: .5rem;
}
.header_sub .border .one {
    position: absolute;
    display: block;
    width: .4rem; height: .4rem;
    background: #464646;
    border-radius: 50%;
    left: 1.3rem; top: 50%;
    transform: translateY(-50%);
}

/* home */
.home_top {
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home_top .left {
    width: 55%;
}
.home_top .left p {
    font-size: 1.8rem;
}
.home_top .left img {
    display: block;
    width: 100%;
    margin: 1rem 0 2.5rem;
}
.home_top .left a {
    display: inline-block;
    background: #EAF5FF;
    border-radius: 2rem;
    color: #0074FF;
    font-size: 1.6rem;
    font-weight: 600;
    border: .1rem solid #007AFF;
    padding: .5rem 1.5rem;
}
.home_top .home_img_box {
    width: 35%;
}
.home_top .home_img_box img {
    width: 100%;
}
.home_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 28.5rem;
}
.home_btn .left{
    background-color: #007AFF;
    border-radius: .7rem;
    padding: 1.5rem 1rem;
    width: 45%; height: 100%;
    position: relative;
}
.home_btn .left img {
    display: block;
    position: absolute;
    left: 1.5rem; bottom: 2.5rem;
    width: 100%;
}
.home_btn .big_tit {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}
.home_btn .s_tit {
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 1.5rem 0;
    color: #fff;
    letter-spacing: -.1rem;
}
.home_btn .right {
    width: 52%;
}
.home_btn .right li {
    margin-bottom: 1rem;
    border-radius: .7rem;
}
.home_btn .right li:first-child {
    background: #71B5FC;
}
.home_btn .right li:nth-child(2) {
    background: #88CBFC;
}
.home_btn .right li:nth-child(3) {
    background: #A1DBFF;
    margin-bottom: 0;
}
.home_btn .right li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.65rem 1.5rem;
}
.home_btn .right li a img {
    display: block;
    height: 5.5rem;
}
.home_btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: #EAF5FF;
    border-radius: .7rem;
}
.home_btm .left p {
    font-size: 2rem;
    font-weight: 800;
    color: #007AFF;
    padding-bottom: 1rem;
}
.home_btm .left span {
    font-size: 1.6rem;
    line-height: 1.3;
    letter-spacing: -.1rem;
}
.home_btm img {
    display: block;
    height: 9rem;
}



/* sale_tab */
.tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tabs li {
    text-align: center;
    border-top: .1rem solid transparent;
    border-bottom: .1rem solid transparent;
}
.tabs.sale li {
    width: calc(100% / 3);
}
.tabs.sale li a {
    display: block;
    border-bottom: .1rem solid #0071FF;
    padding: 1rem 0;
    font-size: 1.7rem;
    font-weight: 600;
}
.tabs.sale li.on a {
    border-bottom: .1rem solid transparent;
    border-left: 1px solid #0071FF;
    border-right: 1px solid #0071FF;
    border-top: 1px solid #0071FF;
    color: #007AFF;
}
.tab_tit {
    padding-top: 3rem;
    font-size: 1.8rem;
    font-weight: 800;
}
.tab_sub {
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 1.5rem;
    padding-top: 2rem;
}
.tab_cont {
    font-size: 1.6rem;
    line-height: 1.3;
    color: #484848;
    padding-bottom: 2rem;
    border-bottom: .6rem solid #EAF5FF;
}
.tab_cont.A3 {
    border-bottom: none;
}
.tab_cont.B3 {
    border-bottom: none;
}
.tab_cont.C3 {
    border-bottom: none;
}
.tab_cont .point3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0070FF;
}

/* toggle */
.toggle_cont {
    font-size: 1.6rem;
    color: #484848;
    line-height: 1.3;
    padding-bottom: 3rem;
}
.toggle_box {
    margin-bottom: 2rem;
}
.toggle_inner {
    background: #EAF5FF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
}
.toggle_inner .que {
    font-size: 1.7rem;
    font-weight: 800;
    color: #007AFF;
}
.toggle_inner .arrow {
    display: block;
    width: 1.5rem; height: 1.5rem;
    background: url(../img/sub-arrow-down.png) no-repeat center/contain;
}
.toggle_box.open .toggle_inner .arrow {
    background-image: url(../img/sub-arrow-up.png);
}
.ans {
    display: none;
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 1rem;
    color: #484848;
    word-break: break-all;
}
.toggle_box.open .ans {
    display: block;
    border: .1rem solid #EAF5FF;
}


/* back_tab */

.tabs.bank li {
    width: calc(100% / 4);
}
.tabs.bank li a {
    display: block;
    border-bottom: .1rem solid #0071FF;
    padding: 1rem 0;
    font-size: 1.7rem;
    font-weight: 600;
}
.tabs.bank li.on a {
    border-bottom: .1rem solid transparent;
    border-left: 1px solid #0071FF;
    border-right: 1px solid #0071FF;
    border-top: 1px solid #0071FF;
    color: #007AFF;
}
.tab_tit.bank {
    padding-bottom: 2.5rem;
}
.tab_cont .point2 {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 1rem;
}
.tab_cont.bank.A1 {
    scroll-margin-top: 120px;
    border-bottom: none;
}
main .tab_cont.bank.A1:nth-child(5) .point2 {
    padding-top: 2rem;
}
.go_banner {
    display: block;
    background-color: #007AFF;
    border-radius: .7rem;
    padding: 1.5rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    background-image: url(../img/sub-banner-icon.png);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: 6.5rem;
    margin: 3rem 0;
}
.tab_cont.bank.A2 {
    scroll-margin-top: 150px;
}
.tab_cont.bank.A3 {
    border-bottom: .6rem solid #EAF5FF;
    scroll-margin-top: 200px;
}
.tab_cont.bank.A4 {
    border-bottom: none;
}


/* rent_tab */
.tabs.rent li {
    width: calc(100% / 4);
}
.tabs.rent li a {
    display: block;
    border-bottom: .1rem solid #0071FF;
    padding: 1rem 0;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
}
.tabs.rent li.on a {
    border-bottom: .1rem solid transparent;
    border-left: 1px solid #0071FF;
    border-right: 1px solid #0071FF;
    border-top: 1px solid #0071FF;
    color: #007AFF;
}
.tab_tit.rent {
    padding-bottom: 2.5rem;
}
.tab_cont.rent {
    border-bottom: none;
}
main .tab_cont.rent.B1 {
    padding-bottom: 3rem;
}
main .tab_cont.rent:nth-child(7) {
    border-bottom: .6rem solid #EAF5FF;
}
main .tab_cont.rent:nth-child(11) {
    border-bottom: .6rem solid #EAF5FF;
}
main .tab_cont.rent:nth-child(13) {
    border-bottom: .6rem solid #EAF5FF;
}
.tab_cont.rent.B1 {
    scroll-margin-top: 150px;
}
.tab_cont.rent.B2 {
    scroll-margin-top: 200px;
}
.tab_cont.rent.B3 {
    scroll-margin-top: 220px;
}


/* sub */
.sub_area {
    position: relative;
}
.sub_area::after {
    position: absolute;
    content: '';
    display: block;
    width: .4rem; height: 72.5%;
    background: #EAF5FF;
    left: 1.5rem; top: 2rem;
    z-index: -1;
}
.flex_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.img_box {
    width: 3.5rem; height: 3.5rem;
    background: #EAF5FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img_box img {
    display: block;
    height: 2rem;
}
.flex_box .right {
    width: 87%;
}
.flex_box .right .sub_tit{
    font-size: 1.7rem;
    font-weight: 600;
}
.flex_box .right .sub_cont {
    font-size: 1.6rem;
    color: #484848;
    line-height: 1.4;
    padding: 1rem 0 3.5rem;
    word-break: break-all;
}



@media screen and (min-width: 768px) and (max-width: 1023px) {
    .home_btn .left img { 
        bottom: 1rem;
    } 
}
@media screen and (min-width: 1024px){
    .home_btn .left img { 
        width: 60%;
        bottom: 1rem;
        left: 3rem;
    } 
}