@charset "UTF-8";

:root {
	--point-blue: #4b6efa;
	--point-gra: linear-gradient(180deg, #4b6efa 0%, #7b42ff 100%);
	--point-c01: #5a6efb;
	--point-c02: #2e9ec3;
	--point-c03: #4da530;
	--point-c04: #f46535;
	--point-c05: #6b6bd6;
	--point-c06: #a96cd4;
	--point-c07: #b54779;
	--point-c08: #585858;
	--point-c09: #358f80;
	--point-c10: #b48401;
	--point-c11: #e35cc0;
	--point-c12: #f0554f;
}

body {
	background: #f0f0f0;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 4.6rem;
	border: 1px solid #e5e5e5;
	border-radius: 0.6rem;
	padding: 0 0.6rem;
	background: url('../img/map/ico-select.svg') no-repeat right 0.6rem center;
}

.c01 {
	--map-color: var(--point-c01);
}
.c02 {
	--map-color: var(--point-c02);
}
.c03 {
	--map-color: var(--point-c03);
}
.c04 {
	--map-color: var(--point-c04);
}
.c05 {
	--map-color: var(--point-c05);
}
.c06 {
	--map-color: var(--point-c06);
}
.c07 {
	--map-color: var(--point-c07);
}
.c08 {
	--map-color: var(--point-c08);
}
.c09 {
	--map-color: var(--point-c09);
}
.c10 {
	--map-color: var(--point-c10);
}
.c11 {
	--map-color: var(--point-c11);
}
.c12 {
	--map-color: var(--point-c12);
}

.map-side-nav {
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 44rem;
	transition: transform 0.25s ease;
}
.map-side-nav.active {
	transform: translateX(0);
}
.map-side-nav:not(.active) {
	transform: translateX(-100%);
}
.map-side-nav .btn-fold {
	position: absolute;
	z-index: 0;
	right: -2.4rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2.4rem;
	height: 6rem;
	border-radius: 0 0.3rem 0.3rem 0;
	box-shadow: 0.2rem 0.2rem 0.8rem 0 rgba(0, 0, 0, 0.2);
	background: #fff url(../img/map/ico-hd-fold-at.svg) no-repeat center;
	transition: background-image 0.2s ease;
}
.map-side-nav .btn-fold.active {
	background-image: url(../img/map/ico-hd-fold.svg);
}
.map-side-nav .share-area {
	position: absolute;
	z-index: 1;
	right: -6.5rem;
	top: 1rem;
	width: 5rem;
	background: #fff;
	border-radius: 0.6rem;
}
.map-side-nav .btn-share {
	display: flex;
	flex-direction: column;
	width: 5rem;
	height: 5rem;
	border-radius: 0.6rem;
	box-shadow: 0.2rem 0.2rem 1rem 0 rgba(0, 0, 0, 0.14);
	background: var(--point-blue) url(../img/map/ico-share.svg) no-repeat center;
}
.map-side-nav .share-pop {
	display: none;
}
.map-side-nav .share-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem 0.5rem;
}
.map-side-nav .share-list button {
	width: 4rem;
	height: 4rem;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
.map-side-nav .share-list button.share-link {
	background-image: url(../img/map/ico-share-link.svg);
}
.map-side-nav .share-list button.share-blog {
	background-image: url(../img/map/ico-share-blog.svg);
}
.map-side-nav .share-list button.share-facebook {
	background-image: url(../img/map/ico-share-facebook.svg);
}
.map-side-nav .share-list button.share-x {
	background-image: url(../img/map/ico-share-x.svg);
}
.map-side-nav .share-list button.share-google {
	background-image: url(../img/map/ico-share-google.svg);
}
.map-side-nav .share-list button.share-close {
	background-image: url(../img/map/ico-share-close.svg);
}

header {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100vh;
	background: #fff;
	box-shadow: 0.4rem 0.4rem 1.4rem 0 rgba(0, 0, 0, 0.2);
}
header h1 {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	padding: 2rem;
	gap: 1rem;
	border-bottom: 1px solid #d9d9d9;
}
header h1 a {
	display: block;
	font-size: 2rem;
	font-weight: 600;
	color: #555;
}
header h1 a.go-main {
	width: 13.7rem;
	height: 4.3rem;
	background: url(../img/map/map-logo.svg) no-repeat 0 0/100%;
	text-indent: -9999px;
}
header .panel {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
header .panel .btn-panel-hand {
	display: none;
}
header .panel .tablist {
	position: relative;
	z-index: 2;
	display: flex;
	background: #fff;
	box-shadow: 0 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.06);
}
header .panel .tablist button {
	position: relative;
	display: flex;
	flex: 1;
	min-width: 0;
	width: 100%;
	height: 7.6rem;
	padding: 4rem 0.8rem 0;
	justify-content: center;
	align-items: center;
	font-size: 1.3rem;
	word-break: keep-all;
	text-align: center;
	line-height: 1.2;
	border-bottom: 3px solid transparent;
}
header .panel .tablist button i:not(.sr-only) {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 1.3rem;
	width: 3rem;
	height: 3rem;
	display: block;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #575757;
	transform: translateX(-50%);
}
header .panel .tablist button i.sr-only {
	display: none;
}
header .panel i.sc {
	mask-image: url(../img/map/ico-tab-sc.svg);
	-webkit-mask-image: url(../img/map/ico-tab-sc.svg);
}
header .panel i.bs {
	mask-image: url(../img/map/ico-tab-bs.svg);
	-webkit-mask-image: url(../img/map/ico-tab-bs.svg);
}
header .panel i.st {
	mask-image: url(../img/map/ico-tab-st.svg);
	-webkit-mask-image: url(../img/map/ico-tab-st.svg);
}
header .panel i.ct {
	mask-image: url(../img/map/ico-tab-ct.svg);
	-webkit-mask-image: url(../img/map/ico-tab-ct.svg);
}
header .panel i.fd {
	mask-image: url(../img/map/ico-tab-fd.svg);
	-webkit-mask-image: url(../img/map/ico-tab-fd.svg);
}
header .panel i.rd {
	mask-image: url(../img/map/ico-tab-rd.svg);
	-webkit-mask-image: url(../img/map/ico-tab-rd.svg);
}
header .panel i.ps {
	mask-image: url(../img/map/ico-tab-ps.svg);
	-webkit-mask-image: url(../img/map/ico-tab-ps.svg);
}
header .panel i.ad {
	mask-image: url(../img/map/ico-tab-ad.svg);
	-webkit-mask-image: url(../img/map/ico-tab-ad.svg);
}
header .panel i.dr {
	mask-image: url(../img/map/ico-tab-dr.svg);
	-webkit-mask-image: url(../img/map/ico-tab-dr.svg);
}
header .panel .tablist button.select {
	font-weight: 700;
	background: var(--point-gra);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	border-bottom: 3px solid #6853fd;
}
header .panel .tablist button.select i:not(.sr-only) {
	background: var(--point-gra);
}
header .panel .panel-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	min-height: 0;
	padding-bottom: 4.8rem;
	background: #f9fafb;
}
header .panel .panel-inner .tabpanel {
	min-height: 0;
}
header .panel .panel-inner .tabpanel > div.active {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}
header .panel .tabpanel .panel-top {
	position: relative;
	z-index: 1;
	padding: 1.6rem 2rem;
	box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.11);
	background: #fff;
}
header .panel .tabpanel .panel-top .title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	color: #333;
	gap: 0.6rem;
	font-weight: 700;
}
header .panel .tabpanel .panel-top .title i {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #333;
}
header .panel .tabpanel .panel-con {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
}
header .panel .tabpanel .panel-con .no-cont {
	height: 100%;
	background: #fff;
	padding: 10rem 0;
	text-align: center;
	font-size: 1.5rem;
	color: #444;
}
header .panel .panel-inner .panel-btm {
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4.8rem;
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: visible;
	transition: height 0.2s ease;
}
header .panel .panel-inner .panel-btm .hand {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	height: 4.8rem;
	gap: 0.8rem;
	font-size: 1.6rem;
	font-weight: 600;
	background: #7863f1;
	color: #fff;
}
header .panel .panel-inner .panel-btm .hand:before {
	content: '';
	width: 2.4rem;
	height: 2.4rem;
	background: url(../img/map/ico-btm-list.svg) no-repeat center;
}
header .panel .panel-inner .panel-btm .hand:after {
	content: '';
	position: absolute;
	z-index: 1;
	left: 50%;
	top: -1.3rem;
	width: 4.6rem;
	height: 1.3rem;
	background: url(../img/map/ico-btm-hand.svg) no-repeat center;
	transform: translateX(-50%);
}
header .panel .panel-inner .panel-btm.active {
	height: calc(100% - 12rem);
}
header .panel .panel-inner .panel-btm.active .hand:after {
	background-image: url(../img/map/ico-btm-hand-fold.svg);
}
header .panel .panel-inner .panel-btm .btm-con {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	height: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transition:
		max-height 0.2s ease,
		opacity 0.2s ease;
	background: #f9fafb;
}
header .panel .panel-inner .panel-btm.active .btm-con {
	height: 100%;
	opacity: 1;
	pointer-events: auto;
}
header .panel .panel-inner .panel-dim {
	display: none;
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}
header .panel .btn-reset {
	position: absolute;
	z-index: 1;
	right: 1.5rem;
	top: 1.3rem;
	height: 3.8rem;
	width: auto;
	padding: 0 1rem 0 4rem;
	border-radius: 0.3rem;
	font-size: 1.3rem;
	font-weight: 700;
	color: #555;
	background: #ebecf8 url(../img/map/ico-reset.svg) no-repeat left 1rem center;
}

.map-search form {
	display: flex;
	align-items: center;
	width: 100%;
	border-radius: 0.6rem;
	border: 2px solid #193ed2;
	overflow: hidden;
}
.map-search #search {
	flex-grow: 1;
	height: 4.6rem;
	padding: 0 1rem;
	font-size: 1.5rem;
	color: #717171;
	border: none;
}
.map-search .btn-search {
	width: 6.2rem;
	height: 4.6rem;
	background: url(../img/map/ico-search.svg) no-repeat center;
}

.search-result-list {
	min-height: 100%;
}
.search-result-list ul li {
	cursor: pointer;
	padding: 2rem;
	transition: background 0.3s ease;
}
.search-result-list ul li + li {
	border-top: 1px solid #d9d9d9;
}
.search-result-list ul li:hover {
	background: #fff;
}
.search-result-list .tit {
	margin-bottom: 1.6rem;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--point-blue);
}
.search-result-list dl {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-items: flex-start;
	line-height: 1.3;
}
.search-result-list dl dt {
	flex-shrink: 0;
	width: 5.6rem;
	padding: 0.3rem 0;
	font-size: 1.4rem;
	color: #434343;
	background: #e7ecf6;
	border-radius: 10rem;
	text-align: center;
}
.search-result-list dl dd {
	flex-grow: 1;
	width: 100%;
	max-width: calc(100% - 6.2rem);
	padding-top: 0.2rem;
	font-size: 1.5rem;
	color: #555;
}

.map-list {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	gap: 0.3rem;
}
.map-list-group {
	display: flex;
	flex-direction: column;
}
.map-list-group > button {
	padding: 1.2rem 4.4rem 1.7rem 1rem;
	text-align: left;
	border-radius: 0.4rem;
	font-size: 1.6rem;
	color: #555;
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-image: url(../img/map/ico-map-down.svg);
}
.map-list-group > button.active {
	font-weight: 700;
	color: #fff;
	background-color: #424e6d;
	background-image: url(../img/map/ico-map-up.svg);
}
.map-list-group > ul {
	display: none;
	flex-direction: column;
	gap: 0.3rem;
	padding: 1rem 0;
	border-radius: 0.4rem;
	background: #fff;
	box-shadow: 0 0.4rem 0.2rem 0 rgba(0, 0, 0, 0.03);
}
.map-list-group > button.active + ul {
	display: flex;
}
.map-list-group .list-con {
	display: none;
	margin: 0 1.6rem;
	padding: 0.6rem;
	background: #E6EAF0;
}
.map-list-group .list-con.active {
	display: block;
}
.map-list-group .depth2 {
	display: flex;
	width: calc(100% - 2rem);
	height: 4.3rem;
	justify-content: flex-start;
	align-items: center;
	padding: 0.8rem 1rem;
	margin: 0 1rem;
	text-align: left;
	font-size: 1.5rem;
	color: #555;
	border-radius: 0.4rem;
	background: #e6eaf0 url(../img/map/ico-map-down-g.svg) no-repeat right 1rem center;
}
.map-list-group .depth2.active {
	background-image: url(../img/map/ico-map-up-g.svg);
}
.map-list-group .chk-list {
	display: none;
	flex-direction: column;
	margin: 0 1rem;
	width: calc(100% - 2rem);
	padding: 0.4rem 0;
	border-bottom: 1px dashed #d4d4d4;
}
.map-list-group .depth2.active + .chk-list {
	display: flex;
}
.map-list-group .chk-list .chkitem {
	padding: 0.8rem 1.6rem;
}
.map-list-group .chkitem {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.6rem;
	font-size: 1.5rem;
	line-height: 1;
	color: #444;
}
.map-list-group .chkitem p {
	display: flex;
	gap: 0.6rem;
	align-items: center;
}
.map-list-group .chkitem p input {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}
.map-list-group .chkitem p input + i {
	flex-shrink: 0;
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #b7b7b7;
}
.map-list-group .chkitem p input:checked + i {
	background-image: url(../img/map/ico-check.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--map-color, #fff);
	background-size: 1.2rem;
	border-color: var(--map-color, #b7b7b7);
}

.btm-search {
	flex-shrink: 0;
}
.btm-search form {
	display: flex;
	padding: 2rem 1rem;
	gap: 0.4rem;
	background: #fff;
	box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.11);
}
.btm-search form select {
	flex-shrink: 0;
	width: 12.6rem;
	height: 4rem;
	padding: 0 0.6rem;
	font-size: 1.5rem;
	color: #555;
	border: 1px solid #472ea4;
	border-radius: 0.6rem;
	background: #fff url(../img/map/ico-select.svg) no-repeat right 0.6rem center;
}
.btm-search form input {
	flex-grow: 1;
	height: 4rem;
	padding: 0 0.6rem;
	font-size: 1.5rem;
	color: #555;
	border: 1px solid #472ea4;
	border-radius: 0.6rem;
}
.result-list {
	flex-grow: 1;
	min-height: 0;
	overflow-y: auto;
}
.result-list ul {
	display: flex;
	flex-direction: column;
	padding: 2rem 1rem;
	gap: 1.2rem;
}
.result-list ul li em {
	display: inline-block;
	padding: 0.3rem 0.7rem;
	border-radius: 50rem;
	font-size: 1.4rem;
	margin-right: 0.6rem;
	font-weight: 600;
	color: #fff;
	background-color: var(--map-color, #575757);
	-webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
}
.result-list ul li p {
	display: inline;
	font-size: 1.5rem;
	color: #444;
}

.people-box {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1rem;
	border-radius: 0.4rem;
	background: #fff;
}
.people-box .option {
	display: flex;
	gap: 1.6rem;
	align-items: center;
	padding-top: 0.6rem;
	font-size: 1.5rem;
	color: #555;
	border-top: 1px dashed #cfcfcf;
}
.people-box .option:first-of-type {
	padding-top: 0;
	border-top: 0;
}
.people-box .option > strong {
	width: 4rem;
	flex-shrink: 0;
	font-weight: 600;
}
.people-box .option .value {
	display: flex;
	gap: 0.6rem;
	flex-grow: 1;
	width: 100%;
	max-width: calc(100% - 4.6rem);
}
.people-box .option .value select {
	flex-grow: 1;
	width: 100%;
}
.people-box .map-btn-wrap {
	display: flex;
	gap: 0.4rem;
	padding-top: 0.6rem;
}
.people-box .map-btn-wrap > * {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 4.4rem;
	border-radius: 0.6rem;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
}
.people-box .map-btn-wrap > * i {
	display: inline-block;
	width: 2.4rem;
	height: 2.4rem;
	margin-left: 0.6rem;
	background-repeat: no-repeat;
	background-position: center;
}
.people-box .map-btn-wrap .btn-sc-confirm {
	background-color: var(--point-blue);
}
.people-box .map-btn-wrap .btn-sc-confirm i {
	background-image: url(../img/map/ico-sc-confirm.svg);
}
.people-box .map-btn-wrap .btn-sc-reset {
	background-color: #687084;
}
.people-box .map-btn-wrap .btn-sc-reset i {
	background-image: url(../img/map/ico-sc-reset.svg);
}
.inp-radio {
	position: relative;
}
.inp-radio input {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}
.inp-radio input + span {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	min-width: 8rem;
	height: 4rem;
	border-radius: 0.6rem;
	border: 1px solid #e5e5e5;
}
.inp-radio input:checked + span {
	background-color: #eef3ff;
	color: var(--point-blue);
	border-color: var(--point-blue);
	font-weight: 600;
}

.select2-container .select2-selection--multiple {
	min-height: 4rem;
}
.select2-container--default .select2-selection--multiple {
	border-color: #e5e5e5;
	border-radius: 0.6rem;
}
.select2-container .select2-search--inline .select2-search__field {
	margin: 1rem 0 0 0.6rem;
	font-family: var(--krds-font-family-base);
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
	margin-top: -0.8rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	padding: 0.3rem 3.4rem 0.3rem 1rem;
	background: #e6eaf0;
	border: 0;
	font-size: 1.5rem;
	line-height: 1.2;
}
.select2-container--default .select2-selection--multiple {
	padding-bottom: 0.4rem;
	padding-right: 0.4rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	margin-left: 0.4rem;
	margin-top: 0.4rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
	padding: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	left: initial;
	top: 0rem;
	right: 0.2rem;
	width: 3rem;
	height: 3rem;
	text-indent: -9999px;
	border-radius: 0.4rem;
	border: 0;
	background: url(../img/map/ico-select-remove.svg) no-repeat center;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.map-options {
	position: fixed;
	z-index: 99;
	right: 1rem;
	top: 1rem;
	background: transparent;
	transition: all 0.3s ease;
}
.map-options .map-op-inner {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.map-options .map-op-inner .mb-tit,
.map-options .map-op-inner .btn-close {
	display: none;
}
.map-options .map-op-btns {
	position: fixed;
	z-index: 99;
	right: 2rem;
	bottom: 2rem;
}
.map-options .map-op-btns > * {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	text-indent: -9999px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: 0.2rem 0.2rem 5rem 0 rgba(0, 0, 0, 0.12);
}
.map-options .map-op-btns .btn-mb-op {
	display: none;
	background-image: url(../img/map/ico-layer.svg);
}
.map-options .map-op-btns .btn-mb-cnt {
	background-image: url(../img/map/ico-cnt.svg);
}
.map-options .view-option {
	display: flex;
	gap: 1.4rem;
	padding: 0.4rem 1.3rem;
	border-radius: 0.3rem;
	background: #fff;
	box-shadow: 0.1rem 0.3rem 0.4rem 0 rgba(0, 0, 0, 0.12);
}
.map-options .view-option .inp-radio {
	position: relative;
}
.map-options .view-option .inp-radio input {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}
.map-options .view-option .inp-radio input + span {
	display: flex;
	gap: 1rem;
	padding: 0.3rem 1rem;
	height: 3rem;
	font-size: 1.3rem;
	border-radius: 0.3rem;
	border: 0;
}
.map-options .view-option .inp-radio input + span:before {
	content: '';
	display: inline-block;
	width: 2.4rem;
	height: 2.4rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
.map-options .view-option .inp-radio input.roadview + span:before {
	background-image: url(../img/map/ico-roadview.svg);
}
.map-options .view-option .inp-radio input.boundary + span:before {
	background-image: url(../img/map/ico-boundary.svg);
}
.map-options .view-option .inp-radio input.traffic + span:before {
	background-image: url(../img/map/ico-traffic.svg);
}
.map-options .view-option .inp-radio input.bicycle + span:before {
	background-image: url(../img/map/ico-bicycle.svg);
}

.map-type {
	display: flex;
	gap: 0.5rem;
}
.map-type .inp-radio {
	position: relative;
}
.map-type .inp-radio input {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}
.map-type .inp-radio input + span {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
	height: 3.8rem;
	padding: 0 1rem;
	border-radius: 0.3rem;
	background: #fff;
	border: 0;
	font-size: 1.3rem;
	font-weight: 500;
	color: #111;
	box-shadow: 0.1rem 0.3rem 0.4rem 0 rgba(0, 0, 0, 0.12);
}
.map-type .inp-radio input:checked + span {
	background-color: var(--point-blue);
	color: #fff;
}

.marker {
	position: absolute;
	z-index: 1;
	width: 5rem;
	height: 5rem;
	cursor: pointer;
}

.marker-pop {
	position: absolute;
	margin-bottom: 50px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	width: 42rem;
	padding: 2.4rem 3rem 3rem;
	background: #fff;
	border-radius: 2rem;
	box-shadow: 0.8rem 0.8rem 2rem 0 rgba(0, 0, 0, 0.17);
	transform: translate(-50%, -120%);
}
.marker-pop .tit {
	flex-shrink: 0;
	padding-top: 0.3rem;
	min-height: 0;
	padding-bottom: 1.6rem;
	border-bottom: 2px solid #151850;
}
.marker-pop .tit strong {
	position: relative;
	display: block;
	font-size: 1.7rem;
	color: #333;
	padding-left: 2.8rem;
	padding-right: 4rem;
	line-height: 1.5;
	white-space: pre-wrap;
}
.marker-pop .tit strong:after {
	content: '';
	position: absolute;
	z-index: 1;
	left: -0.4rem;
	top: -0.2rem;
	width: 3rem;
	height: 3rem;
	mask-repeat: no-repeat;
	mask-position: left center;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url(../img/map/ico-marker.svg);
	-webkit-mask-image: url(../img/map/ico-marker.svg);
}
.marker-pop .con {
	flex-grow: 1;
	max-height: 25.6rem;
	overflow-y: auto;
}
.marker-pop .con table {
	width: 100%;
	word-break: break-all;
	font-size: 1.4rem;
	table-layout: auto;
	white-space: pre-wrap;
	color: #333;
}
.marker-pop .con table th {
	width: 8rem;
	max-width: 20%;
	height: 3.6rem;
	font-weight: 400;
	padding: 1rem 1.6rem;
	text-align: left;
	background: #e6eaf0;
	word-break: keep-all;
	border-bottom: 1px solid #cdcdcd;
}
.marker-pop .con table td {
	padding: 1rem;
	border-bottom: 1px solid #cdcdcd;
}
.marker-pop .con .dot-list > li {
	position: relative;
	padding-left: 0.7rem;
}
.marker-pop .con .dot-list > li::before {
	content: '';
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0.8rem;
	width: 0.3rem;
	height: 0.3rem;
	border-radius: 0.1rem;
	background-color: #919191;
}
.marker-pop .con .dash-list > li {
	position: relative;
	padding-left: 0.9rem;
}
.marker-pop .con .dash-list > li::before {
	content: '';
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0.9rem;
	width: 0.5rem;
	height: 0.1rem;
	background-color: #b4b4b4;
}
.marker-pop .con ul ul {
	margin-left: 1.8rem;
}
.marker-pop .btn-pop-close {
	position: absolute;
	z-index: 1;
	right: 3rem;
	top: 2.4rem;
	width: 2.6rem;
	height: 2.6rem;
	text-indent: -9999px;
	background: #fff url(../img/map/ico-pop-close.svg) no-repeat center;
}

.marker:after,
.marker-pop .tit strong:after {
	background-color: var(--map-color, #575757);
}

.photo-pop {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
}
.photo-pop.active {
	display: block;
}
.photo-pop .popup {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	width: calc(100% - 4rem);
	max-width: 60rem;
	transform: translate(-50%, -50%);
}
.photo-pop .popup .photo {
	width: 100%;
	border: 0.4rem solid #fff;
}
.photo-pop .popup .photo img {
	display: block;
	width: 100%;
}
.photo-pop .popup .btn-photo-close {
	position: absolute;
	z-index: 1;
	left: 50%;
	bottom: -6rem;
	width: 5rem;
	height: 5rem;
	text-indent: -9999px;
	border-radius: 50%;
	background: #fff url(../img/map/ico-photo-close.svg) no-repeat center;
	transform: translateX(-50%);
}
.marker-pop .con td .btn-photo-open {
	display: inline-block;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}
.marker-pop .con td .btn-photo-open img {
	display: block;
	max-width: 100%;
	height: auto;
}

.circle-chart {
	position: absolute;
	z-index: 1;
	--percent: 25;
	width: 12rem;
	aspect-ratio: 1;
	padding: 1rem;
	box-sizing: border-box;
	border-radius: 50%;
	line-height: 1.3;
	cursor: pointer;
	background: conic-gradient(var(--map-color) 0 calc(var(--percent) * 1%), #d1d1d3 0 100%);
}
.circle-inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border-radius: 50%;
	background: #fff;
	text-align: center;
	box-shadow: 0.2rem 0.2rem 0.7rem rgba(0, 0, 0, 0.12);
}
.circle-chart strong {
	font-size: 1.5rem;
	font-weight: 600;
}
.circle-chart p {
	margin-top: 0.4rem;
	font-size: 1.8rem;
	font-weight: 600;
}
.circle-chart em {
	color: var(--map-color);
	font-size: 1.8rem;
	font-weight: 900;
}

#mapCon {
	position: relative;
	z-index: 0;
	width: 100vw;
	height: 100vh;
	background: #333;
}

#mapRoadview {
	position: absolute !important;
	z-index: 0;
	left: 0;
	bottom: 0;
	width: 100vw;
	height: 40vh;
	background: #111;
}

@media all and (max-width: 768px) {
	.map-side-nav {
		position: relative;
		width: 100%;
	}
	.map-side-nav.active {
		transform: none;
	}
	header {
		height: auto;
		background: transparent;
		box-shadow: none;
	}
	header h1 {
		position: fixed;
		z-index: 1;
		left: 1rem;
		top: 1rem;
		width: calc(100% - 8.4rem);
		height: 6rem;
		background: #fff;
		border-radius: 0.6rem;
		border-bottom: 0;
		box-shadow: 0.2rem 0.2rem 1rem 0 rgba(0, 0, 0, 0.14);
	}
	header .panel {
		position: fixed;
		z-index: 1;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 40vh;
		padding-bottom: 7.6rem;
		background: #fff;
		border-radius: 1.2rem 1.2rem 0 0;
		transition: height 0.25s ease;
		box-shadow: 0.2rem 0.2rem 1rem 0 rgba(0, 0, 0, 0.14);
	}
	header .panel.is-expanded {
		height: calc(100vh - 15rem);
	}
	header .panel .btn-panel-hand {
		flex-shrink: 0;
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
		height: 2.4rem;
		border-radius: 1.2rem 1.2rem 0 0;
		background: #fff;
	}
	header .panel .btn-panel-hand::after {
		content: '';
		position: absolute;
		z-index: 1;
		left: 50%;
		top: 1.3rem;
		width: 5rem;
		height: 0.35rem;
		border-radius: 2rem;
		background-color: rgba(0, 0, 0, 0.3);
		transform: translateX(-50%);
	}
	header .panel .tabpanel .panel-top {
		padding-top: 0;
	}
	header .panel .tablist {
		position: absolute;
		z-index: 1;
		left: 0;
		bottom: 0;
		width: 100%;
	}
	header .panel .tablist button.select {
		border-bottom: 0;
	}
	.map-side-nav .share-area {
		position: fixed;
		z-index: 9999;
		right: 1rem;
		top: 1rem;
		width: 6rem;
	}
	.map-side-nav .btn-share {
		width: 6rem;
		height: 6rem;
	}
	.map-side-nav .share-list {
		gap: 0;
		align-items: center;
	}
	header .panel .btn-reset {
		right: initial;
		left: 2rem;
		top: -5rem;
		height: 4rem;
		border-radius: 50rem;
		color: #fff;
		background:
			url(../img/map/ico-sc-reset.svg) no-repeat left 1rem center,
			var(--point-gra);
		box-shadow: 0.4rem 0.4rem 1.4rem 0 rgba(0, 0, 0, 0.2);
	}
	.map-options {
		z-index: 9999;
		right: 0;
		top: 0;
		overflow: hidden;
	}
	.map-options .map-op-inner {
		flex-direction: column;
		position: absolute;
		z-index: 1;
		left: 0;
		bottom: -24rem;
		width: 100%;
		height: 24rem;
		gap: 0;
		padding: 1rem 1.6rem 3rem;
		border-radius: 1.2rem 1.2rem 0 0;
		transition: bottom 0.2s ease;
	}
	.map-options .map-op-inner .mb-tit {
		display: flex;
		height: 4rem;
		font-size: 1.6rem;
		color: #333;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
	}
	.map-options .map-op-inner .btn-close {
		display: block;
		position: absolute;
		z-index: 1;
		right: 1.6rem;
		width: 4rem;
		height: 4rem;
		border-radius: 50%;
		text-indent: -9999px;
		background: #f5f5f5 url(../img/map/ico-pop-close.svg) no-repeat center/2.4rem;
	}
	.map-options .map-op-btns {
		display: flex;
		flex-direction: column;
		gap: 0.6rem;
		right: 2rem;
		bottom: calc(40vh + 1rem);
	}
	body.panel-expanded .map-options .map-op-btns {
		opacity: 0;
	}
	.map-options .map-op-btns .btn-mb-op {
		display: block;
	}

	.map-options .view-option {
		order: 2;
		box-shadow: none;
		gap: 0.4rem;
		width: 100%;
		padding: 1rem 0 0 0;
	}
	.map-options .view-option .inp-radio {
		width: calc((100% - 1.2rem) / 4);
	}
	.map-options .view-option .inp-radio input + span {
		width: 100%;
		min-width: 0;
		gap: 0.8rem;
		padding: 0.6rem 0;
		flex-direction: column;
		height: auto;
	}

	.map-options.active {
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.6);
	}
	.map-options.active .map-op-btns {
		opacity: 0;
	}
	.map-options.active .map-op-inner {
		bottom: 0;
		background: #fff;
	}

	.map-type {
		width: 100%;
		justify-content: center;
		gap: 1rem;
		padding-bottom: 1.6rem;
		border-bottom: 1px dashed #9c9c9c;
	}
	.map-type .inp-radio input + span {
		position: relative;
		width: 8rem;
		height: auto;
		padding-top: 4.8rem;
		border: 0;
		box-shadow: none;
	}
	.map-type .inp-radio input + span:before {
		content: '';
		position: absolute;
		z-index: 1;
		left: 50%;
		top: 0;
		width: 4rem;
		height: 4rem;
		border-radius: 0.4rem;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 4rem;
		transform: translateX(-50%);
	}
	.map-type .inp-radio input:checked + span:before {
		border: 2px solid var(--point-blue);
	}
	.map-type .inp-radio input + span.normal:before {
		background-image: url(../img/map/ico-type01.png);
	}
	.map-type .inp-radio input + span.satel:before {
		background-image: url(../img/map/ico-type02.png);
	}
	.map-type .inp-radio input:checked + span {
		background: transparent;
		color: var(--point-blue);
		text-decoration: underline;
		font-weight: 700;
	}

	.marker-pop {
		max-width: 30rem;
		padding: 2rem;
	}
	.marker-pop .btn-pop-close {
		right: 2rem;
		top: 2rem;
	}

	#mapRoadview {
		bottom: 40vh;
		height: 20vh;
	}
}
