@charset "UTF-8";

/* shop list
*******************/
#contents {
	width: 1250px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 50px;
	padding-right: 50px;
}
.ttl01 img {
	width: 22.2rem;
}

.shop-area {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	height: 40px;
	margin-top: 60px;
}
.shop-area > li {
	flex: 1;
}
.shop-area-btn {
	display: flex;
	justify-content: center;
	background-color: #E5E9EB;
	width: 100%;
	height: 32px;
	color: #595757;
	transition: background-color .4s, height .2s;
}
.shop-area-btn:hover {
	background-color: #C2D807;
}
.shop-area-btn.active {
	height: 40px;
	background-color: #C2D807;
}

.shop-pref {
	padding: 20px;
	background-color: #C2D807;
}
.shop-pref-list {
	display: none;
	flex-wrap: wrap;
	gap: 10px;
}
.shop-pref-list.active {
	display: flex;
}
.shop-pref-list li {
	width: calc(16.6666% - (10px * 5 / 6));
}
.shop-pref-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 32px;
	background-color: #fff;
	border-radius: 8px;
	color: #595757;
	transition: background-color .4s;
}
.shop-pref-btn:hover {
	background-color: #231815;
	color: #fff;
}
.shop-pref-btn.active {
	background-color: #231815;
	color: #fff;
}
.shop-pref-btn span {
	line-height: 1;
}

.shop-guide {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.shop-guide ._keeps {
	margin-right: 6px;
	color: #C2D807;
}
.shop-guide ._beauty {
	margin-right: 6px;
	color: #c9b7b1;
}

.shop-list {
	display: none;
	margin-top: 60px;
}
.shop-list.active {
	display: block;
	animation: fade 0.5s ease;
}
.shop-list ul {
	border: 1px solid #909090;
}
.shop-item {
	display: flex;
	border-bottom: 1px solid #909090;
}
.shop-item:last-child {
	border-bottom: 0;
}
.shop-item-head {
	display: flex;
	align-items: center;
	gap: 5px;
	width: 400px;
	padding: 10px 20px;
	background-color: #F5F6F8;
}
.shop-item-head .__icon {
	display: flex;
	justify-content: flex-end;
	gap: 5px;
	width: 41px;
	font-size: 1.8rem;
	text-align: right;
}
.shop-item-head .__icon ._keeps {
	color: #C2D807;
}
.shop-item-head .__icon ._beauty {
	color: #c9b7b1;
}
.shop-item-name {
	width: calc(100% - 41px - 5px);
	font-size: 1.8rem;
	line-height: 1.4;
}
.shop-item-address {
	width: calc(100% - 400px);
	padding: 10px 20px;
}
.shop-item-address p {
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	#contents {
		width: 100%;
		padding-left: 26px;
		padding-right: 26px;
	}
	.ttl01 img {
		width: 24rem;
	}

	.shop-area {
		flex-direction: column;
		height: auto;
		margin-top: 30px;
	}
	.shop-area > li {
		flex: auto;
		width: 100%;
	}
	.shop-area-btn {
		position: relative;
		justify-content: flex-start;
		width: 100%;
		height: 40px;
		padding: 8px 20px;
	}
	.shop-area-btn:hover {
		background-color: #E5E9EB;
	}
	.shop-area-btn.active {
		background-color: #C2D807;
	}
	.shop-area-btn:after {
		content: '';
		position: absolute;
		top: 13px;
		right: 20px;
		width: 8px;
		height: 8px;
		border-top: 1px solid #909090;
		border-right: 1px solid #909090;
		transform: rotate(135deg);
	}

	.shop-pref {
		margin-top: 20px;
	}
	.shop-pref-list li {
		width: calc(50% - 5px);
	}
	.shop-pref-btn:hover {
		background-color: #fff;
		color: #595757;
	}
	.shop-pref-btn.active {
		background-color: #231815;
		color: #fff;
	}

	.shop-guide {
		gap: 5px;
		font-size: 2.4rem;
	}
	.shop-guide ._keeps {
		margin-right: 3px;
	}
	.shop-guide ._beauty {
		margin-right: 3px;
	}

	.shop-item {
		flex-direction: column;
	}
	.shop-item-head {
		flex-direction: row-reverse;
		justify-content: space-between;
		width: 100%;
	}
	.shop-item-head .__icon {
		width: 34px;
		font-size: 3.0rem;
	}
	.shop-item-name {
		width: calc(100% - 34px - 5px);
		font-size: 2.8rem;
	}
	.shop-item-address {
		width: 100%;
		padding: 15px 20px;
	}
	.shop-item-address p {
		font-size: 2.8rem;
	}
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
