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

.page-heading{
	align-items: baseline;
	column-gap: 2.2rem;
}
.page-heading::before{
	background-color: var(--color-drawer-bg);
}

@media (max-width: 767px){
	.page-heading{
		flex-direction: column;
		align-items: flex-start;
		row-gap: 0.5rem;
	}
}

/*
=========================================
shop-list__tabs
=========================================
*/
.shop-list__area{
	font-size: 1.4rem;
}
.shop-list__nav{
	display: flex;
	justify-content: center;
	line-height: 1.2;
}
@media (max-width: 999px){
	.shop-list__nav{
		overflow-x: auto;
		overflow-y: visible;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		justify-content: flex-start;
		scroll-snap-type: x mandatory;
		padding-top: 0.6rem;
	}
}
.shop-list__tab{
	min-width: 16.0rem;
	height: 6.0rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-drawer-hover);
	font-weight: 500;
	cursor: pointer;
	clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
	transition: transform 0.2s ease, background 0.3s ease;
	transform: translateY(0);
	position: relative;
	text-align: center;
}
@media (max-width: 999px){
	.shop-list__tab{
		flex-shrink: 0;
		scroll-snap-align: start;
	}
}
@media (max-width: 767px){
	.shop-list__tab{
		min-width: 12.0rem;
		font-size: 1.1rem;
	}
}
@media (max-width: 599px){
	.shop-list__tab{
		min-width: 9.5rem;
	}
}
.shop-list__tab:hover{
	transform: translateY(-6px);
}
.shop-list__tab.active{
	background-color: var(--color-drawer-bg);
	z-index: 1;
	transform: translateY(-6px);
}


.shop-list__content{
	display: none;
	background-color: var(--color-drawer-bg);
	margin-top: -6px;
	position: relative;
	border-radius: 10px 10px 0 0;
}
.shop-list__content.active{
	display: block;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.shop-list__content ul{
	padding: 4.0rem 2.0rem;	
}
.shop-list__content .shop-info{
	display: flex;
	column-gap: 2.0rem;
	justify-content: space-between;
	border-bottom: 1px solid #4b4b4b;
	padding: 2.0rem 0;
}
.shop-list__content .shop-info:first-child{
	border-top: 1px solid #4b4b4b;
}
@media (max-width: 767px){
	.shop-list__content .shop-info{
		flex-direction: column;
		row-gap: 2.0rem;
	}
}
.shop-list__content .shop-name{
	flex: 1;
}
.shop-list__content .shop-address{
	flex: 1.5;
}






