@charset "utf-8";

@import url('../css/common.css');




.wrap {
    width: 100%;
    height: 100%;
    font-size: 1.7rem;
    position: relative;
}

.w_1400 {
    width: calc(100% - 80px);
    max-width: 1400px;
    margin: 0 auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 1024px) {

}



/* -------------------------------------------------- header */
header {
    width: 100%;
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    transition: .3s;
    padding-top: 30px;
}

header>div {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
    width: 45px;
    height: 36px;
    z-index: 11;
    background: url(../image/bg_logo.png) center left / contain no-repeat;
}


nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none!important;
    transition: .3s;
    text-align: center;
    background-color: var(--black);
    color: var(--white);
}

nav.open {
    display: flex!important;
    /* header랑 nav 둘다 fixed 쓰는 것 때문에 z-index가 꼬여서 부드럽게 오픈은 포기 */
}



.gnb {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;        
}

.gnb li a {
    font-size: 18px;
    margin-left: 0;
    margin: 5px 0;
    padding: 5px 0;
    display: block;
}

/*menu-trigger*/
.menu-trigger {
    display: block;
}


.menu-trigger,
.menu-trigger span {
    transition: all .2s;
    box-sizing: border-box;
    z-index: 100;
}

.menu-trigger {
    position: relative;
    width: 25px;
    height: 14px;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 10px;
}

.menu-trigger span:first-child {
    top: 0px;
}

.menu-trigger span:nth-child(2) {
    top: 6px;
}

.menu-trigger span:last-child {
    bottom: 0px;
}

.menu-trigger.active span:first-child {
    transform: translateY(6px) rotate(-45deg);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:last-child {
    transform: translateY(-6px) rotate(45deg);
}


header.scroll {
    background-color: rgba(0,0,0,.9);
    height: 70px;
    padding-top: 0;
}

@media screen and (min-width: 1024px) {
    header {
        height: 120px;
        padding-top: 0;
    }

    .logo {
        width: 80px;
        height: 65px;
    }

    header.scroll .logo {
        height: 30px;
        background-position: bottom 5px center;
        background-size: 100% auto;
    }

    nav {
        display: block!important;
        width: auto;
        height: 100%;
        background-color: transparent;
        position: relative;
    }
    
    nav .col {
        flex-direction: row;
    }

    .menu-trigger {
        display: none;
    }

    .gnb li a {
        margin: 0;
        margin-left: 50px;
    }
}



/* pop up*/
#layer_popup {
    width: 90vw;
    max-width: 600px;
    height: auto;
    overflow: hidden;
    visibility: visible;
    position:fixed;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #08080c;
}

.pop-wrap {
    font-family: 'NanumSquare', sans-serif;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    position: relative;
}

.pop-contents img {
    width: 100%;
    height: auto;
}

.pop-contents:last-child {
    padding-bottom: 30px;
}



input[type=checkbox] {
    display: none;
}

input[type=checkbox] + label {
    width: 100%;
    position: relative;
    padding-left: 25px;
    height: 30px;
}

input[type=checkbox] + label:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 1px;
    left: 0;
    background: #e3e3e3 url(../image/ic_check.svg) center center / 12px auto no-repeat;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
}

input[type=checkbox] + label > div {
    width: auto;
    display: inline-block;
    line-height: 30px;
    font-weight: 400;
    font-size: 13px;
}

input[type=checkbox]:checked + label:before {
    background-color: var(--black);
}


#layer_popup .close {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.close input[type=checkbox] + label:before {
    top: 6px;
}

.close input[type=checkbox] + label {
    height: 30px;
}

.close input[type=checkbox] + label > div {
    line-height: 30px;
    font-size: 13px;
}


@media screen and (min-width: 1280px) {

    input[type=checkbox] + label {
        padding-left: 30px;
        height: 50px;
    }
    
    input[type=checkbox] + label:before {
        width: 20px;
        height: 20px;
        top: 2px;
    }
    
    input[type=checkbox] + label > div {
        line-height: 50px;
        font-size: 16px;
    }

    
    .close input[type=checkbox] + label:before {
        top: 5px;
    }
    
    .close input[type=checkbox] + label > div {
        font-size: 17px;
    }

}


/* -------------------------------------------------- visual */
#visual {
    width: 100%;
    height: 85vh;
    max-height: 800px;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#visual .swiper-pagination-vertical.swiper-pagination-bullets,
#visual .swiper-vertical>.swiper-pagination-bullets {
    right: calc(50% - 730px);
}

#visual .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 12px 0;
    background-color: #fff;
    opacity: 0.5;
}

#visual .swiper-pagination-bullet-active {
    opacity: 1;
}

.main_sd_txt {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--white);
    background-color: rgba(0,0,0,.5);
    z-index: 10;
    text-align: center;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.5;
}

.main_sd_txt > div {
    position: absolute;
    left: 0;
    bottom: 130px;
    width: 100%;
}

.main_sd_txt>b{
    font-weight: 700;
}

.btn_bottom {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../image/ic_arrow_bt.svg) center center / contain no-repeat;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media screen and (min-width: 1024px) {
    #visual {
        min-height: 900px;
        max-height: 1200px;
        height: 99vh;
    }
    .main_sd_txt {
        font-size: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main_sd_txt > div {
        position: relative;
        left: auto;
        bottom: auto;
    }

    .btn_bottom {
        width: 30px;
        height: 30px;
    }
}

/* -------------------------------------------------- BrandStory */
#BrandStory {
    text-align: center;
}

.b_story .w_1400 {
    padding: 110px 0;
}

.b_story {
    width: 100%;
    background: url(../image/bg_brand_mob.webp) center center / cover no-repeat;
    position: relative;
    color: #fff;
}

.b_story > div {
    width: 100%;
    height: 100%;
}

.p_service {
    position: relative;
}

.p_service::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../image/bg_pattern.png) center center / cover no-repeat;
    opacity: 0.15;
}

.p_service .w_1400 {
    padding: 90px 0;
    position: relative;
}

.p_service .img_box {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    #BrandStory {
        text-align: left;
    }

    .b_story {
        background: var(--black) url(../image/bg_brand_pc.webp) center right / contain no-repeat;
    }

    .b_story > div {
        background-color: rgba(0,0,0,.7);
    }

    .b_story .w_1400 {
        padding: 180px 0;
    }

    .p_service .w_1400 {
        padding: 120px 0;
        padding-left: 50%;
    }

    .p_service .img_box {
        width: calc(50% - 50px);
        position: absolute;
        left: 0;
        top: 120px;
        margin-bottom: 0;
    }
}


@media screen and (min-width: 1400px){
    .b_story .w_1400 {
        padding: 200px 0;
    }

    .p_service .w_1400 {
        padding: 200px 0;
        padding-left: 700px;
    }

    .p_service .img_box {
        top: 200px;
        height: 530px;
    }

    .p_service .img_box > img {
        height: 100%!important;
        width: auto;
    }
}



/* -------------------------------------------------- SabalMenu */
#SabalMenu {
    padding: 90px 0;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}

.tab_container{
    margin-top: 30px;
}

.tab_menu{
    padding: 0 40px;
    margin-bottom: 30px;
}
.tab_menu ul{
	margin: 0;
	padding: 0;
}

.tab_menu ul li:not(:last-child) {
    margin-right: 5px;
}

.tab_menu ul li a{
	text-decoration: none;
	color: var(--black);
	background-color: var(--white);
	padding: 0 15px;
	border-radius: 30px;
    max-width: 70px;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    display: block;
}
.tab_menu ul li a.active{
	background-color: var(--brand);
	color: var(--white);
}

.tab_menu ul li a > span:not(:nth-child(2)) {
    display: none;
}
.tab{
	display: none;
}

.tab_active {
	display: block;
}

#SabalMenu .swiper {
    width: 100%;
    height: 300px;
}

#SabalMenu .swiper-slide {
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    animation: fadeIn;
    animation-duration: 2s;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

#SabalMenu .swiper-slide .sd_img {
    width: 100%;
    height: 240px;
}

#SabalMenu .swiper-slide .f_center {
    flex-direction: column;
}

#SabalMenu .swiper-slide .sd_txt {
    position: absolute;
    left: 0;
    top: 220px;
    width: 100%;
    height: 100%;
    font-size: 16px;
    z-index: 10;
    background-color: var(--white);
    color: var(--black);
    transition: .5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 12px;
}

#SabalMenu .swiper-slide .sd_menu_name {
    height: 60px;
    font-weight: 700;
}

.sd_menu_name span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 400;
}

#SabalMenu .swiper-slide .sd_txt p {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 400;
    color: var(--txt_gray);
}

#SabalMenu .swiper-slide .sd_icon {
    width: 50px;
    height: 50px;
    margin: 20px 0;
}

.sb_menu_01 .sd_icon {
    background: url(../image/ic_menu_01.png) center center / contain no-repeat;
}

.sb_menu_02 .sd_icon {
    background: url(../image/ic_menu_02.png) center center / contain no-repeat;
}

.sb_menu_03 .sd_icon {
    background: url(../image/ic_menu_03.png) center center / contain no-repeat;
}

.sb_menu_04 .sd_icon {
    background: url(../image/ic_menu_04.png) center center / contain no-repeat;
}

#SabalMenu .swiper-slide .sd_icon,
#SabalMenu .swiper-slide .sd_icon + p {
    opacity: 0;
    transition: 1s;
    color: var(--white);
}

#SabalMenu .swiper-slide:hover .sd_txt {
    height: 100%;
    top: 0;
    justify-content: center;
    background-color: var(--brand);
    color: var(--white);
}

#SabalMenu .swiper-slide:hover .sd_txt p {
    color: var(--white);
}

#SabalMenu .swiper-slide:hover .sd_icon,
#SabalMenu .swiper-slide:hover .sd_icon + p {
    opacity: 1;
}


@media screen and (min-width: 1024px) {
    #SabalMenu {
        padding: 120px 0;
    }

    .tab_container {
        margin-top: 90px;
    }

    .tab_menu {
        margin-bottom: 50px;
    }

    .tab_menu ul li:not(:last-child) {
        margin-right: 30px;
    }
    .tab_menu ul li a {
        font-size: 24px;
        width: auto;
        min-width: 200px;
        max-width: 300px;
        line-height: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        padding: 0 35px;
    }

    .tab_menu ul li a > span:not(:nth-child(2)) {
        display: block;
    }

    #SabalMenu .swiper {
        padding-left: 40px;
        padding-right: 40px;
        height: 480px;
    }

    #SabalMenu .swiper-slide {
        width: 450px;
    }

    #SabalMenu .swiper-slide .sd_menu_name {
        height: 110px;
    }

    .sd_menu_name span {
        display: inline-block;
    }

    #SabalMenu .swiper-slide .sd_img {
        height: 370px;
    }

    #SabalMenu .swiper-slide .sd_txt {
        top: 370px;
        font-size: 21px;
        padding-top: 0;
    }

    #SabalMenu .swiper-slide .sd_txt p {
        font-size: 16px;
    }

    .sd_menu_name span {
        display: inline-block!important;
        font-size: inherit;
        margin-bottom: 0;
        font-weight: inherit;
    }

    .sd_menu_name span.pc_none {
        display: none!important;
    }

}

@media screen and (min-width: 1400px){
    #SabalMenu {
        padding: 200px 0;
    }

    
}

@media screen and (min-width: 1440px){
    #SabalMenu .swiper {
        padding-left: calc(50% - 735px);
        padding-right: calc(50% - 735px);
    }

}

/* -------------------------------------------------- Review */
#SabalReview {
    color: var(--white);
    text-align: center;
    background: url(../image/m_bg_review.webp) center center / cover no-repeat;
}

#SabalReview > div {
    width: 100%;
    padding: 90px 0;
}

#SabalReview .txt_area {
    margin-bottom: 30px;
}

#SabalReview .swiper {
    width: 100%;
    height: 350px;
    color: var(--black);
}

#SabalReview .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

#SabalReview .swiper-slide > div {
    position: absolute;
    border-radius: 15px;
}

#SabalReview .swiper-slide .img_box {
    width: 80%;
    height: 180px;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
    z-index: 10;
}

#SabalReview .swiper-slide .img_box img {
    height: 100%!important;
}

.rv_txt_area {
    bottom: 0;
    left: 0;
    height: calc(100% - 90px);
    width: 100%;
    padding-top: 120px;
    text-align: center;
    background-color: #fff;
}

#SabalReview .swiper-pagination {
    position: absolute;
    top: 235px;
    right: 15px;
}

#SabalReview .swiper-pagination-bullet-active {
    height: 15px;
    border-radius: 30px;
    background-color: var(--black);
}

.rv_tit {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 15px;
}

.rv_txt {
    font-size: 12px;
}

@media screen and (min-width: 1024px) {
    #SabalReview > div {
        padding: 120px 0;
    }

    #SabalReview .txt_area {
        margin-bottom: 90px;
    }

    #SabalReview .swiper {
        width: 75%;
        height: 500px;
    }
    
    #SabalReview .swiper-slide {
        width: calc(100% - 100px);
    }

    #SabalReview .swiper-slide .img_box {
        left: 0;
        top: 50%;
        transform: translate(0,-50%);
        width: 375px;
        height: 375px;
        box-shadow: 1px 1px 13px rgba(0,0,0,.3);
    }

    .rv_txt_area {
        height: 100%;
        margin-left: 100px;
        padding-top: 0;
        padding-left: 320px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .rv_tit {
        font-size: 30px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .rv_txt {
        font-size: 20px;
        margin-bottom: 50px;
    }

    #SabalReview .swiper-pagination {
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    #SabalReview .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
        margin: 10px 0;
    }

    #SabalReview .swiper-pagination-bullet-active {
        height: 35px;
        margin: 15px 0;
    }

}

@media screen and (min-width: 1280px){
    #SabalReview {
        text-align: left;
        background: url(../image/bg_review.webp) center center / cover no-repeat;
    }

    #SabalReview .col {
        flex-direction: row;
    }

    #SabalReview .txt_area {
        width: 480px;
        margin-bottom: 0;
    }

    #SabalReview .swiper {
        width: 100%;
    }

    
}

@media screen and (min-width: 1400px){


    #SabalReview .swiper {
        width: calc( 100% - 480px );
        height: 550px;
    }

    #SabalReview .swiper-pagination {
        right: 50px;
    }

    .rv_tit {
        margin-bottom: 45px;
    }
}

/* -------------------------------------------------- Notice */
#SabalNotice {
    padding: 70px 0;
    background-color: var(--black);
    color: var(--white);
}

#SabalNotice .txt_area {
    text-align: center;
}

.notice_list {
    font-size: 13px;
}

.notice_list > ul > li {
    cursor: pointer;
    margin-bottom: 15px;
}

.notice_list > ul > li:last-child {
    margin-bottom: 0;
}

.notice_list .cate {
    width: 65px;
    background-color: var(--white);
    border-radius: 30px;
    color: var(--black);
    padding: 5px 0;
    font-size: 11px;
}

.notice_list .event .cate {
    background-color: var(--brand);
    color: var(--white)
}

.notice_list .tit {
    padding-left: 20px;
    width: calc(100% - 85px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice_list .date {
    display: none;
    color: var(--txt_gray);
}


@media screen and (min-width: 1024px) {
    #SabalNotice {
        padding: 120px 0;
    }

    #SabalNotice .col {
        flex-direction: row;
    }

    #SabalNotice .txt_area {
        width: 480px;
        text-align: left;
    }

    #SabalNotice .txt_area .main_tit {
        margin-bottom: 0;
    }

    .notice_list {
        width: calc(100% - 480px);
        font-size: 21px;
    }

    .notice_list > ul > li {
        margin-bottom: 35px;
    }
    
    .notice_list .cate {
        width: 120px;
        padding: 10px;
        font-size: 19px;
    }

    .notice_list .tit {
        padding-left: 40px;
        width: calc(100% - 230px);
    }

    .notice_list .date {
        width: 130px;
        display: block;
    }
}

@media screen and (min-width: 1400px){
    #SabalNotice {
        padding: 200px 0;
    }
}


/* -------------------------------------------------- Direction */
#Direction {
    padding-top: 90px;
}

#Direction .txt_area {
    text-align: center;
}

#Direction .main_tit {
    font-weight: 700;
}

#Direction .main_tit + p {
    font-size: 17px;
    margin-bottom: 15px;
}

#Direction .swiper {
    border-radius: 15px;
    margin: 40px 0;
}

#Direction .swiper-slide {
    width: 100%;
    height: 250px;
}


#Direction .map {
    width: 100%;
    height: 200px;
}

.sb_info {
    font-size: 14px;
    margin-bottom: 40px;
}

.sb_info > * {
    border-bottom: 1px solid var(--black);
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.5;
}

.sb_info > *::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
}


.sb_info > .address::before {
    background: url(../image/ic_dc_marker.png) center center / contain no-repeat;
    top: 14px;
    transform: translateY(0);
}

.sb_info > .time::before{
    background: url(../image/ic_dc_clock.png) center center / 90% auto no-repeat;
    top: 14px;
    transform: translateY(0);
}

.sb_info > .tel::before{
    background: url(../image/ic_dc_phone.png) center center / 85% auto no-repeat;
}

.sb_info > .time span {
    display: block;
}


.dr_info_area {
    padding-bottom: 40px;
}

.info_tit {
    margin: 35px 0 13px;
    font-size: 15px;
    font-weight: 700;
}

@media screen and (min-width: 1024px) {
    #Direction {
        padding: 120px 0 0;
    }

    #Direction .w_1400 {
        padding-right: 0;
        padding-left: 50%;
        position: relative;
        margin-bottom: 120px;
    }

    #Direction .swiper {
        width: calc(50% - 50px);
        height: 680px;
        position: absolute;
        left: 0;
        top: 0;
        margin: 0 0;
    }

    #Direction .swiper-slide {
        height: 100%;
    }

    #Direction .txt_area {
        text-align: left;
        margin-bottom: 50px;
    }

    #Direction .main_tit + p {
        font-size: 28px;
        font-weight: 700;
    }

    .sb_info {
        font-size: 23px;
    }

    .sb_info > * {
        padding: 28px 0 28px 75px;
    }

    .sb_info > *::before {
        width: 40px;
        height: 40px;
        left: 10px;
    }

    .sb_info > .address::before,
    .sb_info > .time::before {
        top: 26px;
    }

    #Direction .map {
        height: 700px;
    }

    .dr_info_area {
        padding: 80px 0;
    }

    #Direction .dr_info_area .w_1400 {
        padding: 0 0;
        padding-left: 0;
        display: flex;
        margin-bottom: 0!important;
    }

    #Direction .dr_info_area > * > * {
        width: 50%;
    }

    .info_tit {
        margin-top: 0;
    }

}

@media screen and (min-width: 1280px) {
    .sb_info > .time span {
        display: inline;
    }
}

@media screen and (min-width: 1400px){
    #Direction {
        padding: 200px 0 0;
    }

    #Direction .w_1400 {
        margin-bottom: 200px;
        padding-left: 700px;
    }
}

/* -------------------------------------------------- footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 50px 0 70px;
    position: relative;
}

footer .w_1400 {
    position: relative;
}

.ft_logo {
    display: block;
    width: 65px;
    height: 15px;
    z-index: 11;
    background: url(../image/bg_logo_02.png) center left / contain no-repeat;
}

.ft_info {
    margin: 30px 0 20px;
}

.ft_info span {
    padding: 0 7px;
}

.ft_sns {
    position: absolute;
    top: 0;
    right: 0;
}

.ft_sns > * {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
}

.ft_sns > * img {
    width: 60%;
    height: auto;
}

.btn_top {
    z-index: 50;
    position: fixed;
    right: 50px;
    bottom: 100px;
    top: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--black) url(../image/ic_arrow_top.svg) center center / 60% auto no-repeat;
    display: none;
}


.btn_top.on {
    position: absolute;
    right: 50px;
    top: -150px;
    bottom: auto;
}

@media screen and (min-width: 1024px) {
    footer {
        padding: 100px 0;
    }

    .ft_logo {
        width: 150px;
        height: 37px;
    }

    .ft_info {
        line-height: 1.75;
    }

    .ft_info span {
        padding: 0 10px;
        display: inline-block!important;
    }

    .ft_sns > * {
        width: 40px;
        height: 40px;
        margin-left: 10px;
    }

    .btn_top {
        display: block;
        right: -100px;
        transition: .7s;
    }

    footer.scroll .btn_top {
        right: 50px;
    }
}