@charset "utf-8";

/*----------------------------
	taxfree_shop
------------------------------*/
.taxfree_shop {
	background-color: var(--bgColor);
	padding: 20px 0 90px;
}

/* shopCont */
.taxfree_shop .shopCont {
	margin-top: 50px;
}
.taxfree_shop h1 {
	font-size: 31px;
	font-weight: 700;
	text-align: center;
}

.taxfree_shop .shopArea {
	margin-top: 70px;
	padding: 90px 4.167% 90px;
	background-color: var(--whiteColor);
	border-radius: 30px;
	box-shadow: 0px 0px 15px -3px var(--grayColor02);
}

/* shopList */
.taxfree_shop .shopList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.taxfree_shop .shopList .shopBox {
	width: 47%;
	border-top: solid 1px var(--grayColor02);
	border-bottom: solid 1px var(--grayColor02);
}
.taxfree_shop .shopList .shopBox:nth-child(n+3) {
	border-top: none;
}
.taxfree_shop .shopList .shopBox a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}
.taxfree_shop .shopList .shopBox a:hover {
	opacity: 0.7;
}
.taxfree_shop .shopList .shopBox .shopLogo {
	width: 26.306%;
}
.taxfree_shop .shopList .shopBox .shopLogo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border: solid 1px var(--grayColor02);
}
.taxfree_shop .shopList .shopBox .detail {
	width: 70%;
}
.taxfree_shop .shopList .shopBox .detail.taxfree {
	padding-top: 20px;
	position: relative;
}
.taxfree_shop .shopList .shopBox .detail.taxfree::before {
	display: inline-block;
	content: "TAX FREE";
	font-size: 10px;
	font-family: "Lato", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	color: var(--whiteColor);
	background-color: var(--redColor);
	padding: 4px 7px;
	position: absolute;
	top: 0;
	left: 0;
}
.taxfree_shop .shopList .shopBox .detail .shopCat {
	font-size: 13px;
}
.taxfree_shop .shopList .shopBox .detail .shopName {
	font-weight: 600;
	line-height: 1.4;
}
.taxfree_shop .shopList .shopBox .detail .shopKana {
	margin-top: 5px;
	font-size: 11px;
	color: var(--grayColor01);
}
.taxfree_shop .shopList .shopBox .detail .floorBox {
	margin-top: 7px;
	display: flex;
	align-items: center;
	font-size: 13px;
	font-family: "Lato", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.1;
}
.taxfree_shop .shopList .shopBox .detail .floorBox .floor {
	padding-right: 5px;
	margin-right: 5px;
	border-right: solid 1px var(--grayColor03);
}
.taxfree_shop .shopList .shopBox .detail .floorBox .mapNum span {
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}


@media (max-width: 768px) {
	.taxfree_shop {
		padding: 15px 0 40px;
	}
	
	/* shopCont */
	.taxfree_shop .shopCont {
		margin-top: 30px;
	}
	.taxfree_shop h1 {
		font-size: 21px;
	}
	
	.taxfree_shop .shopArea {
		margin-top: 35px;
		padding: 50px 4.264% 50px;
		border-radius: 0;
		box-shadow: none;
	}
	
	/* shopList */
	.taxfree_shop .shopList {
		display: block;
	}
	.taxfree_shop .shopList .shopBox {
		width: 100%;
	}
	.taxfree_shop .shopList .shopBox:nth-child(n+2) {
		border-top: none;
	}
	.taxfree_shop .shopList .shopBox a {
		padding: 25px 0;
	}
	.taxfree_shop .shopList .shopBox .shopLogo {
		width: 27.405%;
	}
	.taxfree_shop .shopList .shopBox .detail {
		width: 68%;
	}
	.taxfree_shop .shopList .shopBox .detail .shopCat {
		font-size: 12px;
	}
	.taxfree_shop .shopList .shopBox .detail .shopName {
		margin-top: 3px;
	}
	.taxfree_shop .shopList .shopBox .detail .shopKana {
		margin-top: 3px;
		font-size: 10px;
	}
}
@media (max-width: 350px) {
	.taxfree_shop .tabBtns li:first-child .sp,
	.taxfree_shop .tabBtns li:last-child .sp {
		display: none;
	}
}