:root{
    --primary-color : #11143c;
    --secondary-color : #866b54;
    --dangerous-color : #864756;
    --light-gray : rgba(0,0,0,.03);
    --brownish-grey : #5a5a5a;
    --grey: #d8d8d8;
}
body.pushable{
    background: unset !important;
}
.ui.button.primary{background-color: var(--primary-color) !important;}
.dangerous{color: var(--dangerous-color) !important;}
.bg_gray{ background-color: var(--light-gray);}


/* container */
.inner{
    width: 1200px;
    margin: 0 auto;
}
.layer{
    /*margin-top: 140px;*/
    margin-top: 70px;
    margin-bottom: 140px;
}
section{
    width: 100%;
    margin-bottom: 100px;
}
@media screen and (max-width : 1240px) {
    .inner{
        width: 100%;
        padding: 0 30px;
    }
}
@media screen and (max-width : 840px) {
    .layer{
        margin-top: 60px;
        margin-bottom: 80px;
    }
    section{
        margin-bottom: 60px;
    }
}
@media screen and (max-width : 540px) {
    .layer{
        margin-top: 30px;
        margin-bottom: 80px;
    }
    section{
        margin-bottom: 30px;
    }
}


.visual{
    height: 380px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
}
.visual .page_title{
    color: #fff;
}
.visual .page_title .menu_title{
    font-size: 18px;
    font-weight: 300;
}
.visual .page_title .menu_title:last-child{
    font-size: 34px;
    font-weight: 500;
}
.visual .page_title .list_title{
    font-size: 34px;
    font-weight: 500;
}
@media screen and (max-width : 1240px) {
    .visual .page_title .menu_title:last-child {
        font-size: 26px;
    }

    .visual .page_title .list_title {
        font-size: 26px;
    }
}
@media screen and (max-width : 1040px) {
    .visual {
        height: 300px;
    }
}
@media screen and (max-width : 540px) {
    .visual {
        height: 240px;
    }
}
/* title */
section .title{
    font-size: 32px;
    font-weight: 700;
    color: #111;
    line-height: 1;
    margin-bottom: 50px;
}
/* 제목 열에 2가지 */
.title_header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.title_header .title{
    margin-bottom: 0;
}
.title_header .more{
    font-size: 16px;
}
.content .title{
    font-size: 26px
}

/* fontSize */
.title.large{
    font-size: 32px;
    line-height: 1.3;
}
.title.medium{
    font-size: 26px;
}

.f_largest{
    font-size: 20px;
}
.f_large{
    font-size: 18px;
    line-height: 1.4;
}
.f_medium{
    font-size: 16px;
}
.f_small{
    font-size: 14px;
}
.f_smallest{
    font-size: 13px;
}

@media screen and (max-width : 1240px) {
    section .title{
        font-size: 24px;
    }
    .title.large{
        font-size: 24px
    }
    .title.medium{
        font-size: 20px;
    }
}
@media screen and (max-width : 1040px) {
    section .title{
        margin-bottom: 24px;
    }
    .f_largest{
        font-size: 18px;
    }
    .f_large{
        font-size: 16px;
    }
}
@media screen and (max-width : 640px) {
    .f_largest{
        font-size: 16px;
    }
    .f_medium{
        font-size: 14px;
    }
    .f_small{
        font-size: 13px;
    }
}
@media screen and (max-width : 540px) {
    section .title{
        font-size: 20px;
        margin-bottom: 18px;
    }
}
@media screen and (max-width : 450px) {
    section .title{
        margin-bottom: 24px;
    }
    .title_header{
        margin-bottom: 24px;
        /*0504 회원가입 정보입력부분*/
        flex-direction: column;
        align-items: flex-start;
    }
    .title_header .more{
        font-size: 13px;
    }

    .title.large{
        font-size: 18px
    }
    .title.medium{
        font-size: 16px;
    }

    .f_largest{
        font-size: 14px;
    }
    .f_large{
        font-size: 14px;
    }
}

/* text_box*/
.text_box{}
.text_left{
    text-align: left;
}
.text_center{
    text-align: center;
}

/* btn */
.btn_area{
    margin: 100px auto;
}
.btn_area.short{
    margin: 20px auto;
}
.btn_area.center{
    text-align: center;
}
.btn_area.right{
    text-align: right;
}
.btn_area .btn{
    display: inline-block;
    border: 1px solid var(--grey);
    padding: 8px 16px;
    transition: all ease .2s;
    font-size: 16px;
    line-height: 1;
}
.btn_area .btn:hover{
    background-color: var(--grey);
    color: inherit;
}

.btn_area .btn.middle{
    min-width: 360px;
    border: 1px solid #111;
    padding: 20px;
    border-radius: 32px;
    font-size: 20px;
    font-weight: 500;
    transition: all ease .2s;
}

.btn_area .btn.primary{
    background-color: var(--primary-color);
    color: #fff;
}
.btn_area .btn.primary:hover{
    background-color: #141752;
    color: #fff;
}

@media screen and (max-width : 1240px) {
    .btn_area {
        margin: 60px auto;
    }
    .btn_area .btn.middle{
        min-width: 240px;
    }
}

@media screen and (max-width : 1040px) {
    .btn_area .btn.middle{
        font-size: 18px;
        padding: 16px;
    }
}
@media screen and (max-width : 640px) {
    .btn_area .btn.middle{
        min-width: 200px;
        font-size: 16px;
    }
}
@media screen and (max-width : 450px) {
    .btn.middle{
        min-width: 200px;
        font-size: 14px;
        padding: 14px;
    }
}


/* modal */
.custom.dimmed{
    display: none;
    background-color: rgba(0,0,0,.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100vh;
    z-index: 100;
}
*[data-modal-trigger]{
    cursor : pointer;
}
.modal.slide_up{
    position: fixed;
    width: 100%;
    min-width: 100%;
    max-height: 90%;
    bottom: 0;
    left: 0;
    z-index: 110;
    display: none;
}
.modal.slide_up .contents{
    display: flex;
    width: 100%;
    height: 100%;
    background: #fff;
    padding-top: 90px;
    display: flex;
    flex-direction: column;
    align-self: flex-end;
}

.modal_close{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 30px;
    right: 30px;
}
.modal_close::before{
    width: 120%;
    height: 2px;
    content: '';
    display: block;
    background: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}
.modal_close::after{
    width: 120%;
    height: 2px;
    content: '';
    display: block;
    background: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}

@media screen and (max-width : 1240px) {
    .modal_close{
        width: 36px;
        height: 36px;
    }
    .modal.slide_up .contents{
        padding-top: 40px;
    }
}
@media screen and (max-width : 840px) {
    .modal.slide_up{
        height: 90%;
    }
    .modal.slide_up .contents{
        height: 100%;
    }
}
@media screen and (max-width : 540px) {
    .modal_close{
        width: 26px;
        height: 26px;
    }
}


/* guide_menu */
.guide_menu{
    position: fixed;
    right: 3%;
    z-index: 100;
    bottom: 60px;
}
.guide_menu .button.circular{
    background-color: var(--primary-color) !important;
    text-align: center;
}
.guide_menu .button.circular i{
    color: #fff;
}
.guide_menu .menu .item{
    padding: 0 !important;
}
.guide_menu .ui.dropdown .menu>.item{
    padding: 0 !important;
}
.guide_menu .ui.dropdown .menu>.item.parent{
    background-color: var(--primary-color);
    color: #fff;
}
.guide_menu .ui.dropdown .menu>.item.parent:hover,
.guide_menu .ui.dropdown .menu>.item.parent:focus{
    background-color: var(--primary-color);
    color: #fff;
}
.guide_menu .ui.dropdown .menu>.item a{
    color: inherit;
    padding: 0.78571429rem 1.14285714rem!important;
    display: block;
}

/* scrolldown anim */
@-webkit-keyframes scrollDdown {
    0% {top: 10%;}
    33% {top: 75%;}
    66%{ top: 10%;}
}
/* visual anim */
@-webkit-keyframes zoom-a {
    0% { background-size: auto 80%; }
    100% { background-size: auto 100%; }
}
@-webkit-keyframes fade-in {
    0% { opacity: 0 }
    100% { opacity: 1 }
}
@-webkit-keyframes zoom-up {
    0% { transform : translateY(100%);}
    100% { transform : translateY(0) }
}

/* education anim*/
@-webkit-keyframes img-slider {
    0% { transform : translateX(0); opacity: 0;}
    10% { transform : translateX(-12.5%); opacity: 1;}
    100% { transform : translateX(-125%);}
}


/* 팝업레이어 */
#hd_pop {z-index:1000;position:relative;margin:0 auto;height:0}
#hd_pop h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border:1px solid #e9e9e9;background:#fff}
.hd_pops img {max-width:100%}
.hd_pops_con {}
.hd_pops_footer {padding:0;background:#000;color:#fff;text-align:left;position:relative}
.hd_pops_footer:after {display:block;visibility:hidden;clear:both;content:""}
.hd_pops_footer button {padding:10px;border:0;color:#fff}
.hd_pops_footer .hd_pops_reject {background:#000;text-align:left}
.hd_pops_footer .hd_pops_close {background:#393939;position:absolute;top:0;right:0}
