@charset "utf-8";
/* CSS Document */

/* shop_filter
-------------------------------------------------- */
.shop_filter {
}
.shop_filter button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
.shop_filter .shop_filter_btn {
	color: #666;
	border: 1px solid #999;
	border-radius: 100px;
}
.shop_filter .shop_filter_btn.active {
	color: #fff;
	background: var(--secondary-color);
	border: 1px solid var(--secondary-color);
}
.shop_filter .shop_filter_btn.is-disabled {
	opacity: .35;
	cursor: not-allowed;
	pointer-events: auto;
}
.shop_filter .shop_filter_btn:disabled {
	opacity: .35;
	cursor: not-allowed;
}


/* shop_lists
-------------------------------------------------- */
.shop_lists {
}
.shop_lists .shop_list {
	overflow: hidden;
	/*
		border-radius: 12px;
		box-shadow: 0 0 5px rgba(0,0,0,0.3);
	*/
	background-color: #f8f8f8;
}
.shop_lists .shop_list.is-hidden {
	display: none;
}
.shop_lists .shop_list.is-reveal {
	animation: shopReveal .22s ease both;
}
@keyframes shopReveal {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}
.shop_lists .shop_flag {
	font-weight: 300;
	font-weight: normal;
}
.shop_lists .shop_flag_area {
}
.shop_lists .shop_flag_area:after {
	content: '/';
}
.shop_lists .shop_flag_type {
}
.shop_lists .shop_link {
	display: block;
}
.shop_lists .shop_thumbnail {
	aspect-ratio: 5/3;
	overflow: hidden;
	position: relative;
}
.shop_lists .shop_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.shop_lists .shop_data {
}
.shop_lists .shop_name {
	/*
		font-family: "LINE Seed JP", sans-serif;
		font-weight: 400;
	*/
	font-style: normal;
}
.shop_lists .shop_name::after {
	content: '様';
	font-weight: normal;
}
.shop_lists .shop_catch {
	font-weight: 300;
	font-weight: normal;
	line-height: 1.5;
}

.shop_empty_message {
	display: none;
	color: #666;
	text-align: center;
	opacity: .75;
}
.shop_empty_message.is-reveal {
	display: block;
	animation: emptyReveal .22s ease both;
}
@keyframes emptyReveal {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: .75; transform: translateY(0); }
}


/* --------------------------------------------------
PC
-------------------------------------------------- */
@media screen and (min-width: 768px) {

	/* shop_filter
	-------------------------------------------------- */
	.shop_filter {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		margin-bottom: 25px;
	}
	.shop_filter .shop_filter_btn {
		font-size: 12px;
		margin: 0 5px;
		padding: 6px 12px;
	}


	/* shop_lists
	-------------------------------------------------- */
	.shop_lists {
		display: flex;
		flex-wrap: wrap;
	}
	.shop_lists .shop_list {
		width: calc(100% / 3 - 20px);
		margin: 0 10px 20px;
		padding: 15px;
	}
	.shop_lists .shop_flag {
		font-size: 12px;
		margin-bottom: 12px;
	}
	.shop_lists .shop_flag_area {
	}
	.shop_lists .shop_flag_area:after {
		content: '/';
	}
	.shop_lists .shop_flag_type {
	}
	.shop_lists .shop_link {
		margin-bottom: 12px;
	}
	.shop_lists .shop_thumbnail {
	}
	.shop_lists .shop_image {
		transition: 0.5s all;
	}
	.shop_lists .shop_link:hover .shop_image {
		transform: scale(1.12,1.12);
		transition: 0.5s all;
	}
	.shop_lists .shop_data {
	}
	.shop_lists .shop_name {
		font-size: 17px;
		margin-bottom: 6px;
	}
	.shop_lists .shop_name::after {
		font-size: 0.8em;
		margin-left: 3px;
	}
	.shop_lists .shop_catch {
		font-size: 14px;
	}

	.shop_empty_message {
		font-size: 20px;
		padding: 100px 0;
	}
}


/* --------------------------------------------------
スマホ
-------------------------------------------------- */
@media all and (max-width: 767px) {

	/* shop_filter
	-------------------------------------------------- */
	.shop_filter {
		display: flex;
		overflow-x: scroll;
		margin: 1vw 0 4vw;
		padding: 0 3vw 2.5vw;
	}
	.shop_filter .shop_filter_btn {
		flex-shrink: 0;
		font-size: 2.5vw;
		margin-right: 0.75vw;
		padding: 1.75vw 3vw;
	}


	/* shop_lists
	-------------------------------------------------- */
	.shop_lists {
		padding: 0 3vw;
	}
	.shop_lists .shop_list {
		margin-bottom: 6vw;
		padding: 3.5vw 4vw;
	}
	.shop_lists .shop_flag {
		font-size: 2.75vw;
		margin-bottom: 2.5vw;
	}
	.shop_lists .shop_flag_area {
	}
	.shop_lists .shop_flag_area:after {
		content: '/';
	}
	.shop_lists .shop_flag_type {
	}
	.shop_lists .shop_link {
		margin-bottom: 2.5vw;
	}
	.shop_lists .shop_thumbnail {
	}
	.shop_lists .shop_image {
	}
	.shop_lists .shop_data {
	}
	.shop_lists .shop_name {
		font-size: 4.2vw;
		margin-bottom: 1.0vw;
	}
	.shop_lists .shop_name::after {
		font-size: 0.8em;
		margin-left: 0.5vw;
	}
	.shop_lists .shop_catch {
		font-size: 3.67vw;
		line-height: 1.6;
	}

	.shop_empty_message {
		font-size: 3.5vw;
		padding: 15vw 0;
	}
}
