@charset "UTF-8";
/* CSS Document */

.shoplist {
	padding-top: 40px;
}
.shoplist select#select_pref {
	background-image: url("../img/bg_arrow_d.png");
	background-size: 14px;
	text-align-last: center;
}
.shoplist__list li + li {
	margin-top: 2em;
}
.shoplist__cat {
	display: flex;
	gap: 2px;
}
.shoplist__cat p {
	padding: 7px 12px;
	line-height: 1;
	background: #ebebeb;
	color: #fff;
}
.shoplist__cat p.on {
	background: #aabcb0;
	color: #2b2b2b;
}
.shoplist__cat p.ex.on {
	background: #ceaaaa;
}
.shoplist__inner {
	text-align: left;
	padding: 1em;
}
.shopname {
	padding: 0.5em 0;
	font-family: 'NOW-MM', serif;
	font-size: 1.4em;
}
.shopname a {
	color: #678772;
	text-decoration: underline;
}
.shopheading {
	position: relative;
	margin: 1em 0 0.5em;
	padding-bottom: 0.25em;
	color: #678772;
}
.shopheading::after {
	content: '';
	position: absolute;
	display: block;
	bottom: 0;
	left: -1em;
	width: calc(100% + 2em);
	height: 1px;
	/*background: #d5e6eb;*/
}
.no_result {
	display: none;
}
.no_result > div {
	position: relative;
	margin-top: -40px;
	padding: 2em 1em;
	border: solid 1px #d5e6eb;
}

@media screen and (max-width: 767px) {

	.shoplist {
		padding-top: 25px;
	}

}