
main {
	overflow: hidden;
}
main h2 {
	text-align: center;
	font-size: 24px;
	font-weight: 500;
}


#primary .container:nth-child(1) {
	padding-top: 40px;
	padding-bottom: 40px;
}
#primary .container:nth-child(n + 2) {
	padding-top: 40px;
	padding-bottom: 40px;
	padding-bottom: 60px;
}



#result .box {
	margin: 30px 24px 0;
}
#result .box span {
	display: block;
	width: 186px;
	margin: 0 auto;
}
#result .box span img {
	width: 100%;
	height: auto;
}
#result .box dl {
	margin: 25px 0 0;
	text-align: center;
}
#result .box dt {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
}
#result .box dt + dd {
	margin: 2px 0 0;
}
#result .box dt + dd strong {
	font-size: 58px;
	font-weight: 500;
}
#result .box dt + dd em {
	font-size: 15px;
	font-weight: 700;
	margin-left: 5px;
}
#result .box dt + dd em:nth-of-type(2) {
	margin-left: 6px;
}
#result .box dt + dd i {
	font-style: normal;
	font-size: 30px;
	font-weight: 300;
	margin: 0 10px;
}

#result .box dd + dd {
	margin: 20px 0 0;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.75;
	text-align: left;
	color: #909090;
}




#facility {
	margin: 40px 24px 0;
	padding: 40px 0 0;
	border-top: 1px solid #e6e6e6;
}
#facility .lead {
	margin: 25px auto 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
}
#facility .lead br {
	display: none;
}

#facility .extra {
	position: relative;
}




#map-selector {
	position: relative;
	width: 83.2vw;
	height: 70vw;
	margin: 5px auto 0;
	/*
	background: rgba(0,0,0,0.2);
	*/
}

#map-selector .city {
	position: absolute;
	width: 577px;
	height: 218px;
	left: calc(50% - 289px);
	bottom: 10px;
	margin-left: 0;
	z-index: -1;
	background: url(../img/map/city.png) 50% 0 no-repeat;
	background-size: 100% auto;
	opacity: 0.25;
}

#map-selector .map {
	position: absolute;
}
#map-selector .pict {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
}
#map-selector .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#map-selector .note {
	position: absolute;
	left: -8.9vw;
	bottom: 5px;
	margin-left: 24px;
	font-size: 12px;
	font-weight: 500;
}

#facility .caption {
	margin: 20px 0 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}


svg {
	width: 83.2vw;
	height: auto;
	pointer-events: none;
}


/*
svg #map-axis > * {
	fill: #fff;
	stroke: #000;
}
*/

svg #map-axis > * {
	fill: rgba(255,255,255,0);
	stroke: none;
}
svg text {
	font-size: 20px;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	fill: #2A4E8A;
	pointer-events: none;
}

/*
svg text.zoom {
	fill: #dc1010;
}
svg .link {
	cursor: pointer;
}
svg .icon {
	pointer-events: none;
}
svg .icon circle.frame {
	stroke: #dc1010;
	stroke-miterlimit: 4;
	stroke-width: 2px;
	fill: #fff;
}
svg .icon circle.on {
	stroke: none;
	stroke-width: 0;
	fill: #fff;
	transition: all 200ms ease-out;
}
svg .icon path {
	fill: #dc1010;
	stroke: none;
}

svg .icon[data-hover="on"] circle.on {
	fill: #dc1010;
}
svg text[data-hover="on"] {
	fill: #fff;
}
*/




/*
svg .icon {
	display: none;
}
*/


svg text.zoom {
	fill: #dc1010;
}
svg .icon circle.frame {
	stroke: #dc1010;
	stroke-miterlimit: 4;
	stroke-width: 2px;
	fill: #fff;
}
svg .icon circle.on {
	stroke: none;
	stroke-width: 0;
	fill: #fff;
	transition: all 200ms ease-out;
}
svg .icon path {
	fill: #dc1010;
	stroke: none;
}









#modal-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10000;
	background: rgba(241,241,241,0.8);
	overscroll-behavior: contain;
}
#modal-viewer {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10010;
	pointer-events: none;
	overscroll-behavior: contain;
}
#modal-container {
	position: relative;
}
#modal-inner {
	box-sizing: border-box;
	position: relative;
	width: calc(100vw - 24px);
	max-width: 480px;
	max-height: calc(100lvh - 150px);
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #fff;
	pointer-events: auto;
	overflow: auto;
}
#modal-extra {
	padding: 16px 24px;
}
#modal-extra .title {
	display: flex;
	align-items: flex-end;
}
#modal-extra .title dt {
	font-size: 24px;
	font-weight: 500;
}
#modal-extra .title dd {
	position: relative;
	margin-left: 40px;
}
#modal-extra .title dd::before {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 24px;
	left: -20px;
	top: calc(50% - 9px);
	background: #e6e6e6;
}
#modal-extra .title dd strong {
	position: relative;
	top: 2px;
	font-size: 28px;
	font-weight: 500;
}
#modal-extra .title dd span {
	position: relative;
	top: 1px;
	margin-left: 6px;
	font-size: 12px;
	font-weight: 700;
}

#modal-extra .entry {
	margin: 28px 0 0;
}
#modal-extra .entry + .entry {
	margin-top: 30px;
}
#modal-extra .subtitle {
	display: flex;
	align-items: center;
	min-height: 24px;
	padding-left: 48px;
	font-size: 16px;
	font-weight: 700;
}
#modal-extra .casestudy .subtitle {
	background: url(../img/map/icon_casestudy.svg) 0 75% no-repeat;
	background-size: 33px auto;
}
#modal-extra .video .subtitle {
	background: url(../img/map/icon_drone.svg) 0 50% no-repeat;
	background-size: 47px auto;
}


#modal-extra ul {
	margin: 15px 0 0;
	border-top: 1px solid #e6e6e6;
}
#modal-extra li {
	padding: 12px 0;
	border-bottom: 1px solid #e6e6e6;
}
#modal-extra ul a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-right: 36px;
}
#modal-extra ul a strong {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
#modal-extra ul a span {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

#modal-extra ul a i {
	box-sizing: border-box;
	position: absolute;
	display: block;
	width: 22px;
	height: 22px;
	right: 0;
	top: calc(50% - 11px);
	border: 1px solid #dc1010;
	border-radius: 11px;
	transition: all 300ms ease-out; 
}
#modal-extra ul a i::after {
	position: absolute;
	display: block;
	content: "";
	width: 14px;
	height: 12px;
	left: calc(50% - 7px);
	top: calc(50% - 6px);
	background: url(/img/arrow.svg) 50% 50% no-repeat;
	background-size: 11px auto;
	transition: all 150ms ease-out; 
}
#modal-extra .video ul a i::after {
	background: url(/img/icon_popup.svg) 50% 50% no-repeat;
	background-size: 13px auto;
}

/*
#modal-extra ul a:hover i {
	background: #dc1010;
}
#modal-extra ul a:hover i::after {
	filter: brightness(0) invert(1);
}
*/


#modal-close-button {
	box-sizing: border-box;
	position: absolute;
	display: block;
	width: 28px;
	height: 28px;
	right: -6px;
	top: -6px;
	margin: 0;
	padding: 0;
	border: 1px solid #666;
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
	pointer-events: auto;
	transition: all 300ms ease-out;
}
#modal-close-button i {
	position: absolute;
	display: block;
	width: 12px;
	height: 1px;
	left: calc(50% - 6px);
	top: calc(50%);
	background: #666;
	transition: all 150ms ease-out;
}
#modal-close-button i:nth-child(1) {
	transform: translateY(-50%) rotate(45deg);
}
#modal-close-button i:nth-child(2) {
	transform: translateY(-50%) rotate(-45deg);
}

/*
#modal-close-button:hover {
	background: #666;
}
#modal-close-button:hover i {
	background: #fff;
}
*/



#modal-overlay {
	opacity: 0;
	transition: opacity 300ms ease-out;
}
#modal-viewer {
	opacity: 0;
	transform: translateY(20px);
	transition: all 300ms ease-out;
}
body.modal #modal-overlay {
	opacity: 1;
}
body.modal #modal-viewer {
	opacity: 1;
	transform: translateY(0px);
}






.map .pref {
	display: none;
}
.map a.link {
	color: #f00;
}
.map .info {
	box-sizing: border-box;
	position: absolute;
	pointer-events: none;
	width: 228px;
	height: 106px;
	z-index: 100;
	padding: 16px 12px 12px;
	
	transform: translate(-50%, -122px);
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	
	opacity: 0;
}
.map .info.active {
	opacity: 1;
	transform: translate(-50%, -132px);
	transition: all 250ms ease-out;
}

.map .info .inner {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.map .info .label {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 12px;
	padding-bottom: 16px;
	font-size: 18px;
	font-weight: 700;
	border-bottom: 1px solid #e6e6e6;
}
.map .info .count {
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: flex-end;
	top: -5px;
	width: calc(100% - 88px);
	padding: 0 0 0 20px;
}
.map .info .icon {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 88px;
}

.map .info .count strong {
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
}
.map .info .count span {
	position: relative;
	top: -2px;
	margin-left: 8px;
	font-size: 12px;
	font-weight: 700;
}

.map .info .icon span {
	display: block;
}
.map .info .icon .casestudy {
	width: 33px;
	height: 20px;
	background: url(../img/map/icon_casestudy.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}
.map .info .icon .video {
	width: 47px;
	height: 24px;
	background: url(../img/map/icon_drone.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}
.map .info .icon .casestudy + .video {
	margin-left: 8px;
}




.tips {
	display: none;
}


.legend {
	display: flex;
	justify-content: center;
	margin: 24px 0 0;
}
.legend dl {
	display: flex;
	justify-content: center;
	align-items: center;
}
.legend .casestudy dt img {
	width: 26px;
	height: auto;
}
.legend .drone dt img {
	width: 34px;
	height: auto;
}
.legend dd {
	font-size: 12px;
}
.legend dl + dl {
	margin-left: 18px;
}







.list {
	margin: 22px 0 0;
}

.list .area + .area {
	margin-top: 26px;
}

.list .title {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.list .title > span {
	position: relative;
	display: inline-block;
	z-index: 10;
	padding-right: 8px;
	font-size: 14px;
	font-weight: 700;
	background: #fff;
}
.list .title::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	top: 50%;
	background: url(../img/map/dot.png) 0 0 repeat-x;
	background-size: 2px 1px;
}

.list .title a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	width: 105px;
	z-index: 10;
	padding-left: 8px;
	padding-right: 28px;
	font-size: 13px;
	font-weight: 700;
	color: #dc1010;
	background: #fff;
}

.list .title a span {
	display: block;
}
.list .title a span:nth-child(2) {
	display: none;
}

.list .title a i {
	box-sizing: border-box;
	position: absolute;
	width: 24px;
	height: 24px;
	right: 0;
	top: calc(50% - 12px);
	border: 1px solid #dc1010;
	border-radius: 12px;
	transition: all 300ms ease-out;
}
.list .title a i::after {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 6px;
	left: calc(50% - 5px);
	top: calc(50% - 3px);
	background: url(../img/map/arrow.svg) 50% 50% no-repeat;
	background-size: 100% auto;
	transition: all 200ms ease-out;
}

/*
.list .title a:hover {
	text-decoration: underline;
}
.list .title a:hover i {
	background: #dc1010;
}
.list .title a:hover i::after {
	filter: brightness(0) invert(1);
}
*/

.list ul {
	padding-top: 20px;
	padding-bottom: 2px;
}

.list .pref {
}
.list .pref + .pref {
	margin-top: 8px;
}
.list .pref a {
	display: flex;
	align-items: center;
	cursor: default;
	padding: 4px 0;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
}
.list .pref a.link {
	cursor: pointer;
	border-color: #dc1010;
	outline: 1px solid rgba(220,16,16,0);
	transition: all 300ms ease-out;
}
.list .pref .label {
	position: relative;
	width: 96px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
.list .pref .label::after {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 16px;
	right: 0;
	top: calc(50% - 8px);
	background: #e6e6e6;
}

.list .pref a.link .label {
	color: #dc1010;
}
/*
.list .pref a.link:hover {
	outline-color: rgba(220,16,16,1);
}
*/

.list .pref .count {
	display: flex;
	width: calc(100% - 96px - 124px);
	justify-content: center;
	align-items: flex-end;
	text-align: center;
}
.list .pref .count strong {
	position: relative;
	min-width: 40px;
	top: -1px;
	font-size: 24px;
	font-weight: 500;
}
.list .pref .count span {
	position: relative;
	top: -3px;
	font-size: 12px;
	font-weight: 700;
}

.list .pref .icon {
	position: relative;
	display: flex;
	align-items: center;
	width: 124px;
	height: 22px;
	top: 1px;
}
.list .pref .icon span {
	position: absolute;
	display: block;
}

.list .pref .icon .casestudy {
	width: 28px;
	height: 17px;
	right: 86px;
	top: calc(50% - 8px);
	background: url(../img/map/icon_casestudy.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}
.list .pref .icon .video {
	width: 38px;
	height: 19px;
	right: 40px;
	top: calc(50% - 10px);
	background: url(../img/map/icon_drone.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}
.list .pref .icon .zoom {
	width: 22px;
	height: 22px;
	right: 8px;
	top: calc(50% - 11px);
	background: url(../img/map/icon_detail.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}



.list .expand {
	height: 0;
	overflow: hidden;
	transition: all 400ms ease-out;
}
.list .area.opened .title a {
	width: 80px;
}
.list .area.opened .title a i {
	transform: rotate(180deg);
}
.list .area.opened .title a span:nth-child(1) {
	display: none;
}
.list .area.opened .title a span:nth-child(2) {
	display: block;
}





.wide-banner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 52.5vw;
	background: url(../img/map/banner_pc.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.wide-banner::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
	background: rgba(255,255,255,0.5);
}
.wide-banner a {
	position: relative;
	width: calc(100vw - 48px);
	max-width: 380px;
	z-index: 10;
	border: 1px solid #dc1010;
}



#interview {
	margin: 0 24px;
}
#interview .slide {
}

#interview .slide-item {
}
#interview .box {
}
#interview .box .thumb {
}
#interview .box .thumb img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
#interview .box dl {
	margin: 15px 12px 0;
}
#interview .box dt {
	position: relative;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}
#interview .box dd {
	margin: 10px 0 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
}
#interview .button {
	margin: 12px 0 0;
}
#interview .button a {
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
}


#interview .slick-arrow {
	box-sizing: border-box;
	position: absolute;
	width: 32px;
	height: 32px;
	top: calc((((100vw - 48px) * 0.5625) - 32px) / 2);
	z-index: 100;
	font-size: 0;
	background: #fff;
	border: 1px solid #dc1010;
	border-radius: 16px;
	cursor: pointer;
	transition: all 300ms ease-out;
}
#interview .slick-arrow::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
#interview .slick-prev {
	left: -16px;
}
#interview .slick-next {
	right: -16px;
}
/*
#interview .slick-disabled {
	filter: saturate(0);
}
*/

#interview .slick-prev::after {
	background: url(/img/arrow_prev.svg) 50% 50% no-repeat;
	background-size: 8px auto;
}
#interview .slick-next::after {
	background: url(/img/arrow_next.svg) 50% 50% no-repeat;
	background-size: 8px auto;
}

/*
#interview .slick-arrow:hover {
	background: #dc1010;
}
#interview .slick-arrow:hover::after {
	filter: brightness(0) invert(1);
}
*/


#interview .slick-dots {
	display: flex;
	justify-content: center;
	margin: 24px 0 0;
}
#interview .slick-dots li + li {
	margin-left: 12px;
}
#interview .slick-dots button {
	box-sizing: border-box;
	display: block;
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
	font-size: 0;
	background: #fff;
	border: 1px solid #dc1010;
	border-radius: 4px;
	cursor: pointer;
}
#interview .slick-dots .slick-active button {
	background: #dc1010;
}





#graphic {
	margin: 40px 24px 0;
	padding: 40px 0 0;
	border-top: 1px solid #e6e6e6;
}
#graphic .box {
}
#graphic ul {
}
#graphic li {
}
#graphic li:nth-child(n + 2) {
	margin-top: 60px;
}

#graphic dt {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.7;
	text-align: center;
	color: #dc1010;
}
#graphic dt span {
	display: block;
	margin: 2px 0 0;
	font-size: 14px;
}
#graphic dt + dd {
	margin: 20px auto 0;
}
#graphic li:nth-child(1) dt + dd,
#graphic li:nth-child(2) dt + dd {
	width: 212px;
}
#graphic li:nth-child(3) dt + dd {
	width: calc(100% - 40px);
}

#graphic .caption {
	box-sizing: border-box;
	margin: 30px 0 0;
	text-align: center;
}
#graphic .caption em {
	display: block;
	font-size: 14px;
	font-weight: 700;
}
#graphic .caption strong {
	display: block;
	margin: 10px 0 0;
	font-size: 32px;
	font-weight: 500;
}

#graphic dd + dd {
	margin: 15px 0 0;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.8;
	color: #909090;
}









