@charset "UTF-8";

/**
 * reset
 */
html, body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width:100%;
	height:auto;
	vertical-align:bottom;
}
strong {
	font-weight: bolder;
}
a {
	outline: none;
	color: #000;
}
sup {
	font-size: 0.7em;
	vertical-align: super;
}
sub {
	font-size: 0.7em;
	vertical-align: sub;
}

/**
 * contents
 */
html {
	font-size: 62.5%;
}
body {
	background-color: #eee;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #222;
	/*font-feature-settings:"palt";
	-webkit-font-smoothing: antialiased;*/
	-webkit-text-size-adjust:none;
}
body.scrollstop,
main {
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.5;
}
.an {
	font-family: 'Segoe UI', sans-serif;
}
/* micro clearfix */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after { clear: both; }

.clear {
	clear: both;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}
.tar {
	text-align: right;
}
@media only screen and (min-width:821px) {
	.sp {
		display:none !important;
	}
}
@media only screen and (min-width:374px) {
	.sp_s {
		display:none !important;
	}
}
@media only screen and (max-width:1023px) {
	body {
		font-size: 1.2rem;
	}
	.pc {
		display:none !important;
	}
}
/**/
@media print {
	.sp,
	.sp_s {
		display: none;
	}
}


.btn {
	box-sizing: border-box;
	display: inline-block;
	padding: 4px 10px;
	background-color: #85AC16;
	border-radius: 10px;
	text-decoration: none;
	text-align: center;
	color: #fff;
}
.btn:hover {
	opacity: 0.7;
}

/**
 * #loader
 */
#loader {
	position: fixed;
	top: 0;
	right: 0;
	width: calc(100vw - 400px);
	height: 100vh;
	/*background-color: rgba(133,172,22,0.5);*/
	background-color: rgba(255,255,255,0.4);
	z-index: 1000;
}
#loader > div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	background-color: #fff;
	border-radius: 1000px;
	transform: translate(-50%, -50%);
}
#loader > div::before,
#loader > div::after {
	width: 10px;
	height: 10px;
	position: absolute;
	top: 18px;
	left: 18px;
	background-color: #85AC16;
	animation: loader 1.6s 0s infinite ease-in-out;
	content: '';
}
#loader > div::after {
	animation-delay:-0.8s
}
@keyframes loader {
	25% {
		-webkit-transform: translateX(25px) scale(.5) rotate(-90deg);
		transform:translateX(25px) scale(.5) rotate(-90deg)
	}

	50% {
		-webkit-transform: translate(25px, 25px) rotate(-180deg);
		transform:translate(25px, 25px) rotate(-180deg)
	}

	75% {
		-webkit-transform: translateY(25px) scale(.5) rotate(-270deg);
		transform:translateY(25px) scale(.5) rotate(-270deg)
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform:rotate(-360deg)
	}
}
@media only screen and (max-width:1023px) {
	#loader {
		width: 100vw;
	}
}


/**
 * header
 */
header {
	box-sizing: border-box;
	position: fixed;
	max-width: 400px;
	height: 100vh;
	background-color: #333;
	color: #fff;
	overflow: auto;
}
header .inner {
	padding: 55px;
}
header #logo {
	text-align: center;
}
header a {
	text-decoration: none;
	color: #fff;
}
header .read {
	margin-top: 60px;
}
header .btn {
	width: 100%;
	margin-top: 2em;
}
header nav {
	padding-bottom: 30px;
}
header nav a {
	display: block;
	position: relative;
	padding: 10px 55px;
	font-weight: 700;
	font-size: 1.8rem;
}
header nav a.act,
header nav a:hover {
	background-color: #111;
	color: #85AC16;
}
header nav a::after {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 55px;
	width: 10px;
	height: 16px;
	margin: auto;
	background: url('../img/icon_arrow.svg') no-repeat center center / contain;
	content: '';
}
header nav a.act::after,
header nav a:hover::after {
	background-image: url('../img/icon_arrow_g.svg');
}
#btn_menu {
	display: none;
}
@media only screen and (max-width:1023px) {
	header {
		right: 0;
		transform: translateX(100%);
		transition: all 0.3s ease-in;
		z-index: 10000;
	}
	header.on {
		transform: translateX(0%);
		transition: transform 0.3s ease-out;
	}
	header .inner {
		padding: 35px;
	}
	header .read {
		margin-top: 40px;
		font-size: 1.4rem;
	}
	header nav a {
		padding: 10px 35px;
		font-size: 1.6rem;
	}
	header nav a::after {
		right: 35px;
	}

	#btn_menu {
		display: block;
		position: absolute;
		top: -3px;
		right: 0px;
		width: 70px;
		height: 70px;
		z-index: 10000;
	}
	#index #btn_menu {
		top: 10px;
		right: 10px;
		width: 70px;
		height: 70px;
		background-color: rgba(0,172,216,1);
		border-radius: 10px;
		transition: all 0.15s;
	}
	#index #btn_menu.on {
		background-color: rgba(0,172,216,0);
	}
	#btn_menu > div {
		position: absolute;
		left: 0;
		right: 0;
		width: 30px;
		height: 2px;
		margin: auto;
		background-color: #fff;
	}
	#btn_menu > div:nth-child(1) {
		top: 25px;
	}
	#btn_menu > div:nth-child(2) {
		top: 35px;
	}
	#btn_menu > div:nth-child(3) {
		top: 45px;
	}
}

/**
 * main, footer
 */
main,
footer {
	margin-left: 400px;
}
main .inner,
footer .inner {
	max-width: 1000px;
	margin: auto;
	padding: 0 60px;
}
@media only screen and (max-width:1023px) {
	main,
	footer {
		margin-left: 0;
	}
	main .inner,
	footer .inner {
		padding: 0 20px;
	}
}

/**
 * main
 */
main {
	min-height: calc(100vh - 120px);
}
main#index {
	position: relative;
	height: 100vh;
}
/* main .head */
main .head {
	background-color: #85AC16;
	padding: 45px 0 50px 0;
	color: #fff;
}
main#detail .head {
	padding: 30px 0;
}
main .head h1 {
	line-height: 1.2;
	font-size: 4rem;
	font-weight: 700;
}
main .head h1 span {
	display: block;
	margin-top: 0.1em;
	font-size: 0.5em;
	color: #D1E29F;
}
/* main .body */
main .body {
	padding: 45px 0 50px 0;
}
main .body h2 {
	margin-top: 2em;
	font-size: 3rem;
	font-weight: 700;
}
main .body p + p {
	margin-top: 2em;
}
/* main #map */

/* main #info */
main #info {
	display: flex;
	justify-content: center;
	padding: 40px 20px;
	border-radius: 10px;
	background: url('../img/bg0.jpg') no-repeat center center / cover;
	color: #fff;
}
main #info > div {
	margin: 0 8%;
	text-align: center;
}
main #info h3 {
	line-height: 1;
	font-weight: 700;
	font-size: 2.4rem;
}
main #info p {
	margin-top: 0.3em;
	line-height: 1;
	font-size: 3.7rem;
}
/* main .read */
main .read {
	margin: 1em 0;
	font-size: 2rem;
	font-weight: 700;
}
@media only screen and (max-width:1023px) {
	/* main .head */
	main .head {
		padding: 20px 0 22px 0;
	}
	main#detail .head {
		padding: 15px 0 15px 0;
	}
	main .head h1 {
		font-size: 2rem;
	}
	/* main .body */
	main .body {
		padding: 25px 0 30px 0;
	}
	main .body h2 {
		font-size: 2rem;
	}
	/* main #info */
	main #info {
		display: block;
		padding: 15px;
	}
	main #info > div {
		display: flex;
		margin: 0;
	}
	main #info > div + div {
		margin-top: 0.4em;
	}
	main #info h3 {
		width: 50%;
		padding-right: 1em;
		text-align: right;
		line-height: 1.2;
		font-weight: 700;
		font-size: 1.8rem;
	}
	main #info p {
		width: 50%;
		text-align: left;
		margin-top: 0;
		line-height: 1.2;
		font-size: 1.8rem;
	}
	/* main .read */
	main .read {
		margin: 2em 0;
		font-size: 2rem;
		font-weight: 700;
	}
	main .read {
		font-size: 1.4rem;
	}
}



/**
 * list
 */
main .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main .list li {
	box-sizing: border-box;
	width: 48%;
}
main .list li a {
	box-sizing: border-box;
	display: block;
	padding: 15px;
	border: solid 2px #fff;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	text-decoration: none;
}
main .list li a:hover {
	border-color: #85AC16;
}
main .list li:nth-child(n+3) {
	margin-top: 4%;
}
main .list li h3 {
	font-weight: 700;
}
main .list li p {
	padding-left: 1em;
}
@media only screen and (max-width:1023px) {
	main .list {
		display: block;
	}
	main .list li {
		width: 100%;
	}
	main .list li:nth-child(n+2) {
		margin-top: 20px;
	}
}

/**
 * #detail
 */
main .graph {
	position: relative;
}

/**
 * .btn_controls
 */
main .btn_controls {
	display: inline-flex;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 5px;
	border: solid 1px #fff;
	overflow: hidden;
}
main .btn_controls li {
	padding: 8px 15px;
	background-color: #333;
	border-left: solid 1px #fff;
	line-height: 1;
	font-size: 1.2rem;
	color: #999;
	cursor: pointer;
}
main .btn_controls li:first-child {
	border-left: none;
}
main .btn_controls li.act {
	background-color: #85AC16;
	color: #fff;
}
@media only screen and (max-width:1023px) {
	main .btn_controls {
		position: static;
	}
}



/**
 * main #index
 */
main#index {
	position: relative;
}
main#index #map {
	width: 100%;
	height: 100%;
	background-color: #cecece;
}
main#index .logo {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}
main#index #info {
	box-sizing: border-box;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	display: none;
	position: absolute;
	top: 30px;
	left: 30px;
	padding: 10px 25px;
	border-radius: 10px;
	background:#fff;
	white-space: nowrap;
	color: #333;
	z-index: 1;
}
main#index #info > div {
	display: flex;
	justify-content: center;
	margin: 0.5em 0;
	white-space: nowrap;
}
main#index #info h3 {
	box-sizing: border-box;
	width: 60%;
	margin: 0;
	padding: 0;
	line-height: 1;
	text-align: right;
	font-weight: 700;
	font-size: 2rem;
	white-space: nowrap;
}
main#index #info p {
	box-sizing: border-box;
	width: 40%;
	min-width: 200px;
	margin: 0;
	padding: 0;
	line-height: 1;
	text-align: left;
	font-weight: 700;
	font-size: 2rem;
	white-space: nowrap;
}
main#index #copy {
	position: absolute;
	bottom: 30px;
	right: 30px;
	font-size: 1.4rem;
}
#overlay .point {
	position: absolute;
}
#overlay .point b {
	position: absolute;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	border-radius: 1000px;
	opacity: 0.2;
	pointer-events: none;
	content: '';
}
#overlay .pointA b {
	background-color: #00FFA8;
}
#overlay .pointB b {
	background-color: #00B90C;
}
#overlay .pointC b {
	background-color: #DC7D00;
}
#overlay .pointD b {
	background-color: #B10000;
}
#overlay .point img {
	position: absolute;
	max-width: none;
	transform: translate(-50%, -50%);
	z-index: 1;
	cursor: pointer;
}
#popup {
	display: none;
	position: absolute;
	z-index: 999;
}
#popup .inner {
	position: absolute;
	top: -45px;
	transform: translate(-50%, -100%);
	min-width: 280px;
	padding: 25px 30px;
	margin: 0;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	white-space: nowrap;
	font-size: 1.8rem;
	color: #333;
}
#popup .inner::after {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 45px;
	height: 39px;
	margin: auto;
	background: url('../img/popup_point.png') no-repeat center top / contain;
	content: '';
}
#popup h3 {
	font-weight: 700;
	font-size: 2rem;
}
#popup .btn {
	display: block;
	margin-top: 0.5em;
	background-color: #85AC16;
}
@media only screen and (max-width:1135px) {
	main#index #info {
		padding: 10px 20px;
	}
	main#index #info h3,
	main#index #info p {
		min-width: 130px;
		font-size: 1.4rem;
	}
}
@media only screen and (max-width:1023px) {
	main#index .logo {
		top: auto;
		right: auto;
		bottom: 10px;
		left: 10px;
	}
	main#index #info {
		top: 10px;
		left: 10px;
	}
	main#index #copy {
		bottom: 10px;
		right: 10px;
		font-size: 1rem;
	}
	#popup .inner {
		top: -35px;
		min-width: 200px;
		padding: 15px 20px;
		font-size: 1.2rem;
	}
	#popup .inner::after {
		width: 35px;
		height: 25px;
	}
	#popup h3 {
		font-weight: 700;
		font-size: 1.4rem;
	}
}
@media only screen and (max-width:465px) {
	main#index #info > div {
		flex-direction: column;
	}
	main#index #info > div + div {
		margin-top: 1em;
	}
	main#index #info p {
		min-width: 0;
		margin-top: 0.4em;
	}
}

/**
 * #agora
 */
main#agora {
	height: 100%;
}
main#agora .body {
	padding: 0;
}
main#agora .body ul {
	position: relative;
}
main#agora .body li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: no-repeat center center / contain;
}
@media only screen and (max-width:1023px) {
	
}

/**
 * #about
 */
main#about .body .inner {
	padding-top: 70px;
	padding-bottom: 120px;
}
main#about .body .inner h2 {
	margin: 3em 0 1em 0;
	font-weight: 700;
	font-size: 1.2em;
	color: #85AC16;
}
main#about .body .inner p {
	font-weight: 700;
}
@media only screen and (max-width:1023px) {
	main#about .body .inner {
		padding-top: 20px;
		padding-bottom: 50px;
	}
}

/**
 * footer
 */
footer {
	background-color: #fff;
}
footer .inner {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-top: 40px;
	padding-bottom: 40px;
}
footer .copy {
	font-size: 1.4rem;
}
@media only screen and (max-width:1023px) {
	footer .inner {
		display: block;
		padding-top: 24px;
		padding-bottom: 20px;
	}
	footer .copy {
		margin-top: 0.8em;
	}
}


/**
 * .bx-wrapper
 */
.bx-wrapper {
	border: none;
	box-shadow: none;
	background: none;
	margin: 0;
}


*::-webkit-scrollbar-track {
	background-color: #000;
	border-radius: 2px;
}
*::-webkit-scrollbar-thumb {
	background-color: #888;
	border-radius: 2px;
}
*::-webkit-scrollbar {
	width: 4px;
}