.header {
    background-color: #fff;
    position: fixed;
    z-index: 1000;
    top:0;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    transition: 0.5s all;
    border-bottom:1px solid transparent
}
.header.scDown{
    border-color: #ebebeb;
}
.header .headerWrap{
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin:0 auto;
    width: 100%;
    height: 100%;
    align-items: center;
    align-content: center;
}
.header .headerWrap .left{
    display: flex;
    align-items: center;
}
.header .headerWrap .right{
}
.header .header_logo{
    margin-right: 40px;
}
.header .header_logo .logo{
    display: inline-block;
    width:170px;
}
.header .header_logo .logo img{
    width: 100%;
}
.header .headerWrap .nav {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.header .headerWrap .nav_link{
    color: inherit;
    position: relative;
    transition: 0.5s all;
}
.header .headerWrap .nav_link:hover{
    opacity: 0.7;
}
.header .headerWrap .nav_link:nth-last-child(1){
    margin-right: 0;
}
.header .headerWrap .nav_link:before{
    content:"";
    width: 0;
    height: 2px;
    background: #111;
    transition: inherit;
    position: absolute;
    left:0;
    bottom: -10px;
}
.header .headerWrap .nav_link.--color:before{
    background-color: var(--main-color);
}
.header .headerWrap .nav_link.--accent{
    background-color: var(--main-color);
    color:#fff;
    padding: 7px 10px;
    border-radius: 7px;
}
.header .headerWrap .nav_link.--accent::before{
    background-color: var(--main-color);
}
.header .headerWrap .nav_link:hover:before{
    width: 100%;
}
.header .headerWrap .nav_link.--after{
}
.header .headerWrap .nav_link.--after:after{
    content:"";
    position: absolute;
    right: -15px;
    top:50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: #111;
}
.header .headerWrap .nav_link.--color{
    color: var(--main-color);
}
.header .headerWrap .profill{
    position: relative;
    cursor: pointer;
}
.header .headerWrap .profill .image{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 50%;
}
.header .headerWrap .profill .ico.--new{
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    background: url(../images/header_ico_new.png?v=1) center center / cover no-repeat;
}
.header .headerWrap .profill_sub{
    position: absolute;
    right: 0;
    top: 100%;
    box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    border-radius: 5px;
    margin-top: 10px;
    display: none;
}
.header .headerWrap .profill_sub .listWrap{
    text-align: left;
    padding: 10px 20px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #fff;
}
.header .headerWrap .profill_sub .listcon{
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s all;
    padding: 5px 10px;
    padding-right: 20px;
    border-radius: 5px;
}
.header .headerWrap .profill_sub .listcon:hover{
    background-color: #ebebeb;
}
.header .headerWrap .profill_sub .listcon:after{
    content:"";
    width:8px;
    height: 10px;
    position: absolute;
    right: 4px;
    top:50%;
    transform: translateY(-50%);
    background: url(/images/header_ico_right.png) center center / cover no-repeat;
    transition: 0.5s all;
    opacity: 0;
}
.header .headerWrap .profill_sub .listcon:hover:after{
    opacity: 1;
}
.header .headerWrap .profill_sub .listcon .ico.--new{
    top: auto;
    position: relative;
    right: auto;
    margin-left: 5px;
}
.header .headerWrap .util{
    display: flex;
    align-items: center;
    font-size: 14px;
}
.header .headerWrap .util_list{
    margin-right: 15px;
}
.header .headerWrap .util_list:nth-last-child(1){
    margin-right: 0;
}
.header .headerWrap .util_list.--after{
    position: relative;
    margin-right: 30px;
}
.header .headerWrap .util_list.--after:after{
    content:"";
    position: absolute;
    right: -15px;
    top:50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: #111;
}
.header .headerWrap .util_list.--sch{
    transition: 0.5s all;
}
.header .headerWrap .util_list.--sch:hover{
    filter: var(--main-color-ft);
}
.header .headerWrap .schWrap {
    position: relative;
    display: inline-flex;
    min-width: 350px;
}
.header .headerWrap .schWrap .input {
    border: 1px solid #111;
    padding: 10px 15px;
    border-radius: 7px;
    font-size: 18px;
}
.header .headerWrap .schWrap .input.sch {
    width: 100%;
}
.header .headerWrap .schWrap .ico{
    position:absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    cursor: pointer;
}
.header .headerWrap .schWrap .input.sch::placeholder{
    color:#111;
}

.header_m {
    position: fixed;
    z-index: 1000;
    top:0;
    width: 100%;
    display: none;
    align-items: center;
    transition: 0.5s all;
    border-bottom:1px solid transparent
}
.header_m.scDown{
    border-color: #ebebeb;
}
.header_m .headerWrap{
    width: 100%;
}
.header_m .topArea{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    height: 75px;
    padding: 0 2.5%;
    position: relative;
    transition: 0.5s all;
    z-index: 1;
    border-bottom: 1px solid #ebebeb;
}
.header_m.active .topArea{
}
.header_m .topArea .header_logo{
    margin-right: 40px;
}
.header_m .topArea .header_logo .logo{
    width: 170px;
    display: inline-block;
    transition: 0.5s all;
}
.header_m .topArea .header_logo img{
    width: 100%;
}
.header_m .topArea .util{
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s all;
}
.header_m.active .topArea .util_list.--sch{
    display: none;
}
.header_m .topArea .util .btn_mobileMenu {
    width: 30px;
    height:30px;
    background-color: transparent;
    border: none;
    padding: 0;
}
.header_m .topArea .util .btn_mobileMenu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    font-size: 0;
    transition: 0.75s;
}
.header_m .topArea .util .btn_mobileMenu span:nth-child(even) {
    margin: 7px 0;
}
.header_m.active .topArea .util .btn_mobileMenu span:nth-child(even){
    display:none;
}
.header_m.active .topArea .util .btn_mobileMenu span{
}
.header_m.active .topArea .util .btn_mobileMenu span:nth-child(1) {
    transform: translateY(-0.5px) rotate( 225deg);
}
.header_m.active .topArea .util .btn_mobileMenu span:nth-child(3) {
    transform: translateY(-2px) rotate( 135deg);
}

.header_m .topArea .profill{
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.header_m .topArea .profill .image{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 50%;
    transition: 0.5s all;
}
.header_m .topArea .profill .ico.--new{
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    background: url(../images/header_ico_new.png?v=1) center center / cover no-repeat;
}
.header_m .topArea .profill_sub{
    position: absolute;
    right: 0;
    top: 100%;
    box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    border-radius: 5px;
    margin-top: 10px;
    display: none;
}
.header_m .topArea .profill_sub .listWrap{
    text-align: left;
    padding: 10px 20px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #fff;
}
.header_m .topArea .profill_sub .listcon{
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s all;
    padding: 5px 10px;
    padding-right: 20px;
    border-radius: 5px;
}
.header_m .topArea .profill_sub .listcon:hover{
    background-color: #ebebeb;
}
.header_m .topArea .profill_sub .listcon:after{
    content:"";
    width:8px;
    height: 10px;
    position: absolute;
    right: 4px;
    top:50%;
    transform: translateY(-50%);
    background: url(/images/header_ico_right.png) center center / cover no-repeat;
    transition: 0.5s all;
    opacity: 0;
}
.header_m .topArea .profill_sub .listcon:hover:after{
    opacity: 1;
}
.header_m .topArea .profill_sub .listcon .ico.--new{
    top: auto;
    position: relative;
    right: auto;
    margin-left: 5px;
}

.header_m .btArea {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s all;
    height: 45px;
}
.header_m.active .btArea{
    left:0;
}
.header_m .btArea:before{
    content:"";
    width:100%;
    height:100%;
    position: absolute;
    left:0;
    top:0;
    opacity: 0;
    background-color: rgba(1,1,1,0.8);
}
.header_m.active .btArea:before{
    opacity: 1;
    transition: 0.75s 0.5s all;
}
.header_m .btArea .content{
    width: 100%;
    background: #fff;
    position: relative;
    height: 100%;
}
.header_m .btArea .toplogo{
    padding: 2.5%;
    height: 75px;
    display: flex;
    align-items: center;
}
.header_m .btArea .util {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5%;
    border: 1px solid #111;
    border-left: 0;
    border-right: 0;
    font-size: 18px;
}
.header_m .btArea .util_list {
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}
.header_m .btArea .util_list:nth-child(1){
    margin:0;
    padding:0;
}
.header_m .btArea .util_list:after{
    content:"";
    width:1px;
    height:75%;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    background:#111;
}
.header_m .btArea .util_list:nth-child(1):after{
    display:none;
}
.header_m .btArea .menuWrap {
    display: flex;
    gap: 15px;
    padding: 0 2.5%;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    color: #111;
}
.header_m .btArea .menulist {
    font-size: 26px;
}
.header_m .btArea .menulist .link{
    color: inherit;
    letter-spacing: -1px;
}
.header_m .btArea .menulist.--after{
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 15px;
}
.header_m .btArea .menulist.--after:after{
    content:"";
    width:30px;
    height:1px;
    background: #111;
    position: absolute;
    left:0;
    bottom:0;
}
.header_m .btArea .menulist.--color{
    color: var(--main-color);
}

.header_alarm{
    position: fixed;
    top:0;
    right:-120%;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    transition: 0.5s all;
    transition: right 0.5s;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    cursor: pointer;
}
.header_alarm.active{
    right: 0;
    background: rgba(1,1,1,0.5);
    transition: background 0.5s 0.5s , 0.5s right;
}
.header_alarm  .wrap{
    box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    display: flex;
    flex-direction: column;
    width: 420px;
    height: 100%;
    cursor: default;
}
.header_alarm .topArea{
    background-color: var(--main-color);
    padding: 5%;
    color: #fff;
    position: relative;
}
.header_alarm .topArea .titleWrap {
    margin-bottom: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header_alarm .topArea .titleWrap .left{
    font-size: 24px;
}
.header_alarm .topArea .titleWrap .left .ico{
    margin-right: 10px;
}
.header_alarm .topArea .titleWrap .right{
    font-size: 36px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header_alarm .topArea .titleWrap .right .close{
    display:inline-block;
    cursor: pointer;
}
.header_alarm .topArea .titleWrap .right .close:after{
    display: inline-block;
    content: "\00d7";
    font-weight: 300;
}
.header_alarm .topArea .bottom{
    display: flex;
    justify-content: space-between;
}
.header_alarm .topArea .bottom .left{
    color: #ffa0aa;
}
.header_alarm .topArea .bottom .right{
    display: flex;
    gap: 10px;
    align-items: center;
    user-select: none;
    cursor: pointer;
}
.header_alarm .topArea .bottom .right.active .ico.--arrow{
    transform: rotate(315deg) translateY(0px);
}
.header_alarm .topArea .bottom .right .ico.--arrow{
    width: 10px;
    height: 10px;
    background: transparent;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg) translateY(5px);
    display: inline-block;
    transition: 0.5s all;
}
.header_alarm .topArea .notifillter{
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--main-color);
    padding: 5%;
    font-weight: 300;
    text-align: right;
    display: none;
}
.header_alarm .topArea .notifillter .fillter_con{
    cursor: pointer;
    user-select: none;
    margin-bottom: 5%;
    transition: 0.5s all;
}
.header_alarm .topArea .notifillter .fillter_con:hover{
    opacity: 0.7;
}
.header_alarm .topArea .notifillter .fillter_con:nth-last-child(1){
    margin-bottom: 0;
}
.header_alarm .btArea{
    padding: 5%;
    background-color: #fff;
    overflow-y: auto;
    height: auto;
    flex: 1;
}
.header_alarm .btArea .listWrap{
}
.header_alarm .btArea .listcon{
    margin-bottom: 10%;
    border-bottom: 1px solid #f6f6f6;
    padding-bottom: 10%;
}
.header_alarm .btArea .listcon:nth-last-child(1){
    margin-bottom: 0;
    border: none;
}
.header_alarm .btArea .listcon .link{
    color: #cbcbcb;
    font-weight: 200;
    transition: 0.5s all;
}
.header_alarm .btArea .listcon .link:hover{
    color: #111;
}
.header_alarm .btArea .listcon.--new .link{
    color: #111;
}
.header_alarm .btArea .listcon .titleWrap{

}
.header_alarm .btArea .listcon .titleWrap .title{
    font-weight: 500;
    font-size: 18px;
    display: flex;
    gap:5px;
    align-items: center;
}
.header_alarm .btArea .listcon .titleWrap .title .text{

}
.header_alarm .btArea .listcon .titleWrap .title .ico.--new{
    top: auto;
    position: relative;
    right: auto;
    margin-left: 5px;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    background: url(../images/header_ico_new.png?v=1) center center / cover no-repeat;
    display: none;
}
.header_alarm .btArea .listcon.--new .titleWrap .title .ico.--new{
    display: flex;
}
.header_alarm .btArea .listcon .titleWrap .explain{
}
.header_alarm .btArea .listcon .date{
    font-size: 14px;
    color: #cbcbcb;
}

@media(max-width:1080px) {
    .header{
        display: none;
    }
    .header_m{
        display: flex;
    }
    .header_m.scDown .topArea{
        height: 50px;
    }
    .header_m.scDown .btArea{
    }
    .header_m.scDown .topArea .header_logo .logo{
        width:130px;
    }
    .header_m.scDown .topArea .util{
    }
    .header_m .topArea .util .util_list.--sch img{
    }
    .header_m.scDown .topArea .util .util_list.--sch img{
        width: 20px;
    }
    .header_m.scDown .topArea .profill .image{
        width: 35px;
        height: 35px;
    }
    .header_m .topArea .util .util_list.--sch img{
        width:100%;
    }
    .header_m .btArea .menulist{
        font-size: 20px;
    }

    .header_alarm{
        bottom: -100%;
        right: 0;
        width: 100%;
        height: 100vh;
        top: auto;
        justify-content: flex-end;
        transition: 0.5s bottom;
    }
    .header_alarm.active{
        bottom: 0;
        transition: background 0.5s 0.5s, 0.5s bottom;
    }
    .header_alarm .wrap{
        width: 100%;
        height: 80vh;
    }
}
@media(max-width:720px){
    .header_m .topArea .header_logo .logo{
        width: 140px;
    }
    .header_m .topArea .util{
        font-size: 14px;
    }
    .header_m .btArea .menulist{
        font-size: 16px;
    }
    .header_m .topArea .profill_sub .listWrap{
        font-size:14px;
    }
    
    .header_alarm .topArea{
        font-size: 3.4vw;
    }
    .header_alarm .topArea .titleWrap .left{
        font-size: 5vw;
    }
    .header_alarm .topArea .titleWrap .left .ico img{ 
        width: 4vw;
        max-width: max-content;
    }
    .header_alarm .btArea .listcon .link{
        font-size: 3.2vw;
    }
    .header_alarm .btArea .listcon .titleWrap .title{
        font-size: 3.8vw;
    }
    .header_alarm .btArea .listcon .date{
        font-size: 2.8vw;
    }
}
