@charset "utf8";
*{margin:0;padding:0;}
a{text-decoration: inherit; color: inherit;}
ul{list-style: none;}
img{max-width: 100%;}

html{
    background-color: #fff;
    color:#333;
}

header{
    width:1200px;
    height:100px;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}
.logo{
    display: flex;
    align-items: center;
}
.gnb{
    display: flex;
    margin-top:25px;
}
.gnb>li>a{
    display: flex;
    width:180px;
    height:50px;
    align-items: center;
    padding-left:10px;
    font-weight: bold;
}
.gnb>li>ul>li>a{
    display: flex;
    width:180px;
    height:30px;
    align-items: center;
    padding-left:10px;
}
.gnb>li{
    position: relative;
}
.gnb ul{
    position: absolute;
    left:0;
    top:50px;
    background-color: #fff;;
    height:0;
    overflow: hidden;
    transition: all 0.5s ease 0s;
}
.gnb>li:hover ul{
    height:100px;
}
.gnb li:hover>a{
    background-color: #000;
    color:#fff;
}
.station{
    width:1200px;
    height:300px;
    margin:0 auto;
}
.train{
    width:100%;
    height:100%;
    position:relative;
}
.train>li{
    position: absolute;
    left:0;top:0;
    width:100%;
    height:100%;
    opacity: 0;
    transition: all 0.5s ease 0s;
}
.train>li>img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.train>li.on{
    opacity: 1;
}
.contents{
    width:1200px;
    height:200px;
    margin:0 auto;
    display: flex;
}
.contents>section{
    flex:1;
    padding:10px;
}
.tabs{
    display: flex;
    margin:10px 0;
}
.tabs a{
    padding:10px 20px;
    border:1px solid #0c096e;
}
.tabs a.on{
    background-color: #0c096e;
    color:#fff;
}
.tab_contents{
    font-size:14px;
}
.notice li{
    display: flex;
    justify-content: space-between;
}
.notice{
    display: none;
}
.notice.on{
    display: block;
}
.gallery{
    justify-content: space-between;
    display: none;
}
.gallery.on{
    display: flex;
}
.banner{
    background: url("../img/banner.jpg") no-repeat 50% 50% / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner a{
    background:#0c096e;
    color:#fff;
    padding:10px 30px;
}
.direct{
    background: url("../img/direct.jpg") no-repeat 50% 50% / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.direct a{
    background:#0c096e;
    color:#fff;
    padding:10px 30px;
}
footer{
    width:1200px;
    height:100px;
    margin:0 auto;
    background-color: #000;
    color:#fff;
    display: flex;
    align-items: center;
}
.foot_menu{
    display: flex;;
}
.foot_menu>li{
    margin-right:10px;
    text-decoration: underline;
}
.popup{
    position: fixed;
    width:300px;
    background-color: #fff;;
    padding:30px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    display: none;
}
.popup.on{
    display: block;;
}
.popup_ctl{
    display: flex;
    justify-content: flex-end;
    margin-top:20px;
}
.btn_close{
    border:1px solid #000;
    padding:5px 30px;
    cursor: pointer;
}

