@charset "utf-8";

main .ttl {
	margin-top: 5rem;
}
main .shop {
	margin-top: 5rem;
}
@media (max-width: 768px) {
	main .shop {
		margin-top: 4rem;
	}
}

/* tabBtns */
main .shop .tabBtns {
	display: flex;
	justify-content: space-between;
	gap: 0 0.5%;
}
main .shop .tabBtns li {
	width: 49.7%;
}
main .shop .tabBtns li a {
	display: block;
	padding: 1.7rem;
	border-top: solid 0.2rem var(--mainColor);
	border-right: solid 0.2rem var(--mainColor);
	border-left: solid 0.2rem var(--mainColor);
	border-radius: 2.5rem 2.5rem 0 0;
	font-size: 2rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 800;
	font-style: normal;
	text-align: center;
}
main .shop .tabBtns li.cur a {
	background-color: var(--mainColor);
	color: var(--whiteColor);
}
main .shop .tabBtns li:not(.cur) a span {
	position: relative;
}
main .shop .tabBtns li:not(.cur) a span::before,
main .shop .tabBtns li:not(.cur) a span::after {
	display: block;
	content: '';
	width: 1.2rem;
	height: 0.3rem;
	background-color: var(--mainColor);
	border-radius: 0.2rem;
	position: absolute;
	top: 50%;
	right: -2rem;
	transform-origin: 92% center;
}
main .shop .tabBtns li:not(.cur) a span::before {
	transform: rotate(45deg);
}
main .shop .tabBtns li:not(.cur) a span::after {
	transform: rotate(-45deg);
}
@media (max-width: 768px) {
	main .shop .tabBtns {
		gap: 0 1.44%;
	}
	main .shop .tabBtns li {
		width: 49.2%;
	}
	main .shop .tabBtns li a {
		padding: 1.5rem;
		border-width: 0.3rem;
		border-radius: 2.5rem 2.5rem 0 0;
		font-size: 2.8rem;
		line-height: 1.21;
	}
	main .shop .tabBtns li:not(.cur) a span {
		display: block;
	}
	main .shop .tabBtns li:not(.cur) a span::before,
	main .shop .tabBtns li:not(.cur) a span::after {
		width: 1.6rem;
		height: 0.4rem;
		right: 0;
	}
}

/* box */
main .shop .box {
	padding: 4.5rem 5rem 4rem;
	background-color: var(--subColor);
	border-radius: 0 0 3rem 3rem;
}
main .shop .box .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 1.81%;
}
@media (max-width: 768px) {
	main .shop .box {
		padding: 5.5rem 3rem 5rem;
	}
	main .shop .wrap {
		gap: 2.5rem 3.6%;
	}
}

/* shopSearch */
main .shop .box.shopSearch .searchBox {
	margin: 0 auto;
	max-width: 74rem;
}
main .shop .box.shopSearch .searchBox .check {
	display: flex;
	justify-content: center;
	gap: 0 3rem;
}
main .shop .box.shopSearch .searchBox .check label {
	padding-left: 3rem;
	position: relative;
	cursor: pointer;
}
main .shop .box.shopSearch .searchBox .check label::before,
main .shop .box.shopSearch .searchBox .check label::after {
	content: "";
	display: block; 
	position: absolute;
}
main .shop .box.shopSearch .searchBox .check label::before {
	background-color: #fff;
	border-radius: 3px;
	border: 2px solid var(--mainColor);
	width: 1.6rem;
	height: 1.6rem;
	top: calc(50% - 0.9rem);
	left: 0;
}
main .shop .box.shopSearch .searchBox .check label::after {
	border-bottom: 2px solid var(--whiteColor);
	border-left: 2px solid var(--whiteColor);
	opacity: 0;
	height: 0.5rem;
	width: 1rem;
	transform: rotate(-45deg);
	top: 0.8rem;
	left: 0.5rem;
}
main .shop .box.shopSearch .searchBox .check input {
	width: 0; /*for safari*/
}
main .shop .box.shopSearch .searchBox .check input:checked + label::before {
	background-color: var(--mainColor);
}
main .shop .box.shopSearch .searchBox .check input:checked + label::after {
	opacity: 1;
}
main .shop .box.shopSearch .searchBox .search {
	margin-top: 2.5rem;
}
main .shop .box.shopSearch .searchBox .search label {
	display: flex;
	justify-content: space-between;
	border: solid 0.2rem var(--mainColor);
	border-radius: 1rem;
	background-color: var(--whiteColor);
}
main .shop .box.shopSearch .searchBox .search input {
	width: 90%;
	padding: 1rem 2rem;
	border-radius: 0.6rem 0 0 0.6rem;
	font-size: 1.5rem;
	color: #999;
	font-weight: 500;
}
main .shop .box.shopSearch .searchBox .search button {
	padding: 1rem 2rem;
	background-color: var(--mainColor);
	border-radius: 0 0.6rem 0.6rem 0;
	font-size: 1.6rem;
	color: var(--whiteColor);
	font-weight: 700;
}
main .shop .box.shopSearch .words {
	margin: 4.5rem auto 0;
	max-width: 74rem;
}
main .shop .box.shopSearch .words .tabs {
	display: flex;
}
main .shop .box.shopSearch .words .tabs button {
	padding-bottom: 1rem;
	width: 50%;
	text-align: center;
	border-bottom: 0.4rem solid var(--grayColor);
	font-size: 2rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-style: normal;
}
main .shop .box.shopSearch .words .tabs button.cur {
	border-color: var(--mainColor);
}
main .shop .box.shopSearch .words .tabs button span {
	position: relative;
}
main .shop .box.shopSearch .words .tabs button:not(.cur) span::before,
main .shop .box.shopSearch .words .tabs button:not(.cur) span::after {
	display: block;
	content: '';
	width: 1.2rem;
	height: 0.3rem;
	background-color: var(--mainColor);
	border-radius: 0.2rem;
	position: absolute;
	top: 50%;
	right: -2rem;
	transform-origin: 92% center;
}
main .shop .box.shopSearch .words .tabs button:not(.cur) span::before {
	transform: rotate(45deg);
}
main .shop .box.shopSearch .words .tabs button:not(.cur) span::after {
	transform: rotate(-45deg);
}
main .shop .box.shopSearch .words .wordsList {
	margin: 3rem 1rem 0;
}
main .shop .box.shopSearch .words .wordsList:not(.cur) {
	display: none;
}
main .shop .box.shopSearch .words .wordsList ul {
	justify-content: center;
	gap: 1rem;
}
main .shop .box.shopSearch .words .wordsList li {
	width: 4.5rem;
	height: 4.5rem;
}
main .shop .box.shopSearch .words .wordsList li button {
	display: block;
	width: 100%;
	height: 100%;
	font-weight: 500;
	border: 0.2rem solid var(--mainColor);
	border-radius: 1rem;
	background: var(--whiteColor);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
main .shop .box.shopSearch .words .wordsList li.cur button {
	background-color: #e5f6c5;
	color: var(--mainColor);
}
@media (max-width: 768px) {
	main .shop .box.shopSearch .searchBox .check {
		gap: 0 2rem;
		font-size: 2.6rem;
	}
	main .shop .box.shopSearch .searchBox .check label {
		padding-left: 4.5rem;
	}
	main .shop .box.shopSearch .searchBox .check label::before {
		border-width: 0.3rem;
		border-radius: 0.6rem;
		width: 2.8rem;
		height: 2.8rem;
		top: calc(50% - 1.5rem);
	}
	main .shop .box.shopSearch .searchBox .check label::after {
		border-width: 0.4rem;
		height: 0.8rem;
		width: 1.8rem;
		top: 1.3rem;
	}
	main .shop .box.shopSearch .searchBox .search {
		margin-top: 4.5rem;
	}
	main .shop .box.shopSearch .searchBox .search label {
		border-width: 0.3rem;
		border-radius: 1.5rem;
	}
	main .shop .box.shopSearch .searchBox .search input {
		width: 82%;
		padding: 1.7rem 3rem;
		border-radius: 1rem 0 0 1rem;
		font-size: 2.6rem;
	}
	main .shop .box.shopSearch .searchBox .search button {
		padding: 1.7rem 3rem;
		border-radius: 0 1rem 1rem 0;
		font-size: 2.6rem;
	}
	main .shop .box.shopSearch .words {
		margin: 5.5rem auto 0;
	}
	main .shop .box.shopSearch .words .tabs button {
		padding-bottom: 1.5rem;
		border-bottom: 0.6rem solid var(--grayColor);
		font-size: 3rem;
		line-height: 1.2;
	}
	main .shop .box.shopSearch .words .tabs button span {
		display: block;
	}
	main .shop .box.shopSearch .words .tabs button:not(.cur) span::before,
	main .shop .box.shopSearch .words .tabs button:not(.cur) span::after {
		width: 1.8rem;
		height: 0.5rem;
		border-radius: 0.3rem;
		top: calc(50% - 0.25rem);
		right: 2.5rem;
	}
	main .shop .box.shopSearch .words .wordsList {
		margin: 4rem 0 0;
	}
	main .shop .box.shopSearch .words .wordsList ul {
		justify-content: flex-start;
		gap: 1.8rem;
	}
	main .shop .box.shopSearch .words .wordsList li {
		width: 7.4rem;
		height: 7.4rem;
	}
	main .shop .box.shopSearch .words .wordsList li button {
		border-width: 0.3rem;
		border-radius: 1.5rem;
		font-size: 2.6rem;
	}
}

/* note */
main .shop .note {
	margin-top: 3rem;
	display: flex;
	gap: 0 2rem;
	font-size: 1.3rem;
	font-weight: 400;
}
main .shop .note li span {
	margin-right: 1rem;
	border-radius: 0.3rem;
	color: var(--whiteColor);
	background-color: var(--mainColor);
	font-size: 1.1rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
	text-align: center;
}
main .shop .note li span.tagSeibu {
	padding: 0 0.6rem;
	color: #0075cd;
	border: solid 1px #0075cd;
	background-color: var(--whiteColor);
}
main .shop .note li span.tagVoucher {
	padding: 0 0.6rem;
	color: #a847b6;
	border: solid 1px #a847b6;
	background-color: var(--whiteColor);
}
@media (max-width: 768px) {
	main .shop .note {
		flex-direction: column;
		gap: 1rem 0;
		font-size: 2.3rem;
	}
	main .shop .note li span {
		margin-right: 1.5rem;
		border-radius: 0.5rem;
		font-size: 2rem;
	}
	main .shop .note li span.tagSeibu {
		padding: 0 1rem;
		border-width: 0.2rem;
	}
	main .shop .note li span.tagVoucher {
		padding: 0 1rem;
		border-width: 0.2rem;
	}
}

/* shopList */
main .shopList {
	margin-top: 7rem;
	display: flex;
	flex-wrap: wrap;
	gap: 3rem 1.66%;
}
main .shopList .shopBox {
	width: 49.1%;
}
main .shopList .shopBox a {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0 4.2%;
}
main .shopList .shopBox .logo {
	width: 37.4%;
	max-width: 22rem;
}
main .shopList .shopBox .logo img {
	width: 22rem;
	height: 22rem;
	object-fit: contain;
	border: solid 1px var(--grayColor);
	border-radius: 1.5rem;
}
main .shopList .shopBox .detail {
	width: 58.4%;
}
main .shopList .shopBox .tags {
	margin-top: 0;
}
main .shopList .shopBox .floor {
	margin-top: 0.7rem;
	font-size: 1.4rem;
	font-weight: 400;
}
main .shopList .shopBox .shopName {
	margin-top: 0.3rem;
	font-weight: 700;
}
main .shopList .shopBox .category {
	margin-top: 0.5rem;
	font-size: 1.4rem;
	font-weight: 400;
}
main .shopList .shopBox .category + .tags {
	margin-top: 1rem;
}
@media (max-width: 768px) {
	main .shopList {
		gap: 6rem 4.34%;
	}
	main .shopList .shopBox {
		width: 47.8%;
	}
	main .shopList .shopBox a {
		flex-direction: column;
		gap: 2rem 0;
	}
	main .shopList .shopBox .logo {
		width: 100%;
		max-width: 100%;
	}
	main .shopList .shopBox .logo img {
		width: 33rem;
		height: 33rem;
		border-width: 0.2rem;
		border-radius: 2.3rem;
	}
	main .shopList .shopBox .detail {
		width: 100%;
	}
	main .shopList .shopBox .tags {
		margin-top: 0;
	}
	main .shopList .shopBox .floor {
		margin-top: 0.8rem;
		font-size: 2.4rem;
	}
	main .shopList .shopBox .shopName {
		margin-top: 0;
		font-size: 2.6rem;
		line-height: 1.5;
	}
	main .shopList .shopBox .category {
		font-size: 2.4rem;
	}
}

/* facilityBtns */
main .facilityBtns {
	margin-top: 7rem;
	padding: 2.5rem;
	border-radius: 3rem;
	background-color: var(--subColor);
}
main .facilityBtns h3 {
	font-size: 2.4rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 800;
	font-style: normal;
	text-align: center;
}
main .facilityBtns h3 + p {
	font-size: 1.4rem;
	text-align: center;
}
main .facilityBtns .wrap {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	gap: 0 1.7%;
}
main .facilityBtns .wrap li {
	width: 27.1%;
}
main .facilityBtns .wrap li a {
	padding: 1.8rem 2.5rem;
	background-color: var(--whiteColor);
}
main .facilityBtns .wrap li a img {
	width: 18.5rem;
}
@media (max-width: 768px) {
	main .facilityBtns {
		margin-top: 7rem;
		padding: 3rem 3rem 5rem;
	}
	main .facilityBtns h3 {
		font-size: 3.4rem;
	}
	main .facilityBtns h3 + p {
		font-size: 2.3rem;
	}
	main .facilityBtns .wrap {
		margin-top: 2rem;
		gap: 0 3.1%;
	}
	main .facilityBtns .wrap li {
		width: 48.4%;
	}
	main .facilityBtns .wrap li a {
		padding: 2.6rem 2.5rem;
	}
	main .facilityBtns .wrap li a img {
		width: 21.8rem;
	}
}

/* before Open */
main .shop .box.shopSearch .searchBox .check .csOpen {
	margin-bottom: 1rem;
	position: relative;
}
main .shop .box.shopSearch .searchBox .check .csOpen::before {
	content: '2024年9月オープン';
	font-size: 1.2rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #e84558;
	position: absolute;
	bottom: -2rem;
	left: 2.5rem;
}
main .shop .box.shopSearch .searchBox .check .csOpen label::before {
	border-color: var(--grayColor);
}
main .facilityBtns .wrap li.csOpen a {
	padding: 0.9rem 2.5rem;
	pointer-events: none;
	position: relative;
}
main .facilityBtns .wrap li.csOpen a::before,
main .facilityBtns .wrap li.csOpen a::after {
	width: auto;
	height: auto;
	background: none;
	border-radius: unset;
	position: static;
	transform-origin: unset;
	transform: unset;
}
main .facilityBtns .wrap li.csOpen a::after {
	content: '2024年9月オープン';
	font-size: 1.2rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #e84558;
}
@media (max-width: 768px) {
	main .shop .box.shopSearch .searchBox .check .csOpen::before {
		font-size: 1.8rem;
		line-height: 1.2;
		bottom: -2.5rem;
		left: 5rem;
	}
	main .facilityBtns .wrap li.csOpen a {
		padding: 1.5rem 2.5rem;
	}
	main .facilityBtns .wrap li.csOpen a::after {
		font-size: 1.8rem;
		line-height: 1.2;
	}
}
