/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
/*明朝体にしたいとき
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
*/

html{
	scroll-behavior: smooth;
	}

body{
	color: #000000;
	fill: currentColor;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	text-align: justify; /*英文では解除*/
	line-height: 1em;
	}
	_::content, _:future, body:not(*:root) {
		/* Chromeのハック */
		/*フォント細いって言われたとき
		font-weight: 500;
		*/
		}
	_::-webkit-full-page-media, _:future, :root body{
		/* safariのハック */
		}
	body *{
		line-height: inherit;
		}
	_:-ms-lang(x)::-ms-backdrop, body{
		overflow-x: hidden;
		}

a{
	color: inherit;
	fill: currentColor;
	transition-property: color,text-decoration,background,background-color,background-size,border,border-color,box-shadow,fill,filter,opacity;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
	}

dt{
	font-weight: inherit;
	}

main{}
	main a{
		color: #12c2c7;
		}
		main a:hover{
			text-decoration: underline;
			}
		main a:visited{
			color: #660099;
			}

input,
textarea,
select{}
	input:focus,
	textarea:focus,
	select:focus{
		border: 1px solid #0068b6;
		}

input[type="radio"],
input[type="checkbox"]{}
	input[type="radio"]:checked+label,
	input[type="checkbox"]:checked+label{}
		input[type="radio"]:checked+label:before,
		input[type="checkbox"]:checked+label:before{
			border-color: #0068b6;
			background-color: #0068b6;
			-webkit-animation: checked 0.2s forwards;
			animation: checked 0.2s forwards;
			}
		@-webkit-keyframes checked{
			30% {box-shadow: 0 0 0 1em rgba(0,104,183,0.5);}
			}
		@keyframes checked{
			30% {box-shadow: 0 0 0 1em rgba(0,104,183,0.5);}
			}

#wrapper{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	min-height: 100vh;
	margin: auto;
	padding-right: env(safe-area-inset-right);
	padding-left: env(safe-area-inset-left);
	}

#header,
#nav,
#main{
	order: -1;
	}

#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #12c2c7;
	z-index: 100;
	}
	#header .wrap{
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: inherit;
		}

#siteName{}
	#siteName a{
		display: flex;
		align-items: center;
		color: #fff;
		font-family: bokutoh-rera, sans-serif;
		text-decoration: none;
		}
	#siteName span{
		font-size: 1.6em;
		}
	#siteName i{
		margin-right: 0.5em;
		}

#nav{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	color: #fff;
	z-index: 110;
	}
	#nav ul{
		display: flex;
		}
	#nav a{
		display: block;
		
		font-family: bokutoh-rera, sans-serif;
		text-decoration: none;
		}
		#nav a.active{
			color: #ffe266;
			}

#main{
	margin-bottom: auto;
	}

#footer{
	background: #036eb7;
	color: #fff;
	}

#fAddress{}
	#fAddress dl{
		display: flex;
		flex-direction: column;
		background: rgba(255,255,255,0.25);
		line-height: 1.4em;
		}
	#fAddress dt{
		font-size: 1.5em;
		font-family: bokutoh-rera, sans-serif;
		}
	#fAddress dd{
		margin-top: 1em;
		}
	#fAddress p{
		/* text-align: center; */
		line-height: 1.7em;
		}

#fBanner{}
	#fBanner ul{
		display: flex;
		justify-content: center;
		align-items: center;
		}
	#fBanner li{
		width: 50%;
		max-width: 270px;
		}
		#fBanner li a{
			position: relative;
			display: block;
			width: 100%;
			height: inherit;
			background: #fff;
			}
			#fBanner li a:before{
				content: "";
				display: block;
				padding-top: 33.33%;
				}
	#fBanner li+li{
		margin-left: 1em;
		}

#copyright{
	display: flex;
	align-items: center;
	height: 3em;
	padding-bottom: env(safe-area-inset-bottom);
	background: #333333;
	box-sizing: content-box;
	}
	#copyright p{
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 0.8em;
		line-height: 1.2em;
		text-align: center;
		}

#pageTop{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	}
	#pageTop a{
		position: relative;
		bottom: 1em;
		display: flex;
		flex-direction: column;
		align-items: center;
		fill: #fff;
		animation: pageTop 3s ease-in-out infinite; 
		}
	#pageTop i{
		font-size: 1.4em;
		}
	#pageTop span{
		position: relative;
		width: 4em;
		height: 4em;
		background: #d5f7f6;
		border: 2px solid #fff;
		border-radius: 100%;
		}
		#pageTop span svg{
			position: absolute;
			top: 12%;
			left: 12%;
			width: 76%;
			height: 76%;
			}
	@keyframes pageTop{
		0% {transform: translateY(0);}
		50% {transform: translateY(-20px);}
		100% {transform: translateY(0);}
		}

#subject{
	position: relative;
	text-align: center;
	}
	#subject svg{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(18,194,199,0.4);
		z-index: -1;
		}

#pagenation{
	overflow: hidden;
	}
	#pagenation ul,
	#pagenation ol{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		list-style: none;
		margin: -0.5em;
		}
	#pagenation li{
		margin: 0.5em;
		}
	#pagenation a{}
		#pagenation a:not([rel="list"]){
			display: flex;
			align-items: center;
			justify-content: center;
			text-decoration: none;
			}
		#pagenation a:not([rel]){
			width: 2.6em;
			height: 2.6em;
			padding: 0 0.3em;
			background: #12c2c7;
			border: 2px solid #12c2c7;
			color: #fff;
			border-radius: 100%;
			color: #fff;
			}
		#pagenation a:not([rel]):hover{
			opacity: 0.7;
			}
	#pagenation [rel="prev"],
	#pagenation [rel="next"]{
		display: flex;
		align-items: center;
		color: inherit;
		}
		#pagenation [rel="prev"] i,
		#pagenation [rel="next"] i{
			display: flex;
			align-items: center;
			width: 1em;
			height: 1em;
			}
	#pagenation [rel="prev"]{}
		#pagenation [rel="prev"] i{
			margin-right: 0.5em;
			}
	#pagenation [rel="next"]{}
		#pagenation [rel="next"] i{
			margin-left: 0.5em;
			}
	#pagenation .lsc-current-page{
		background: #fff !important;
		color: #12c2c7;
		font-weight: 500;
		pointer-events: none;
		}

.wrap{
	margin-left: auto;
	margin-right: auto;
	}

.subject{
	display: inline-flex;
	justify-content: center;
	min-width: 10em;
	padding: 0.8em 1em;
	background: #fff;
	border: 4px solid currentColor;
	border-radius: 1.3em;
	color: #333;
	font-family: bokutoh-rera, sans-serif;
	text-align: center;
	}

.headline{
	margin: 0;
	padding: 0.8em;
	border: 1px solid #333;
	background: rgba(255, 255, 255, 0.5);
	font-weight: bold;
	text-align: center;
	line-height: 1.4em;
	}

.title{
	margin: 0;
	padding: 0;
	color: #0068b7;
	font-weight: bold;
	line-height: 1.4em;
	}

.subTitle{
	margin: 0;
	padding: 0.5em 0;
	border-bottom: 1px solid #999;
	border-top: 3px solid #999;
	font-weight: bold;
	line-height: 1.4em;
	}

.buttonSet{
	display: flex;
	grid-gap: 1em;
	}
	.buttonSet li{
		display: flex;
		}
		.buttonSet li a,
		.buttonSet li button{
			width: 100%;
			}

.linkBut{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-gap: 0.5em;
	min-width: 15em;
	padding: 0.8em 1em;
	border: none;
	border-radius: 1.8em;
	font-family: inherit;
	font-size:  inherit;
	font-weight: 400;
	text-decoration: none;
	line-height: 1.4em;
	}
	.linkBut:not(:hover){
		background: #12c2c7;
		color: #fff;
		}
	.linkBut:hover{
		background: #ff434e;
		color: #fff;
		text-decoration: none;
		}
	.linkBut.prev,
	.linkBut.next{
		position: relative;
		}
		.linkBut.prev i,
		.linkBut.next i{
			position: absolute;
			top: calc(50% - 0.5em);
			display: flex;
			align-items: center;
			width: 1em;
			height: 1em;
			}
		.linkBut.prev svg,
		.linkBut.next svg{
			transform: scale(1.6);
			}
	.linkBut.prev{
		padding-left: 2.5em;
		}
		.linkBut.prev i{
			left: 0.5em;
			}
	.linkBut.next{
		padding-right: 2.5em;
		}
	.linkBut.next i{
		right: 1em;
		}

.linkText{
	display: inline-flex;
	align-items: center;
	grid-gap: 0.5em;
	}

.list{
	list-style: none;
	}
	.list > li{
		line-height: 1.4em;
		text-indent: 0;
		}
		.list > li > .list{
			margin-top: 0.5em;
			}
			.list > li:not(:last-child){}
				.list > li:not(:last-child) > .list:last-child{
					margin-bottom: 1em;
					}
		.list > li > .list.count{}
			.list > li > .list.count > li{
				padding-left: 2.8em;
				}
				.list > li > .list.count > li:before{
					content: "（"counter(count)"）";
					}
	.list > li+li{
		margin-top: 0.5em;
		}
	.list.point{}
		.list.point > li{
			position: relative;
			padding-left: 1.5em;
			}
			.list.point > li:before{
				position: absolute;
				top: 0;
				left: 0;
				content: "●";
				color: #0068b7;
				transform: scale(0.7);
				}
	.list.notes{}
		.list.notes > li{
			padding-left: 1em;
			text-indent: -1em;
			}
	.list.count{
		counter-reset: count;
		}
		.list.count > li{
			position: relative;
			padding-left: 1.5em;
			}
			.list.count > li:before{
				counter-increment: count;
				content: counter(count)".";
				position: absolute;
				left: 0;
				}

.table{}
	table.table{
		width: 100%;
		border-collapse: collapse;
		}
		table.table thead{
			background: rgba(0, 104, 182, 0.1);
			}
		table.table th,
		table.table td{
			padding: 0.8em;
			border: 1px solid #ccc;
			line-height: 1.4em;
			vertical-align: middle;
			}
		table.table th{
			background: rgba(0, 0, 0, 0.05);
			}
	dl.table{}
		dl.table > dt,
		dl.table > dd{
			padding: 0.8em;
			line-height: 1.4em;
			}
		dl.table > dt{
			background: rgba(0, 104, 182, 0.1);
			}
		dl.table > dd{
			background: rgba(0, 0, 0, 0.05);
			}

.googlemap{
	position: relative;
	}
	.googlemap iframe{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		}
	.googlemap div+div{
		margin-top: auto;
		}

.youtube{
	position: relative;
	padding-top: 56.25%;
	}
	.youtube iframe{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		}

.anchor{
	position: absolute;
	opacity: 0;
	}




/* for all */
@media (max-width: 1199.98px) {
/*1199px以下*/
}
@media (max-width: 991.98px) {
/*991px以下*/
body{}
	body:not(.nav){}
		body:not(.nav) #nav{
			opacity: 0;
			pointer-events: none;
			}
#header{
	height: 4em;
	}
#siteName{}
	#siteName svg{
		font-size: 3em;
		}
#navButton{
	position: fixed;
	top: 0;
	right: 0;
	width: 1em;
	height: 1em;
	margin: 0;
	padding: 0;
	background: #12c2c7;
	border: none;
	color: #fff;
	font-size: 4em;
	text-align: center;
	box-sizing: border-box;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	}
	.nav #navButton{}
		.nav #navButton i:nth-child(1){
			top: 40%;
			transform: rotate(-45deg);
			}
		.nav #navButton i:nth-child(2){
			left: 100%;
			}
		.nav #navButton i:nth-child(3){
			top: 40%;
			transform: rotate(45deg);
			}
	#navButton span{
		position: absolute;
		bottom: 0.7em;
		left: 0;
		width: 100%;
		color: currentColor;
		font-size: 0.2em;
		font-weight: bold;
		text-transform: uppercase;
		line-height: 1em;
		letter-spacing: 0.15em;
		transform: scale(0.7);
		}
	#navButton i{
		position: absolute;
		display: block;
		left: 25%;
		width: 50%;
		height: 2px;
		margin-top: -1px;
		background: currentColor;
		border-radius: 1px;
		transition: all 0.2s ease-out;
		z-index: 100000;
		}
		#navButton i:nth-child(1){
			top: 25%;
			}
		#navButton i:nth-child(2){
			top: 40%;
			}
		#navButton i:nth-child(3){
			top: 55%;
			}
#nav{
	top: 4em;
	height: calc(100% - 4em);
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
	background: #12c2c7;
	transition: opacity 0.2s ease-out;
	overflow-y: scroll;
	}
	#nav ul{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		}
	#nav li+li{
		margin-top: 2em;
		}
#main{
	margin-top: 4em;
	}
#fAddress{}
	#fAddress dl{
		padding: 1.5em;
		border-radius: 1em;
		}
#fBanner{}
	#fBanner li{}
		#fBanner li a{
			border-radius: 10px;
			}
}


/* for mobile */
@media (max-width: 767.98px) {
/*767px以下*/
main > *,
article,
article section,
article nav,
article header,
article footer,
#subject{
	padding-top: 2em;
	padding-bottom: 2em;
	}
#fAddress{
	padding: 2em 0;
	}
	#fAddress dl{
		margin-bottom: 2em;
		}
#fBanner{
	padding-bottom: 2em;
	}
#pageTop{
	align-items: center;
	}
.wrap{
	max-width: calc(100% - 3em);
	}
.subject{
	font-size: 1.5em;
	}
.headline{
	font-size: 1.6em;
	}
.title{
	font-size: 1.3em;
	}
.subTitle{
	font-size: 1.1em;
	}
.anchor{
	margin-top: calc(-2em - 4em);
	}
}
@media (max-width: 767.98px) and (orientation:portrait) {
/*767px以下縦向き*/
body{
	font-size: 3.8vw;
	}
#fBanner{}
	#fBanner li{}
		#fBanner li svg{
			position: absolute;
			top: 0.5em;
			left: 0.5em;
			width: calc(100% - 1em);
			height: calc(100% - 1em);
			}
.buttonSet{
	flex-direction: column;
	align-items: stretch;
	}
.googlemap{
	height: 100vw;
	}
}
@media (max-width: 767.98px) and (orientation:landscape) {
/*767px以下横向き*/
body{
	font-size: 2vw;
	}
.googlemap{
	height: 70vh;
	}
}
@media (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) {
/*767px以下 横向き, 768px以上,*/
#fBanner{}
	#fBanner li{}
		#fBanner li svg{
			position: absolute;
			top: 1em;
			left: 1em;
			width: calc(100% - 2em);
			height: calc(100% - 2em);
			}
.buttonSet{
	justify-content: center;
	}
.table{}
	dl.table{
		display: grid;
		grid-template-columns: 12em calc(100% - 12em);
		grid-gap: 1px 0;
		}
}
@media (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) and (max-width: 991.98px) {
/*767px以下 横向き, 768px～991px*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
html{
	font-size: 62.5%;
	}
#fBanner{}
	#fBanner li+li{
		margin-left: 1.5em;
		}
#pageTop{
	height: 0;
	align-items: flex-end;
	}
	_:-ms-lang(x)::-ms-backdrop, #pageTop{
		height: auto;
		margin-top: -8em;
		}
	#pageTop a{
		right: 1em;
		}
.subject{
	font-size: 2em;
	}
.headline{
	font-size: 1.8em;
	}
.title{
	font-size: 1.6em;
	}
.subTitle{
	font-size: 1.2em;
	}
}
@media (min-width: 768px) and (max-width: 1199.98px) {
/*768px～1199px*/
body{
	font-size: 1.4rem;
	}
}
@media (min-width: 768px) and (max-width: 991.98px) {
/*768px～991px*/
main > *,
article,
article section,
article nav,
article header,
article footer,
#subject{
	padding-top: 3em;
	padding-bottom: 3em;
	}
#fAddress{
	padding: 3em 0;
	}
	#fAddress dl{
		margin-bottom: 3em;
		}
#fBanner{
	padding-bottom: 3em;
	}
.wrap{
	width: 724px;
	}
.googlemap{
	height: 30em;
	}
.anchor{
	margin-top: calc(-3em - 4em);
	}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
main > *,
article,
article section,
article nav,
article header,
article footer,
#subject{
	padding-top: 4em;
	padding-bottom: 4em;
	}
#header{
	height: 4em;
	}
#siteName{}
	#siteName svg{
		font-size: 3em;
		}
#navButton{
	display: none;
	}
#nav{
	pointer-events: none;
	}
	#nav ul{
		height: 4em;
		align-items: center;
		justify-content: flex-end;
		padding: 0 2em;
		}
	#nav li{
		pointer-events: all;
		}
	#nav li+li{
		margin-left: 1.5em;
		}
	#nav .wrap{
		display: flex;
		justify-content: flex-end;
		width: 100%;
		}
#main{
	margin-top: 4em;
	}
#fAddress{
	padding: 4em 0;
	}
	#fAddress dl{
		margin-bottom: 4em;
		padding: 2em;
		border-radius: 30px;
		}
#fBanner{
	padding-bottom: 4em;
	}
	#fBanner li{}
		#fBanner li a{
			border-radius: 20px;
			}
.googlemap{
	height: 40em;
	}
.anchor{
	margin-top: calc(-4em - 6em);
	}
}
@media (min-width: 992px) and (max-width: 1199.98px) {
/*992px～1199px*/
.wrap{
	width: 940px;
	}
}
@media (min-width: 1200px) {
/*1200px以上*/
body{
	font-size: 1.6rem;
	}
.wrap{
	width: 1170px;
	}
}





