@charset "utf-8";

/*###############################
/** Layout
/###############################*/
/* Common */
* {
	margin: 0px;
	padding: 0px;
	font-family: "Noto Sans KR", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	list-style: none;
	vertical-align: top;
	box-sizing: border-box;
}
html,
body {
	height: 100%;
}
input:focus,
textarea:focus {
	outline: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
	box-shadow: 0 0 0 1000px white inset;
}
button {
	border: 0px;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}
img,
video {
	display: block;
	max-width: 100%;
}
input {
	-webkit-appearance: none;
}
.center_cover {
	position: relative;
	margin: 0px auto;
	width: 1360px;
}

/* Input */
.input_text[type="text"],
.input_text[type="email"],
.input_text[type="number"],
.input_text[type="password"],
.input_textarea,
.input_select > select,
.input_button {
	padding: 0px 10px 0px 14px;
	width: 100%;
	height: 43px;
	font-size: 15px;
	font-weight: 400;
	border: 1px solid;
}
.input_text.margin_top,
.input_textarea.margin_top,
.input_select.margin_top,
.input_button.margin_top,
.input_link.margin_top {
	margin-top: 10px;
}
.input_textarea {
	padding-top: 10px;
	padding-bottom: 10px;
	height: 200px;
	line-height: 1.3em;
}
.input_select {
	position: relative;
}
.input_select.width_full {
	width: 100%;
}
.input_select > select {
	position: relative;
	cursor: pointer;
}
.input_select .arrow {
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -6px;
}
.input_button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	cursor: pointer;
}
.input_button > div {
	width: 100%;
}
.input_checkbox,
.input_radiobox {
	display: flex;
	flex-direction: row;
	justify-content: center;
	cursor: pointer;
}
.input_checkbox > input[type="checkbox"],
.input_radiobox > input[type="radio"] {
	display: none;
}
.input_checkbox > i,
.input_radiobox > i {
	font-size: 1.2em;
}
.input_checkbox > span,
.input_radiobox > span {
	display: block;
	position: relative;
	top: 2px;
	margin-left: 3px;
}
.input_list {
	display: flex;
	flex-direction: row;
	width: 100%;
}
.input_list.margin_top {
	margin-top: 10px;
}
.input_list.margin_top_more {
	margin-top: 20px;
}
.input_list.flex_wrap {
	flex-wrap: wrap;
	margin-top: -10px;
}
.input_list.align_right {
	justify-content: flex-end;
}
.input_list.align_center {
	justify-content: center;
}
.input_list > li {
	margin-right: 20px;
}
.input_list.flex_wrap > li {
	margin-top: 10px;
}
.input_list.division > li {
	margin-right: 0px;
}
.input_list.division > li.separate {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0px 10px;
}
.input_list.division > li.separate.small {
	margin-left: 5px;
	margin-right: 5px;
}
.input_list.division > li.flex_grow {
	flex-grow: 1;
}
.input_submit {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	border: 1px solid;
}
.input_submit > div {
	width: 100%;
	font-size: 17px;
}
.input_submit > div.text {
	font-weight: 700;
}
.input_submit.link {
	font-weight: 500;
	text-align: right;
	border: 0px;
}
.input_link {
	text-decoration: underline;
}
.input_link > i {
	position: relative;
	top: 1px;
	font-size: 0.9em;
}
.input_date {
	position: relative;
}
.input_date > i {
	position: absolute;
	top: 50%;
	left: 10px;
	font-size: 25px;
	transform: translate(0px, -50%);
}
.input_date > input[type="text"] {
	padding-left: 40px;
}

/* Header */
.header_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 125px;
	z-index: 1000;
}
.header_wrap .header_cover {
	position: relative;
	margin: auto;
	width: calc(100% - 30px);
	max-width: 1880px;
	height: 25px;
}
.header_wrap .logo_zone,
.header_wrap .reserve_zone {
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: absolute;
}
.header_wrap .logo_zone > a,
.header_wrap .reserve_zone > a {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.header_wrap .logo_zone {
	top: 2px;
	left: 0px;
	width: 156px;
}
.header_wrap .logo_zone .menu_button > i {
	font-size: 25px;
}
.header_wrap .reserve_zone {
	top: -8px;
	right: 0px;
	padding: 8px 20px;
}
.header_wrap .reserve_zone .phone_number {
	margin-right: 20px;
	font-size: 17px;
	font-weight: 300;
	letter-spacing: 1px;
}
.header_wrap .reserve_zone .reserve_button > i {
	font-size: 25px;
}
.header_wrap .reserve_zone .reserve_button > span {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 5px;
}

/* Footer */
.footer_wrap {
	padding: 50px 0px 100px;
	text-align: center;
}
.footer_wrap .address {
	font-size: 17px;
	font-weight: 300;
}
.footer_wrap .information {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px auto 0px;
	width: 630px;
	font-size: 17px;
}
.footer_wrap .information > li {
	margin: 5px 10px;
}
.footer_wrap .copy {
	margin-top: 50px;
}

/* Popup Menu */
.popup_menu {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 100000;
}
.popup_menu .background {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.popup_menu .menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 100001;
}
.popup_menu .menu > a {
	margin-top: 30px;
	padding: 20px 40px;
	font-size: 30px;
}
.popup_menu .menu > a:first-child {
	margin-top: 0px;
}

/*###############################
/** Color Set
/###############################*/
/* Common */
body {
	background-color: #fff;
}

/* Input */
.input_text[type="text"],
.input_text[type="email"],
.input_text[type="number"],
.input_text[type="password"],
.input_textarea,
.input_select > select,
.input_button {
	color: #303030;
	border-color: #999;
	background-color: #fff;
}
.input_select > select {
	background: none;
}
.input_select {
	background-color: #fff;
}
.input_submit {
	color: #fff;
	border-color: rgba(0, 0, 0, 0.1);
	background-color: #46924f;
}
.body_wrap .input_submit.link {
	color: #9c9c9c;
	background: none;
}
.input_link {
	color: #0064ff;
}
.input_link.gray {
	color: #9c9c9c;
}
.input_text[type="text"]::placeholder,
.input_text[type="email"]::placeholder,
.input_text[type="number"]::placeholder,
.input_text[type="password"]::placeholder {
	color: #999;
}
.input_text[type="text"]:disabled,
.input_text[type="email"]:disabled,
.input_text[type="number"]:disabled,
.input_text[type="password"]:disabled,
.input_button.disabled {
	color: #cccccc;
	border-color: rgba(0, 0, 0, 0.1);
	background-color: #dcdcdc;
}
.input_date > i {
	color: #5c5c5c;
}
.input_radiobox i.xi-radiobox-checked,
.input_radiobox span.checked {
	color: #46924f;
}

/* Header */
.header_wrap .reserve_zone {
	background-color: #46924f;
}
.header_wrap .logo_zone > a,
.header_wrap .reserve_zone > a {
	color: #fff;
}

/* Footer */
.footer_wrap {
	background-color: #161e27;
}
.footer_wrap .address,
.footer_wrap .information > li,
.footer_wrap .information > li > a {
	color: #fff;
}
.footer_wrap .copy {
	color: rgba(255, 255, 255, 0.5);
}

/* Popup Menu */
.popup_menu .background {
	background-color: rgba(0, 0, 0, 0.9);
}
.popup_menu .menu > a {
	color: #fff;
	background-color: #46924f;
}

/*###############################
/** Media Query
/###############################*/
@media screen and (max-width: 1400px) {
	/* Common */
	.center_cover {
		width: 100%;
	}
	/* Header */
	.header_wrap .header_cover {
		width: calc(100% - 50px);
	}
}
@media screen and (max-width: 750px) {
	/* Header */
	.header_wrap {
		height: 70px;
		background-color: rgba(0, 0, 0, 0.8);
	}
	.header_wrap .header_cover {
		width: calc(100% - 20px);
	}
	.header_wrap .reserve_zone .phone_number {
		margin-right: 10px;
	}
	/* Footer */
	.footer_wrap {
		padding: 30px 0px 50px;
	}
	.footer_wrap .address {
		font-size: 15px;
	}
	.footer_wrap .information {
		flex-direction: column;
		width: calc(100% - 10px);
		font-size: 15px;
	}
	.footer_wrap .copy {
		margin-top: 20px;
		font-size: 13px;
	}
}
