@charset "utf-8";

.mainContentWrap {
	padding-bottom: 100px;
}
@media (max-width: 768px) {
	.mainContentWrap {
		padding-bottom: 0;
	}
}


/* tab */
.lowerLayer .tab {
	margin-top: 80px;
}
@media (max-width: 768px) {
	.lowerLayer .tab {
		margin-top: 9.333vw;
	}
}


/* tabTtl */
.lowerLayer .tab .tabTtl {
	display: flex;
	gap: 0 1.25%;
}
.lowerLayer .tab .tabTtl .tabBtn {
	width: calc((100% - 2.5%) / 3);
}
.lowerLayer .tab .tabTtl .tabBtn a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	height: 60px;
	border-radius: 20px 20px 0 0;
	background: #e0e0e0;
	line-height: 1.3;
	text-align: center;
}
.lowerLayer .tab .tabTtl .tabBtn a[aria-current="page"] {
	background: var(--greenColor);
	color: var(--whiteColor);
}
@media (max-width: 768px) {
	.lowerLayer .tab .tabTtl {
		gap: 0 2.173913%;
	}
	.lowerLayer .tab .tabTtl .tabBtn {
		width: calc((100% - 4.347826%) / 3);
	}
	.lowerLayer .tab .tabTtl .tabBtn a {
		font-size: 14px;
		height: 50px;
		border-radius: 10px 10px 0 0;
	}
}


/* tabBox */
.lowerLayer .tab .tabBox {
	background: var(--whiteColor);
	padding: 50px;
	border-radius: 0 0 20px 20px;
	box-shadow: 0 0 8px 0 rgba(0,0,0,0.07);
	
}
@media (max-width: 768px) {
	.lowerLayer .tab .tabBox {
		margin: 0 -4vw;
		padding: 25px 4vw;
		border-radius: 0;
		box-shadow: none;
	}
}


/* categoryWrap */
.lowerLayer .tab .tabBox .categoryWrap {
	background: var(--grayBgColor);
	padding: 30px;
}
@media (max-width: 768px) {
	.lowerLayer .tab .tabBox .categoryWrap {
		padding: 20px 15px;
	}
}


/* shopList */
.lowerLayer .tab .tabBox .shopList {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.lowerLayer .tab .tabBox .shopList .shopBox {
	width: calc((100% - 120px) / 4);
}
.lowerLayer .tab .tabBox .shopList .shopBox a {
	display: block;
}
.lowerLayer .tab .tabBox .shopList .shopBox a .shopLogo {
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px var(--grayBorderColor);
	aspect-ratio: 1 / 1;
}
.lowerLayer .tab .tabBox .shopList .shopBox a .shopLogo img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
}
.lowerLayer .tab .tabBox .shopList .shopBox a .detail {
	margin-top: 10px;
}
.lowerLayer .tab .tabBox .shopList .shopBox a .detail .shopName {
	font-size: 16px;
	font-weight: 600;
}
.lowerLayer .tab .tabBox .shopList .shopBox a .detail .floorBox {
	font-size: 13px;
	margin-top: 6px;
	display: flex;
}
.lowerLayer .tab .tabBox .shopList .shopBox a .detail .floorBox .floorNum + .floorTxt {
	text-indent: -1em;
	padding-left: 1em;
}
.lowerLayer .tab .tabBox .shopList .shopBox a .detail .floorBox .floorNum + .floorTxt::before {
	content: "｜";
}
@media (max-width: 768px) {
	.lowerLayer .tab .tabBox .shopList {
		margin-top: 30px;
		gap: 25px 15px;
	}
	.lowerLayer .tab .tabBox .shopList .shopBox {
		width: calc((100% - 15px) / 2);
	}
	.lowerLayer .tab .tabBox .shopList .shopBox a .detail {
		margin-top: 8px;
	}
	.lowerLayer .tab .tabBox .shopList .shopBox a .detail .shopName {
		font-size: 13px;
	}
	.lowerLayer .tab .tabBox .shopList .shopBox a .detail .floorBox {
		font-size: 12px;
		margin-top: 4px;
	}
}

