@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	position: relative;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
	min-width: 360px;
}

a {
	text-decoration: underline;
	color: rgba(0, 125, 204, 1);
}

a:hover {
	color: rgba(236, 0, 3, 1);
}

a img {
	transition: all 0.25s;
}

a:hover img {
	opacity: 0.75;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
table,
dl {
	margin-bottom: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.4;
}

ul {
	margin-left: 1.5em;
	list-style-position: outside;
}

ol {
	margin-left: 1.5em;
	list-style-position: outside;
}

li>ol,
li>ul {
	margin-top: 1em;
	margin-bottom: 2em;
}

li+li {
	margin-top: 0.5em;
}

img,
embed,
video {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: 0;
}

img[src$=".webp"],
img[src$=".svg"] {
	width: 100%;
}

picture {
	display: block;
	margin-bottom: 1em;
}

figure {
	margin-bottom: 1em;
	text-align: center;
}

figcaption {
	padding: 0.5em;
	line-height: 1.4;
	font-size: 80%;
}

iframe {
	border: none;
}

table {
	font-family: inherit;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 90%;
}

table caption {
	text-align: center;
	margin: 0.5em 0;
	font-size: 90%;
}

table caption::before {
	content: "〈 ";
	font-size: 70%;
	line-height: 1;
}

table caption::after {
	content: " 〉";
	font-size: 70%;
	line-height: 1;
}

th,
td {
	border: 1px solid rgba(200, 200, 200, 1);
	padding: 0.5em;
}

th {
	font-weight: normal;
	background-color: rgba(0, 0, 0, 0.08);
	text-align: center;
}

thead th {
	padding: 1em 0.5em;
	background-color: rgba(0, 0, 0, 0.15);
}

tbody th {
	background-color: rgba(0, 0, 0, 0.08);
}

td {
	text-align: left;
}

header *,
footer * {
	margin: 0;
	list-style-type: none;
}

body {
	background-color: rgba(255, 255, 255, 1);
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: rgb(80, 80, 80);
	line-height: 1.7;
	font-size: 1.5em;
	letter-spacing: 0;
}

@media screen and (min-width: 1100px) {
	body {
		line-height: 1.8;
		font-size: 1.6em;
	}
}

@media screen and (max-width: 900px) {
	body {
		line-height: 1.6;
		font-size: 1.4em;
	}
}

.wfix {
	max-width: 1200px;
	transition: all 0.5s;
}

#container {
	width: 100%;
	min-height: 100dvh;
}

header {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 1002;
	background-color: rgba(255, 255, 255, 1);
	gap: clamp(1em, 7vh, 5em) 5vw;
	padding: 10vh 0;
}

#title {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 10vw;
}

h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 450px;
	margin: auto;
}

#visual {
	margin: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	max-width: 1600px;
}

#visual img {
	opacity: 0;
}

@media screen and (max-width: 1000px) {
	header {
		padding: 0;
		gap: 0;
		height: calc(100vh - 10em);
	}

	#visual {
		padding: 5vh 0;
		width: 100%;
		overflow: hidden;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 200%;
	}

	#visual img {
		width: 200%;
		max-width: initial;
		opacity: 0;
	}

	#visual[data-num="1"] {
		background-position: left center;
	}

	#visual[data-num="2"] {
		background-position: right center;
	}
}

@media screen and (max-height: 600px) {
	header {
		padding-left: 33vw;
		padding-right: 33vw;
	}

	#title {
		padding: 0;
	}
}

@media screen and (max-width: 1000px) and (max-height: 600px) {
	#visual {
		display: none;
	}
}

main {
	z-index: 0;
	flex-grow: 1;
	letter-spacing: 0.05em;
}

#banner {
	position: sticky;
	top: 0;
	left: 0;
	text-align: center;
	background-color: rgba(255, 255, 255, 1);
	z-index: 1001;
	padding: 10px;
	transition: all 0.5s;
	transform: translateY(-100%);
	opacity: 0;
}

.scrolled #banner {
	transform: translateY(0);
	filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.3));
	opacity: 1;
}

#banner img {
	margin: auto;
	max-width: 160px;
}

main h2,
main h3 {
	letter-spacing: 0;
}

section {
	padding: 3em 0;
}

section+section {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.section_header {
	padding: 3em clamp(15px, 3vw, 3em) 1em clamp(15px, 3vw, 3em);
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section_header h2 {
	font-weight: normal;
	line-height: 1.4;
	text-align: center;
	font-size: clamp(1.25em, 3vw, 2.2em);
	margin: 0 auto 1em auto;
}

.section_header>h2:last-child {
	margin-bottom: 0;
}

.section_header h2::before {
	content: "MICHINAVI MEIHOU INFO";
	font-size: 35%;
	letter-spacing: 0.6em;
	line-height: 1;
	display: inline-block;
	opacity: 0.5;
}

.section_header h2>span {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 0.5em;
	width: fit-content;
	margin: auto;
	background-color: rgba(29, 76, 116, 1);
	color: rgba(255, 255, 255, 1);
	border-radius: 5em;
	padding: 5px;
	min-width: 12em;
}

.section_header h2>span::before {
	content: "";
	background-image: url("../img/title_mark.webp");
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.5em;
	aspect-ratio: 1.5;
	display: inline-block;
}

.section_header h2>*>*:last-child {
	flex-grow: 1;
	text-align: center;
	padding-right: 2em;
}

.section_header p {
	font-size: clamp(1em, 2vw, 1.8em);
	letter-spacing: clamp(0px, calc(2vw - 10px), 1em);
}

.section_header>*:last-child {
	margin-bottom: 0;
}

.section_content {
	padding: clamp(15px, 3vw, 3em);
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

.content_unit+.content_unit {
	margin-top: 4em;
}

.source {
	font-size: clamp(8px, 1.5vw, 0.8em);
	padding: 1em 0;
}

.source ul {
	margin-bottom: 0;
}

.source li {
	margin: 0;
}

/*----------------------------------
#gmap
----------------------------------*/

#gmap {
	text-align: center;
}

.use_guide {
	text-align: left;
	font-size: 90%;
	word-break: break-all;
}

.use_guide li {
	margin: 0;
}

#gmap .tab_btns {
	border-color: rgb(42, 167, 54);
}

@media screen and (max-width: 1000px) {
	#gmap .tab_btns {
		white-space: nowrap;
		overflow: hidden;
		overflow-x: auto;
	}
}

#gmap .tab_item {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: stretch;
	gap: 10px;
	margin: 0;
	width: 100%;
}

#gmap .tab_label h3 {
	background-color: rgb(190, 190, 190);
	font-size: clamp(110%, 2vw, 150%);
	display: flex;
	align-items: center;
	color: rgb(255, 255, 255);
	line-height: 1.4;
	padding: 5px 5px 0px 5px;
	height: 100%;
}

#gmap .tab_label h3:hover {
	background-color: rgba(42, 167, 54, 0.6);
}

#gmap .tab_btns .active h3 {
	background-color: rgb(42, 167, 54);
	border-bottom-color: rgb(42, 167, 54);
}

#gmap .tab_label h3 span.toward {
	padding: 0.5em 0.75em;
	color: rgb(190, 190, 190);
	background-color: rgb(255, 255, 255);
	border-radius: 2px;
}

#gmap .tab_label h3:hover span.toward {
	color: rgba(42, 167, 54, 0.6);
}

#gmap .active .tab_label h3 span.toward {
	color: rgb(42, 167, 54);
}

#gmap .tab_label h3 span.start_end {
	font-weight: normal;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(0.25em, 1vw, 0.5em);
	padding: 0.5em 1em;
	word-break: break-word;
	font-size: clamp(1.2rem, 1.3vw, 1.8rem);
}

#gmap .tab_label h3 span.arrow {
	font-weight: bold;
}

#gmap .tab_label>*:last-child,
#gmap .tab_content>*:last-child {
	margin-bottom: 0;
}

#gmap .tab_content iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 2;
	border: 0;
	display: block;
	border-radius: 5px;
	border: 2px solid rgba(0, 0, 0, 0.2);
}

#gmap .gmaplink {
	margin: 1em auto;
	padding: 10px;
	background-size: auto auto;
	background-color: rgba(255, 243, 202, 0.5);
	background-image: repeating-linear-gradient(-45deg,
			transparent,
			transparent 6px,
			rgba(204, 204, 204, 0.15) 6px,
			rgba(204, 204, 204, 0.15) 12px);
	border-radius: 5px;
	font-size: clamp(90%, 1.5vw, 120%);
	letter-spacing: 0;
}

#gmap .gmaplink a {
	padding: 1em 1.5em;
	background-color: rgb(245, 238, 200);
	border-radius: 3em;
	width: fit-content;
	margin: 0 auto;
	border: 3px solid rgba(0, 0, 0, 0.15);
	font-size: 90%;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 1em;
	color: rgb(80, 80, 80);
	transition: all 0.25s;
	font-weight: bold;
}

#gmap .gmaplink a:hover {
	background-color: rgba(255, 169, 4, 1);
	color: rgb(255, 255, 255);
}

#gmap .gmaplink a::after {
	content: "▼";
	display: inline-block;
	transform: rotate(-90deg);
}

@media screen and (max-width: 999px) {
	#gmap .tab_container {
		flex-direction: column;
	}

	#gmap .tab_item {
		margin: auto;
	}

	#gmap .tab_label h3 {
		flex-direction: column;
		line-height: 1.2;
		gap: 0.5em;
		font-size: 95%;
	}

	#gmap .tab_label h3 span.start_end {
		padding: 0.25em 0;
	}

	#gmap .tab_content iframe {
		aspect-ratio: 1;
	}
}

@media screen and (min-width: 1000px) {
	#gmap .tab_container {
		flex-direction: row;
	}
}

@media (max-height: 450px) and (orientation: landscape) {
	#gmap .tab_content iframe {
		max-height: 60vh;
	}
}

/*----------------------------------
#lc
----------------------------------*/

#lcmap {
	width: 60%;
}

@media screen and (min-width: 1001px) {
	#lcmap {
		display: flex;
		flex-direction: column;
	}
}

@media screen and (max-width: 1000px) {
	#lcmap #lc {
		height: 80vw;
		max-height: 600px;
	}
}

/*----------------------------------
leaflet
----------------------------------*/

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane>svg,
.leaflet-pane>canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
}

.leaflet-container {
	overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
}

.leaflet-tile::selection {
	background: transparent;
}

.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
}

.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
}

.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
}

.leaflet-container img.leaflet-tile {
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	touch-action: none;
	touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}

.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
	filter: inherit;
	visibility: hidden;
}

.leaflet-tile-loaded {
	visibility: inherit;
}

.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 800;
}

.leaflet-overlay-pane svg {
	-moz-user-select: none;
	user-select: none;
}

.leaflet-pane {
	z-index: 400;
}

.leaflet-tile-pane {
	z-index: 200;
}

.leaflet-overlay-pane {
	z-index: 400;
}

.leaflet-shadow-pane {
	z-index: 500;
}

.leaflet-marker-pane {
	z-index: 600;
}

.leaflet-tooltip-pane {
	z-index: 650;
}

.leaflet-popup-pane {
	z-index: 700;
}

.leaflet-map-pane canvas {
	z-index: 100;
}

.leaflet-map-pane svg {
	z-index: 200;
}

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
}

.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
}

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted;
	/* IE 9-10 doesn't have auto */
	pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
}

.leaflet-top {
	top: 0;
}

.leaflet-right {
	right: 0;
}

.leaflet-bottom {
	bottom: 0;
}

.leaflet-left {
	left: 0;
}

.leaflet-control {
	float: left;
	clear: both;
}

.leaflet-right .leaflet-control {
	float: right;
}

.leaflet-top .leaflet-control {
	margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
	margin-left: 10px;
}

.leaflet-right .leaflet-control {
	margin-right: 10px;
}

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
}

.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
	-moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
	transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
}

.leaflet-interactive {
	cursor: pointer;
}

.leaflet-grab {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane>svg path,
.leaflet-tile-container {
	pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane>svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted;
	pointer-events: auto;
}

.leaflet-marker-icon[src$=".png"] {
	opacity: 0;
}

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
}

.leaflet-container a {
	color: #0078A8;
}

.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255, 255, 255, 0.5);
}

.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
	border-radius: 4px;
}

.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
}

.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 22px;
}

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
	background: #fff;
	border-radius: 5px;
}

.leaflet-control-layers-toggle {
	background-image: url(../img/layers.png);
	width: 36px;
	height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(../img/layers-2x.png);
	background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
}

.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
}

.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
}

.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
}

.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
}

.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
}

/*
	.leaflet-default-icon-path {
	background-image: url(../img/marker-icon.png);
}
*/

.leaflet-default-icon-path {
	background-image: url("../img/marker-blue.svg") !important;
	background-size: contain;
}

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
}

.leaflet-control-attribution a {
	text-decoration: none;
}

.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
}

.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
}

.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
}

.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
}

.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0, 0, 0, 0.2);
	background-clip: padding-box;
}


.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 40px;
}

.leaflet-popup-content-wrapper {
	text-align: center;
	border: 10px solid #fff;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.75));
}

.cam_prop {
	text-align: center;
	width: 100%;
	font-size: 90%;
	display: block;
	padding: 1.0em;
	box-sizing: border-box;
	background-color: rgb(244, 204, 0);
	margin-top: 10px;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	gap: 1em;
}

.cam_prop::before {
	content: "";
	display: inline-block;
	width: 1.25em;
	aspect-ratio: 1;
	height: auto;
	background-image: url("../../img/mapico_video.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	mix-blend-mode: difference;
}

.leaflet-popup-content {
	margin: 0;
	min-height: 1px;
	width: fit-content !important;
}

.leaflet-popup-content .cam {
	position: relative;
	display: block;
	background-repeat: no-repeat;
	background-size: 103% auto;
	background-position: center center;
	background-color: rgb(0, 0, 0);
}

.leaflet-popup-content .cam img {
	width: 400px;
	max-width: 70vw;
	display: block;
	margin: 0;
}

.notcam {
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	font-size: 90%;
	color: rgb(120, 120, 120);
}

.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
}

.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
}

.leaflet-popup-tip::after {
	content: "▼";
	transform: scaleY(1.0) translateY(-5px);
	font-size: 28px;
	line-height: 1;
	display: block;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	color: #fff;
}

.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: -15px;
	right: -15px;
	border: none;
	text-align: center;
	width: 40px;
	height: 40px;
	font-size: 30px;
	font-family: Tahoma, Verdana, sans-serif;
	line-height: 1;
	color: rgba(0, 0, 0, 0.25);
	text-decoration: none;
	background: #ffffff;
	border-radius: 100px;
	filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
	display: flex;
	align-items: center;
	justify-content: center;
}

.leaflet-container a.leaflet-popup-close-button span {
	display: block;
}

.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #000000;
}

.leaflet-popup-scrolled {
	overflow: auto;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
}

.cam-btn {
	position: absolute;
	top: 50%;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.99);
	border: none;
	padding: 0.5em;
	font-size: 150%;
	line-height: 1;
	display: inline-block;
	transform: scaleX(0.7) translateY(-50%);
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	cursor: pointer;
	color: rgb(0, 0, 0);
	border-radius: 6px;
	opacity: 0.5;
}

.cam-btn:hover {
	opacity: 1;
}

.prev-btn {
	left: 0;
}

.next-btn {
	right: 0;
}

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
}

.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
}

.leaflet-tooltip-bottom {
	margin-top: 6px;
}

.leaflet-tooltip-top {
	margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
}

.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
}

.leaflet-tooltip-left {
	margin-left: -6px;
}

.leaflet-tooltip-right {
	margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
}

.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
}

.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
}

@media print {
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
}

/*--------------------------------*/

#lcmap #lc {
	/*
	height: 80vw;
	max-height: 600px;
*/
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	flex-grow: 1;
}

#lc .label-text {
	background-color: rgba(54, 170, 38, 1);
	padding: 3px 9px;
	border-radius: 16px;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	display: inline-block;
	width: fit-content !important;
	height: initial !important;
	color: rgba(255, 255, 255, 1);
	filter: drop-shadow(3px 3px 1px rgba(0, 0, 0, 0.25));
	letter-spacing: 0;
	cursor: grab;
	opacity: 0;
}

#lc .label-text.active {
	opacity: 1;
	/* background-color: rgb(221, 0, 0); */
}

#lc .label-text::before {
	content: "";
	display: inline-block;
	width: 1.5em;
	aspect-ratio: 1;
	height: auto;
	background-image: url("../../img/mapico_video.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

#ic .label-text::before {
	content: "▼";
	display: inline-block;
	font-size: 30px;
	color: #36aa26;
	line-height: 1;
	position: absolute;
	bottom: -15px;
	left: 5px;
	transform: scaleX(0.8) rotate(15deg);
	z-index: -1;
}

.custom-circle-icon {
	width: 10px;
	height: 10px;
	border: 1px solid rgb(50, 50, 50);
	background-color: white;
	border-radius: 50%;
	box-sizing: border-box;
}

#ic .leaflet-interactive {
	cursor: grab;
}

.content_unit:has(> #lcview) {
	display: flex;
	justify-content: space-between;
	gap: 3vw;
}

#lcview {
	flex-grow: 1;
	background-color: rgb(62, 186, 192);
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 40%;
	padding: 10px;
	gap: 10px;
}

#lcview #camimg {
	background-color: rgba(0, 0, 0, 1);
	background-size: 103%;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 3px;
}

#lclink {
	background-color: rgba(255, 255, 255, 0.25);
	border-radius: 3px;
	flex-grow: 1;
}

#points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 2.5em;
	padding: 1em;
	margin-bottom: 0;
	font-size: 95%;
}

#points li {
	margin: 0;
	cursor: pointer;
	z-index: 0;
	width: calc((100% - 3em) / 2);
	padding: 0.15em 0;
}

#points li::before {
	content: "";
	display: block;
	border-radius: 3px;
	height: calc(100% + 0.3em);
	z-index: -1;
	position: absolute;
	width: 0;
	top: -0.15em;
	left: -1.5em;
	transition: 0.15s all;
	background-color: rgba(0, 0, 0, 0.1);
}

#points li:hover::before {
	width: calc(100% + 2em);
}

#points li.active::before {
	background-color: rgba(244, 204, 0, 1);
	width: calc(100% + 2em);
}

@media screen and (max-width: 1000px) {
	.content_unit:has(> #lcview) {
		flex-wrap: wrap;
		flex-direction: column;
	}

	#lcmap,
	#lcview {
		width: 100%;
	}

	#points li {
		width: fit-content;
	}
}

@media (max-height: 450px) and (orientation: landscape) {
	#lcmap #lc {
		max-height: 60vh;
	}

	.content_unit:has(> #lcview) {
		flex-wrap: nowrap;
		flex-direction: row;
	}

	#lcmap {
		width: 60%;
	}

	#lcview {
		width: 40%;
	}
}

#lcinfo {
	text-align: center;
	font-size: 90%;
	color: rgb(255, 255, 255);
}

/*----------------------------------
#lcmap
----------------------------------*/

#lcguide {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5em 1em;
	line-height: 1.4;
	padding: 0.5em;
	/* background-color: rgb(30, 30, 30); */
	background-color: rgb(62, 186, 192);
	color: rgb(255, 255, 255);
	border-radius: 5px;
	margin-bottom: 10px;
}

#lcguide>* {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 1em;
}

.lcguide_label {
	padding: 0.5em 1.25em;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 3px;
	white-space: nowrap;
}

.lcguide_detail {
	display: flex;
	align-items: center;
	gap: 0.5em;
	flex-grow: 1;
	cursor: pointer;
	margin-right: auto;
	flex-grow: 0;
}

#lcmanual .lcguide_detail {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.marker_sample {
	display: inline-block;
	width: 1em;
	text-align: center;
}

#lcplay {
	display: flex;
	align-items: center;
	gap: 0.5em;
	border-radius: 3px;
	width: 100%;
}

#lcinterval {
	display: flex;
	gap: 0.5em;
	align-items: center;
	padding: 0 0.5em;
}

#intervalLabel {
	min-width: 3em;
	text-align: right;
}

#intervalLabel::after {
	content: "sec";
	font-size: 90%;
}

#intervalInput {
	width: 4em;
}

@media screen and (max-width: 1000px) {
	#lcguide {
		flex-direction: column;
		align-items: stretch;
		font-size: 80%;
	}

	.lcguide_label {
		padding: 0.5em;
	}
}

.lcplay {
	padding: 0.5em 1em;
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	opacity: 0.75;
	display: flex;
	align-items: center;
	gap: 0.5em;
	flex-grow: 1;
	justify-content: center;
}

.lcplay:hover {
	opacity: 1;
}

#lcdown::before {
	content: "▼";
	display: inline-block;
	transform: rotate(90deg);
}

#lcup::after {
	content: "▼";
	display: inline-block;
	transform: rotate(-90deg);
}

.lcplay.on {
	background-color: rgb(244, 204, 0);
	color: rgba(0, 0, 0, 1);
	opacity: 1;
}

/*-------*/

.caution {
	margin: 1em 0;
	display: flex;
	align-items: center;
	gap: 1em;
	padding: 10px;
	background-size: auto auto;
	background-color: rgba(255, 243, 202, 0.5);
	background-image: repeating-linear-gradient(-45deg,
			transparent,
			transparent 6px,
			rgba(204, 204, 204, 0.15) 6px,
			rgba(204, 204, 204, 0.15) 12px);
}

@media screen and (max-width: 1000px) {
	.caution {
		flex-direction: column;
	}
}

.caution>p {
	margin: 0;
	font-size: 90%;
}

.caution>ul {
	margin-bottom: 0;
}

.caution_call {
	color: rgb(255, 255, 255);
	background-color: green;
	padding: 1em;
	border-radius: 0.5em;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	font-size: 100%;
	flex-wrap: wrap;
	gap: 0 1em;
}

.caution_call span {
	display: inline-block;
}

#jartic_link {
	margin: 1em auto;
}

#jartic_link>* {
	margin: 0;
}

#jartic_link a {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 1em;
	padding: 1em;
	border: 4px solid rgba(208, 202, 170, 0.4);
	text-decoration: none;
	color: initial;
	transition: all 0.25s;
}

#jartic_link a:hover {
	border: 4px solid rgba(208, 202, 170, 1);
}

.jartic_caption>* {
	display: block;
}

.jartic_title {
	font-size: 130%;
	letter-spacing: 0.5em;
}

.jartic_author {
	font-size: 80%;
}

.jartic_banner {
	max-width: 400px;
}

@media screen and (max-width: 1000px) {
	.jartic_caption {
		font-size: 80%;
	}

	.jartic_title {
		font-size: 100%;
		letter-spacing: 0;
	}
}

/*----------------------------------*/

.label-text {
	background-color: rgba(54, 170, 38, 1);
	padding: 3px 9px;
	border-radius: 16px;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	display: inline-block;
	width: fit-content !important;
	height: initial !important;
	color: rgba(255, 255, 255, 1);
	filter: drop-shadow(3px 3px 1px rgba(0, 0, 0, 0.25));
	letter-spacing: 0;
	cursor: grab;
}

#lc .label-text {
	background-color: rgb(30, 30, 30);
	display: flex;
	align-items: center;
	gap: 0.5em;
	border-radius: 3px;
	padding: 3px 0.5em 3px 3px;
}

/*----------------------------------
#lclist
----------------------------------*/

#lclist_header h3 {
	font-size: 120%;
	font-weight: normal;
	text-align: center;
	padding: 0.5em 1.5em;
	background-color: #184a4d;
	color: aliceblue;
	border-radius: 5em;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	gap: 0.5em;
}

#lclist_header h3::before {
	content: "▼";
	display: inline-block;
	line-height: 1;
	transform: rotate(0deg);
	font-size: 80%;
	transition: all 0.25s;
}

#lclist_header h3.open::before {
	content: "▼";
	transform: rotate(180deg);
}

#lclist_header h3:hover {
	opacity: 0.75;
	cursor: pointer;
}

#lclist_content {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	padding: clamp(1em, 0.5vw, 2em);
	border: 2px solid rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	background-color: rgb(245, 245, 245);
}

#lclist_content figure {
	width: calc((100% - 1em) / 2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background-color: rgb(0, 0, 0);
	border: 1px solid rgb(0, 0, 0);
	margin: 0;
	border-radius: 5px;
}

@media screen and (min-width: 600px) {
	#lclist_content figure {
		width: calc((100% - 2em) / 3);
	}
}

@media screen and (min-width: 900px) {
	#lclist_content figure {
		width: calc((100% - 3em) / 4);
	}
}

@media screen and (min-width: 1200px) {
	#lclist_content figure {
		width: calc((100% - 4em) / 5);
	}
}

#lclist_content figcaption {
	color: #ffffff;
	padding: 0.5em;
}

#lclist_content>* img {
	flex-grow: 1;
}

#lclist_content>* img.overlay {
	position: absolute;
	width: 100%;
}

#lclist_content .noimg {
	font-size: 75%;
	color: rgb(120, 120, 120);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1.78;
	background-color: rgb(50, 50, 50);
}

/*----------------------------------
link
----------------------------------*/
.listgr {
	display: flex;
	justify-content: center;
	align-items: start;
	gap: 2em;
}

.listgr>* {
	padding: 2em;
	border-radius: 6px;
	background-color: rgb(247, 242, 224);
}

.listgr>*>* {
	margin-bottom: 0;
}

.listgr h3 {
	padding: 0.5em;
	margin-bottom: 1em;
	background-color: #000;
	color: #fff;
	border-radius: 4px;
	font-size: 100%;
	font-weight: normal;
	white-space: nowrap;
}

@media screen and (min-width: 1000px) {
	.listgr>* {
		display: flex;
		align-items: center;
		gap: 1em;
	}

	.listgr h3 {
		padding: 1em;
		margin: 0;
	}
}

.listgr>* {
	width: 100%;
}

.listgr:has(> *:nth-of-type(2)) {
	flex-wrap: wrap;
	justify-content: start;
}

.listgr:has(> *:nth-of-type(2))>* {
	width: calc((100% - 2em) / 2);
}

@media screen and (max-width: 999px) {
	.listgr {
		flex-wrap: wrap;
	}

	.listgr>* {
		padding: 1em;
		width: 100%;
	}
}

/*----------------------------------
.tab_btns
----------------------------------*/

.tab_btns {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 3px;
	margin-bottom: 2em;
	border-bottom: 5px solid rgb(86, 188, 204);
}

.tab_btn {
	display: flex;
	align-items: stretch;
	margin: 0;
}

.tab_btns h3 {
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	border-bottom: 3px solid rgb(255, 255, 255);
	background-color: rgb(190, 190, 190);
	font-size: clamp(110%, 1.5vw, 140%);
	display: flex;
	align-items: center;
	color: rgb(255, 255, 255);
	line-height: 1.4;
	padding: 0.75em 2em 0.6em 2em;
	margin: 0 !important;
}

.tab_btns h3:hover {
	background-color: rgba(0, 0, 0, 0.25);
}

.tab_btns .active h3 {
	background-color: rgb(86, 188, 204);
	border-bottom: 3px solid rgb(86, 188, 204);
}

/*----------------------------------
nav
----------------------------------*/

nav {
	position: sticky;
	bottom: 0;
	left: 0;
	z-index: 1002;
	background-color: rgb(12, 64, 96);
	padding: 10px;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	line-height: 1.4;
	gap: 5px;
	flex-wrap: wrap;
}

nav li {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-grow: 1;
	width: calc((100% - 15px) / 4);
}

nav a {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 0.5em;
	text-align: center;
	width: 100%;
	min-height: 4em;
	background-color: rgba(255, 255, 255, 0.07);
	border-radius: 3px;
	padding: 1.25em 0.4em;
}

nav li a>span {
	display: inline-block;
}

@media screen and (max-width: 999px) {
	nav li:first-child {
		display: none;
	}

	nav li {
		width: calc((100% - 10px) / 3);
	}

	nav a[href$="#section2"]>span:last-child {
		transform: scaleX(0.8);
		white-space: nowrap;
	}

	nav a {
		flex-direction: column;
	}
}

@media (max-height: 450px) and (orientation: landscape) {
	body {
		font-size: 1.2em;
	}

	#container {
		padding-left: 13%;
		padding-right: 0%;
	}

	header {
		padding-left: 25%;
		padding-right: 25%;
		height: 100vh;
	}

	header,
	main {
		border-right: 5px solid rgb(12, 64, 96);
	}

	section {
		padding-top: 0;
	}

	.section_header {
		padding-top: 1em;
	}

	.section_header h2 {
		font-size: 1.8em;
	}

	.section_header p {
		font-size: 1.2em;
	}

	.section_content {
		padding-left: 3em;
		padding-right: 3em;
	}

	nav {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 13%;
	}

	nav ul {
		flex-direction: column;
		height: 100%;
	}

	nav li {
		width: 100%;
	}

	#banner {
		display: none;
	}
}

#dial9910 {
	background-color: rgb(43, 107, 147);
	padding: 1em;
	text-align: center;
	width: 100%;
}

#dial9910>* {
	max-width: 900px;
	margin: auto;
}

footer {
	position: relative;
	background-color: rgba(16, 81, 121, 1);
	color: rgba(255, 255, 255, 1);
	letter-spacing: 0.05em;
}

.footer_unit {
	margin: auto;
	max-width: 1400px;
	padding: clamp(15px, 3vw, 3em);
}

#footer_auhor {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-image: url(../../img/author_line.png);
	background-repeat: no-repeat;
	background-position: center 2em;
	background-size: 100% auto;
	padding-top: 7em;
	padding-bottom: 4em;
	gap: 3em 1em;
}

footer * {
	margin: 0;
	list-style-type: none;
}

footer h2 {
	width: 70%;
	max-width: 300px;
}

#footer_address {
	margin: 1em 0;
}

footer a {
	color: inherit;
	text-decoration: none;
}

#footer_address a span {
	display: inline-block;
}

footer ul {
	margin: 1em 0;
}

footer li {
	margin-top: 0;
}

footer #open_close {
	font-size: 80%;
}

@media screen and (max-width: 999px) {
	#footer_auhor {
		flex-direction: column;
	}
}

#copyright {
	text-align: center;
	font-size: 70%;
	letter-spacing: 0.25em;
	padding: 2em;
	background-color: rgba(15, 15, 15, 1);
	text-shadow: inherit;
	color: rgba(255, 255, 255, 0.75);
}