/*  폰트 적용 */
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);

html {
    font-family: "Noto Sans KR", sans-serif;
}

/* 노말라이즈 */
body,
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #555555;
}

a {
    color: #707070;
    text-decoration: none;
}

/* 라이브러리 */
.con {
    margin: 0 auto;
}
.con2 {
    margin: 0 auto;
}
.con1500 {
    margin: 0 auto;
}
.con800 {
    margin: 0 auto;
}
.img-box > img {
    width: 100%;
    display: block;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}

.cell {
    float: left;
    box-sizing: border-box;
}

.cell-right {
    float: right;
    box-sizing: border-box;
}

.margin-0-auto {
    margin: 0 auto;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.text-align-center {
    text-align: center;
}

.line-height-0-ch-only {
    line-height: 0;
}

.line-height-0-ch-only > * {
    line-height: normal;
}

.relative {
    position: relative;
}

.absolute-left {
    position: absolute;
    left: 0;
}

.absolute-right {
    position: absolute;
    right: 0;
}

.absolute-middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* 기타 라이브러리 */
.ico {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.ico > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: black;
}

.ico > div:nth-child(2) {
    top: 40%;
    transition: visibility 0s 0.3s;
}

.ico > div:nth-child(3) {
    top: 80%;
}

.ico.active > div:nth-child(2) {
    visibility: hidden;
    transition: visibility 0s;
}

.ico > div:nth-child(1),
.ico > div:nth-child(3) {
    transition: top 0.15s 0.15s, transform 0.15s 0s;
}

.ico.active > div:nth-child(1),
.ico.active > div:nth-child(3) {
    top: 40%;
    transform: rotate(45deg);
    transition: top 0.15s, transform 0.15s 0.15s;
}

.ico.active > div:nth-child(3) {
    transform: rotate(-45deg);
}

/* 커스텀 */

/* 최대 고정형 레이아웃 용 */
/* 커스텀 */
html, body {
    overflow-x:hidden;
}
.con {
    max-width: 1200px;
}
.con2 {
    max-width: 950px;
}
.con1500 {
    max-width: 1500px;
}
.con800 {
    max-width: 800px;
}
.visible-on-sm-down {
    display: none;
}

@media (max-width: 1010px) {
    .con {
        margin-left: auto;
        margin-right: auto;
        max-width: none;
    }
    .no-margin-on-sm-down {
        margin-left: 0;
        margin-right: 0;
    }

    .visible-on-sm-down {
        display: block;
    }

    .visible-on-md-up {
        display: none;
    }

    html.hide-y-scroll-bar-on-sm-down,
    html.hide-y-scroll-bar-on-sm-down > body {
        overflow-y: hidden;
    }
}

@media (max-width: 768px) {
    .con2 {
       /*margin-left: 10px;
        margin-right: 10px;*/
        max-width: none;
    }
    .no-margin-on-sm-down {
        margin-left: 0px;
        margin-right: 0px;
    }

    .visible-on-sm-down {
        display: block;
    }

    .visible-on-md-up {
        display: none;
    }

    html.hide-y-scroll-bar-on-sm-down,
    html.hide-y-scroll-bar-on-sm-down > body {
        overflow-y: hidden;
    }
}


/* 메뉴2 바 */

/*.top-bar {
    margin-top:25px;
    margin-bottom:25px;
}*/
.top-bar .logo {
    margin-top: 13px;
}

/* 1차 메뉴*/
.top-bar .menu-1 > ul {
    background-color:#fff;
    display: inline-block;
    border-radius: 5px;
}
/* 1차 메뉴 아이템 */
.top-bar .menu-1 > ul > li {
    display: inline-block;
    position: relative;
    z-index: 10;
}
/*1차메뉴 텍스트*/
.top-bar .menu-1 > ul > li > a {
    padding: 35px 35px;
    font-size: 0.92rem;
	color: #555; /*폰트*/
	letter-spacing: 0.5px;
    /*font-weight:bold;*/
}
/* 마우스가 올려진 1차메뉴의 자식인 텍스트 */
.top-bar .menu-1 ul > li:hover > a {
    background-color: none;
    color: #744812; /*폰트*/
}
.top-bar .menu-1 ul > li > a {
    display: block;
}
/* 마우스가 올려진 1차메뉴의 자식인 메뉴 */
.top-bar .menu-1 ul > li:hover > ul {
    display: block;
}
/* 하위메뉴 부분*/
.top-bar .menu-1 > ul ul {
    display: none;
    /* 유령화 */
    position: absolute;
    top: calc(100% + 0px);
    left: -10%;
    width: 185px;
    border: 1px solid #e5e5e5;
    background-color: white;
    transition:height 0.3s;
}

.top-bar .menu-1 > ul ul > li:hover {
    background-color: #eee; /*하위over색*/
}
.top-bar .menu-1 > ul ul > li:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}
/* 하위메뉴 텍스트 */
.top-bar .menu-1 > ul ul > li > a {
    text-align: left;
    padding: 12px 15px; /* 하위메뉴칸넓이*/
    font-size: 0.82rem;
}

/* 로그인,회원가입 */
.top-bar .menu-2 ul > li > a {
    line-height: 93px; /* 핵심 */
}
.top-bar .menu-2 ul > li > a {
    font-size: 0.9rem;
    letter-spacing:-0.5px;
    padding: 0 5px;
    color: #aaa;
}

.top-bar .menu-2 ul > li > a:hover {
    color: #444;
}

/* sns */
.top-bar .menu-3 ul > li > a {
    line-height: 93px; /* 핵심 */
}
.top-bar .menu-3 ul > li > a {
    font-size: 1.8rem;
    padding: 0 5px;
    margin-top: 0px;
    color: #aaa;
}
.top-bar .menu-3 ul > li:nth-child(3) > a {
    font-size: 0.9rem;
    padding: 0 5px;
    margin-top: 32px;
    color: #aaa;
}

.top-bar .menu-3 ul > li > a:hover {
    color: #d92f88;
}
.top-bar .menu-3 ul > li:nth-child(2) > a:hover {
    color: #03cf5d;
}


/*
.buttons {
	display: table-cell;
	padding: 1em;
	text-align: center;
	vertical-align: middle;

}

[class*="btn-"] {
	position: relative;
	display: inline-block;
	width: 100%;
	color: #707070;
	font-size: 0.95rem;
	line-height: 45px;
	margin-right:3em;
	max-width: 200px;
    padding-top:6px;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: middle;
}*/

/**
 * ===========================
 * @class : btn-1
 * ===========================
 */


.btn-1 {
	letter-spacing: 0;
	-webkit-transition: all .28s ease-in-out;
	transition: all .28s ease-in-out;
}
.btn-1:hover,
.btn-1:focus,
.btn-1:active {
	letter-spacing: 5px;
}
.btn-1:after,
.btn-1:before {
	border: 1px solid rgba(255, 255, 255, 0);
	bottom: 0;
	content: " ";
	display: block;
	margin: 0 auto;
	position: relative;
	-webkit-transition: all .28s ease-in-out;
	transition: all .28s ease-in-out;
	width: 0;
}
.btn-1:hover:after,
.btn-1:hover:before {
	border-color: #333;
	-webkit-transition: width 350ms ease-in-out;
	transition: width 350ms ease-in-out;
	width: 70%;
}
.btn-1:hover:before {
	bottom: auto;
	top: 0;
}

 /* 문자상담박스 */

.top-bar .sms ul > li span {
    display:block;
    margin-top: 25px;
    font-size: 0.8rem;
    letter-spacing:0.1px;
    color:#666;
    border:2px solid black;
    padding:8px 25px;
}
.top-bar .sms ul > li span:hover {
    margin-top: 25px;
    background-color: black;
    border:2px solid black;
    color:white;
    padding:8px 25px;
}

.sms-m {
    position:absolute;
    font-size: 0.8rem;
    letter-spacing:0.1px;
    color:white;
    border:2px solid black;
    background-color: white;
    padding:8px 10px;
    right:8px;
    top:20px;
}
/*.sms-m:hover {
    border:2px solid black;
    color:white!important;
    padding:8px 10px;
    background-color: black;
}*/
 /* 문자상담박스 */

/* 하단 전화, 맵 */
/* 하단 이름연락처 */
.bg {
    background-color: #990000;
    height: 80px;
}
.foot_box .footer_tel {
    margin-top: 15px;
    margin-right: 10px;
}
.foot_box > form > input {
    display:block;
    text-align: center;
    border:0;
    width:150px;
    background-color: #fff;
    margin-top: 18px;
    margin-right: 10px;
    padding:15px;
    box-sizing:border-box;
    border-radius: 30px;
    /*border:0;
    border-bottom:1px solid black;
    outline:0;*/
}
.foot_box > form > span {
    display:inline-block;
    width:230px; 
    border:0; 
    font-size: 0.8rem;
    background-color: #000;
    margin-top: 18px;
    vertical-align:middle; 
    padding:15px; 
    box-sizing:border-box;
    border-radius:30px; 
}
@media (max-width: 750px) {
.bg {
    background-color: #990000;
    height: 60px;
}
.foot_box .footer_tel {
    display: none;
}
    .foot_box > form > input {
    display:block;
    text-align: center;
    border:0;
    width:105px;
    background-color: #fff;
    margin-top: 10px;
    margin-left: 8px;
    margin-right: 0px;
    padding:11px;
    box-sizing:border-box;
    border-radius: 30px;
    /*border:0;
    border-bottom:1px solid black;
    outline:0;*/
}
.foot_box > form > span {
    display:inline-block;
    width:220px; 
    border:0; 
    font-size: 0.7rem;
    background-color: #000;
    margin-top: 10px;
    margin-left: 8px;
    vertical-align:middle; 
    padding:11px; 
    box-sizing:border-box;
    border-radius:30px; 
}
}

@media (max-width: 630px) {
.bg {
    background-color: #990000;
    height: 100px;
}
.foot_box .footer_tel {
    display: none;
}
.foot_box > form > input {
    display:block;
    text-align: center;
    border:0;
    width:105px;
    background-color: #fff;
    margin-top: 10px;
    margin-left: 8px;
    margin-right: 0px;
    padding:11px;
    box-sizing:border-box;
    border-radius: 30px;
    /*border:0;
    border-bottom:1px solid black;
    outline:0;*/
}
.foot_box > form > span {
    display:inline-block;
    width:220px; 
    border:0; 
    font-size: 0.7rem;
    background-color: #000;
    margin-top: 5px;
    margin-left: 8px;
    vertical-align:middle; 
    padding:11px; 
    box-sizing:border-box;
    border-radius:30px; 
}
}
/* 하단 이름연락처 */

/* copyright-1 */
.bg-2 {
    background-color: #4c4841;
    padding: 20px 0;
}
.bg-2 .copyright-1 ul {
}
.bg-2 .copyright-1 li a {
    display: inline-block;
    font-size: 0.8rem;
    color: white;
    opacity:0.7;
    padding-right: 20px;
}
@media (max-width: 630px) {
    .copyright-1 {
    padding-left: 15px;
    }
}
/* copyright-2 */
.bg-3 {
    background-color: #605a4f;
    padding: 25px 0;
}

.bg-3 .copyright-2 > img {
    padding-right: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
}
@media (max-width: 630px) {
    .bg-3 {
    padding: 30px 0;
}
    .bg-3 .copyright-2 > img {
    display: none;
}
}

.bg-3 .copyright-2 > nav li:nth-child(1) a {
    font-size: 1.4rem;
    color: white;
    padding-bottom: 10px;
    letter-spacing: -0.2px;
}
.bg-3 .copyright-2 > nav li:nth-child(2) {
    font-size: 0.8rem;
	padding-top: 5px;
    padding-bottom: 3px;
    color: white;
    letter-spacing: 0.5px;
}
.bg-3 .copyright-2 > nav li:nth-child(3) {
    font-size: 0.8rem;
    padding-bottom: 3px;
    color: white;
    letter-spacing: 0.5px;
}
.bg-3 .copyright-2 > nav li:nth-child(4) {
    font-size: 0.8rem;
    padding-bottom: 3px;
    color: white;
    letter-spacing: 0.5px;
}
.bg-3 .copyright-2 > nav li:nth-child(5) {
    font-size: 0.7rem;
    color: white;
    letter-spacing: 0.5px;
}
@media (max-width: 630px) {
    .copyright-2 {
    padding-left: 15px;
    }
}
/* 모바일 좌측메뉴 시작 */
/* 모바일 탑1 바 */
.mobile-top-1-bar-height {
    height: 80px;
}

.mobile-top-1-bar {
    /* 모바일탑상단배경 */
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.mobile-top-1-bar .logo {
    text-transform: uppercase;
    text-align: center;
    padding: 6px 0;
}

.mobile-top-1-bar .logo > img {
    width:80px;
}

.mobile-top-1-bar .toggle-side-bar-btn {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

/* 좌측 사이드 바 */
.left-side-bar-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    visibility: hidden;
    transition: visibility 0s 0.3s, background-color 0.5s;
    z-index: 9;
}

.left-side-bar-box.active {
    background-color: rgba(0, 0, 0, 0.5);
    visibility: visible;
    transition: visibility 0s;
}

.left-side-bar {
    position: absolute;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    padding-top: 70px;
    background-color: rgba(0, 0, 0, 0.6);
    transition: left 0.3s;
	overflow-y:auto;
    box-sizing:border-box;
}

.left-side-bar-box.active .left-side-bar {
    left: 0;
}

.left-side-bar .menu-1 > ul {
}

.left-side-bar .menu-1 ul > li > a {
    display: block;
    padding: 10px 0;
    padding-left: 8px;
    color: white;
    /*background-color:#222;*/
    background-color: rgba(0, 0, 0, 0.5);
}
.left-side-bar .menu-1 ul > li > ul > li > a {
    display: block;
    padding: 10px 0;
    padding-left: 8px;
    color: inherit;
    background-color: white;
}

.left-side-bar .menu-1 ul > li > a::after {
    content: "";
    float: right;
    margin-right: 15px;
}

.left-side-bar .menu-1 ul > li > a:not(:only-child)::after {
    content: "+";
}

.left-side-bar .menu-1 ul > li.active > a:not(:only-child)::after {
    content: "+";
}

.left-side-bar .menu-1 > ul ul {
    display: none;
    background-color: #efefef;
}

.left-side-bar .menu-1 > ul ul ul {
    display: none;
    background-color: #dfdfdf;
}

.left-side-bar .menu-1 li.active > ul {
    display: block;
}

.left-side-bar .menu-1 > ul ul > li > a {
    padding-left: 10px;
}

.left-side-bar .menu-1 > ul ul ul > li > a {
    padding-left: 20px;
}

.to-top-btn {
    position: fixed;
    bottom: 15px;
    left: 50%;
    margin-left: 750px;
    background-color: rgba(0, 0, 0, 0.89);
    padding: 10px 10px;
    font-size: 1.4rem;
    border-radius: 0px;
    cursor: pointer;
    z-index: 100;
}

/* 모바일 좌측메뉴 끝 */


