@charset "utf-8";
/*-------------------------------------------------
Style Sheet
Version : 1.0
Author :  정자연
Create date : 2018. 06. 30.
-------------------------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
* { font-family: 'Noto Sans KR', sans-serif; }



/* layout */

.container {
	width: 100%;
	max-width: 1300px;
	margin: auto;
}
#content{
    width: 100%;
	min-width: 1300px;
}
header{
    width: 100%;
	min-width: 1300px;
    height: 135px;
    position: relative;
    
}
header h1{
    padding: 7px 0;
    box-sizing: border-box;
    float: left;
}
header h1 img{vertical-align:middle;}
header ul.pc-menu{
    float: right;
}
header ul.pc-menu > li{
    display: inline-block;
    position:relative;
}
header ul.pc-menu > li:last-child{
    padding-right: 0px;
}
header ul.pc-menu > li:hover{
    border-bottom: 3px solid #147ee4;
}
header ul.pc-menu > li > a{
    font-size: 16px;
    font-weight: bold;
    color: #2f2f2f;    
    position:relative;
    padding: 54px 20px;
    box-sizing: border-box;
    display:inline-block;
}
header ul.pc-menu > li > a.on{
    border-bottom:3px solid #147ee4;
    color:#147ee4;
    box-sizing:border-box;
    display:inline-block;
    z-index:99;
}
header ul.pc-menu > li > a:hover{
    color: #147ee4;
    box-sizing: border-box;
    display: inline-block;
}
.dropdown-content-pc {
    display: none;
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
    top: 135px;
    background: #fff;
    min-width: 200px;
    text-align: center;
}

.dropdown-content-pc a {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    display: block;
    color: #3e3f3e;
}
.dropdown-content-pc a:hover{
    background: #00a1e9;
    color: #fff;
}

header ul.pc-menu > li:hover .dropdown-content-pc {
    display: block;

}
.hamburger.is-active {}

.hamburger {
    position: relative;
    z-index: 9999;
    transform: scale(0.8);
    display: none;
    position: absolute;
    top: 20px;
    right: 15px;
    padding: 10px 15px;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #333;
    display: block;
    margin: 7px auto;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-6.is-active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg) scale(0.8);
    -ms-transform: rotate(45deg) scale(0.8);
    -o-transform: rotate(45deg) scale(0.8);
    transform: rotate(45deg) scale(0.8);
}

#hamburger-6.is-active .line:nth-child(2) {
    width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
    transform: translateY(13px);
}

#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(90deg);
    -ms-transform: translateY(-7px) rotate(90deg);
    -o-transform: translateY(-7px) rotate(90deg);
    transform: translateY(-7px) rotate(90deg);
}
/*m-menu*/
.m-menu {
    width: 100%;
    background: #fff;
    position: fixed;
    bottom: 0;
    top: 100px;
    display: none;
    left: -770px;
    z-index: 9999;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    border-top: 2px solid #147ee4;
}
.m-menu > ul.m-menu-in > li{
    padding: 20px 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}
.m-menu > ul.m-menu-in > li > a{
    font-size: 16px;
    font-weight: 500;
}




@media (max-width:768px){
    #content {min-width: 320px;}
    .row{padding: 0px 10px; box-sizing: border-box;}
    header{min-width: 320px; height: 100px;}
    header h1{padding: 14px 0;}
    header ul.pc-menu{display: none;}
    .hamburger{display: block;}
}
@media (max-width:650px){

}

@media (max-width:480px){
}