@charset "UTF-8";

/* =====================
  Nav
===================== */
.main .nav {
	display: flex;
	margin-top: 85px;
	justify-content: space-between;
}
.main .nav a {
	width: 100%;
	display: grid;
	place-content: center;
	background: white;
	font-family: var(--title);
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	padding-block: 24px;
	position: relative;
	transition: background 250ms ease 0s;
}
.main .nav a:nth-child(1) {
	border-left: 1px dashed transparent;
}
.main .nav a:nth-child(2) {
	border-left: 1px dashed #959595;
}
.main .nav a:nth-child(3) {
	border-left: 1px dashed #959596;
}
.main .nav a.on + a {
	border-color: transparent;
}
.main .nav a.on {
	border-inline: 1px dashed transparent;
	pointer-events: none;
	background: var(--blue);
	color: white;
}
.main .nav a.on:first-child + a {
	border-left: 1px solid transparent;
}
.main .nav a.on::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -6px;
	width: 20px;
	background: var(--blue);
	height: 6px;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.main .localnav {
	margin-top: 38px;
}
.main h2 {
	margin-top: 71px;
	font-weight: bold;
	font-size: 18px;
}
.main h2 span {
	font-weight: bold;
}
.main h2 span:last-child {
	font-weight: 500;
	font-size: 16px;
	padding-inline: 3px;
}

/* =====================
  main
===================== */
.main {
	background: #eceff3;
}
.main > .inner {
	padding-bottom: 120px;
}

/* =====================
  icons
===================== */
.main .icons {
	margin-top: 48px;
	display: flex;
	min-height: 188px;
	font-size: 14px;
	font-weight: bold;
	border: 2px solid var(--grey2);
	background: white;
	gap: 24px;
	padding-inline: 68px;
	padding-block: 22px;
	border-radius: 8px;
}
.main .icons .icon:not([checked]) {
	opacity: 0.4;
	user-select: none;
}
.main .icons .icon {
	visibility: hidden;
	display: flex;
	align-items: center;
	gap: 8px;
}
.main .icons.on .icon {
	visibility: visible;
}
.main .icons .group-wrapper {
	display: flex;
	width: 244px;
	flex-direction: column;
	gap: 7.8px;
}
.main .icons .icon img {
	aspect-ratio: 1 / 1;
	width: 28px;
}

/* =====================
  map
===================== */
.main .article {
	position: relative;
	margin-top: 38px;
	padding-block: 48px;
	padding-inline: 51px;
	background: white;
}
.main .article h3 {
	position: absolute;
	top: 48px;
	left: 51px;
	border-radius: calc(infinity * 1px);
	background: rgba(39, 39, 46, 0.62);
	aspect-ratio: 1 / 1;
	width: 80px;
	display: grid;
	place-content: center;
	line-height: 1;
	color: white;
	font-size: 20px;
	font-weight: 600;
}
.main .article .map-guide {
	position: absolute;
	top: 72px;
	right: 52px;
}
.main .map {
	position: relative;
}
.main .map .map-contents {
	overflow: hidden;
	width: 704px;
	height: 619px;
	margin-inline: 121px 0px;
}

/* ==== panzoom ==== */
.panzoom svg {
	width: auto;
	height: auto;
	display: block;
	margin-inline: auto;
	user-select: none;
}
.panzoom a * {
	transition: all 250ms ease 0s;
}
.panzoom svg g.on * {
	fill: var(--pink);
	animation-name: ons;
	animation-duration: 600ms;
	animation-delay: 0ms;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
	animation-fill-mode: none;
	animation-play-state: running;
}
@keyframes ons {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
g.on + g * {
	fill: white;
}
.cls-1,
.cls-2,
.cls-3,
.cls-4,
.cls-5,
.cls-6,
.cls-7,
.cls-8,
.cls-9,
.cls-10 {
	stroke-width: 0px;
}

.svg-green {
	fill: #a0e281;
}
.svg-green:hover {
	fill: var(--green);
}
.svg-orange {
	fill: #f8c284;
}
.svg-orange:hover {
	fill: var(--orange);
}
.svg-cyan {
	fill: #8ed2f4;
}
.svg-cyan:hover {
	fill: var(--cyan);
}
.svg-pink {
	fill: #f2a8c8;
}
.svg-pink:hover {
	fill: var(--pink);
}

/* ==== zoom ==== */
.zoom {
	color: white;
	font-size: 20px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: absolute;
	bottom: 20px;
	right: 210px;
}
.zoom :where(.zoom-in, .zoom-out) {
	display: grid;
	place-content: center;
	width: 40px;
	aspect-ratio: 1 / 1;
	line-height: 1;
	cursor: pointer;
}
.zoom-in {
	background: #e95087;
}
.zoom-out {
	background: rgba(233, 80, 135, 0.4);
}

/* ==== svg ==== */
#panzoom a:hover * {
	filter: saturate(2);
}
