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

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

.container{
    
    width: 1000px;
    height:650px;
    display: flex;
}
header{
    width:200px;
    height:100%;
    background-color:#619f5e;
}
.logo{
    margin-top:20px;
    margin-bottom:20px;
}

.wrap{
    width:800px;
    height:100%;
}

.gnb{
    width: 180px;
    margin:0 auto;
}
.gnb>li>a{
    display: flex;
    height:50px;
    align-items: center;
    width:180px;
    justify-content: center;
    font-weight: bold;
    color:#fff;
}
.gnb>li>ul>li>a{
    display: flex;
    height:30px;
    align-items: center;
    width:180px;
    justify-content: center;
    
}
.gnb ul{
    background-color: beige;
    height:0;
    overflow: hidden;
    transition:all 0.6s ease 0s;
}
.gnb>li:hover>ul{
    height:130px;
}
.gnb li:hover>a{
    background-color: #000;
    color:#fff;
}
.station{
    width:800px;
    height:350px;
}
.train{
    width:100%;
    height:100%;
    position: relative;
}
.train>li{
    width:100%;
    height:100%;
    position: absolute;
    left: 0;
    top:0;
    opacity: 0;
    pointer-events: none;
    transition:all 0.6s ease 0s;
}
.train>li.on{
    opacity: 1;
    pointer-events: auto;
}
.contents{
    width:800px;
    height:200px;
    display: flex;
}
.contents>section{
    width:250px;
    padding:0 10px;
}
.contents>section:nth-of-type(1){
    width:300px;
}
.contents h2{
    margin:20px 0;
}
.notice li{
    display: flex;
    justify-content: space-between;
}
.gallery{
    display: flex;
    justify-content: space-between;
}
.direct{
    background:url("../img/direct.jpg") no-repeat 50% 50% / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.direct a{
    background-color: #619f5e;
    color:#fff;
    padding:5px 25px;
}
footer{
    width:800px;
    height:100px;
    background-color: #000;
    color:#fff;
    display: flex;
    align-items: center;
}
.copy{
    width:600px;
    text-align: center;
}
.foot_info{
    width:200px;
}
.sns{
    display: flex;
}
.modal{
    position: fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color: #000;
    opacity: 0.8;
    display: none;
}
.modal.on{
    display: block;
}
.popup{
    position: fixed;
    left:50%;
    top:50%;
    background-color: #fff;
    width:300px;
    padding:20px;
    border:2px solid #000;
    transform: translate(-50%,-50%);
    display: none;
}
.popup.on{
    display: block;
}
.popup h2{
    margin:20px 0;
}
.popup_ctl{
    margin-top:20px;
    display: flex;;
    justify-content: flex-end;
}
.btn_close{
    border:1px solid #000;
    padding:10px 30px;
    cursor: pointer;
}
