@charset "utf-8";

.container {
	max-width: 1390px;
	padding: 0px 10px;
	margin: 0 auto;
	position: relative;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}

header h1 {
	background: #d4ccc1;
	padding: 15px 0px;
	text-align: center;
	height: 75px;
	box-sizing: border-box;
}

header h1 a {}

header h1 a img {}

header h1 a img {}

header nav {
	height: 85px;
	background: rgba(0, 0, 0, 0.4);
}

header nav .container {
	max-width: 1200px;
}

header nav .container .gnb {
	display: flex;
}

header nav .container .gnb li {
	width: 100%;
	text-align: center;
}

header nav .container .gnb li a {
	font-size: 18px;
	color: #d4ccc1;
	line-height: 85px;
	display: block;
	letter-spacing: -0.02em;
	transition: color 0.2s;
}

header nav .container .gnb li a:hover {
	color: #fff;
}

header nav .container .gnb li a.on {
	color: #fff;
}

header .btn_menu {
	position: absolute;
	right: 10px;
	top: 10px;
	height: 30px;
	border: none;
	background: url(../images/btn_menu.png) no-repeat center center;
	background-size: 30px;
	text-indent: -9999px;
	width: 30px;
	cursor: pointer;
	display:none;
}
.mobile_menu {
	position:fixed;
	width:100vw;
	height:100vh;
	display:none;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.8);
	z-index: 100;
}
.mobile_menu.on {
	display:block;
}
.mobile_menu ul {
    width: 80%;
    max-width: 320px;
    background: #fff;
    height: 100%;
    right:0;
    position: absolute;
    padding: 30px;
}
.mobile_menu ul li {
    margin-bottom: 30px;
}
.mobile_menu ul li a {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.07em;
}

.cont {
	margin-top: 75px;
}

footer {}

footer .ft_top {
	background: #4c423c;
}

footer .ft_top .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .ft_top .container ul {
	height: 50px;
	display: flex;
	align-items: center;
}

footer .ft_top .container ul li {
	margin-right: 50px;
}

footer .ft_top .container ul li a {
	font-size: 16px;
	color: #d4ccc1;
	font-weight: 600;
}

footer .ft_top .contact_link {
	color: #d4ccc1;
	font-size: 18px;
	font-weight: 300;
}

footer .ft_btm {
	padding: 50px 0;
}

footer .ft_btm .container {
	display: flex;
	flex-wrap: wrap;
}

footer .ft_btm .container .left {}

footer .ft_btm .container .left img {
	max-width: 100%;
	display: block;
}

footer .ft_btm .container .right {
	padding-left: 120px;
}

footer .ft_btm .container .right p {}

footer .ft_btm .container .right ul {
	margin: 10px 0px;
	display: flex;
	flex-wrap: wrap;
}

footer .ft_btm .container .right ul li {
	position: relative;
	padding-right: 20px;
	margin-right: 20px;
}

footer .ft_btm .container .right ul li::after {
	content: '';
	display: block;
	width: 6px;
	height: 14px;
	background: url(../images/footer_bar.png) no-repeat center center;
	position: absolute;
	right: -3px;
	top: 50%;
	transform: translateY(-50%);
}

footer .ft_btm .container .right ul li:last-child {
	padding: 0;
	margin: 0;
}

footer .ft_btm .container .right ul li:last-child::after {
	display: none;
}

footer .ft_btm .container .right copy {}


@media all and (max-width:1390px) {}

@media all and (max-width:1250px) {
	footer .ft_btm .container .right {
		padding-left: 70px;
	}
}

@media all and (max-width:1080px) {}

@media all and (max-width:960px) {
	header h1 {
		padding: 10px 0px;
		height: 50px;
	}

	header h1 a img {
		max-height: 30px;
	}

	header nav {
		height: 60px;
	}

	header nav .container .gnb li a {
		line-height: 60px;
		font-size: 16px;
	}

	.cont {
		margin-top: 50px;
	}

	footer .ft_top .container ul li {
		margin-right: 30px;
	}

	footer .ft_top .container ul li a {
		font-size: 14px;
	}

	footer .ft_top .contact_link {
		font-size: 14px;
	}

	footer .ft_btm .container .right {
		padding-left: 30px;
	}
}

@media all and (max-width:768px) {
	footer .ft_btm .container .left {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	footer .ft_btm .container .right {
		width: 100%;
		padding: 30px 0px 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	footer .ft_top .contact_link {
		display: none;
	}

	footer .ft_top .container {
		justify-content: center;
	}

	footer .ft_top .container ul li {
		margin: 0px 15px;
	}
}

@media all and (max-width:640px) {

	header nav {
		display: none;
	}
	header .btn_menu {
		display:block;
	}

	footer .ft_top {
		display: none;
	}

	footer .ft_btm {
		border-top: solid 1px #ededed;
	}

	footer .ft_btm .container .right ul {
		display: flex;
		flex-direction: column;
		padding: 10px 0px;
	}

	footer .ft_btm .container .right ul li {
		padding: 0;
		margin: 5px 0px 5px;
		font-size: 14px;
		text-align: center;
	}

	footer .ft_btm .container .right ul li::after {
		display: none;
	}

	footer .ft_btm .container .right copy {
		display: block;
		text-align: center;
		font-size: 12px;
	}
}

@media all and (max-width:480px) {}

@media all and (max-width:360px) {}

@media all and (max-width:320px) {}
