.layout {
    width: 1200px;
    position: relative;
    margin: 0 auto;
    height: 100%;
}

.blindWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

body {
     padding-top: 110px; 
     min-width: 1300px;
     max-width: 1920px; 
    margin: 0 auto;
    position:relative;
}

.header {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 110px;
    transition: all .5s;
    z-index: 1500;
    /* max-width: 1920px; */
    margin:0 auto;
    overflow: hidden;
	background: #fff;
}
.header:hover,
.header.scroll {
    background-color: #fff;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    border-bottom:none;
}

.header.active {
    height:300px;
    background-color: #fff;
}

.header .topWrap {
    position:relative;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    padding-left: 40px;
    padding-right: 40px;
    transition:all .5s;
}

.header .topWrap .logo {
    position:relative;
    display: flex;
    margin-right: 60px;
    align-items: center;
    justify-content: center;
}
.header .topWrap .logo .slogo { display: none;}
/* .header .topWrap .logo img {
    transition:all .5s;
}

.header .topWrap .logo img:last-child {
    position:absolute;
}

.header.scroll .topWrap .logo img:first-child,
.header:not(.scroll) .topWrap .logo img:last-child {
    opacity: 0;
} */

.header .topWrap .menu {
    display: flex;
    flex-flow: row wrap;
    height: 100%;
}

.header .topWrap .menu>li {
    position:relative;
    display: flex;
    height: 100%;
    align-items: center;
    margin:0 25px;
}

.header .topWrap .menu>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'NotoKrM';
    font-size: 18px;
    padding:0 10px;
    height: 100%;
    color:#5a6770;
    position:relative;
    transition:all .5s;
}

.header .topWrap .menu>li>a:before {
    content:'';
    width: 0;
    top:calc(100%);
    left:50%;
    transform: translateX(-50%);
    transition:all .5s;
    height: 3px;
    background-color: #005151;
    position:absolute;
}

/* .header.scroll .topWrap .menu>li>a {
    color:#474747;
} */

.header .topWrap .menu>li:hover>a:before,
.header .topWrap .menu>li.active>a:before {
    width: 100%;
}

.header .topWrap .depth2 {
    position:absolute;
    top:calc(100% + 20px);
    width: 180%;
    left:-40%;
}

.header .topWrap .depth2 li {
    text-align: center;
    margin-bottom: 15px;
}

.header .topWrap .depth2 li a {
    font-family: 'NotoKrD';
    line-height: 1.2;
    font-size: 16px;
    color:#333333;
    position:relative;
    opacity: .8;
}

.header .topWrap .depth2 li a:before {
    content:'';
    position:absolute;
    bottom:-2px;
    left:50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #841d2a;
    transition:all .5s;
}

/* .header .topWrap .depth2 li a:hover:before {
    width: 100%;
} */

.header .topWrap .depth2 li a:hover {
    color:#127474;
}

.header .topWrap .rightWrap {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .topWrap .rightWrap .telBtn {
    display: flex;
    align-items: center;
    /* margin-left: 30px; */
    height: 100%;
    position: relative;
}

/* .header .topWrap .rightWrap .telBtn img {
    transition:all .5s;
}

.header .topWrap .rightWrap .telBtn img:last-child {
    position:absolute;
}

.header.scroll .topWrap .rightWrap .telBtn img:first-child,
.header:not(.scroll) .topWrap .rightWrap .telBtn img:last-child {
    opacity: 0;
} */

.header .bottomWrap {
    position:absolute;
    top:100%;
    left:0;
    width: 100%;
    height: calc(100% - 110px);
    transition:all .5s;
    background: url(../../images/common/bg_menu.png) no-repeat center/cover;
}

.quickWrap {
    position:fixed;
    top:0;
    right:0;
    height: 100%;
    z-index: 10000;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

.quickWrap .open {
    position:relative;
}

.quickWrap .open a {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 60%;
    display: block;
}

.quickWrap .linkWrap {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding:96px 0 122px;
    width: 100%;
}

.quickWrap .linkWrap a {
    margin-bottom: 13px;
    display: flex;
    border-radius: 100%;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position:relative;
}

.quickWrap .linkWrap a:last-child {
    margin-bottom: 0;
}

.quickWrap .linkWrap a img {
    transition:all .5s;
}

.quickWrap .linkWrap a img:last-child {
    position:absolute;
    top:0;
    left:0;
}

.quickWrap .linkWrap a:not(:hover) img:last-child,
.quickWrap .linkWrap a:hover img:first-child {
    opacity: 0;
}

/* .quickWrap .linkWrap a:before {
    content:'';
    width: 6px;
    height: 0;
    position:absolute;
    top:50%;
    left:0;
    transform: translateY(-50%);
    transition:all .5s;
    background-color: #1d1f4e;
}

.quickWrap .linkWrap a:hover:before,
.quickWrap .linkWrap a.active:before {
    height:100%;
} */

.quickWrap .scroll {
    display: flex;
    justify-content: center;
    animation: qScl 2s infinite;
}

@keyframes qScl {
    0% {
        padding-top: 0;
    }
    50% {
        padding-top: 20px;
    }
    100% {
        padding-top: 0;
    }
}

.quickWrap .bottomWrap {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    padding-bottom: 30px;
}

.quickWrap .bottomWrap .topBtn {
    margin-top: 30px;
}

.footer {
    position:relative;
    background-color: #fff;
    z-index: 1;
	width: 100%;
	height: 330px;
	border-top: 1px solid #e6e6e6;
}
.footer::after { width: calc(100% - 160px); height: 1px; position: absolute; top: 139px; left: 80px; background: #eeeff0; content: ""; }
.footer .nth1 { position: absolute; top: 70px; left: 80px;}
.footer .nth2 { position: absolute; top: 170px; left: 80px;}
.footer .nth3 { position: absolute; top: 170px; right: 80px;}
.footer .linkWrap { float: left; position: absolute; top: 60px; right: 80px; z-index: 1;}
.footer .linkWrap a { width: 49px; height: 100%; display: block; position: absolute; top: 0;}
.footer .linkWrap a.link1 { left: 0px;}
.footer .linkWrap a.link2 { left: 66px;}
.footer .linkWrap a.link3 { left: 132px;}
.footer .linkWrap a.link4 { left: 198px;}
.footer .linkWrap a.link5 { right: 0px;}

.footer .topWrap {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

/* .footer>div {
    display: flex;
    padding-left: 45px !important;
    width: 100%;
} */

.footer .topBtn {
    position:absolute;
    top: -100px;
    right:80px;
    border-radius:100%;
}



.popupWrap {
    position:absolute;
    top: 150px;
    right: 0px;
     transition:all 1s; 
    z-index: 9;
    display:flex;
    flex-flow:row wrap;
     transform:translateX(100%); 
}

.popupWrap.active {
     transform: translateX(0); 
	
}

.popupWrap .contWrap {
    /*flex:1 1;
    display:flex;*/
    flex-flow:row wrap;
	float:left;
	position: relative;
	opacity: 1;
	transition: all 1s;
}
.popupWrap.active  .contWrap{ opacity: 1; }
.popupWrap .contWrap>div {
    /* flex:1 1; */
	float:left;
	position:relative;
}

.popupWrap .btnsWrap {
    float:left;
	display: block;
    width: 50px;
	height: 100%;
	background-color:#ABA197;
	top: 0px;
	left: -50px;
    position: absolute;
    cursor: pointer;
}

.popupWrap .btnsWrap p {
    color:#fff;
    font-size: 18px;
    font-family: 'NotoKrR';
    position:absolute;
    top:20px;
    left:80%;
	font-weight: bold;
    transform-origin: 0 0;
    transform: rotate(90deg);
}

.popupWrap .btnsWrap span {
    position:absolute;
    display:block;
    width: 100%;
    height: 70px;
    bottom: 0;
    left: 0;
    background:url(../images/common/img_popup_btn.png) no-repeat center center/20px;
    transition:all .3s;
}

.popupWrap.active .btnsWrap span {
    background:url(../images/common/img_popup_close_btn.png) no-repeat center center/25px;
}

	.popupWrap .btnsWrap::after { width: 20px; height: 4px; display: block; background: #fff; position: absolute; bottom: 17px; left: 15px; transform: rotate(45deg); content: ""; transition: all .5s; z-index: 1}
	.popupWrap .btnsWrap::before { width: 20px; height: 4px; display: block; background: #fff; position: absolute; bottom: 29px; left: 15px; transform: rotate(-45deg); content: "";  transition: all .5s; z-index: 1}
	.popupWrap.active .btnsWrap::after { width: 30px; height: 4px; display: block; background: #fff; position: absolute; bottom: 30px; left: 10px; transform: rotate(-45deg); content: ""; z-index: 1}
	.popupWrap.active .btnsWrap::before { width: 30px; height: 4px; display: block; background: #fff; position: absolute; bottom: 30px; left: 10px; transform: rotate(45deg); content: ""; z-index: 1}

.iframeWrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.iframeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ani {
    transition:all .8s;
}