@charset "UTF-8";

/* ----------------------------------------------------
	map
---------------------------------------------------- */
.map {
	overflow-x: hidden;
}

/* ----------------------------------------------------
	map-container
---------------------------------------------------- */
.map__content {
	width: 100%;
}

.map__container {
	width: 100%;
	position: relative;
}

.mapBg {
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.map__content {
		overflow-x: auto;
	}

	.map__container {
		width: 1150px;
		height: 100%;
		position: relative;
	}
}

/*
	controls
------------------------------ */
.controls {
	width: 22.399%;
	height: 3.521vw;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 3.430vw;
	left: 5.018vw;
	z-index: 2;
}

.controls__button {
	background: rgb(var(--wht));
	width: 100%;
	/* color: rgb(var(--pnk)); */
	/* font-size: 1.304vw; */
	color: #999;
	font-size: 1.13vw;
	font-weight: bold;
	outline: none;
	border: solid 0.174vw rgb(var(--pnk));
	transition: all 0.5s ease 0s;
	cursor: pointer;
}

.controls__button.is-active,
.controls__button:hover {
	background: rgb(var(--pnk));
	color: rgb(var(--wht));
}

#show-all {
	border-radius: 3.521vw 0 0 3.521vw;
}

#hide-all {
	border-radius: 0 3.521vw 3.521vw 0;
}

@media screen and (max-width: 768px) {
	.controls {
		height: 40px;
		top: 39px;
		left: 58px;
		z-index: 2;
	}

	.controls__button {
		font-size: 15px;
		border-width: 2px;
	}

	#show-all {
		border-radius: 40px 0 0 40px;
	}

	#hide-all {
		border-radius: 0 40px 40px 0;
	}
}

/* ----------------------------------------------------
	facility-icon
---------------------------------------------------- */
.facility-icon {
	user-select: none;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 2;
	cursor: pointer;
}

.facility-icon.no-popup {
	cursor: auto;
}

.facility-label {
	background: rgb(var(--wht));
	padding: 0.25em 0.5em;
	font-size: 1.043vw;
	white-space: nowrap;
	border: solid 1px rgb(var(--blk));
	border-radius: 2em;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 3;
	transform: translateX(-50%);
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.facility-icon:hover .facility-label {
	opacity: 1;
}

.facility-icon a {
	color: rgb(var(--blk));
}

.facility-icon a:hover {
	opacity: 1;
}

/* .scroll-hint {
	display: none;
} */

@media screen and (max-width: 768px) {
	.facility-label {
		font-size: 12px;
	}

	/* .scroll-hint {
		color: #000;
		font-size: 2rem;
		opacity: 0.7;
		display: block;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		animation: hint-pulse 1.2s infinite;
		pointer-events: none;
	}

	@keyframes hint-pulse {

		0%,
		100% {
			opacity: 0.7;
			transform: translateY(-50%) translateX(0);
		}

		50% {
			opacity: 1;
			transform: translateY(-50%) translateX(5px);
		}
	} */
}

/* ----------------------------------------------------
	popup
---------------------------------------------------- */
body.popup-open {
	overflow: hidden;
	touch-action: none;
}

.popup.hidden {
	display: none;
}

.popup {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.popup-bg {
	background: rgba(var(--blk), 0.75);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.popup-content {
	width: 310px;
	position: relative;
	z-index: 1001;
}

.popup-content--inner {
	background: #f2f2f2;
	padding: 15px 15px 20px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
}

.popup-section:not(:last-of-type) {
	margin-bottom: 40px;
}

.poolside {}

.poolside__title {
	background: rgba(166, 124, 82, 1);
	margin-bottom: 10px;
	height: 30px;
	line-height: 1;
	color: rgb(var(--wht));
	font-size: 16px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}

.poolside__content {}

.popup-close {
	background: url(../images/close.svg) center no-repeat;
	background-size: cover;
	width: 35px;
	height: 35px;
	outline: none;
	border: none;
	position: absolute;
	top: -17px;
	right: -17px;
	cursor: pointer;
}

.popup-mainTitle {
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 22px;
	text-align: center;
}

.popup-mainTitle small {
	font-size: 16px;
	display: block;
}

.popup-content__image {
	margin-bottom: 20px;
}

.popup-content__image:not(:last-of-type) {
	margin-bottom: 5px;
}

.popup-title {
	margin-bottom: 10px;
	line-height: 1.5;
	font-size: 18px;
}

.popup-content__text {
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 14px;
}

.popup-content__text .text {
	margin-bottom: 10px;
}

.popup-list {
	margin-bottom: 10px;
}

.popup-list li {
	margin-left: 1em;
	text-indent: -1em;
}

.popup-list li::before {
	content: "■";
}

.popup-list.note {
	margin-bottom: 10px;
	font-size: 12px;
}

.popup-list.note li::before {
	content: "※";
}

.link__list {
	text-align: right;
}

.link__list--item:not(:last-of-type) {
	margin-bottom: 10px;
}

.link__list--item a {
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -0.005em;
	border-bottom-style: solid;
	border-bottom-width: 2px;
}

.link__list--item a svg {
	margin-left: 10px;
	width: 12px;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2px;
}

.link__list--item a:hover {
	opacity: 1;
}

/*
	popup-type01
------------------------------ */
.popup-type01 .popup-mainTitle,
.popup-type01 .popup-title,
.popup-type01 .link__list--item a {
	color: rgba(31, 185, 222, 1);
}

.popup-type01 .link__list--item a {
	border-bottom-color: rgba(31, 185, 222, 1);
}

.popup-type01 .link__list--item a:hover {
	border-bottom-color: rgba(31, 185, 222, 0);
}

.popup-type01 .link__list--item a svg {
	stroke: rgba(31, 185, 222, 1);
}

/*
	popup-type02
------------------------------ */
.popup-type02 .popup-mainTitle,
.popup-type02 .popup-title,
.popup-type02 .link__list--item a {
	color: rgba(232, 82, 152, 1);
}

.popup-type02 .link__list--item a {
	border-bottom-color: rgba(232, 82, 152, 1);
}

.popup-type02 .link__list--item a:hover {
	border-bottom-color: rgba(232, 82, 152, 0);
}

.popup-type02 .link__list--item a svg {
	stroke: rgba(232, 82, 152, 1);
}

/*
	popup-type03
------------------------------ */
.popup-type03 .popup-mainTitle,
.popup-type03 .popup-title,
.popup-type03 .link__list--item a {
	color: rgba(128, 72, 152, 1);
}

.popup-type03 .link__list--item a {
	border-bottom-color: rgba(128, 72, 152, 1);
}

.popup-type03 .link__list--item a:hover {
	border-bottom-color: rgba(128, 72, 152, 0);
}

.popup-type03 .link__list--item a svg {
	stroke: rgba(128, 72, 152, 1);
}

/*
	popup-type04
------------------------------ */
.popup-type04 .popup-mainTitle,
.popup-type04 .popup-title,
.popup-type04 .link__list--item a {
	color: rgba(0, 113, 188, 1);
}

.popup-type04 .link__list--item a {
	border-bottom-color: rgba(0, 113, 188, 1);
}

.popup-type04 .link__list--item a:hover {
	border-bottom-color: rgba(0, 113, 188, 0);
}

.popup-type04 .link__list--item a svg {
	stroke: rgba(0, 113, 188, 1);
}

/*
	popup-type05
------------------------------ */
.popup-type05 .popup-mainTitle,
.popup-type05 .popup-title,
.popup-type05 .link__list--item a {
	color: rgba(207, 159, 0, 1);
}

.popup-type05 .link__list--item a {
	border-bottom-color: rgba(207, 159, 0, 1);
}

.popup-type05 .link__list--item a:hover {
	border-bottom-color: rgba(207, 159, 0, 0);
}

.popup-type05 .link__list--item a svg {
	stroke: rgba(207, 159, 0, 1);
}

/*
	popup-type06
------------------------------ */
.popup-type06 .popup-mainTitle,
.popup-type06 .popup-title,
.popup-type06 .link__list--item a {
	color: rgba(166, 124, 82, 1);
}

.popup-type06 .link__list--item a {
	border-bottom-color: rgba(166, 124, 82, 1);
}

.popup-type06 .link__list--item a:hover {
	border-bottom-color: rgba(166, 124, 82, 0);
}

.popup-type06 .link__list--item a svg {
	stroke: rgba(166, 124, 82, 1);
}

/*
	another
------------------------------ */
.popup-title .another {
	display: block;
}

/* type01 */
.popup-title .another.type01,
.link__list--item a.another.type01 {
	color: rgba(166, 124, 82, 1);
}

.link__list--item a.another.type01 {
	border-bottom-color: rgba(166, 124, 82, 1);
}

.link__list--item a.another.type01:hover {
	border-bottom-color: rgba(166, 124, 82, 0);
}

.link__list--item a.another.type01 svg {
	stroke: rgba(166, 124, 82, 1);
}

/* type01 */
.popup-title .another.type02 {
	color: #a67c52;
}

/* ----------------------------------------------------
	map__icon
---------------------------------------------------- */
.map__icon {
	margin: 0 auto;
	padding: 45px 0 25px;
	width: 880px;
}

.map__icon--list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.map__icon--list li {
	margin: 0 20px 20px 0;
}

.map__icon--list li .icon {
	display: flex;
	align-items: center;
}

.map__icon--list li .icon img {
	width: auto;
	height: 25px;
}

.map__icon--list li .icon figcaption {
	margin-left: 10px;
	font-size: 15px;
	font-weight: bold;
}

.map__icon .icon-pool {}

.map__icon .icon-jetbath {}

.map__icon .icon-parasol {}

.map__icon .icon-eat {
	width: 30%;
}

.map__icon .icon-shop {}

.map__icon .icon-rental {}

.map__icon .icon-swave {
	width: 60%;
}

.map__icon .icon-info {}

.map__icon .icon-toilet {}

.map__icon .icon-shower {}

.map__icon .icon-locker {
	width: 40%;
}

.map__icon .icon-ticket {}

.map__icon .icon-changingroom {}

.map__icon .icon-ticketing {
	width: 40%;
}

.map__icon .icon-smoking {}

.map__icon .icon-bus {}

.map__icon .icon-lifeguard {}

.map__icon .icon-aed {}

@media screen and (max-width: 1000px) {
	.map__icon {
		padding: 4.5vw 0 2.5vw;
		width: 88vw;
	}

	.map__icon--list li {
		margin: 0 2vw 2vw 0;
	}

	.map__icon--list li .icon img {
		height: 2.5vw;
	}

	.map__icon--list li .icon figcaption {
		margin-left: 1vw;
		font-size: 1.5vw;
	}
}

@media screen and (max-width: 768px) {
	.map__icon {
		padding: 12vw 6.4vw;
		width: 100%;
	}

	.map__icon--list li {
		margin: 0 4.8vw 4.8vw 0;
	}

	.map__icon--list li .icon img {
		height: 6.4vw;
	}

	.map__icon--list li .icon figcaption {
		margin-left: 0.5em;
		font-size: 3.2vw;
	}

	.map__icon .icon-pool {}

	.map__icon .icon-jetbath {}

	.map__icon .icon-parasol {}

	.map__icon .icon-eat {
		width: auto;
	}

	.map__icon .icon-shop {}

	.map__icon .icon-rental {}

	.map__icon .icon-swave {
		width: 100%;
	}

	.map__icon .icon-info {
		width: 100%;
	}

	.map__icon .icon-toilet {}

	.map__icon .icon-shower {}

	.map__icon .icon-locker {
		width: 40%;
	}

	.map__icon .icon-ticket {}

	.map__icon .icon-changingroom {
		width: 100%;
	}

	.map__icon .icon-ticketing {
		width: 100%;
	}

	.map__icon .icon-smoking {}

	.map__icon .icon-bus {}

	.map__icon .icon-lifeguard {
		width: 100%;
	}

	.map__icon .icon-aed {
		width: 100%;
	}
}