/* reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans KR", sans-serif;
}

body, html {
	min-width: 320px;
	overflow-x: hidden;
}

ol, li {
	list-style: none;
}

input[type='text'],
input[type='tel'],
input[type='mail'],
button {
	appearance: none;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

.footer {
	width: 100%;
	height: 100px;
	border-top: 1px solid #999;
	padding: 40px 10px 40px 330px;
	text-align: center;
	font-size: 12px;
	transition: all 0.3s ease-in-out;
}

.footer.close {
	padding: 40px 10px;
}

@media(max-width: 991px) {
	.footer {
		padding: 30px 10px;
	}
	
	select {
		background-color: #fff;
		color: #333;
	}
	
	input[type='date'],
	input[type='time']{
		appearance: none;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: #fff;
		line-height: 40px;
	}
		
}