@charset "utf-8";

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
#searchVaccination {
	padding: 40px;
	margin-bottom: 80px;
	background: #eef8fb;
}

#searchCheckWrap {
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px 10px;
}

.searchCheck {
	font-weight: 500;
	color: #000;
	font-size: 1.6rem;
}

.searchCheck.all {
	padding-bottom: 5px;
}

.searchVaccinationBtn {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.searchVaccinationBtn button {
	padding: 5px 30px;
	background: #2ebcf1;
	color: #FFF;
	border: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 1.8rem;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
}

.searchVaccinationBtn button:hover {
	opacity: 0.7;
}

.searchVaccinationBtn button::before {
	content: "";
	width: 17px;
	height: 17px;
	background: url(../../img/common/icon_serch.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {

}


/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}
/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	#searchVaccination {
		padding: 20px;
		margin-bottom: 40px;
		background: #eef8fb;
	}

	.searchCheck {
		font-size: 1.4rem;
	}

	.searchVaccinationBtn button {
		padding: 5px 30px;
		background: #2ebcf1;
		color: #FFF;
		border: none;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 10px;
		font-size: 1.6rem;
		border-radius: 5px;
		cursor: pointer;
		transition: all 0.3s ease-in-out 0s;
	}
}