@charset "utf-8";

/*====================================================================
店舗セレクト
====================================================================*/
#home h2 {
	background: #005e3c;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	padding: 20px;
	margin-top: 20px;
}
/*selectbox.css*/
.storeselect {
	margin-top: 3em;
	margin-bottom: 4.5em;
}
.storeselect .radio {
	max-width: 360px;
	width: 80%;
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
	color: #666;
}
.storeselect .radio label {
	font-size: 2rem;
	cursor: pointer;
	padding-left: 2.2rem;
	position: relative;
}
.storeselect .radio label::before,
.storeselect .radio label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}
.storeselect .radio label::before {
	background: #e6e6e6;
	height: 20px;
	width: 20px;
	left: 0;
}
.storeselect .radio label::after {
	background: #fff;
	border: 6px solid #005e3c;
	opacity: 0;
	height: 20px;
	width: 20px;
	left: 0;
}
.storeselect .radio input:checked + label::after {
	opacity: 1;
}
.storeselect .radio input {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	margin: -1px;
}
.storeselect .select {
	overflow: hidden;
	width: 80%;
	margin: 2em auto 3em;
	text-align: center;
}
.storeselect .select select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.storeselect .select select::-ms-expand {
	display: none;
}
.storeselect .select.slmenu {
	position: relative;
	border-radius: 2px;
	background: #eee;
}
.storeselect .select.slmenu::before {
	position: absolute;
	top: 1.85em;
	right: 2em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 10px solid #666;
	pointer-events: none;
}
.storeselect .select.slmenu select {
	font-size: 1.8rem;
	padding: 20px 60px 20px 20px;
	color: #666;
}
.storeselect .select.slmenu select:invalid { color: #aaa; }
.storeselect .select.slmenu select option { color: #666; }
.storeselect .select.slmenu select option:first-child { color: #aaa; }

.storeselect .button {
	cursor: pointer;
	appearance: none;
	border: 0;
	border-radius: 6px;
	background: #bf2e3a;
	color: #fff;
	margin: 0 auto;
	padding: 20px 40px;
	font-size: 2rem;
	font-weight: 600;
}
.storeselect .button:hover {
	background: #b73e48;
}

@media (max-width: 640px) {
	.storeselect .select {
		width: 90%;
	}
}