html{
    scroll-behavior: smooth;
}
/* common */
body {
    background: url('/static/images/common/bg.webp')repeat;
    background-position: 50% 50%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body.scroll-lock {
    overflow: hidden;
}

.swal2-container {
    z-index: 99999 !important;
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul,
ol,
button {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: 'spoqaHanSansNeo', 'sans-serif';
    color: #09130b;
    box-sizing: border-box;
    letter-spacing: -0.075em;
    font-weight: 500;
}

a {
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

button {
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer
}

b {
    font-family: 'spoqaHanSansNeo';
    font-weight: 500
}

strong {
    font-family: 'spoqaHanSansNeo';
    /* font-weight: 600 */
}

img {
    max-width: 100%;
}


em {
    font-style: normal;
}

h1,
h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 58px;
    margin-bottom: 35px;
    letter-spacing: -.1em;
    color: #09130b;
}

h3 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 15px;
}

h4 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
}
h5{
    font-size:24px;
    line-height:30px;
    margin-bottom:10px;
}

h6 {
    font-size: 16px;
    line-height: 1;
    /* text-align: center; */
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 500;
    margin-bottom: 25px;
    font-family: 'SpoqaHanSansNeo';
    color:#898989;
}

h2,
h3,
h4,
h5 {
    font-family: 'ChosunNm';
}
h4, h5, h6{
    display:block;
    font-weight: 600;
}


/* cursor */
.mouse_cursor {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #62a6a4;
    z-index: 9999;
    user-select: none;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transform: scale(1)
}

.mouse_cursor2 {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: rgba(98, 166, 164, 0.3);
    z-index: 9998;
    user-select: none;
    pointer-events: none;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transform: translate(5px, 5px)
}

.mouse_cursor.active {
    transform: scale(0);
}

.mouse_cursor2.active {
    transform: scale(3);
    background: rgba(98, 166, 164, 0.3);;
}
.mouse_cursor_lr{
    font-size:18px;
    line-height:30px;
    letter-spacing: -1.8px;
    border-radius: 100%;
    border:2px solid #000;
    position:absolute;
    z-index: 9999;
    transition:transform 0.5s cubic-bezier(0.75, 1.27, 0.3, 1.35) 0.2s, opacity 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33);
    user-select: none;
    pointer-events: none;
    transform: scale(0);
    /* opacity: 1; */
    width:150px;
    height:150px;
    display: flex;
    align-items:center;
    justify-content: center;
    text-align: center;
    color:#000;
}
.mouse_cursor_lr.active {
    opacity: 1;
    transform: scale(1);
}
/* cursor end */

.mo_br {
    display: none;
}
.pc_br{
    display:block;
}

.cs {
    font-family: 'ChosunSm';
}

.cn {
    font-family: 'ChosunNm';
}


.point {
    color: #62a6a4;
}
.bold{
    font-weight:600
}
.mo {
    display: none;
}
.pc{
    display: block;
}

/* button style */
.btn {
    overflow: hidden;
    position: relative;
    display: inline-flex;
    border-radius: 60px;
    width: auto;
    box-shadow: 6px 5px 15px 0px rgba(105, 138, 141, 0.3);
    transition: box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: box-shadow;
}

.btn:hover {
    box-shadow: none;
}

.btn .btn_inner {
    display: block;
    background: #62a6a4;
    color: #fff;
    font-size: 13px;
    transition: .4s;
    padding: 10px 30px;
    text-align: center;
    margin: 0;
    cursor: pointer
}

.btn .button_on_circle {
    background: #000;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    pointer-events: none;
    animation-timing-function: ease-in-out;
}

.btn .desplode-circle {
    animation: desplode 0.5s forwards;
}

.btn .explode-circle {
    animation: explode 0.5s forwards;
}

@keyframes desplode {
    0% {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(0, 0, 0, 0.15);
    }

    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(0, 0, 0, 0.15);
    }
}

@keyframes explode {
    0% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(0, 0, 0, 0.15);
    }

    100% {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(0, 0, 0, 0.15);
    }
}

.btn_area {
    display: flex;
    flex-wrap: wrap;
}

.link {
    margin-top: 10px;
}

.link a {
    position: relative;
    display: inline-block;
}

.link a:before,
.link a:after {
    content: '';
    position: absolute;
    display: block;
    height: 1px;
    width: 0;
}

.link a:before {
    transition: width 0s ease, background 0.4s ease;
    left: 0;
    right: 0;
    bottom: 0px;
}

.link a:after {
    right: 0;
    bottom: 0px;
    background: #273029;
    transition: width .4s ease;
    width: 100%;
}

.link a:hover:before {
    width: 100%;
    background: #273029;
    transition: width .4s ease;
}

.link a:hover:after {
    width: 100%;
    background: 0 0;
    transition: all 0s ease;
}

.link a span {
    display: inline-block;
    overflow: hidden;
    height: 24px;
    font-size: 15px;
    padding-bottom: 5px;
    line-height:1.5
}

.link a span b {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    display: block;
    font-size: 16px;
    font-family: 'Noto Sans KR', sans-serif;
}

.link a:hover span>b {
    -webkit-transform: translateY(-23px);
    -ms-transform: translateY(-23px);
    transform: translateY(-23px);
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.info{
    font-size:16px;
    line-height:26px;
    word-break: keep-all;
}


#wrapper {
    position: relative;
}



/* header  -------------------------------------------------- */
header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.head_wrap .inner {
    height: 160px;
    background: transparent;
    padding: 0 80px;
    display: flex;
    align-items: center;
    transition: height 0.5s cubic-bezier(0.2, 1.4, 0.8, 1.1) 0.2s, box-shadow 0.3s ease, background 0.3s ease
}

.head_wrap .logo img {
    transition: all .3s ease;
    width: auto;
    max-width: 100%;
}

.head_wrap .gnb {
    margin-left: 70px;
    margin-right: auto;
}

.head_wrap .gnb .depth01 {
    display: flex;
    align-items: stretch;
}

.head_wrap .gnb .depth01>li {
    position: relative;
}

.head_wrap .gnb .depth01>li>a {
    font-size: 15px;
    padding: 15px;
    transition: color 1s cubic-bezier(0.2, 0.9, 0.4, 1.1)
}

.head_wrap .gnb .depth01>li>a span {
    position: relative;
    font-size: 18px;
    color: #2e3030;
}

.head_wrap .gnb .depth01>li>a span:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 40%;
    top: 60%;
    left: -10%;
    opacity: .2;
    background-position: 0 95%;
    transition: width 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    background: #27a3ac;
    z-index: 0;
}
.head_wrap .gnb .depth01>li:first-child > a > span{
    color:#62a6a4 
}

.head_wrap .gnb .depth01>li:hover>a span:before {
    width: 120%;
}

.head_wrap .gnb .sub_menu {
    position: relative;
    top: 10px;
}

.head_wrap .gnb .depth02,
.head_wrap .gnb .depth03 {
    position: absolute;
    padding: 20px 0 20px 30px;
    background: #fff;
    box-shadow: 0 6px 21px 0 rgba(0, 0, 0, .12);
    -webkit-box-shadow: 0 6px 21px 0 rgba(0, 0, 0, .12);
    will-change: opacity;
    border-top: 2px solid #67c5d5;
    opacity: 0;
    display: none;
}

.head_wrap .gnb .depth02 {
    left: 50%;
    transform: translateX(-50%);
}

.head_wrap .gnb .depth02 li {
    position: relative;
    padding: 10px 80px 10px 0;
}

.head_wrap .gnb .depth02 li a {
    white-space: nowrap;
    display: block;
}

.head_wrap .gnb .depth02 li a i {
    position: absolute;
    top: 50%;
    right: 45px;
    opacity: 0;
    transform: translateY(-50%);
    color: #2e3030;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease
}

.head_wrap .gnb .depth02 li a:hover i {
    opacity: 1;
    right: 35px
}

.head_wrap .gnb .depth01>li:hover .sub_menu .depth02,
.head_wrap .gnb .depth02>li:hover .depth03 {
    opacity: 1;
    display: block;
}

.head_wrap .gnb .depth03 {
    position: absolute;
    left: 164px;
    top: -22px;
}

.head_wrap .h_util {
    display: flex;
    align-items: center;
}

.head_wrap .h_util ul {
    display: flex;
    align-items: center;
}

.head_wrap .h_util ul li {
    padding: 18px;
}

.head_wrap .h_util ul li a {
    display: flex;
    align-items: center;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    transition: color 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.head_wrap .h_util ul li a i {
    margin-right: 10px;
}

.head_wrap .h_util ul li a span {
    position: relative;
}

.head_wrap .h_util ul li a span:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 40%;
    top: 60%;
    left: -10%;
    opacity: .2;
    background: #27a3ac;
    transition: width 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: 0;
}

.head_wrap .h_util ul li:hover a span:before {
    width: 120%;
}

.head_wrap .gnb_all {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s ease, height 0.5s ease;
    margin-left: 60px;
}

.head_wrap .gnb_all .hamber_menu {
    position: relative;
    width: 35px;
    height: 22px;
    margin-right: 15px;
    cursor: pointer;
    z-index: 9999;
}

/* 공통 바 스타일 */
.head_wrap .gnb_all .hamber_menu span,
.head_wrap .gnb_all .hamber_menu span:before,
.head_wrap .gnb_all .hamber_menu span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2e3030;
    border-radius: 2px;
}

/* 중간 바 */
.head_wrap .gnb_all .hamber_menu span {
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.15s ease 0.1s;
}

/* 위 바 */
.head_wrap .gnb_all .hamber_menu span:before {
    content: '';
    top: -9px;
    transition: top 0.3s ease 0.3s, transform 0.3s ease, background-color 0.3s ease;
}

/* 아래 바 */
.head_wrap .gnb_all .hamber_menu span:after {
    content: '';
    top: 9px;
    transition: top 0.3s ease 0.3s, transform 0.3s ease, background-color 0.3s ease;
}

/* === open: 중간 바 투명, 위아래 바 → X자 (1200px+ : #fff) === */
.head_wrap .gnb_all .hamber_menu.open span {
    background: transparent;
    transition: background-color 0.1s ease;
}

.head_wrap .gnb_all .hamber_menu.open span:before {
    top: 0;
    transform: rotate(45deg);
    background: #fff;
    transition: top 0.3s ease, transform 0.3s ease 0.3s, background-color 0.3s ease;
}

.head_wrap .gnb_all .hamber_menu.open span:after {
    top: 0;
    transform: rotate(-45deg);
    background: #fff;
    transition: top 0.3s ease, transform 0.3s ease 0.3s, background-color 0.3s ease;
}

/* header all menu */
.gnb_all_menu.open .all_menu {
    transform: translate(0)
}

.all_menu_bg {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    opacity: 0;
    transition: all 2.6s cubic-bezier(.19, 1, .22, 1) 0.5s;
    will-change: opacity;
}

.gnb_all_menu.open .all_menu_bg {
    visibility: visible;
    opacity: 1;
    transition: 2.6s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.all_menu {
    position: absolute;
    width: 100%;
    max-width: 580px;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 9996;
    background: #343434;
    padding: 150px 100px 80px 100px;
    transform: translate(100%);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
    will-change: transform;
    overflow-y: auto;
}

.gnb_all_menu .login_area {
    margin-bottom: 50px;
}

.gnb_all_menu .login_area ul {
    display: flex;
    align-items: center
}

.gnb_all_menu .login_area ul li a {
    position: relative;
    padding: 0 25px;
    font-size: 18px;
    letter-spacing: .5px;
    color: #fff;
    text-transform: uppercase;
}

.gnb_all_menu .login_area ul li:first-child a {
    padding-left: 0;
}

.gnb_all_menu .login_area ul li:first-child a:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 55%;
    background: #fff;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.all_menu .menu_area {
    margin-bottom: 50px;
}

.all_menu .menu_area li a {
    position: relative;
    font-size: 32px;
    padding: 7px 0;
    color: #fff;
    line-height: 1.5;
    font-weight: 600;
    display: block;
    letter-spacing: -.05em;
    line-height: normal;
    transition: opacity 2.6s cubic-bezier(.19, 1, .22, 1)
}

.all_menu .menu_area li a:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    background: #fff;
    transform: translateX(-50%);
    -webkit-transform: transalteX(-50%);
    transition: 300ms;
    -webkit-transition: 300ms;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.all_menu .menu_area li:hover a:after {
    opacity: 1;
    -webkit-transform: scale(1) translateX(-50%);
    -ms-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%);
}

.all_menu .data_area {
    margin-bottom: 45px;
}

.all_menu .data_area p {
    color: #fff;
    font-size: 22px;
    font-weight: 600
}

.all_menu .data_area .data_list .day {
    position: relative;
    width: 150px;
    margin-right: 10px;
    display: inline-block;
}

.all_menu .data_area .data_list>div {
    margin-bottom: 10px;
}

.all_menu .data_area .data_tel a {
    display: flex;
    align-items: center;
}

.all_menu .location_link .link_list a {
    padding: 10px 0;
    display: block;
    font-size: 35px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    transition: opacity 2.6s cubic-bezier(.19, 1, .22, 1);
    will-change: opacity;
    letter-spacing: -.05em;
}

.all_menu .location_link .link_list a span {
    font-size: 20px;
}

.all_menu_mo {
    display: none;
}

/* header fixed */
header.fixed .head_wrap .inner {
    height: 100px;
    background: #fff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.08);
}

header.fixed .logo img {
    width: 80%;
}

header.fixed .head_wrap .gnb .depth01>li>a{
    padding:24px 20px;
}
header.fixed .head_wrap .gnb .depth01>li>a span {
    font-size: 15px;
}

header.fixed .head_wrap .h_util ul li a {
    color: #2e3030;
    font-size: 15px;
}

/* fixed 스크롤: 바 두께만 조정, 색상은 기본값 유지 */
header.fixed .head_wrap .gnb_all .hamber_menu span,
header.fixed .head_wrap .gnb_all .hamber_menu span:before,
header.fixed .head_wrap .gnb_all .hamber_menu span:after {
    height: 2.5px;
}

/* fixed open: 중간 바 투명 명시, 위아래 바만 #fff */
header.fixed .head_wrap .gnb_all .hamber_menu.open span {
    background: transparent;
}

header.fixed .head_wrap .gnb_all .hamber_menu.open span:before,
header.fixed .head_wrap .gnb_all .hamber_menu.open span:after {
    background: #fff;
}

@media(max-width:1750px) {
    .head_wrap .inner {
        padding: 0 30px;
    }

    .head_wrap .h_util ul {
        display: none;
    }
}

@media(max-width:1200px) {
    .head_wrap .inner {
        padding: 10px 15px;
        height: 80px;
        background: #fff;
    }

    .head_wrap .logo {
        min-height: 1px;
        margin-right: auto;
    }

    .head_wrap .logo img {
        max-width: 60%;
    }

    .head_wrap .gnb {
        display: none;
    }

    .head_wrap .gnb_all {
        height: 15px;
        top: 0;
        margin-left: 0;
    }

    .head_wrap .gnb_all .hamber_menu {
        margin-right: 0;
        width: 25px;
        height: 15px;
    }

    /* 모바일 버튼 크기에 맞게 바 간격 재조정 */
    .head_wrap .gnb_all .hamber_menu span:before {
        top: -7px;
    }

    .head_wrap .gnb_all .hamber_menu span:after {
        top: 7px;
    }

    .gnb_all_menu.open .all_menu {
        display: none;
    }

    /* 모바일 open: X자 색상 #2e3030 유지 (스크롤 fixed 상태 포함) */
    .head_wrap .gnb_all .hamber_menu.open span:before,
    .head_wrap .gnb_all .hamber_menu.open span:after,
    header.fixed .head_wrap .gnb_all .hamber_menu.open span:before,
    header.fixed .head_wrap .gnb_all .hamber_menu.open span:after {
        background: #2e3030;
    }

    /* header fixed */
    header.fixed .head_wrap .inner{
        height:80px;
    }

    /* all_menu_mo */
    .all_menu_mo {
        position: fixed;
        display: block;
        width: 60vw;
        height: 100vh;
        background: #fff;
        right: 0;
        top: 0;
        z-index: 9998;
        transform: translate(100%);
        will-change: transform;
        transition:transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.2s
    }

    .all_menu_mo .login_area {
        position: relative;
        padding: 10px 20px;
        margin: 50px 0 20px;
    }

    .all_menu_mo .login_area ul li a {
        padding: 0 15px;
        font-size: 16px;
        letter-spacing: .5px;
        color: #2e3030;
        font-weight: 600
    }

    .gnb_all_menu .login_area ul li:first-child a:before {
        background: #a0a0a0;
        height: 50%;
    }

    .all_menu_mo .scroll_area {
        height: calc(100vh - 133px);
        overflow-y: auto;
    }

    .all_menu_mo .menu_area>ul {
        margin-bottom: 10px;
        padding: 0 20px 10px 20px;
    }

    .all_menu_mo .menu_area ul>li {
        position: relative;
        margin-bottom: 15px;
        width: 100%;
    }

    .all_menu_mo .menu_area ul>li>a {
        color: #2e3030;
        font-size: 16px;
        font-weight: 600;
        line-height: normal;
        display: block;
        position: relative;
        cursor: pointer;
        transition: opacity 2.6s cubic-bezier(.19, 1, .22, 1);
        will-change: opacity;
    }

    .all_menu_mo .menu_area li .detail_icon {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        transition: transform .5s ease;
        will-change: transform;
    }

    .all_menu_mo .menu_area li .detail_icon span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #999
    }

    .all_menu_mo .menu_area li .detail_icon .width {
        width: 8px;
        height: 1px;
    }

    .all_menu_mo .menu_area li .detail_icon .height {
        width: 1px;
        height: 8px;
        transition: opacity .35s ease;
    }

    .all_menu_mo .menu_area .list_sub {
        position: relative;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        top: 15px;
        opacity: 0;
        transition: max-height .45s cubic-bezier(.4, 0, .2, 1), opacity .35s ease, top .35s ease;
    }

    .all_menu_mo .menu_area .list_sub li {
        margin-bottom: 15px;
    }

    .all_menu_mo .menu_area .list_sub li a {
        display: block;
        padding-left: 5px;
        color: #999;
        font-weight: 400;
        transition: color .3s ease;
        font-size: 13px;
    }

    .all_menu_mo .menu_area .list_sub li a:hover {
        color: #222;
    }

    .all_menu_mo.open {
        transform: translate(0);
    }

    .all_menu_mo .menu_area li.active .detail_icon {
        transform: translateY(-50%) rotate(90deg);
    }

    .all_menu_mo .menu_area li.active .detail_icon .width {
        opacity: 0;
    }

    .all_menu_mo .menu_area li.active .list_sub {
        max-height: 400px;
        opacity: 1;
        top: 10px;
    }

    .all_menu_mo .data_area{
        padding:10px 20px;
    }
    .all_menu_mo .data_area .title{
        font-size:16px;
        font-weight:600;
        margin-bottom:10px;
        display:flex;
        align-items: center;
    }

    .all_menu_mo .data_area .data_list {
        margin-bottom: 10px;
    }

    .all_menu_mo .data_area .data_list .data_title{
        color: #999;
        font-size: 12px;
        font-weight: 400;
        float: none;
        margin-bottom: 2px;
    }
    .all_menu_mo .data_area .data_list .data_tel a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .all_menu_mo .data_area .data_list .data_tel a p {
        font-size: 12px;
    }

    .all_menu_mo .location_link {
        padding: 10px 20px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .all_menu_mo .location_link .link_list a {
        font-weight: 600;
        color: #2e3030;
        letter-spacing: .5px;
    }

    .all_menu_mo .location_link .link_list .branch_text {
        font-size: 12px;
    }

}

@media(max-width:768px){
    
    .link a span{
        font-size:13px;
        height:17px;
        padding-bottom:0;
    }
    .link a span b{
        font-size:inherit
    }
    .link a:hover span>b{
        transform:translateY(-18px)
    }
    
}

/* header end  -------------------------------------------------- */


/* sidebar ----------------------------------------------- */
.mo{
    display:none;
}
.sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
}

.sidebar ul {
    background: #09130b;
    padding: 0 20px;
    box-shadow: 2px 15px 24px 0px rgba(0, 0, 0, 0.24);
}

.sidebar ul li {
    border-bottom: 1px solid rgba(254, 254, 254, 0.3);
}

.sidebar ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}

.sidebar ul li a i,
.sidebar ul li a p {
    color: #fff;
    transition: color 0.3s ease;
    will-change: color;
}

.sidebar ul li a i {
    font-size: 25px;
    margin-bottom: 8px;
}

.sidebar ul li a p {
    font-size: 14px;
    letter-spacing: -.5px;
    text-align: center;
}

.sidebar ul li.top p {
    padding: 20px;
    border-radius: 100%;
    background: #2eaaa6;
    text-transform: uppercase;
}
@media(max-width:768px){
    
    .sidebar{
        width:100%;
        top:auto;
        bottom:0;
        left:0;
        right:0;
        transform:none;
    }
    .sidebar ul{
        display:flex;
        align-items:center;
        padding:0 0 0 5px;
    }
    .sidebar ul li{
        flex:1;
        border:0;
    }
    .sidebar ul li a p{
        font-size:12px;
        line-height:1;
    }
    .sidebar ul li.top a{
        padding:0;
    }
    .sidebar ul li.top p{
        width:40px;
        height:40px;
        background:#2eaaa6;
        font-size:10px;
        line-height:1;
        letter-spacing: .5px;
        padding:0;
        display:flex;
        align-items:center;
        justify-content: center;
    }
}

/* sidebar end ----------------------------------------------- */

/* footer -------------------------------------------- */
footer .inner {
    padding: 100px;
    display: flex;
    flex-direction: column;
}

.footer_wrap {
    display: flex;
    gap: 60px;
}

footer h4 {
    margin-bottom: 20px;
    margin-bottom: 20px;
    font-family: 'ChosunNm';
    font-weight: 600;
    color: #09130b;
}

.footer_wrap .flex_box {
    display: flex;
}

.footer_wrap .foot_list {
    margin-right: 60px;
}

.footer_wrap .foot_list li {
    position: relative;
    margin-bottom: 5px;
}

.footer_wrap .foot_list li p {
    display: inline-block;
    /* margin-left:2px; */
    color: #09130b;
    font-size:14px;
    font-weight: 400;
}

.footer_wrap .foot_list .copyright {
    font-size: 14px;
    color: #09130b;
}

.quick_consult {
    padding-left: 160px;
    margin-top: 50px;
}

.quick_consult .info_area {
    display: flex;
    align-items: flex-start;
}

.quick_consult .info_area>div {
    margin-right: 40px;
    display: flex;
    gap: 40px;
}

.quick_consult .info_area>div:last-child {
    margin-right: 0;
}

.quick_consult .write {
    min-width: 300px;
    margin-bottom: 15px;
}

.quick_consult .write label {
    align-items: center;
    cursor: text;
    height: 50px;
    border: 1px solid #d2d2d2;
    display: inline-flex;
    transition: all 0.3s ease, border 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    width: 100%;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.quick_consult .write label input {
    outline: none;
    border: none;
    width: 100%;
    height: 30px;
    padding: 0 15px;
    position: relative;
    top: 9px;
    background: transparent;
    font-size: 13px;
    transition: all 0.3s ease 0s;
}

.quick_consult .write label span {
    position: absolute;
    top: calc(50% - 8px);
    left: 15px;
    font-size: 13px;
    line-height: normal;
    color: #9b9dad;
    transform-origin: 0 0;
    transition: all 0.2s ease;
    pointer-events: none;
    font-weight: 400;
}

.quick_consult .write label input:focus+span,
.quick_consult .write label input:not(:placeholder-shown)+span {
    color: #9b9dad !important;
    transform: translateY(-9px) scale(0.75);
    transition-delay: 0.1s;
}

.quick_consult .select_box_area {
    position: relative;
}

.quick_consult .select_box_area .slt_box {
    position: relative;
    width: 130px;
    background: #fff;
    border: 1px solid #d2d2d2;
    transition: all 0.2s ease-in-out;
    padding: 15px;
}

.quick_consult .select_box_area .slt_box:before {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    border-right: 1px solid #c7d1d6;
    transition: all 0.35s ease-out;
    transform-origin: 50% 0;
}

.quick_consult .select_box_area .slt_box:after {
    position: absolute;
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    top: 50%;
    right: 16px;
    margin-top: -3px;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg) translateY(-50%);
    transition: all 0.35s ease-out;
    transform-origin: 50% 0;
}

.quick_consult .select_box_area .slt_box p {
    color: #9b9dad;
    font-size: 13px;
    font-family: 'SpoqaHanSansNeo-Regular';
}

.quick_consult .select_box_area .slt_box_option {
    position: absolute;
    display: block;
    top: calc((-100% - 10px));
    left: 0%;
    right: 0;
    width: 100%;
    margin: 10px 0;
    box-sizing: border-box;
    background: #fff;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    border: 1px solid #d2d2d2;
    z-index: 10;
}

.quick_consult .select_box_area.is_open .slt_box_option {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-82px);
}

.quick_consult .select_box_area .slt_box_option p {
    position: relative;
    display: block;
    padding: 10px 15px;
    color: #333;
    line-height: normal;
    cursor: pointer;
    transition: all 0.05s ease-in-out;
    font-size: 13px;
}

.submit_btn .btn .btn_inner {
    padding: 15px;
}
@media(max-width:780px){
    footer .inner{
        padding:30px 15px 114px 15px;
        display:flex;
        flex-wrap: wrap-reverse;
    }
    .footer_wrap{
        width:100%;
        flex-direction:row-reverse;
        justify-content:space-between
    }
    .footer_wrap .foot_list{
        margin-right:0;
        margin-bottom:30px;
    }
    .footer_wrap .foot_list li{
        line-height:1
    }
    .footer_wrap .foot_list li p,
    .footer_wrap .foot_list .copyright{
        font-size:12px;
        line-height: 15px;
    }
    .footer_wrap .logo_area{
        width:50px;
    }

    /* 빠른상담 */
    .quick_consult{
        padding-left:0;
    }
    .quick_consult .info_area{
        flex-direction: column;
    }
    .quick_consult .info_area>div{
        flex-direction: column;
        margin-right:0;
        width:100%;
    }
    .quick_consult .info_area .left_area{
        margin-bottom:10px;
    }
    .quick_consult .write{
        margin-bottom: 0;
    }
    .quick_consult .select_box_area .slt_box{
        width:100%;
        margin-bottom:10px;
    }
    .submit_btn .btn{
        border-radius: 5px;
    }
    .submit_btn .btn .btn_inner{
        width:100%;
    }
}

/* footer end -------------------------------------------- */


/* section common */
section {
    position: relative;
    margin-bottom: 100px;
    /* padding-bottom:30px; */
}

.sec .inner {
    position: relative;
    width: 1250px;
    margin: auto;
}
.title_en{
    font-family: 'SpoqaHanSansNeo';
    font-size:16px;
    line-height:1;
    display:block;
    color:#898989;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight:500;
    margin-bottom:25px;
}
/* flex_box */
.flex_box {
    display:flex;
    /* align-items: center; */
    /* margin-bottom:30px; */
}
.sub_title,
.flex_box .sub_title{
    font-size:24px;
    line-height:35px;
    margin-bottom:20px;
    font-family: 'ChosunNm';
    font-weight: bold;
}
.flex_box .info{
    /* font-size: 16px;
    line-height: 26px;
    word-break: keep-all; */
    margin-bottom:30px;
    font-weight: 500;
}
.flex_box .italic{
    margin-bottom:30px;
}
.flex_box .last_text{
    margin-bottom:0;
}

/* flex type */
.flex_type02 {
    align-items:center;
}
.flex_type02 .text_area{
    width:50%;
    margin-right:70px;
}
.flex_type02 .img_area{
    width:50%;
}

.flex_type03 {
    align-items: center;
}
.flex_type03 .text_area{
    width:calc(50% - 60px);
    margin-right:60px;
    margin-bottom:30px;
}

.flex_type03 .img_area{
    width:50%;
}


.flex_colum{
    flex-direction: column;
}
.flex_colum .text_area{
    margin-bottom:40px;
    width:auto;
}
.flex_colum .text_area + .text_area{
    margin-bottom:0;
}

.flex_wrap{
    gap:30px;
    align-items: center;
    margin-bottom:0;
}
.flex_wrap .text_area{
    margin-bottom: 40px;
}
.flex_wrap .img_area,
.flex_colum .img_area{
    width:calc(50% - 250px);
}

.sub_top{
    align-items: center;
}
.sub_top .text_area{
    width:calc(50% - 60px);
    margin-right:60px;
    margin-bottom:30px;
}
.sub_top .img_area{
    width:50%;
}
.sub_top.type02 .text_area{
    width:50%;
    margin-right:70px;
}
.sub_top.type02 .img_area{
    width:calc(50% - 70px);
}
.sub_top.type03 .right_area{
    margin-right:0;
    width:50%;
}
.sub_top .text_area + .text_area{
    width:50%;
    margin-right:0;
}


.line{
    margin-bottom:40px;
    width:30px;
    height:1px;
    background:#000;
    display:inline-block
}

.mt_50{
    margin-top:50px;
}


@media(max-width:768px){
    h2{
        font-size:21px;
        line-height:25px;
    }
    h4{
        font-size:15px;
        line-height: 18px;
    }
    h5{
        font-size:15px;
        line-height:18px;
    }
    h2,
    h6{
        margin-bottom:10px;
    }
    section{
        margin-bottom:50px;
    }
    /* br{
        display:none;
    } */
    .mo_br{
        display:block;
    }
    .pc_br{
        display:none;
    }
    .mo{
        display:block;
    }
    .pc{
        display: none;
    }
    .mt_50{
        margin-top:10px;
    }
    .btn .btn_inner{
        padding:6px 18px;
        font-size:12px;
    }
    .sec .inner{
        width:100%;
        padding:0 15px;
    }
    .sub_title,
    .flex_box .sub_title{
        font-size:16px;
        line-height:1.5;
        margin-bottom:10px;
    }
    .flex_wrap .img_area, 
    .flex_colum .img_area{
        width:100%;
    }
    .title_en{
        margin-bottom:10px;
    }

    .flex_colum .text_area{
        margin-bottom:20px;
    }
    .flex_colum .text_area:last-of-type{
        margin-bottom:30px;
    }

    .sub_top .text_area + .text_area{
        width:100%;
        margin-right:0;
    }
}

/* 따뜻한 진료, 바른진료 */
/* .img_area h2,
.img_area h3,
.img_area h6,
.img_area h4,
.img_area p,
.img_area b{
    color:#fff;
    font-weight:300
} */
.clinic {
    padding: 0 100px;
    margin-bottom: 230px;
}
.clinic .clinic_wrap {
    /* background: #353f63; */
    padding: 70px 100px;
}

.dark_blue{
    background: #353f63;
}
.pink{
    background:#d79189
}


.clinic .clinic_wrap .flex_box {
    align-items: center;
    justify-content: center;
    /* gap:60px; */
}

.clinic .clinic_wrap .flex_left {
    margin-right: 60px;
}

.clinic .clinic_wrap h6 {
    color: rgba(254, 254, 254, 0.4);
}
.clinic .clinic_wrap h2{
    font-weight: 500;
}
.clinic .clinic_wrap .clinic_title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.clinic .clinic_wrap .last_text .last_lst {
    margin-bottom: 50px;
}

.clinic .clinic_wrap .last_text .last_lst:last-child {
    margin-bottom: 0;
}

.clinic .clinic_wrap .last_text .last_lst .cs {
    margin-bottom: 15px;
    font-size: 45px;
    color: rgba(254, 254, 254, 0.4);
}

.clinic .clinic_wrap .last_text .last_lst h3 {
    font-weight: 300;
}

.clinic .clinic_wrap .last_text .last_lst .text {
    font-weight: 300;
    font-family: 'spoqaHanSansNeo', sans-serif;
    letter-spacing: -.05em;
}

.clinic .clinic_wrap .flex_right {
    margin-right: 0;
}

.clinic .clinic_wrap .img_area .img_box {
    display: flex;
}

.clinic .clinic_wrap .img_area .img_lst {
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}

.clinic .clinic_wrap .img_area .img_lst:nth-child(1) {
    transform: translateY(160px)
}

.clinic .clinic_wrap .img_area .img_lst:nth-child(3) {
    transform: translateY(200px);
    margin-right: 0;
}

.clinic .clinic_wrap .img_area .img_lst .img_reveal {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ddd;
}

.clinic .clinic_wrap .clinic_title,
.clinic .clinic_wrap h2,
.clinic .clinic_wrap h3,
.clinic .clinic_wrap .text{
    color:#fff;
}


@media(max-width:768px){
    /* sub_common */
    .line{
        margin-bottom:20px;
    }
     /* .clinic */
     .flex_box{
        flex-direction: column;

    }
    .clinic{
        padding:0;
        margin-bottom:50px;
    }
    .clinic .clinic_wrap{
        padding:50px 15px;
    }
    .clinic .clinic_wrap .flex_box{
        flex-direction: column;
        gap:0;
    }

    .clinic .clinic_wrap .flex_left{
        margin-right:0;
        text-align: center;
        margin-bottom:15px;
    }
    .clinic .clinic_wrap h6{
        font-size: 13px;
        line-height: 1;
        margin-bottom:10px;
        text-align:center;
    }
    .clinic .clinic_wrap .clinic_title{
        font-size:16px;
        line-height:1;
        margin-bottom:15px;
    }
    .clinic .clinic_wrap .last_text{
        display:flex;
        margin-top:20px;
    }
    .clinic .clinic_wrap .last_text .last_lst{
        margin-bottom:0;
        flex:1 1 30%;
        margin-right:20px;
        text-align:center;
        margin-bottom:0;
    }
    .clinic .clinic_wrap .last_text .last_lst:last-child{
        margin-right:0;
    }
    .clinic .clinic_wrap .last_text .last_lst p{
        font-size:13px;
        line-height:18px;
    }
    .clinic .clinic_wrap .last_text .last_lst .cs{
        font-size:14px;
        margin-bottom:5px;
    }
    .clinic .clinic_wrap .last_text .last_lst h3{
        font-size:18px;
        line-height:21px;        
    }
    .clinic .clinic_wrap .img_area .img_lst:nth-child(1),
    .clinic .clinic_wrap .img_area .img_lst:last-child{
        transform:translateY(0)
    }
}

/* 둘러보기 */
.tour {
    text-align: center;
    margin-bottom: 140px;
    padding-bottom: 80px;
}

.tour .title_area {
    margin-bottom: 90px;
}

.tour .title_area h6 {
    color: #898989;
    text-align: center;
    margin-bottom:20px;
}

.tour .slider_wrap {
    position: relative;
    width: 100%;
}

.tour .slider_wrap .slick-list {
    overflow: visible;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.tour .slider_wrap .slick-list:active {
    cursor: grabbing;
}

.tour .slider_wrap.is-dragging .slick-slide .img_area {
    transition: none !important;
}

.tour .slider_wrap .slick-slide {
    width: 400px;
    height: 400px;
    margin-right: 10px;
}

.tour .slider_wrap .slick-slide .img_area {
    will-change: transform;
    transition: transform 0.3s ease-out, box-shadow 0.3s linear, filter 0.5s cubic-bezier(.175, .885, .32, 1.275);
    filter: blur(3px);
    border-radius: 10px;
    overflow: hidden;
    transform: perspective(500px) rotate(.001deg);
    height: 100%;
}

.tour .slider_wrap .slick-slide .img_area img {
    width: 100%;
    height: 100%;
}

.tour .slider_wrap .slick-slide.slick-center .img_area {
    transform: scale(1.2) perspective(500px) rotate(.001deg);
    filter: blur(0);
    box-shadow: 2px 15px 24px 0 rgba(0, 84, 99, 0.24);
    position: relative;
    z-index: 9;
}

.tour .slider_wrap .slider_arrows {
    position: absolute;
    width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tour .slider_wrap .slider_arrows .slick-prev {
    left: -30px;
}

.tour .slider_wrap .slider_arrows .slick-next {
    right: 0;
}

.tour .slider_wrap .slider_arrows .slick-prev:before,
.tour .slider_wrap .slider_arrows .slick-next:before {
    display: none;
}

.tour .slider_wrap .slider_arrows i {
    font-size: 60px;
    color: #000;
}

.tour .slider_wrap .slick-slide .img_title {
    position: absolute;
    display: inline-block;
    bottom: 15px;
    right: 15px;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    padding: 5px 10px;
    color: #fff;
}

.tour .slider_wrap .slick-slide .img_title.kumho {
    background: #62a6a4
}

.tour .slider_wrap .slick-slide .img_title.sechon {
    background: #d79189
}

.tour .slider_wrap .slick-slide .img_title.woalbae {
    background: #353f63
}

@media(max-width:768px){
    .tour{
        margin-bottom:30px;
        padding-bottom:60px;
    }
    .tour .slider_wrap .slick-slide{
        width:250px;
        margin-right:40px;
    }
    .tour .title_area{
        margin-bottom:60px;
    }
    .tour .slider_wrap .slick-slide .img_area{
        width:250px;
        height:250px;
    }
    .tour .slider_wrap .slick-slide .img_title{
        font-size:10px;
        line-height:1;
        padding:3px 7px;
        bottom:10px;
        right:10px;
    }
}

/* bottom common */
/* 도침요법 소개 */
.bottom_com .shap {
    position: absolute;
    width: 10vw;
    height: 10vw;
    top: 0;
    left: 0;
    animation: rotate 30s linear 0.005s infinite reverse;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bottom_com .title {
    text-align: center;
}

.bottom_com .flex_box {
    width: calc(100vw - 200px);
    margin: 0 auto;
    gap: 30px;
}

.bottom_com .flex_box>div {
    /* width: auto; */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bottom_com .flex_box .common_info {
    background-size: cover;
    background-position: 50% 50%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    background-image: url('/static/images/common/bottom_common_intro_img.webp')
}
.bottom_com.type02 .flex_box .common_info{
    background-image: url('/static/images/sub/sub01_02/bottom_common_intro_img_sechon.webp')
}

.sub01_03 .bottom_com .flex_box .common_info{
    background-image: url('/static/images/sub/sub01_03/bottom_common_intro_img_01_03.webp')
}

.bottom_com .flex_box .common_info .inner {
    padding: 50px 60px;
    animation: 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0s both paused slide-in-right;
    animation-play-state: running;
}

.bottom_com .flex_box .common_info h2 {
    padding-top: 350px;
    color: #fff;
    font-weight: 500;
}

.bottom_com .flex_box .common_info .link a {
    color: #fff;
}

.bottom_com .flex_box .common_info .link a:after {
    background: #fff;
}

/* 공지사항 */
.bottom_com .flex_box .common_notice {
    background: #fff;
    padding: 60px;
    border: 2px solid #e2e6e3
}

.bottom_com .flex_box .common_notice .top_title {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.bottom_com .flex_box .common_notice .top_title h2 {
    margin-bottom: 0;
}

.bottom_com .flex_box .common_notice .top_title .link {
    margin-left: auto;
}

.bottom_com .flex_box .common_notice .notice_box .notice_lst {
    padding: 10px 0;
}

.bottom_com .flex_box .common_notice .notice_box a {
    display: flex;
    align-items: center;
}

.bottom_com .flex_box .common_notice .notice_box a p {
    color: #09130b;
    font-size: 16px;
    font-weight:400
}

.bottom_com .flex_box .common_notice .notice_box a .dt {
    position: relative;
    max-width: 80%;
    margin-right: auto;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space: inherit;
}

.bottom_com .flex_box .common_notice .notice_box a .dt:before {
    content: '·';
    position: relative;
    margin-right: 8px;
}

.bottom_com .flex_box .common_notice .notice_box a .dt:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #09130b;
    bottom: 0;
    left: 0;
    display: none;
}

.bottom_com .flex_box .common_notice .notice_box a .dt:hover:after {
    display: block;
}

/* 지점별 진료시간 */
.bottom_com .flex_left,
.bottom_com .flex_right{
    width:830px;
}

.bottom_com .location_area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bottom_com .location {
    position: relative;
    padding: 30px;
    border: 2px solid #e2e6e3;
    box-sizing: border-box;
    overflow:hidden
}

.bottom_com .location01 {
    background: #62a6a4
}

.bottom_com .location02 {
    background: #d79189
}

.bottom_com .location03 {
    background: #353f63
}

.bottom_com .location h2,
.bottom_com .location h4,
.bottom_com .location p,
.bottom_com .location span,
.bottom_com .location a {
    color: #fff;
}

.bottom_com .location h2,
.bottom_com .location p,
.bottom_com .location span,
.bottom_com .location a {
    font-weight: 300;
}
.bottom_com .location h4{
    font-weight:500;
    word-break: keep-all;
}

.bottom_com .location .info_text {
    display: flex;
    gap: 50px;
}

.bottom_com .location .info_text .info_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bottom_com .location .info_lst {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    gap: 30px;
}

.bottom_com .location .info_right .add_info {
    margin: 5px 0;
    line-height: 1;
    font-size: 15px;
    letter-spacing: initial;
    font-weight:300
}

.bottom_com .location .info_text .tel a,
.bottom_com .location .info_text .tel a span {
    position: relative;
    font-size: 36px;
    line-height: 43px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: inherit;
    text-transform: uppercase;
    font-weight:600
}

.bottom_com .location .info_text .tel a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #fff;
    left: 0;
    bottom: -5px;
    transition: width .3s ease-out;
    will-change: width;
}

.bottom_com .location .info_text .tel a:hover:before {
    width: 100%;
}

.bottom_com .location .location_map {
    position: absolute;
    width: 230px;
    height: 150px;
    border-radius: 10px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden
}

.bottom_com .location .naver_img img{
    position:absolute;
    right:0;
    bottom:0;
}
.bottom_com .location .naver_img .naver_logo{
    bottom:0;
    left:50%;
    transform:translateX(-50%)
}
.bottom_com .location .naver_img .naver_reserve{
    bottom:-30px;
    right:0;
}
.bottom_com .location .link a:after{
    background:#fff;
}

.sub01_01 .bottom_com .location01,
.sub01_01 .bottom_com .location02,
.sub01_03 .bottom_com .location01,
.sub01_03 .bottom_com .location02{
    background:#353f63
}
.sub01_01 .bottom_com .location03,
.sub01_03 .bottom_com .location03{
    background:#111A3B;
    height:33.33%;
}
.sub01_01 .bottom_com .location02 .info_area,
.sub01_03 .bottom_com .location02 .info_area{
    display:flex;
    gap:60px;
}
.sub01_01 .bottom_com .info_name{
    font-size:20px;
    margin-bottom:5px;
}
.sub01_01 .bottom_com .info_bus .info_lst{
    justify-content:flex-start;
}
.sub01_02 .bottom_com .location .info_text .info_left,
.sub01_03 .bottom_com .location .info_text .info_left{
    justify-content:flex-start
}

.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .cont,
.root_daum_roughmap .wrap_btn_zoom {
    display: none !important;
}

.roughmap_maker_label .roughmap_lebel_text {
    color: #000 !important;
}

/* 지점선택 */
.bottom_com .more_store {
    display: flex;
    gap: 30px;
}

.bottom_com .more_store .spot_lst {
    position: relative;
    width: 33.3%;
}

.bottom_com .more_store .spot_lst .spot_dosce {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.bottom_com .more_store .spot_lst .spot_dosce h4,
.bottom_com .more_store .spot_lst .spot_dosce a {
    color: #fff;
}

.bottom_com .more_store .spot_lst .spot_dosce a:after {
    background: #fff;
}

.bottom_com .more_store .spot_lst .spot_dosce h4 {
    margin-bottom: 30px;
    font-weight:500
}
.bottom_com .more_store .naver_link{
    background:#2BB000
}
.bottom_com .more_store .naver_link img{
    position:absolute;
    top:20px;
    left:22%;
    width:70%;
}
.bottom_com .info_name{
    margin-bottom:10px;
}
.bottom_com .info_bus{
    display:flex;
    gap:10px;
}
.bottom_com .info_bus .info_lst{
    display:flex;
    flex-direction: column;
    gap:5px;
}
.bottom_com .info_bus .info_lst .bus{
    display:flex;
    align-items: center;
}
.bottom_com .info_bus .info_lst .bus i{
    margin-right:10px;
}
.bottom_com .info_bus .info_lst .destination{
    margin-left:10px;
}
.bottom_com .info_bus .info_lst .destination i{
    margin-right:5px;
}
.bottom_com .info_call{
    margin-top:15px;
}
.bottom_com .info_call .link{
    margin-top:0;
}
.bottom_com .info_call .link a:after{
    background:#fff;
}
.bottom_com .info_call .link a span{
    height:18px;
    line-height: 18px;
    padding-bottom:0;
}
.bottom_com .info_call .link a span b{
    font-size:14px;
    font-family: 'spoqaHanSansNeo', 'sans-serif';
}
.bottom_com .info_call .link i{
    position:relative;
    margin-right:5px;
}
.bottom_com .info_call .link a:hover span>b{
    transform:translateY(-18px);
    -webkit-transform:translateY(-18px);
}
.sub01_03 .bottom_com .info_call{
    margin-top:0;
}
@media(max-width:768px){

    .bottom_com .flex_left,
    .bottom_com .flex_right{
        width:100%;
    }

    .bottom_com .flex_box .shap{
        width:auto;
        top:-5vw;
        left: -10vw;
        z-index: 2;
        animation: none;
    }
    .bottom_com .flex_box .shap img{
        max-width:25vw;
    }
    .bottom_com .flex_box{
        width:100%;
        flex-direction: column;
        padding:0 15px;
    }
    .bottom_com .flex_box>div{
        width:100%;
    }
    .bottom_com .flex_box .common_info .inner{
        padding:20px;
        height:100%;
        display:flex;
        align-items: flex-end;
    }
    .bottom_com .flex_box .common_info .text_area{
        display:flex;
        flex-direction: column;
        text-align: left;
    }
    .bottom_com .flex_box .common_info h2{
        padding-top:0;
    }
    .bottom_com .link{
        margin-top:0;
    }

    /* notice */
    .bottom_com .flex_box .common_notice{
        padding:20px;
        margin-bottom:30px;
    }
    .bottom_com .flex_box .common_notice .top_title{
        margin-bottom:20px;
    }
    .bottom_com .flex_box .common_notice .notice_box .notice_lst{
        padding:0;
        margin-bottom:15px;
    }
    .bottom_com .flex_box .common_notice .notice_box a{
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .bottom_com .flex_box .common_notice .notice_box a .dt{
        width:100%;
        margin-right:0;
        max-width:100%;
    }
    .bottom_com .flex_box .common_notice .notice_box a p{
        font-size:12px;
    }
    
    /* location */
    .bottom_com .location{
        padding:20px;
        margin-bottom:30px;
        /* min-height:500px; */
    }
    .bottom_com .location:last-child{
        margin-bottom:0;
    }
    .bottom_com .location .info_text{
        flex-direction: column;
        gap:0;
    }
    .bottom_com .location h4{
        font-size:21px;
        line-height:25px;
        margin-bottom:20px;
        text-align: center;
    }
    .bottom_com .location .info_lst{
        font-size:13px;
        line-height:13px;
    }
    .bottom_com .location .info_right{
        margin:20px 0;
    }
    .bottom_com .location .info_right .add_info{
        font-size:13px;
        line-height: 20px;
    }
    .bottom_com .location .info_text .info_left{
        gap:10px;
    }
    .bottom_com .location h2, 
    .bottom_com .location p, 
    .bottom_com .location span, 
    .bottom_com .location a{
        font-weight:200
    }
    .bottom_com .location .info_text .tel a,
    .bottom_com .location .info_text .tel a span{
        font-size:20px;
        line-height: 1;
    }
    .bottom_com .location a .mo{
        display:inline-block
    }
    .bottom_com .location .location_map{
        position:relative;
        width:100%;
        right:0;
        top:0;
        transform: translateY(0);
    }

    .sub01_01 .bottom_com .info_name{
        font-size:15px;
    }
    .sub01_01 .bottom_com .location02 .info_area{
        flex-direction: column;
        gap:10px;
    }
    .sub01_01 .bottom_com .location03{
        height:250px;
    }
    .sub01_02 .bottom_com .location .info_right .add_info{
        line-height:1;
    }

    .sub01_03 .bottom_com .location:last-child{
        height:250px;
    }
    .root_daum_roughmap{
        width:100% !important;
    }

    .bottom_com .info_bus{
        flex-direction: column;
    }

    .sub01_01 .bottom_com .location02 .info_area,
    .sub01_03 .bottom_com .location02 .info_area {
        gap: 20px;
    }

    /* 지점 링크 */
    .bottom_com .more_store{
        gap:10px;
    }
    .bottom_com .more_store .spot_lst .spot_dosce{
        bottom:40px;
        left:0;
        width:100%;
        text-align: center;
    }
    .bottom_com .more_store .spot_lst .spot_dosce h4{
        margin-bottom:5px;
    }

    .sub01_02 .bottom_com .location01{
        background:#d79189
    }
    .sub01_02 .bottom_com .more_store .spot_lst .spot_dosce img{
        position:absolute;
        width:70%;
        top:20px;
        left:22%;
    }
}

/* animate */
.reveal_box{
    position:relative;
    overflow:hidden;
    display:inline-block;
    vertical-align:bottom; /* inline-block+overflow:hidden의 baseline 디센더 갭 제거(하단 5px) */
    /* width:100%; */
}
.reveal_box_inner{
    width:100%;
    height:100%;
    overflow:hidden;
    transform:translate3D(-100%, 0, 0 )
}
.reveal_box_inner:after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#ddd;
    transform:translate3d(0,0,0)
}
.reveal_animate .reveal_box_inner{
    animation: 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0s both paused slide-in-right;
    animation-play-state: running;
    line-height: 0;
}
.reveal_animate .reveal_box_inner:after{
    animation:0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.4s both paused slide-out-right;
    animation-play-state: running;
}
.reveal_animate .reveal_box_image{
    animation: 1.5s cubic-bezier(0.76, 0, 0.24, 1) 0.2s both paused scale-in-down;
    animation-play-state: running;
    /* height:100%; */
    width: 100%;
}
@keyframes slide-in-right {
    0% {
        transform: translate3D(-100%, 0, 0);
    }
    100% {
        transform: translate3D(0, 0, 0);
    }
}
@keyframes scale-in-down {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes slide-out-right{
    0% {
        transform: translate3D(0, 0, 0);
    }
    100% {
        transform: translate3D(100%, 0, 0);
    }
}

.shap{
    position:absolute;
}

.shap01{
    right:80px;
    top:50%;
    transform:translateY(-50%);
}
.shap02{
    right:300px;
    top:calc(50% + 40px);
}