@charset "utf-8";

*{
    margin: 0 auto;
    padding: 0;
    list-style: none;
    font-family: "맑은 고딕";
    color: #333333;
    box-sizing: border-box;
}
body,html{
    max-width: 100%;
}
.wrap{
    width: 1200px;
}
a{
    color: inherit;
    text-decoration: none;
}
.clear{
    clear: both;
    display: inherit;
}
button{
    cursor: pointer;
}
#header{
    height: 100px;
}
.logo{
    padding: 30px;
}
.logo>a>img{
    width: 200px; height: 40px;
}
nav{
    float: right;
    margin-top: -75px;
}
.nav{
    width: 640px;
    margin-right: 30px;
    height: 20px;
}
.nav>li{
    float: left;
    text-align: center;
    width: 160px;
    padding: 10px 0px;
    position: relative;
    transition: all 0.4s;
}
.nav>li:hover{
    background-color: #0066ad;
    color: #ffffff;
}
.submenu{
    display: none;
    position: absolute;
    margin-top: 10px;
    z-index: 1;
    width: 160px;
}
.submenu>li{
    background-color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 10px 0px;
    transition: all 0.4s;
}
.submenu>li:hover{
    background-color: #30a3f3;
    color: inherit;
}



#imgslide{
    width: 1200px;
    height: 300px;
    position: relative;
}
.slide img{
    width: 1200px;
    height: 300px;
    position: absolute;
}



#contents{
    height: 200px;
}
#noticeNgallery{
    width: 400px;
    float: left;
    position: relative;
}
#noticeNgallery>h2>button{
    width: 100px;
    height: 40px;
    border: none;
    background-color: #ffffff;
    float: left;
    font-size: 18px;
}
#noticeBtn{
    position: relative;
}
#noticeBtn:hover{
    color: #333333 !important;
    background-color: #0066ad;
}
#galleryBtn{
    position: absolute;
    top: 0;
    left: 100px;
    color: lightgray;
}
#galleryBtn:hover{
    color: #333333 !important;
    background-color: #0066ad;
}
#notice{
    width: 400px;
    border-collapse: collapse;
    text-align: center;
}
#notice td{
    padding: 5px 0px;
    font-size: 0.9em;
}
#notice tr:nth-child(2n){
    background-color: #30a3f3;
}
.item{
    float: left;
    width: 80%;
}
.date{
    float: right;
    width: 20%;
}
#gallery{
    width: 400px;
    display: none;
    margin-top: 60px;
}
#gallery img{
    width: 133px;
    height: 100px;
    display: block;
    float: left;
}
#banner{
    width: 400px;
    display: inline-block;
}
#banner img{
    width: 380px; height: 180px;
    margin: 12px 0px 8px 20px;
    display: block;
}
#barogagi{
    width: 400px;
    float: right;
    display: inline-block;
}
#barogagi img{
    width: 380px; height: 180px;
    margin: 12px 0px 8px 20px;
    display: block;
}



#footer{
    height: 100px;
}
#footer_text{
    width: 75%;
    float: right;
    margin-top: -80px;
}
.bottom_menu{
    margin-left: 140px;
}
.bottom_menu>li{
    float: left;
    width: 160px;
    text-align: center;
    font-size: 0.9em;
}
#footer_text p{
    margin-top: 6px;
    margin-left: 180px;
}



#modal{
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
    top: 0;
    display: none;
}
#modalcontent{
    width: 500px;
    height: 450px;
    margin-top: 150px;
    background-color: #ffffff;
    border: 1px solid #0066ad;
}
#modalcontent h3{
    text-align: center;
    padding: 12.5px;
}
#modalcontent p{
    text-align: center;
    padding: 15px;
}
#modalcontent button{
    background-color: #0066ad;
    border: none;
    border-radius: 5px;
    width: 70px;
    height: 40px;
    color: #ffffff;
    margin: 15px 215px 0px 215px;
}