@CHARSET "UTF-8";
.handling ul,
.handling .alphabet,
.result {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 10px auto;
}
.handling ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(100% / 3 - 6px);
	height: 70px;
	margin: 3px;
	padding: 10px 8px;
	border: solid 1px #767d83;
	border-radius: 10px;
}
#store.handling h4 {
	cursor: pointer;
}
#store.handling ul li {
	font-size: 14px;
}
#store.handling .store-list {
	display: none;
}
#store.handling .store-list.js-active {
	display: block;
}
.handling .alphabet p {
	width: calc(100% / 16 - 4px);
	margin: 2px;
	padding: 10px;
	border: solid 1px #767d83;
	border-radius: 10px;
	cursor: pointer;
}
.handling .alphabet p:last-child {
	width: calc((100% / 16 - 4px) * 2);
}
.handling .alphabet p:hover {
	opacity: 0.8;
}
.handling .alphabet p.active {
	border: solid 2px #38437b;
	color: #38437b;
}
.handling ul.result li {
	flex-direction: column;
	align-items: flex-start;
	padding: 10px;
	text-align: left;
}
.handling ul.result li p {
	width: 100%;
	font-size: 12px;
}
.handling ul.result li small {
	font-size: 9px;
}
.search_box {
	display: flex;
	align-items: center;
	overflow: hidden;
	border: solid 1px #767d83;
	border-radius: 25px;
	max-width: 500px;
	margin: 0 auto;
}
.search_box input {
	width: 100%;
	height: 45px;
	padding: 5px 15px 5px 0;
	border: none;
	box-sizing: border-box;
	outline: none;
}
.search_box input::placeholder {
	color: #767d83;
}
.search_box button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.search_box button::before {
	width: 20px;
	height: 20px;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%23767d83%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E');
	background-repeat: no-repeat;
	content: '';
}
@media only screen and (max-width: 960px) {
	.handling .alphabet p {
		width: calc(100% / 8 - 4px);
	}
	.handling .alphabet p:last-child {
		width: calc((100% / 8 - 4px) * 2);
	}
}
@media only screen and (max-width: 768px) {
	.handling ul li {
		width: calc(100% / 2 - 6px);
	}
	.handling span {
		font-size: 13px;
	}
	.handling .alphabet p {
		width: calc(100% / 6 - 4px);
	}
	.handling .alphabet p:last-child {
		width: calc((100% / 6 - 4px) * 2);
	}
}
@media only screen and (max-width: 428px) {
	.handling ul.result li p {
		font-size: 10px;
	}
	.handling ul.result li small {
		font-size: 8px;
	}
}
@media only screen and (max-width: 375px) {
	#store.handling ul li {
		font-size: 12px;
	}
	.handling span {
		font-size: 11px;
	}
}
