@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/***** 지점 이동 버튼 ::: 23-12-14 *****/
.rightMenu{position:absolute; top:32px; right:150px; transition: 0.3s; -webkit-transition: 0.3s;}
/* Dropdown Button */
.dropbtn {
    display: inline-block;
    padding: 0 30px 0 20px;
    border-radius: 190px;
	color: #0C82FE;
	font-size: 17px;
    line-height: 38px;
    height: 38px;
    border: 1px solid #A4D0FF;
    background: #F0F7FF;
    vertical-align: middle;
	background: url(/design/default/images/arrow_down_blue.png) center no-repeat;
	background-size: 10px 6px;
	background-position: right 13px top 15px;
}

/* .dropbtn::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 6px;
    background-size: contain;
    vertical-align: 4px;
    margin-left: 12px;
    transition: all .1s;
} */

.dropbtn:hover, .dropbtn:focus {
	background:#F0F7FF url(/design/default/images/arrow_down_blue2.png) center no-repeat;
    background-size: 10px 6px;
	background-position: right 13px top 15px;
}

.dropdown {
  position: relative;
  display: inline-block; 
  padding-left:10px;
}

.dropdown-content {
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999999;
    border-radius: 10px;
    border: 1px solid #A4D0FF;
    background: #F0F7FF;
	color: #0C82FE;
    padding: 8px 4px;
    display: none;
}

.dropdown-content2 {
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999999;
    border-radius: 10px;
    border: 1px solid #A4D0FF;
    background: #F0F7FF;
	color: #0C82FE;
    padding: 8px 4px;
    display: none;
}

.dropdown-content a {
    display: block;
    padding: 6.5px 0;
    text-align: center;
    white-space: nowrap;
}

.dropdown a:hover {background-color: #D6EAFF;}

.show {display: block;}
.input_box select{
	height: 42px;
    line-height: 42px;
}

@media screen and (max-width:1024px){
	.rightMenu{display:none;}
	.spotWrap {}
	.spotWrap li {float:left; margin-right:10px;}
	.spotWrap li.spot-btn {width:90px; height:35px; line-height:35px; font-size:14px; box-sizing: border-box; border-radius: 60px; border: 1px solid #A4D0FF; background: #F0F7FF; color: #0C82FE; text-align:center;}
	.dropdown { padding-left:0px; margin-left:3px; }
	.dropbtn {
		padding: 0 20px 0 10px;
		border-radius: 190px;
		font-size: 12px;
		line-height: 30px;
		height: 30px;
		background-size: 10px 6px;
		background-position: right 6px top 13px;
	}

	.dropbtn:hover, .dropbtn:focus {
		background-size: 10px 6px;
		background-position: right 6px top 13px;
	}
	.dropdown-content2 {
		top: 32px;
	}
	.dropdown-content a {
		padding: 6px 0;
		font-size:12px;
	}

}

@media screen and (max-width:480px){
	.spotWrap {padding-top:5px;}
	.spotWrap li {float:left; margin-right:5px; }
	.spotWrap li.spot-btn {width:70px; height:35px; line-height:35px; font-size:14px; border-radius: 40px; }
}

/***** 지점 이동 버튼 ::: 23-12-14 *****/

/* 메인 상담신청 ::: appointment */
.appointment input[type="checkbox"] {
    display: inline-block;
    appearance: none;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
}

.appointment input[type="checkbox"] + label {
    display: inline-block;
    width: 26px;
    height: 26px;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.appointment input[class="agree"] + label::before {
    content: '';
    display: inline-block;
    line-height: normal;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 4px;
    text-align: center;
}

.appointment input[class="agree"]:checked + label::before {
    /* content:'✔'; color: #0083d2; */
    background-color: #0C82FE;
    background-image: url(/design/default/images/btn_check_wht.png);
    background-repeat: no-repeat;
    background-size: 14px 10px;
    background-position: center;
}

.appointment {
    width: 80%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 15px 3%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    border-radius: 20px 20px 0 0;
    transition: all .2s;
}

.appointment.off {
    display: none;
}

.appointment .inner form {
    display: flex;
    align-items: center;
    gap: 40px;
}

.appointment .inner form .tab_ver {
    width: calc(100% - 170px);
    display: flex;
    align-items: center;
    gap: 12px;
}

.appointment .inner form h3 {
    font-size: 22px;
    line-height: normal;
    letter-spacing: -1px;
    color: #fff;
	font-weight:700;
}

.appointment .inner form ul {
    display: flex;
    align-items: center;
}

.appointment .inner form ul.input_box {
    width: 40%;
    gap: 8px;
}

.appointment .inner form ul.input_box li:nth-child(1) {
    width: 35%;
}

.appointment .inner form ul.input_box li:nth-child(2) {
    width: 65%;
}

.appointment .inner form ul.input_box li input {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px;
    outline: none;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -1px;
    color: #161718;
    vertical-align: middle;
    box-sizing: border-box;
}

.appointment .inner form ul.input_box li input::placeholder {
    color: #777C81;
}

.appointment .inner form ul.input_box li .hidden {display:none;}

.appointment .inner form ul.agree_box {
    width: 60%;
    justify-content: space-between;
    gap: 12px;
}

.appointment .inner form ul.agree_box li:first-child {
    min-width: 280px;
    position: relative;
}

.appointment .inner form ul.agree_box label {
    font-size: 18px;
    line-height: 1.2em;
    letter-spacing: -1px;
    color: #fff;
}

.appointment .inner form ul.agree_box a {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5em;
    letter-spacing: -1px;
    color: #fff;
    white-space: nowrap;
    vertical-align: top;
    position: relative;
}

.appointment .inner form ul.agree_box a::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.appointment .inner form ul.agree_box button {
    background: #0079cb;
    border: none;
    border-radius: 100px;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -1px;
    text-align: center;
    color: #ffffff;
    padding: 0 30px;
    line-height: 62px;
    height: 60px;
}

.appointment .inner form label span {
    display: inline-block;
    padding: 0 10px 0 6px;
    vertical-align: top;
	font-size:17px;
}

.appointment .inner form li a {
    display: inline-block;
}

.appointment .inner .close_btn {
    display: none;
}

/* PC (해상도 1740px ~ 1860px) */
@media screen and (max-width: 1860px) {
    /* appointment */ .appointment {
        width: 76%;
    }
}

/* PC (해상도 1540px ~ 1740px) */
@media screen and (max-width: 1740px) {
    /* appointment */ .appointment {
        width: 84%;
    }
}

/* PC (해상도 1058px ~ 1440px) */
@media screen and (max-width: 1440px) {
    /* appointment */ .appointment input[type="checkbox"] + label {
        width: 20px;
        height: 20px;
    }

    .appointment input[class="agree"] + label::before {
        line-height: inherit;
    }

    .appointment {
        width: 88%;
    }

    .appointment .inner form {
        gap: 20px;
        justify-content: space-between;
    }

    .appointment .inner form .tab_ver {
        width: calc(100% - 150px);
        flex-direction: column;
    }

    .appointment .inner form ul {
        display: flex;
        align-items: center;
    }

    .appointment .inner form ul.input_box {
        width: 100%;
    }

    .appointment .inner form ul.input_box li input {
        box-sizing: border-box;
    }

    .appointment .inner form ul.agree_box {
        width: 100%;
        gap: 8px;
    }

    .appointment .inner form ul.agree_box label {
        font-size: 16px;
    }

    .appointment .inner form ul.agree_box a {
        font-size: 16px;
    }

    .appointment .inner form ul.agree_box li {
        width: auto;
    }

    .appointment .inner form ul.agree_box button {
        display: block;
        width: 100%;
        padding: 0 22px;
        height: 44px;
        line-height: 44px;
        font-size: 18px;
    }

    .appointment .inner form label span {
        padding: 0 10px;
    }
}

/* 태블릿 (해상도 769px ~ 1024px) */
@media screen and (max-width: 1024px) {
    /* appointment */ .appointment {
        width: 90%;
    }
}

/* 모바일 가로, 모바일 세로 (해상도 375px ~ 768px)*/
@media screen and (max-width: 768px) {
    .appointment {
        width: 100%;
        padding: 20px 5% 40px;
        bottom: 69px;
        display: block;
    }

    .appointment.on {
        display: block;
    }

    .appointment input[type="checkbox"] + label {
        vertical-align: bottom;
    }

    .appointment .inner form {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .appointment .inner form .tab_ver {
        width: 100%;
        align-items: flex-start;
        gap: 8px;
        flex-direction: row;
    }

    .appointment .inner form h3 {
        width: 100%;
        font-size: 18px;
        line-height: 26px;
        display: none;
    }

    .appointment .inner form ul {
        flex-direction: column;
    }

    .appointment .inner form ul.input_box {
        width: 70%;
		height: 145px;
    }

    .appointment .inner form ul.input_box li:nth-child(1) {
        width: 100%;
    }

    .appointment .inner form ul.input_box li:nth-child(2) {
        width: 100%;
    }
	
	.appointment .inner form ul.input_box li:nth-child(3) {
        width: 100%;
    }
	.appointment .inner form ul.input_box li select{
		outline: none;
		font-size: 16px;
		line-height: 22px;
		letter-spacing: -1px;
		height: 42px;
		width: 100%;
	}
	
    .appointment .inner form ul.input_box li input {
        border-radius: 4px;
    }

    .appointment .inner form ul.agree_box {
        width: 30%;
        flex-direction: column-reverse;
        gap: 4px;
    }

    .appointment .inner form ul.agree_box li {
        width: 100%;
    }

    .appointment .inner form ul.agree_box li:nth-child(1) {
        position: absolute;
        bottom: -20px;
        left: 0%;
    }

    .appointment .inner form ul.agree_box label {
        font-weight: 400;
        font-size: 12px;
        line-height: 15px;
    }

    .appointment .inner form ul.agree_box a {
        font-size: 12px;
        line-height: 15px;
    }

    .appointment .inner form ul.agree_box button {
        height: 141px;
        line-height: 100px;
        font-size: 14px;
        border-radius: 4px;
        padding: 0;
    }

    .appointment .inner .close_btn {
        display: none;
        color: #fff;
        font-size: 12px;
        line-height: 15px;
        position: absolute;
        bottom: 16px;
        right: 5%;
    }

    .appointment .inner .close_btn span {
        display: inline-block;
        width: 14px;
        height: 14px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        vertical-align: middle;
        margin-right: 4px;
    }
}


/* quick & top button */
.quick {
    position: fixed;
    bottom: 265px;
    right: 0;
    z-index: 999;
}

.quick ul {
    border-radius: 18px 0 0 18px;
}

.quick ul li {
    width: 100px;
    background-color: #005e9a;
}

.quick ul li:not(:last-child) {
    border-bottom: 1px solid #62addd;
}

.quick ul li:first-child {
    border-radius: 18px 0 0 0;
}

.quick ul li:last-child {
    border-radius: 0 0 0 18px;
    background-color: #005e9a;
}

.quick ul li a {
    display: block;
    padding: 19px 0 15px;
}

.quick ul li a span {
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/*.quick ul li:nth-child(1) a span {background-image: url(../images/main/icon_quick_calender.png);}*/
.quick ul li:nth-child(2) a span {
    background-image: url(/design/default/images/sns02.png);
}

.quick ul li:nth-child(3) a span {
    background-image: url(/design/default/images/sns03.png);
}

.quick ul li:nth-child(4) a span {
    background-image: url(/design/default/images/sns04.png);
}

.quick ul li a p {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.5px;
    color: #fff; font-family: 'Noto Sans KR', sans-serif;
}

/* .quick ul li:nth-child(4) a p {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
} */

@media screen and (max-width: 1440px) {
    /* quick */
    .quick {
        bottom: 160px;
        /* right: 5%; */
    }
}

/* 모바일 가로, 모바일 세로 (해상도 375px ~ 768px)*/
@media screen and (max-width: 768px) {
    /* quick & top button */
    .quick {
        display: none;
    }

	/* 모바일일때 하단 메뉴 생김 */
    #footerMobile .mobile_menu {
        width: 100%;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 200;
        background: rgba(0, 94, 154, 0.85);
    }

    #footerMobile .mobile_menu ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #footerMobile .mobile_menu ul li {
        width: 25%;
    }

    #footerMobile .mobile_menu ul li a {
        display: block;
        text-align: center;
        color: #fff;
        font-weight: 500;
        font-size: 11px;
        padding: 12px 0;
    }

    #footerMobile .mobile_menu ul li a span {
        display: block;
        width: 24px;
        height: 24px;
        margin: 0 auto 6px;
        background-size: contain;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
}


/* 오시는 길 : 지점이동 버튼 */
.information {/* background: #EAF2FF; */}
.information .sec_cont {padding: 0px 16.66% 100px;}
.information .sec_cont h3 {font-size: 70px; font-weight: 700; line-height: 1em; letter-spacing: -1px; text-align: center;}
.information .sec_cont .select_btn {display: none;}
.information .sec_cont .branch_tab.mo_ver {display: none;}
.information .sec_cont .branch_tab.pc_ver {display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 70px;}
.information .sec_cont .branch_tab.pc_ver li a {display: block; border: 1px solid #005e9a; background-color: #fff; color: #005e9a; box-sizing: border-box;height: 60px; line-height: 60px; font-weight: 500; font-family: 'Noto Sans KR', sans-serif; font-size: 27px; letter-spacing: -1px; text-align: center; border-radius: 10px;}
.information .sec_cont .branch_tab.pc_ver li a.on {background-color: #005e9a; color: #fff;}


/* 오시는 길 : 내용 */
.branch_area {padding-top:50px;}
.branch_area .inner .branch > div {display: flex; justify-content: space-between; padding: 120px 0; border-bottom: 1px solid #DDD;}
	/* .branch_area .inner .branch > div > div {width: 49%;} */
.branch_area .inner .branch > div > div.icon_box {width: 55%;}
.branch_area .inner .branch > div > div.img_box {width: 43%;}
.branch_area .inner .branch > div:first-of-type {padding: 0 0 120px;}
.branch_area .inner .branch > div:last-of-type {padding: 120px 0 0; border-bottom: none;}
.branch_area .inner .branch .text_box h4 {font-family: 'Noto Sans KR', sans-serif; font-size: 30px; font-weight:600; line-height: 35px; color: #161718; margin-bottom: 50px;}
.branch_area .inner .branch .img_box {display: flex; flex-direction: column; justify-content: center;}
.branch_area .inner .branch .img_box img {border-radius: 20px; object-fit: contain; /* height: 100%; */}
.branch_area .inner .branch .icon_box {display: flex; margin-bottom: 50px;}
	/* .branch_area .inner .branch .icon_box {display: flex; align-items: center; margin-bottom: 50px;} */
.branch_area .inner .branch .icon_box:last-of-type {margin-bottom: 0;}
.branch_area .inner .branch .icon_box .icon_transport {display: inline-block; width: 105px; height: 105px;
    background-position: center; background-repeat: no-repeat; background-size: contain; margin-right: 10px;}
.branch_area .inner .branch .icon_box .icon_transport:last-of-type {margin-right: 0;}
.branch_area .inner .branch .icon_box .icon_text {/* width: calc(90% - 210px); */ margin-left: 20px;}
.branch_area .inner .branch .icon_box .icon_text p {font-family: 'Noto Sans KR', sans-serif; font-size: 18px; line-height: 30px; letter-spacing: 0px; padding-bottom:10px;}
.branch_area .inner .branch .icon_box .icon_text p:first-of-type {margin-bottom:15px;}
.branch_area .inner .branch .icon_box .icon_text p strong {font-family: 'Noto Sans KR', sans-serif; font-size: 22px; font-weight:700;}
.branch_area .inner .branch .icon_box .icon_text ul {display: block;} 
	/* .branch_area .inner .branch .icon_box .icon_text ul {display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;} */
.branch_area .inner .branch .icon_box .icon_text ul li {padding-bottom:20px; line-height:18px; }
.branch_area .inner .branch .icon_box .icon_text ul li strong {width:100px; display: inline-block; font-size: 18px; text-align:center; font-family: 'Noto Sans KR', sans-serif; font-weight: 500; line-height:18px; letter-spacing: -1px; border-width: 2px; border-style: solid; box-sizing: border-box; padding: 5.5px 7.5px 8.5px; border-radius: 50px; margin-right: 10px;}
.branch_area .inner .branch .btn_ytb {display: inline-block; padding: 10px 36px; font-weight: 500; font-family: 'Noto Sans KR', sans-serif; font-size: 22px; line-height: 40px; letter-spacing: -1px; color: #161718; border-radius: 75px; border: 1px solid #9b9b9b; background: #FFF; white-space: nowrap; margin-top:25px; margin-bottom:0px; max-width:450px;}
.branch_area .inner .branch .btn_ytb span {display: inline-block; width: 37px; height: 28px; background-position: center; background-repeat: no-repeat; background-size: contain; margin-left: 16px; vertical-align: sub;}


.branch_area .inner .branch .info_map > div {width: 47%;}
.branch_area .inner .branch .info_map .btn_box .map_btn {display: flex; justify-content: space-between; gap: 21px; margin-top: 40px;}
.branch_area .inner .branch .info_map .btn_box .map_btn li {width: 33%;}
.branch_area .inner .branch .info_map .btn_box .map_btn li a {display: block; color: #161718; font-family: 'Noto Sans KR', sans-serif; font-size: 20px; letter-spacing: -1px; text-align: center; padding: 10px 0px 14px; border-radius: 999px; border: 1px solid #9b9b9b; box-sizing: border-box;}
.branch_area .inner .branch .info_map .btn_box .map_btn li a span {display: inline-block; width: 30px; height: 30px; background-position: center; background-repeat: no-repeat; background-size: contain; margin-right: 8%; vertical-align: text-bottom;}
.branch_area .inner .branch .info_map .text_box > div {margin-bottom: 44px;}
.branch_area .inner .branch .info_map .text_box > div:last-of-type {margin-bottom: 0;}
.branch_area .inner .branch .info_map .text_box h4 {margin-bottom: 10px;}
.branch_area .inner .branch .info_map .text_box .address {font-family: 'Noto Sans KR', sans-serif; font-size: 22px; line-height: 30px; letter-spacing: -1px; color: #505050;}
.branch_area .inner .branch .info_map .text_box .address strong {display: block; color:#005e9a; letter-spacing:-2.5px; font-weight:700; font-size: 27px; line-height: 40px; margin-bottom:10px;}
.branch_area .inner .branch .info_map .text_box .address strong span {letter-spacing:0px; font-weight:700; }
.branch_area .inner .branch .info_map .text_box .inquiry_call a {font-size: 30px; font-weight:700; line-height: 35px;}
.branch_area .inner .branch .info_map .text_box .inquiry_call .badge {display: inline-block; color: #FFF; font-size: 17px; font-weight: 700; line-height: 17px;
    padding: 9px; border-radius: 6px; background: #0C82FE; vertical-align: text-bottom; margin-left: 9px;}
.branch_area .inner .branch .info_map .text_box .office_hours h4 {margin-bottom: 20px;}
.branch_area .inner .branch .info_map .text_box .office_hours ul li {font-family: 'Noto Sans KR', sans-serif; font-size: 22px; font-weight:500; color:#363636; line-height: 22px; letter-spacing: 0px; margin-bottom:0.5em;}
.branch_area .inner .branch .info_map .text_box .office_hours ul li:last-child {margin-bottom: 0;}
.branch_area .inner .branch .info_map .text_box .office_hours ul li strong {font-family: 'Noto Sans KR', sans-serif; color:#000; font-weight:600; letter-spacing:2px; display: inline-block; width: 30%;}
.branch_area .inner .branch .info_map .text_box .office_hours ul li span {font-family: 'Noto Sans KR', sans-serif;}
.branch_area .inner .branch .info_map .text_box .btn_box {display: flex; justify-content: space-between; align-items: center;} 
.branch_area .inner .branch .info_map .text_box .btn_box a {display: block; width: 48%; padding: 16px 2%; box-sizing: border-box; font-weight: 700; font-family: 'Noto Sans KR', sans-serif; font-size: 22px; letter-spacing: -1px; text-align: center; border-radius: 999px; white-space: nowrap;}
.branch_area .inner .branch .info_map .text_box .btn_box a span {display: inline-block; width: 30px; height: 30px; background-position: center; background-repeat: no-repeat; background-size: contain; margin-left: 5%; vertical-align: text-bottom;}
.branch_area .inner .branch .info_map .text_box .btn_box a.btn_reservaion {color: #FFF; background-color: #005e9a;}
.branch_area .inner .branch .info_map .text_box .btn_box a.btn_kakaomap {color: #3C1F1E; background-color: #FFDA19;}

	/* .branch_area .inner .branch .info_bus .icon_text ul li {display: flex; gap: 10px; align-items: flex-start; line-height: 1.8em;} */
.branch_area .inner .branch .info_bus .icon_text ul li {display: flex; gap: 10px; align-items: flex-start; line-height: 1.8em;}
.branch_area .inner .branch .info_bus .icon_text ul li strong {white-space: nowrap;}
.branch_area .inner .branch .info_bus .icon_text ul li span {display: inline-block; font-family: 'Noto Sans KR', sans-serif; font-size:17px; line-height:30px; margin-right: 0.5em;}
.branch_area .inner .branch .info_bus .mySwiper {width: 100%; overflow: hidden; position: relative;}

.branch_area .inner .branch .info_car .icon_text p:first-of-type {margin-bottom: 10px;}
.branch_area .inner .branch .info_car .img_box img {margin-bottom: 20px;}
.branch_area .inner .branch .info_car .img_box img:last-of-type {margin-bottom: 0;}

.branch_area .inner .branch .info_car_con {flex-direction: column;}
.branch_area .inner .branch .info_car_con h5 {font-size: 35px; letter-spacing: -1px; margin-bottom: 40px;}
.branch_area .inner .branch .info_car_con h5 span {display: inline-block; width: 40px; height: 40px; line-height: 40px; border-radius: 50%;
    font-size: 32px; font-weight: 700; letter-spacing: -1px; color: #fff; text-align: center; margin-right: 10px;}
.branch_area .inner .branch .info_car_con > ul {display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 100px;}
.branch_area .inner .branch .info_car_con > ul:last-of-type {margin-bottom: 0;}
.branch_area .inner .branch .info_car_con > ul li {display: flex; align-items: center; background: #F4F4F4; border-radius: 20px;}
.branch_area .inner .branch .info_car_con > ul li .img_box {width: 55%;}
.branch_area .inner .branch .info_car_con > ul li .img_box img {border-radius: 20px 0 0 20px;}
.branch_area .inner .branch .info_car_con > ul li .text_box {width: 45%; padding: 0 4%; box-sizing: border-box; border-radius: 0 20px 20px 0;
    font-size: 24px; line-height: 34px; letter-spacing: -1px; color: #161718; text-align: center;}

.branch_area .inner .branch .swiper-button-prev, 
.branch_area .inner .branch .swiper-button-next {top: 43%; color: #fff; width: 35px; height: 35px; border-radius: 50%; background: #0C82FE;}
.branch_area .inner .branch .swiper-button-prev::after, 
.branch_area .inner .branch .swiper-button-next::after {font-size: 1.2em; font-weight: 700;}

/* PC (해상도 1440px ~ 1540px) */
@media screen and (max-width:1540px) {
    section > .inner {padding: 150px 10%;}

    .information .sec_cont {padding: 110px 10%;}
    .information .sec_cont .branch_tab.pc_ver li a {font-size: 30px;}

    .branch_area .inner .branch .info_map .text_box .btn_box a {font-size: 18px;}
    .branch_area .inner .branch.geomdan .info_bus .mySwiper {width: 48%;}

	.branch_area .inner .branch .btn_ytb {font-size: 18px; line-height: 30px; border-radius: 75px; margin-top:15px; margin-bottom:0px; max-width:450px; width:100%;}
	.branch_area .inner .branch .btn_ytb span {display: inline-block; width: 37px; height: 28px; background-position: center; background-repeat: no-repeat; background-size: contain; margin-left: 16px; vertical-align: sub;}
}

/* PC (해상도 1058px ~ 1440px) */
@media screen and (max-width:1440px) {
    section > .inner {padding: 150px 8%;}
    .information .sec_cont {padding: 110px 8%;}

	.info_bus .img_box {padding-top:30px;}
    .branch_area .inner .branch .info_map .btn_box .map_btn {gap: 16px;}
	.branch_area .inner .branch .btn_ytb {padding: 10px 20px; font-size: 18px; line-height: 30px; border-radius: 75px; margin-top:20px; margin-bottom:0px; max-width:450px; width:100%;}
	.branch_area .inner .branch .btn_ytb span {display: inline-block; width: 28px; height: 21px; background-position: center; background-repeat: no-repeat; background-size: contain; margin-left: 16px; vertical-align: sub;}

}

/* PC (해상도 1024px ~ 1058px) */
@media screen and (max-width:1058px) {
    section > .inner {padding: 150px 6%;}
    .information .sec_cont {padding: 110px 6%;}
}

/* 태블렛 (해상도 769px ~ 1024px) */
@media screen and (max-width:1024px) {
    /* content */
    section > .inner {padding: 80px 5%;}
    .information .sec_cont {padding: 0px 6%;}
	.information .sec_cont .branch_tab.pc_ver {display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 70px;}

    .branch_area .inner {padding: 80px 5%;}
    .branch_area .inner h3 {font-size: 42px; line-height: 1em;}
    .branch_area .inner .select_btn_box {width: 50%; margin: 0 auto; position: relative;}
    .branch_area .inner .select_btn {display: block; padding: 11.5px 20px; box-sizing: border-box; background: #FFF; border-radius: 190px;
        font-size: 18px; font-weight: 700; line-height: normal; letter-spacing: -1px; color: #0C82FE; margin-top: 30px; border: 1px solid #0C82FE; position: relative;}
    .branch_area .inner .select_btn::after {content: ''; display: inline-block; width: 24px; height: 24px; transition: all .2s;
        background: url(../images/arrow_blue_down.png) center no-repeat; background-size: contain; position: absolute; right: 20px; top: 50%; margin-top: -12px;}
    .branch_area .inner .select_btn.on::after {transform: rotate(-540deg);}
    .branch_area .inner .branch_tab.pc_ver {display: none;}
    .branch_area .inner .branch_tab.mo_ver {width: 100%; padding: 8px 7.5px; box-sizing: border-box; background: #fff; border: 1px solid #0C82FE; border-radius: 10px; position: absolute; top: 62px; left: 0; display: none;}
    .branch_area .inner .branch_tab.mo_ver li a {display: block; height: 50px; line-height: 50px; font-weight: 700; font-size: 18px; color: #0C82FE; border: none; border-radius: 8px; padding: 0 16px;}
    .branch_area .inner .branch_tab.mo_ver li a.on {background-color: #D6EAFF; color: #0C82FE;}
    
    .branch_area .inner .branch > div > div.img_box {width: 100%;}
	.info_bus .img_box {padding-top:0px;}

    .branch_area .inner .branch > div {padding: 80px 0; flex-direction: column; gap: 0px; align-content: center;}
    .branch_area .inner .branch > div:first-of-type {padding: 0 0 80px;}
    .branch_area .inner .branch > div:last-of-type {padding: 80px 0 0;}
    .branch_area .inner .branch > div > div {width: 100%;}
    .branch_area .inner .branch .text_box h4 {font-size: 34px; line-height: 1em; text-align: center; margin-bottom: 40px;}
    .branch_area .inner .branch .img_box img {border-radius: 10px; object-fit: contain;}
    .branch_area .inner .branch .icon_box {justify-content: center;}
    .branch_area .inner .branch .icon_box .icon_transport {width: 105px; height: 105px;}
    .branch_area .inner .branch .icon_box .icon_text {width: auto;}
    .branch_area .inner .branch .btn_ytb {padding: 8px 36px; margin-top: 40px; position: relative; left: 50%; transform: translateX(-50%);}
    
    .branch_area .inner .branch .info_map {flex-direction: column-reverse;}
    .branch_area .inner .branch .info_map > div {width: 100%;}
    .branch_area .inner .branch .info_map .text_box > div {margin-bottom: 60px; text-align: center;}
	.branch_area .inner .branch .info_map .text_box > div:last-of-type {margin-bottom:40px;}
    .branch_area .inner .branch .info_map .text_box address {font-size: 16px; line-height: 22px; color: #161718;}
    .branch_area .inner .branch .info_map .text_box address strong {font-size: 34px; line-height: 44px;}
    .branch_area .inner .branch .info_map .text_box .inquiry_call a {font-size: 34px; line-height: 44px;}
    .branch_area .inner .branch .info_map .text_box .inquiry_call .badge {margin-left: 7px;}
    .branch_area .inner .branch .info_map .text_box .office_hours h4 {margin-bottom: 30px;}
    .branch_area .inner .branch .info_map .text_box .office_hours ul {width: 80%; margin: 0 auto;}
    .branch_area .inner .branch .info_map .text_box .office_hours ul li {text-align: left;}
    .branch_area .inner .branch .info_map .text_box .office_hours ul li:last-child {text-align: center;}
    .branch_area .inner .branch .info_map .text_box .office_hours ul li strong {width: 30%;}
    .branch_area .inner .branch .info_map .text_box .office_hours ul li span {line-height: 1.3em;}
    .branch_area .inner .branch .info_map .text_box .office_hours ul li span i {display: block;}
    .branch_area .inner .branch .info_map .text_box .btn_box {justify-content: center; gap: 20px;} 
    .branch_area .inner .branch .info_map .text_box .btn_box a {width: 40%; font-size: 22px;}
    .branch_area .inner .branch .info_map .text_box .btn_box a span {width: 28px; height: 28px; margin-left: 3%;}
    .branch_area .inner .branch .info_map .btn_box .map_btn {gap: 23px; margin-top: 28px;}
    .branch_area .inner .branch .info_map .btn_box .map_btn li {width: 33%;}


    .branch_area .inner .branch .info_subway .icon_box .icon_text p {font-size: 22px;}

    .branch_area .inner .branch .info_bus .mySwiper {width: 100%;}

    .branch_area .inner .branch .info_car_con {margin-bottom: 40px; padding: 40px 0; gap: 0;}
    .branch_area .inner .branch .info_car_con h5 {font-size: 24px; margin-bottom: 21px;}
    .branch_area .inner .branch .info_car_con h5 span {width: 28px; height: 28px; line-height: 28px; font-size: 22px; margin-right: 8px;}
    .branch_area .inner .branch .info_car_con > ul {gap: 16px; margin-bottom: 42px;}
    .branch_area .inner .branch .info_car_con > ul li {border-radius: 10px;}
    .branch_area .inner .branch .info_car_con > ul li .img_box img {border-radius: 10px 0 0 10px;}
    .branch_area .inner .branch .info_car_con > ul li .text_box {border-radius: 0 10px 10px 0; font-size: 16px; line-height: 22px;}


    .branch_area .inner .branch .swiper-button-prev, 
    .branch_area .inner .branch .swiper-button-next {width: 45px; height: 45px;}

}

/* 모바일 (해상도 375px ~ 768px) */
@media screen and (max-width:768px) {
    .wrap { min-width: 375px; }
    /* content */
    section > .inner {padding: 50px 5%;}
    .information .sec_cont {padding: 0px 3%;}

    .branch_area .inner {padding: 50px 5%;}
    .branch_area .inner h3 {font-size: 38px;}
    .branch_area .inner .select_btn_box {width: 100%;}
    .branch_area .inner .select_btn {padding: 5.5px 16px;}
    .branch_area .inner .select_btn::after {right: 16px;}
    .information .sec_cont .branch_tab.pc_ver li a {font-size: 20px;}
    .branch_area .inner .branch_tab.mo_ver {padding: 5.5px 7.5px; top: 50px; left: 0;}
    .branch_area .inner .branch_tab.mo_ver li a {height: 40px; line-height: 40px; font-size:20px;}

    .branch_area .inner .branch > div {gap: 15px; padding: 50px 0;}
    .branch_area .inner .branch > div:first-of-type {padding: 0 0 50px;}
    .branch_area .inner .branch > div:last-of-type {padding: 50px 0 0;}
    .branch_area .inner .branch .text_box h4 {font-size: 30px; margin-bottom: 30px;}
    .branch_area .inner .branch .icon_box {flex-direction: column; gap: 16px; margin-bottom: 30px;}
    .branch_area .inner .branch .icon_box .icon_transport {width: 105px; height: 105px; text-align:center; margin: 0 auto:}
    .branch_area .inner .branch .icon_box .icon_text {margin: 0;}
    .branch_area .inner .branch .icon_box .icon_text p {text-align: center; line-height: 24px;}
    .branch_area .inner .branch .icon_box .icon_text p strong {line-height: 30px;}
    .branch_area .inner .branch .icon_box .icon_text ul {grid-template-columns: repeat(1, 1fr); gap: 16px; justify-items: center;}
    .branch_area .inner .branch .btn_ytb {padding: 0 15px; font-size: 16px; line-height: 48px; margin-top: 20px;}
    .branch_area .inner .branch .btn_ytb span {width: 28px; height: 21px; margin-left: 10px; }

    .branch_area .inner .branch .info_map {gap: 50px;}
    .branch_area .inner .branch .info_map .text_box > div {margin-bottom: 50px; text-align: center;}
    .branch_area .inner .branch .info_map h4 {margin-bottom: 5px;}
    .branch_area .inner .branch .info_map .text_box address {color: #505050;}
    .branch_area .inner .branch .info_map .text_box address strong {font-size: 30px; line-height: 38px;}
    .branch_area .inner .branch .info_map .text_box .inquiry_call a {font-size: 30px; line-height: 38px;}
    .branch_area .inner .branch .info_map .text_box .office_hours h4 {margin-bottom: 20px;}
    .branch_area .inner .branch .info_map .text_box .office_hours ul {width: 100%;}
    .branch_area .inner .branch .info_map .text_box .office_hours ul li {text-align: center; font-size: 20px; line-height: 22px;}
    .branch_area .inner .branch .info_map .text_box .office_hours ul li strong {width: auto; margin-right: 5%;}
    .branch_area .inner .branch .info_map .text_box .btn_box {flex-direction: column; gap: 16px;} 
    .branch_area .inner .branch .info_map .text_box .btn_box a {width: 100%; padding: 12px 2%;}
    .branch_area .inner .branch .info_map .btn_box .map_btn {gap: 13px; margin-top: 20px;}
    .branch_area .inner .branch .info_map .btn_box .map_btn li {width: 33%;}
    .branch_area .inner .branch .info_map .btn_box .map_btn li a {font-size: 14px; padding: 8px 0; border: 1px solid #777C81;}
    .branch_area .inner .branch .info_map .btn_box .map_btn li a span {width: 22px; height: 22px; vertical-align: text-top; margin-right: 5%;}
    .branch_area .inner .branch .info_map .icon_text p {width: 22px; height: 22px; vertical-align: middle; margin-right: 5%;}

    .branch_area .inner .branch .info_bus .icon_text p strong {display: block;}

    .branch_area .inner .branch .info_car .icon_text p:first-of-type {margin-bottom: 16px;}
    .branch_area .inner .branch .info_car .img_box img {margin-bottom: 10px;}

    .branch_area .inner .branch .info_car_con h5 {font-size: 16px; line-height: 22px; margin-bottom: 10px;}
    .branch_area .inner .branch .info_car_con h5 span {width: 18px; height: 18px; line-height: 18px; font-size: 14px; margin-right: 5px;}
    .branch_area .inner .branch .info_car_con > ul {gap: 10px; margin-bottom: 20px;}
    .branch_area .inner .branch .info_car_con > ul li {flex-direction: column;}
    .branch_area .inner .branch .info_car_con > ul li .img_box {width: 100%;}
    .branch_area .inner .branch .info_car_con > ul li .img_box img {border-radius: 10px 10px 0 0;}
    .branch_area .inner .branch .info_car_con > ul li .text_box {width: 100%; padding: 14px 5%; border-radius: 0 0 10px 10px; font-size: 14px; line-height: 20px;}

    .branch_area .inner .branch .swiper-button-prev, 
    .branch_area .inner .branch .swiper-button-next {width: 30px; height: 30px;}
    .branch_area .inner .branch .swiper-button-prev::after, 
    .branch_area .inner .branch .swiper-button-next::after {font-size: 1em;}

}