@CHARSET "UTF-8";
/* required */
#required ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 400px;
	margin: 0 auto;
}
#required ul li {
	width: 100%;
	padding: 10px 5px;
	font-size: 1.1rem;
	font-weight: 700;
	text-align: left;
	background: #eee;
	border-left: solid 8px #27acd9;
	box-shadow: 5px 5px 5px #ccc;
	margin-bottom: 10px;
}
#required .box {
	position: relative;
	margin: 30px auto 0px;
	color: #333;
	background: #fff;
	border: 1px solid #999;
}
#required .box-title {
	position: absolute;
	display: inline-block;
	width: 250px;
	top: -0.7rem;
	left: 50%;
	transform: translateX(-50%);
	padding: 0rem 1rem;
	font-size: 1.0rem;
	font-weight: 700;
	background: #fff;
}
#required .box-body {
	padding: 1.5rem 1rem;
	line-height: 1.5;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	#required ul {
		width: 90%;
	}
	#required ul li { 
		font-size: 1.0rem;
	}
	#required .box-body p {
		font-size: 0.8rem;
		text-align: left;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* identity */
#identity ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#identity ul li {
	width: calc(100% / 2 - 10px);
	padding: 8px;
	margin: 5px;
	font-size: 1.0rem;
	font-weight: 700;
	background: #eee;
	box-shadow: 5px 5px 5px #ccc;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	#identity ul {
		width: 95%;
		margin: 0 auto;
	}
	#identity ul li {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 60px;
		font-size: 0.8rem;
	}
	#identity .sub_block {
		font-size: 0.8rem;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* search_box */
.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: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	
}
@media only screen and (max-width: 428px) {
	
}

/* alphabet */
.alphabet{
	display: flex;
	flex-wrap: wrap;
	margin: 10px auto;
}
.alphabet p {
	width: calc(100% / 16 - 4px);
	margin: 2px;
	padding: 10px;
	border: solid 1px #767d83;
	border-radius: 10px;
	cursor: pointer;
}
.alphabet p:last-child {
	width: calc((100% / 16 - 4px) * 2);
}
.alphabet p:hover {
	opacity: 0.8;
}
.alphabet p.active {
	border: solid 2px #de534eff;
	color: #de534eff;
}
@media only screen and (max-width: 1100px) {
	.alphabet p {
		width: calc(100% / 8 - 4px);
	}
	.alphabet p:last-child {
		width: calc((100% / 8 - 4px) * 2);
	}
}
@media only screen and (max-width: 768px) {
	.alphabet p {
		width: calc(100% / 6 - 4px);
	}
	.alphabet p:last-child {
		width: calc((100% / 6 - 4px) * 2);
	}
}
@media only screen and (max-width: 428px) {
	
}

/* result */
.result {
	display: flex;
	flex-wrap: wrap;
}
.result li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: calc(100% / 3 - 6px);
	height: 70px;
	margin: 3px;
	padding: 10px;
	border: solid 1px #767d83;
	border-radius: 10px;
	text-align: left;
}
.result li p {
	width: 100%;
	font-size: 0.8rem;
}
.result li small {
	font-size: 0.68rem;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	.result li {
		width: calc(100% / 2 - 6px);
	}
	.result li p {
		font-size: 0.6rem;
	}
	.result li small {
		font-size: 0.55rem;
	}
}
@media only screen and (max-width: 428px) {
	
}
