@charset "utf-8";

  
img{
    max-width: 100%;
}
body,
html {
    padding: 0;
    margin: 0;
    background-color: #FFF;
}
*{
    transition: 200ms cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    -webkit-font-smoothing: antialiased;
}
*:focus {
    outline: none !important;
}
*::-webkit-scrollbar{
    display: none;
}
.noease, .noease *{
    transition: none !important;
}

#app{
    position: relative;
    min-height: 100vh;
}
.container{
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
}

#header{
    z-index: 99900;
    position: absolute;
    top: 0;
    height: 90px;
    width: 100%;
    display: flex;
    text-align: center;
    /* background-color: #FFF; */
    /* border-bottom: 1px solid #eee; */
}

#header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body.mobile.scrolled #header .container{
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(16px);
}
#header .logo{
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 15px;
}
#header .logo img{
    width: 60px;
}
#header .logo .title{
    font-weight: 700;
    color: #FFF;
    text-align: left;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
#header .logo .title a{
    opacity: 0.4;
}
#header .logo .title a.active,
#header .logo .title a:hover{
    opacity: 1 !important;
}

#header .menu{
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    line-height: 1;
    gap: 20px;
    font-size: 20px;
}
#header .menu > div{
    font-size: 1em;
    padding: 0 5px;
    height: 104px;
    transition: 500ms cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    position: relative;

}
#header .menu > div > a{
    font-size: 17px;
    font-weight: bold;
    color: #FFF;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 10px 4px;
}
#header .menu > div > a > span{
    text-shadow: 0 0px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}
#header .menu > div > div{
    position: absolute;
    top: 65px;
    left: 0;
    width: 130%;
    display: flex;
    flex-direction: column;
    background: transparent;

    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    height: fit-content;

    font-size: 0.85em;
    /* transform: translate(-50%, 0); */
    opacity: 0;
    padding: 14px 5px;
    color: #FFF;
}
#header #header_bg{
    position: absolute;
    z-index: -1;
    top: -225px;
    left: 0;
    width: 100%;
    height: 225px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
}
#header.pcmenuon #header_bg{
    top: 0;
}
#header.pcmenuon .menu > div > div{
    /* transform: translate(-50%, 0); */
    opacity: 1;
    pointer-events: inherit;
}
#header .menu > div > div > a{
    padding: 12px 10px;
    white-space: nowrap;
    font-size: 0.9em;
    text-align: left;
}
#header .menu > div:hover > a, #header .menu a:hover, #header .menu a.active{
    opacity: 1;
    color: var(--brand-primary);
}
#header .menu a.active{
    pointer-events: none;
}



#header ._right{
    display: none;
}


#header .logo{
    flex-shrink: 0;
}
#header .menu{
    width: 100%;
    height: 100%;
}




#body{
    min-height: 50vh;
}
#body .bgimage{
    position: relative;
    width: 100%;
    /* max-width: 1920px; */
    margin: 0 auto;
    height: 665px;
    /* background-size: auto 100%; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    overflow: hidden;


    aspect-ratio: 7 / 2.5 !important;
    height: auto !important;


    max-width: 1620px;
    border-radius: 50px 50px;
}
#body .bgimage:nth-child(1){
    border-radius: 0 0 50px 50px;
    aspect-ratio: 6 / 3 !important;
}

#body .bgimage::after{
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
}
#body .bgimage:first-child::before{
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 2;
    pointer-events: none;
    /* background-color: var(--brand-primary); */
    background: #37DC6C;
    background: linear-gradient(90deg, rgba(55, 220, 108, 1) 0%, rgba(0, 173, 239, 1) 100%);
}
#body .bgimage .title{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    font-size: 2em;
    color: #FFF;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
#body .bgimage .title > *{
    transform: translateY(50%);
    transition: 1200ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;

}
#body .bgimage .title * {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
#body .bgimage .title h2{
    font-size: 1.6em;
    line-height: 1.4;
    font-weight: 800;
    transition-delay: 100ms;

    text-transform: uppercase;
}
#body .bgimage .title p{
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    transition-delay: 200ms;
}
#body .bgimage .title h1{
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
    transition-delay: 300ms;
    height: 2.4em;
    padding: 0 1em;
    border: 2px solid #FFF;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
#body .bgimage .arrowdown{
    position: absolute;
    z-index: 9;
    left: 50%;
    bottom: 50px;
    width: 40px;
    height: 50px;
    background-image: url('/assets/resource/arrow-down.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: translateX(-50%);

    animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
	40% {transform: translateX(-50%) translateY(-30px);}
	60% {transform: translateX(-50%) translateY(-15px);}
}


body.loaded #body .bgimage .title > *{
    transform: translateY(0);
    opacity: 1;
}
body.loaded #body .bgimage .title > *:nth-child(1){ transition-delay: 100ms; }
body.loaded #body .bgimage .title > *:nth-child(2){ transition-delay: 300ms; }
body.loaded #body .bgimage .title > *:nth-child(3){ transition-delay: 500ms; }


footer{
    padding: 50px 0 160px;
    text-align: left;

    max-width: 1230px;
    margin: 0 auto;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


/* mobile */
@media (max-width: 768px) {
    #app{
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    #header {
        width: 100%;
        height: 60px;
        gap: 23px;
        position: fixed;
    }
    #header .logo{
        width: auto;
        position: fixed;
        z-index: 99999;
        top: 13px;
        left: 20px;
        gap: 10px;
    }
    #header .logo img{
        width: 50px;
    }
    #header .logo .title{
        font-size: 20px;
    }
    #header .menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
        font-size: 36px;
        background-color: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(16px);

        padding: 0 0;
        
        opacity: 0;
        pointer-events: none;
    }
    body.mobile_menuon #header .container{
        background-color: transparent !important;
        
    }
    body.mobile_menuon #header .menu{
        opacity: 1;
        pointer-events: inherit;
        padding-top: 70px;
        z-index: 0;
        gap: 0px;
        overflow: auto;
    }
    #header .menu > div > a > span{
        font-weight: 800;
        line-height: 1.5;
        margin-top: -5px;
        font-size: 0.9em;
    }
    #header .menu > div{
        height: auto;
        display: flex;
        align-items: flex-start;
        /* justify-content: space-between; */
        justify-content: center;
        padding: 20px;
        width: 100%;
        gap: 0px;

        border-top: 1px solid rgba(255,255,255,0.05);
    }
    #header .menu > div > div{
        opacity: 1;
        left: inherit;
        position: relative;
        top: 0;
        right: 0;
        padding: 0;
        background-color: transparent;
        backdrop-filter: none;
        gap: 0.5em;
        transform: none !important;
    }
    #header .menu > div > a{
        color: #FFF;
        font-weight: 600;
        font-size: 26px;
        width: auto;
        padding: 0;
        height: auto;

        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        flex-shrink: 0;
    }
    #header .menu > div > div > a{
        color: #FFF;
        padding: 0;
        text-align: right;
        font-size: 22px;
        font-weight: 600;
    }
    #header ._right{
        position: fixed;
        z-index: 99999;
        top: 10px;
        right: 20px;
        display: flex;
    }
    #header ._right .menu_btn{
        aspect-ratio: 1/1;
        height: 40px;
        width: 40px;
        margin-right: -10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    
    #header ._right .menu_btn ._icon{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        margin-top: 1px;
    }
    #header ._right .menu_btn ._icon > span{
        height: 2px;
        border-radius: 3px;
        background-color: #FFF;
        transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    #header ._right .menu_btn ._icon > span:nth-child(1){ width: 20px; }
    #header ._right .menu_btn ._icon > span:nth-child(2){ width: 20px; }
    #header ._right .menu_btn ._icon > span:nth-child(3){ width: 20px; }

    body.mobile_menuon #header ._right .menu_btn ._icon > span{ background-color: #FFF; }
    body.mobile_menuon #header ._right .menu_btn ._icon > span:nth-child(1){ width: 26px; transform: rotate(45deg) translate(5px, 5px); transform-origin: center; }
    body.mobile_menuon #header ._right .menu_btn ._icon > span:nth-child(2){ width: 0; }
    body.mobile_menuon #header ._right .menu_btn ._icon > span:nth-child(3){ width: 25px; transform: rotate(-45deg) translate(3px, -4px); }

    #body .bgimage:nth-child(1){
        aspect-ratio: 3/4 !important;
        border-radius: 0 0 20px 20px;
    }
    #body .bgimage{
        aspect-ratio: 3/3 !important;
        border-radius: 0;
    }
    #body .bgimage::before{
        height: 4px !important;
    }
    #body .bgimage .title{
        padding-bottom: 0;
        gap: 10px;
    }
    #body .bgimage .arrowdown{
        width: 40px;
        height: 40px;
        bottom: 30px;
    }
    #body .bgimage .title h1{
        font-size: 16px;
    }
    #body .bgimage .title h2{
        font-size: 28px !important;
    }
    #body .bgimage .title p{
        font-size: 15px;
    }

    footer{
        padding: 30px 20px 110px;
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    footer select{
        width: 50%;
        font-size: 14px;
    }
}







.titler{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #313131;
    margin-bottom: 30px;
}
.titler small{
    font-size: 19px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
}
.titler big{
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}
.titler p{
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
}
@media (max-width: 768px) {
    .titler small{
        font-size: 16px;
    }
    .titler big{
        font-size: 32px;
    }
    .titler p{
        font-size: 13px;
    }
    .titler p br{
        display: none;
    }
}





#container{
    position: relative;
    padding: 30px 0 60px;

    /* for test */
    min-height: 50vh;
}
#container > .submenu{
    position: sticky;
    top: 30px;
    left: 0;
    width: 240px;
    float: left;
}
#container > .submenu > .atitle{
    margin-bottom: 1em;
}
#container > .submenu > ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#container > .submenu > ul > li{
    line-height: 1;
}
#container > .submenu > ul > li > a{
    font-size: 1.2em;
    height: 2.2em;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
}
#container > .submenu > ul > li > a.active{
    color: var(--brand-primary2);
    font-weight: bold;
}
#container > .body{
}
#container > .body img{
    max-width: 100%;
    height: auto !important;
}

@media (max-width: 768px) {
    #container{
        padding: 45px 0 20px 0;
    }
    #container > .submenu{
        position: relative;
        float: none;
        width: 100%;
        margin-bottom: 40px;
        top: 5px;
    }
    #container > .submenu > .atitle{
        display: none;
    }
    #container > .submenu > ul{
        white-space: nowrap;
        overflow: auto;
        flex-direction: row;
        padding: 0 20px;
    }
    #container > .submenu > ul > li{
        margin-right: 13px;
    }
    #container > .submenu > ul > li > a{
        padding: 0 10px;
        background-color: #f6f6f6;
        border-radius: 20px;
        font-size: 1em;
        font-weight: bold !important;
    }
    #container > .submenu > ul > li > a.active{
        background-color: var(--brand-primary2);
        color: #FFF;
    }
    #container > .body{
        margin-top: 20px;
        padding: 0 20px;
    }
    #container > .body * {
        max-width: 100% !important;
        /* height: auto !important; */
    }
    #container > .body img{
        width: 100% !important;
    }
}

.content{
    margin-top: -10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 30px;
}
.content *{
    max-width: 100%;
}
@media (max-width: 768px) {
    .content{
        margin-top: 0;
        border: none;
        border-radius: 0;
        padding: 0;
    }
}





.floating{
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99991;
    display: flex;
    flex-direction: column;
    gap: 9px;
    transition-duration: 1s;
}
.floating > a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--brand-primary);
    color: #FFF;
    font-size: 1.4em;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    cursor: pointer;

}
.floating > a.bg2{
    background-color: var(--brand-primary2);
}
.floating > a:active{
    transform: scale(0.9);
}
.floating > a.blog{
    background: #00d28e url(/assets/resource/icon-naverblog.svg) no-repeat center center;
    background-size: 40px;
}
@media (max-width: 768px) {
    body.mobile_menuon .floating{
        right: -100px;
    }
}
@media (min-width: 769px) {
    .floating{
        bottom: 20px;
        right: 20px;
        transform: scale(1.3);
        transform-origin: bottom right;
    }
}





/* for main */
.scard{
    border-radius: 50px 50px;
    overflow: hidden;
    padding: 55px 60px;
    background: rgba(0, 0, 0, 0.03);

    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 40px;

    position: relative;
}
.scard .atitle{
    margin: 0;
}
.notice_grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.notice_grid > a{
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.notice_grid > a > div{
    position: absolute;
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 3px 5px;
    line-height: 1;
    width: auto;
    height: auto;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    color: #FFF;
    font-size: 1em;
    font-weight: 600;
    display: block;
}
.schedulecard{
    min-height: 180px;
    position: relative;
}
.schedulecard > a{
    aspect-ratio: 1 / 1;
    height: 240px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10%;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: skew(-11deg, 10deg) scale(1.1) translate(16px, 35px);
    box-shadow: 13px 30px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .scard{
        padding: 30px 20px;
        border-radius: 0;
        gap: 20px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .scard .title{
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start;
    }
    .scard .title > *{
        margin: 0 !important;
    }

    .notice_grid{
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    .notice_grid > a{
        border-radius: 10px;
    }
    .notice_grid > a > div{
        /* display: none; */
        font-size: 0.9em;
    }

    .schedulecard > a{
        transform: skew(-10deg, 8deg) scale(1.1) translate(-5px, 60px);
    }
}

.scard_sec0{
    border-radius: 50px 50px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
    position: relative;
    pointer-events: none;
}
.scard_sec0 > svg{
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    transform: matrix(-1, 0, 0, 1, 0, 0) translate(-30px, 30px) rotate(-35deg);
}
.scard_sec0 .swiper{
    height:290px;
    position: relative;
    z-index: 1;
}
.scard_sec0 .swiper .swiper-slide{
    height:290px;
    padding: 55px 60px;
    font-size: 2.1em;
    line-height: 1.4;
    font-weight: 8700;
    opacity: 0.4;
    /* height:190px; */
    display: block;
    transition: 300ms;
    transition-delay: 600ms;
}
.scard_sec0 .swiper .swiper-slide b{
    font-weight: 800;
    color: #000;
    transition: 300ms;
}
.scard_sec0 .swiper .swiper-slide.swiper-slide-active{
    opacity: 1;
}
.scard_sec0 .swiper .swiper-slide.swiper-slide-active b{
    color: var(--brand-primary2);
}
.scard_sec0 .swiper .swiper-slide.swiper-slide-active b:nth-of-type(1){ transition-delay: 2000ms; }
.scard_sec0 .swiper .swiper-slide.swiper-slide-active b:nth-of-type(2){ transition-delay: 2400ms; }
.scard_sec0 .swiper .swiper-slide.swiper-slide-active b:nth-of-type(3){ transition-delay: 2800ms; }

@media (max-width: 768px) {
    .scard_sec0{
        background-color: transparent;
    }
    .scard_sec0 > svg{
        display: none;
    }
    .scard_sec0 .swiper{
        height: 180px;
    }
    .scard_sec0 .swiper .swiper-slide{
        height: 180px;
        padding: 30px; 
        font-size: 5.56vw;
        /* text-align: center; */
    }
    .scard_sec0 .swiper .swiper-slide br{
        display: none;
    }
}
.scard_sec0 .swiper-pagination{
    left: unset !important;
    right: 20px !important;
    bottom: 14px !important;
    transform: unset !important;
    top: unset !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}
.scard_sec0 .swiper-pagination-bullet{
    opacity: 0.2;
}
.scard_sec0 .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--brand-primary2);
    width: 20px;
    border-radius: 50px;
    opacity: 1;
}
@media (min-width: 769px) {
    .scard_sec0 .swiper-pagination{
        left: 60px !important;
        top: unset !important;
        right: unset !important;
        bottom: 50px !important;
        transform: scale(0.9) !important;
    }
}



#bfloating{
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    width: 100%;
}
#bfloating .container{
    padding: 20px 30px;
    margin: 0 auto 30px;
    border-radius: 99px;
    max-width: 630px;
    border: 3px solid #FFF;
    background-color: var(--brand-primary2);
    background: linear-gradient(90deg, rgba(55, 220, 108, 1) 0%, rgba(0, 173, 239, 1) 100%);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
#bfloating .container > a{
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}
#bfloating .container > a > *{
    color: #FFF;
}
#bfloating .container > a big{
    position: absolute;
    right: 0;
}
@media (max-width: 768px) {
    #bfloating .container{
        margin: 0;
        border-radius: 20px 20px 0 0;
        padding: 15px 20px;
        border: none;
        border-bottom: none;
    }
    #bfloating .container > a{
        gap: 8px;
    }
}






.grid-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}
.grid-gallery > img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}



#pcBranchFloater{
    position: fixed;
    z-index: 100;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 3px solid #FFF;
    background: linear-gradient(90deg, rgba(55, 220, 108, 1) 0%, rgba(0, 173, 239, 1) 100%);
    background-color: var(--brand-primary2);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    border-radius: 20px;
    padding: 5px;
    overflow: hidden;
}
#pcBranchFloater:before{
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#pcBranchFloater > a{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-weight: 600;
    font-size: 1.2em;
    padding: 12px 15px;
    color: #FFF;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
#pcBranchFloater > a:last-child{
    border-bottom: none;
}