/*-------------------------
Search Area
---------------------------*/
#searchAreaWrapper fieldset,#searchAreaWrapper > * > *,#detailButton,#quickCode legend,#seachOuter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#searchAreaWrapper input[type="submit"] {
	background-color: #000;
	background-image: url("../img/ico_search.svg");
	background-size: cover;
	color: rgba(0,0,0,0);
	border: 1px solid #000;
	transition: 200ms ease-out;
}
#searchAreaWrapper input[type="submit"]:hover {
	border: 1px solid #fff;
	filter: invert(1);
}
#searchAreaWrapper > * > * {
	padding: 10px 20px;
}
#searchAreaWrapper > * > * > *:nth-child(n+2) {
	margin-left: 20px;
}
#searchAreaWrapper fieldset > div {
	margin-right: 10px;
}
#searchAreaWrapper input[type="text"] {
	font-size: 16px;
	padding: 0 10px;
	border: none;
}
#searchArea {
	background-color: #ebf4f4;
}
#searchAreaDetail {
	display: none;
	background-color: #dbdbdb;
}
#searchArea input {
	height: 36px;
}
#searchArea input[type="submit"] {
	width: 36px;
}
#detailButton {
	cursor: pointer;
}
#detailButton::after {
	display: block;
	content: "";
	background: url("../img/ico_arrow.svg") center center / contain no-repeat;
	width: 18px;
	height: 18px;
	margin-left: 5px;
}
#searchAreaDetail input {
	height: 30px;
}
#searchAreaDetail input[type="submit"] {
	width: 30px;
}
#quickCode legend {
	font-size: 12px;
	line-height: 1;
}
#quickCode img {
	display: block;
	width: 80px;
	margin-right: 5px;
}

#seachOuter a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 36px;
	position: relative;
	transition: 200ms ease-out;
}
#seachOuter li:nth-child(1) a {
	color: #000;
}
#seachOuter li:nth-child(1) a::before {
	display: block;
	content: "";
	background-color: #000;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: 8px;
	left: 0;
	transition: .2s ease-out;
}
#seachOuter li:nth-child(1) a:hover::before {
	width: 100%;
}
#seachOuter li:nth-child(1) a::after {
	margin-left: 2px;
}
#seachOuter li:nth-child(2) {
	margin-left: 20px;
}
#seachOuter li:nth-child(2) a {
	background-color: #000;
	color: #fff;
	padding: 0 10px;
	border: 1px solid #000;
}
#seachOuter li:nth-child(2) a:hover {
	background-color: #fff;
	color: #000;
}

#seachOuter li:nth-child(2) a::after {
	display: block;
	content: "\25B6\FE0E";
	margin-left: 10px;
	-webkit-transform: scale(.5);
	transform: scale(.5);
}

@media screen and (max-width: 1090px) {
	#searchAreaWrapper > * > * {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 20px;
	}
	#searchAreaWrapper fieldset {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;		
	}
	#searchAreaWrapper legend {
		width: 90px;
	}
	#searchAreaWrapper > * > * > *:nth-child(n+2) {
		margin-left: 0;
		margin-top: 20px;
	}
	#searchAreaWrapper > * > * > * {
		width: 100%;
		max-width: 380px;
	}
	#searchArea input[type="text"] {
		width: calc(100% - 136px);
	}
	#searchAreaDetail input[type="text"] {
		width: calc(100% - 130px);
	}
	#quickCode legend {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	#quickCode legend img {
		margin-right: 0;
		margin-bottom: 5px;
	}
	.searchOuter {
		max-width: 160px !important;
	}
}