/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap');
/*明朝体にしたいとき
	font-family: ten-mincho-text, serif;
	font-weight: 400;
	font-style: normal;
*/

body{
	color: #1a1a1a;
	fill: #1a1a1a;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	text-align: justify;
	word-break: break-all;
	line-height: 1em;
	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;
	}
	_::content, _:future, body:not(*:root) {
		/* Chromeのハック */
		/*フォント細いって言われたとき
		font-weight: 500;
		*/
		}
	_:-ms-lang(x)::backdrop, body{
		/* Edgeのハック */
		}
	_:lang(x)::-ms-backdrop, body{
		/* IE11のハック */
		/* ※デフォルトフォントはメイリオ
		   ※win7のデフォルトフォントはMPゴシック
		font-family: "メイリオ", Meiryo, sans-serif;*/
		/*明朝体にしたいとき
		font-family: serif;
		*/
		}
	body *{
		line-height: inherit;
		}

a{
	color: #3684c6;
	fill: #3684c6;
	text-decoration: underline;
			transition-property: inherit;
			transition-duration: inherit;
			transition-timing-function: inherit;
	}
	a:hover{
		color: #e3007f;
		fill: #e3007f;
		}

main{}
	main p{
		line-height: 1.6em;
		}
	main p+p{
		margin-top: 1em;
		}
	main a:not([class])[href^="http"][target="_blank"]{
		display: inline-flex;
		}
		main a:not([class])[href^="http"][target="_blank"] i{
			display: flex;
			align-items: center;
			}
		main a:not([class])[href^="http"][target="_blank"] svg{
			transform: scale(0.8);
			}

input,
textarea,
select{}
select{transition-duration:0.2s;    color: #3684c6;}
	input:focus,
	textarea:focus,
	select:focus{
		border: 1px solid #0068b6;
		}
select:hover{
    color: #e3007f;
}
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: #3684c6;
			background-color: #3684c6;
			-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;
	opacity: 0;
	transition: opacity 0.2s ease-out;
	}
	.done #wrapper{
		opacity: 1;
		}

#header{
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	padding-right: env(safe-area-inset-right);
	padding-left: env(safe-area-inset-left);
	background: #fff;
	z-index: 100;
	order: 1;
	}
	#header .wrap{
		display: flex;
		align-items: center;
		justify-content: space-between;
		}

#siteName{}
	#siteName a{
		display: block;
		color: transparent;
        transition-duration:0.2s;
		}
        #siteName a:hover{
            opacity: 0.7;
        }
	#siteName svg{
		width: 100%;
		}
	[data-type="member"] #siteName{}
		[data-type="member"] #siteName a{
			display: flex;
			}
		[data-type="member"] #siteName span{
			background: #ff0000;
			color: #fff;
			padding: 0.4em;
			}

#nav{
	z-index: 110;
	order: 2;
	}
	#nav ul{
		display: flex;
		list-style: none;
		}
	#nav a{
		text-decoration: none;
		}

#globalNav{}
	#globalNav a{
		display: block;
		font-weight: bold;
		}
	#globalNav a+div{
		display: flex;
		flex-direction: column;
		height: 3em;
		padding-top: 3em;
		overflow: hidden;
		transition: height 0.2s ease-out;
		}

#extraNav{}
	#extraNav a{
		color: #666;
		}

#googleSearch{}
	#googleSearch form{
		display: flex;
		}
	#googleSearch [type="text"]{
		width: 100%;
		}
	#googleSearch [type="button"]{
		width: 4em;
		background: #666;
		border: none;
		color: #fff;
		}

	#googleSearch [type="button"]:hover{
		background: #333;
		}

#pagePath{
	order: 4;
	}

#main{
	margin-bottom: auto;
	order: 3;
	}

#pagenation{
	padding-top: 0;
	overflow: hidden;
	}
	#pagenation ul,
	#pagenation ol{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		list-style: none;
		margin: -0.4em;
		}
	#pagenation li{
		margin: 0.4em;
		}
	#pagenation a{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0.8em;
		text-decoration: none;
		background: #0068b6;
		color: #fff;
		fill: #fff;
		}
		#pagenation a:hover{
			opacity: 0.7;
			}
		#pagenation a i{
			position: relative;
			display: flex;
			align-content: center;
			margin-bottom: -0.1em;
			}
	#pagenation [rel="prev"]{}
		#pagenation [rel="prev"] i{
			margin-right: 0.5em;
			transform: scale(-1,1);
			}
	#pagenation [rel="next"]{}
		#pagenation [rel="next"] i{
			margin-left: 0.5em;
			}
	#pagenation .lsc-current-page{
		background: #ccc;
		color: #fff;
		}

#pageTop{
	position: -webkit-sticky;
	position: sticky;
	right: 1em;
	bottom: 1em;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	width: 100%;
	height: 0;
	margin-top: -4em;
	padding-right: 1em;
	z-index: 100;
	order: 6;
	}
	#pageTop a{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 1em;
		height: 1em;
		padding-bottom: 0.05em;
		background: #1D2087;
		border-radius: 100%;
		color: transparent;
		fill: #fff;
		font-size: 3em;
        transition-duration:0.2s;
		}
    #pageTop a:hover{
        background: #5257DA;
    }
	#pageTop svg{
		width: 0.9em;
		height: 0.9em;
		transform: rotate(-90deg);
		}

#footer{
	order: 5;
	}

#fContents{
	background: #f2f2f2;
	}

#fAddress{}
	#fAddress dt{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		font-family: ten-mincho-text, serif;
		font-size: 1.6em;
		line-height: 1em;
		}
		#fAddress dt:after{
			content: "─";
			width: 1em;
			margin-left: 0.5em;
			transform: scale(2,1);
			}
	#fAddress dd{
		line-height: 1.6em;
		}
	#fAddress dl+div{
		margin-top: 1em;
		}
	#fAddress dl a{
		display: block;
		padding-bottom: 0.5em;
		text-decoration: none;
		}
		#fAddress dl a[target="_blank"] svg {
			transform: scale(0.8);
			}

#fNav{}
	#fNav ul{
		list-style: none;
		}
	#fNav > ul{
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-content: space-between;
		margin-top: -0.8em;
		}
		#fNav > ul > li{
			position: relative;
			padding-left: 1.5em;
			}
			#fNav > ul > li:before{
				content: "━ ";
				position: absolute;
				top: 0.2em;
				left: 0;
				color: #3684c6;
				}
	#fNav li{
		margin-top: 0.8em;
		}
	#fNav a{
		display: inline-flex;
		color: inherit;
		text-decoration: none;
		line-height: 1.4em;
        transition-duration:0s;
		}
        #fNav a:hover{
            text-decoration: underline;
            color: #3684c6;;
        }
		#fNav a i{
			display: flex;
			align-items: center;
			}
		#fNav a[target="_blank"]{}
			#fNav a[target="_blank"] i{
				fill: #3684c6;
				}
			#fNav a[target="_blank"] svg{
				transform: scale(0.8);
				}
	
#copyright{
	display: flex;
	align-items: center;
	height: 3em;
	padding-bottom: env(safe-area-inset-bottom);
	background: #1a1a1a;
	box-sizing: content-box;
	}
	#copyright p{
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 0.8em;
		line-height: 1.2em;
		text-align: center;
		}

.wrap{
	width: calc(100% - 2em);
	margin: 0 auto;
	}
	.wrap div+div{
		margin-top: 2em;
		}

.min{
	font-family: ten-mincho-text, serif;
	font-weight: 400;
	font-style: normal;
	}

.subject{
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	font-family: ten-mincho-text, serif;
	text-align: center;
	line-height: 1.4em;
	}
	.subject:after{
		content: "";
		width: 1.5em;
		height: 3px;
		margin-top: 0.6em;
		background: #232286;
		}
	.subject+*{
		margin-top: 2em;
		}

.headline{
	margin: 0;
	padding: 0;
	font-weight: bold;
	line-height: 1.4em;
	}
	.headline.point{
		display: flex;
		align-items: center;
		flex-direction: column;
		text-align: center;
		font-family: ten-mincho-text, serif;
		font-weight: 400;
		}
		.headline.point:after{
			content: "━";
			width: 1em;
			transform: scale(2,0.5);
			color: #232286;
			}
	.headline+*{
		margin-top: 2em;
		}

.title{
	margin: 0;
	padding: 0;
	font-weight: bold;
	line-height: 1.4em;
	}
	.title.point{
		position: relative;
		padding-left: 0.5em;
		font-family: ten-mincho-text, serif;
		font-weight: 400;
		}
		.title.point:before{
			content: "";
			position: absolute;
			top: 0.2em;
			left: 0;
			width: 4px;
			height: 1em;
			background: #3684c6;
			}
	.title+*{
		margin-top: 1em;
		}

.subTitle{
	margin: 0;
	padding: 0;
	font-weight: bold;
	line-height: 1.4em;
	}
	.subTitle.point{
		position: relative;
		padding-left: 0.6em;
		font-family: ten-mincho-text, serif;
		font-weight: 400;
		}
		.subTitle.point:before{
			content: "";
			position: absolute;
			top: 0.2em;
			left: 0;
			width: 4px;
			height: 1em;
			background: #666;
			}
	.subTitle+*{
		margin-top: 1em;
		}

.buttonSet{
	display: flex;
	list-style: none;
	}
	.buttonSet li{
		display: flex;
		}

.linkBut{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8em 1em;
	background: #3684c6;
	border: none;
	color: #fff;
	fill: #fff;
	font-family: inherit;
	font-size: inherit;
	text-decoration: none;
	line-height: 1.4em;
	}
	.linkBut:hover{
		background: #e3007f;
		color: #fff;
		fill: #fff;
		}
	.linkBut i{
		display: flex;
		align-content: center;
		margin-left: 0.5em;
		order: 1;
		}
	.linkBut[data-icon="popup"]{}
		.linkBut[data-icon="popup"] i{
			opacity: 0.5;
			}

.linkBanner{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 6.6em;
	padding: 0.5em 2em;
	background: linear-gradient(45deg, #232286, #4f4e9e);
	background-size: cover;
	color: #fff;
	fill: #fff;
	line-height: 1.4em;
	text-decoration: none;
	}
	.linkBanner:hover{
		color: #fff;
		fill: #fff;
		background: #e3007f;
		}
	.linkBanner.img{}
		.linkBanner.img:hover{}
			.linkBanner.img:hover span{
				background: #e3007f;
				}
			.linkBanner.img:hover .thumb{
				opacity: 0.8;
				}
		.linkBanner.img span{
			position: relative;
			padding: 0.6em 1em;
			background: #3684c6;
			transition-property: inherit;
			transition-duration: inherit;
			transition-timing-function: inherit;
			z-index: 1;
			transition: background 0.2s ease-out;
			}
		.linkBanner.img .thumb{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			padding: 0;
			transition: opacity 0.2s ease-out;
			}
	.linkBanner.icon{
		padding-left: 5em;
		}
		.linkBanner.icon span{
			font-size: 1.2em;
			}
		.linkBanner.icon i{
			position: absolute;
			top: calc(50% - 1.5em);
			left: 1.5em;
			}
		.linkBanner.icon svg{
			font-size: 3em;
			}
	.linkBanner[href*="facebook"]{
		background: linear-gradient(45deg, #3b5998, #899bc1);
		text-transform: capitalize;
		letter-spacing: 0.1em;
		}
	.linkBanner[href*="twitter"]{
		background: linear-gradient(45deg, #333, #888);
		text-transform: capitalize;
		letter-spacing: 0.1em;
		}

.topicsList{}
	.topicsList p{
		padding: 10% 1em;
		background: #ccc;
		text-align: center;
		opacity: 0.5em;
		}
	.topicsList dl{
		position: relative;
		display: flex;
		flex-direction: column;
		padding: 1em 0;
		border-bottom: 1px solid #ccc;
		}
	.topicsList dt{
		font-weight: bold;
		line-height: 1.4em;
		}
	.topicsList dt+dd{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin-bottom: 1em;
		order: -1;
		}
	.topicsList dd{}
		.topicsList dd time{
			color: #333;
			}
		.topicsList dd span{
			margin-left: 1em;
			padding: 0.4em 0.8em;
			background: #1a1a1a;
			color: #fff;
			font-size: 0.9em;
			text-align: center;
			}
		.topicsList dd ul{
			display: flex;
			flex-wrap: wrap;
			width: 100%;
			margin-top: 0.5em;
			list-style: none;
			}
			.topicsList dd ul:empty{
				display: none;
				}
		.topicsList dd li{
			margin: 0.5em 0.5em 0 0;
			padding: 0.3em 0.5em;
			font-size: 0.8em;
			background: rgba(0,104,182,0.1);
			color: #3684c6;
			white-space: nowrap;
			}
		.topicsList dd a{
			position: absolute;
			top: 0;
			left: 0;
			display: flex;
			align-items: center;
			justify-content: space-between;
			width: 100%;
			height: 100%;
			color: transparent;
            
			}
		.topicsList dd svg{
			transform: scale(1) !important;
			}
            .topicsList dd a i{
                transform:translateX(-5px);
                transition-duration:0.2s;
            }
           .topicsList dd a:hover i{
                transform:translateX(0px);
            }
	.topicsList dl+div{
		margin-top: 1em;
		text-align: right;
		}
		.topicsList dl+div a{
			display: inline-flex;
			align-items: center;
			color: #666;
			fill: #666;
			text-decoration: none;
			}
		.topicsList dl+div i{
			margin-left: 0.5em;
			}
	.topicsList .info{
		background: #232286;
		}
	.topicsList .open{
		background: #ecb817;
		}
	.topicsList .close{
		background: #999;
		}

.topicsMonth{
	display: flex;
	justify-content: center;
	margin: 0;
	border-bottom: 1px solid #ccc;
	}
	.topicsMonth ul{
		display: flex;
		flex-wrap: wrap;
		margin: -0.4em;
		list-style: none;
		}
	.topicsMonth li{
		margin: 0.4em;
		}
	.topicsMonth a{
		display: block;
		padding: 0.8em;
		background: #3684c6;
		color: #fff;
		text-align: center;
		white-space: nowrap;
		text-decoration: none;
		}
		.topicsMonth a:hover{
			background: #e3007f;
			}
	.topicsMonth .selected{
		pointer-events: none;
		}
		.topicsMonth .selected a{
			background: #000;
			}
	.topicsMonth .wrap{
		display: flex;
		justify-content: center;
		}

.pageList{
	display: flex;
	}
	.pageList dl{
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		}
		.pageList dl:hover .thumb{
			transform: scale(1.2);
			}
	.pageList dt{
		display: flex;
		margin: 0.8em 0;
		color: #3684c6;
		fill: #3684c6;
		font-size: 1.1em;
		font-weight: bold;
		line-height: 1.4em;
		}
		.pageList dt i{
			margin-left: 0.5em;
            transition-duration:0.2s;
			}
            .pageList dl:hover dt i{
              /*  transform:translateX(5px); */
            }
		.pageList dt svg{
			transform: scale(1.2);
			}
	.pageList dd{
		line-height: 1.4em;
		opacity: 0.8;
		}
		.pageList dd a{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			opacity: 0;
			}
	.pageList dt+dd{}
		.pageList dt+dd:nth-last-of-type(3){
			overflow: hidden;
			opacity: 1;
			order: -1;
			}
	.pageList .thumb{
		padding-top: 33.3%;
		transition: all 0.2s ease-out;
		}

.tabMenu{
	display: flex;
	list-style: none;
	min-height: 4em;
	border-bottom: 2px solid #000;
	}
	.tabMenu li{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50%;
		padding: 0.5em;
		line-height: 1.4em;
		background: #f2f2f2;
		text-align: center;
		cursor: pointer;
        transition-duration:0.2s;
		}
        
		.tabMenu li a{
			display: flex;
			align-items: center;
			justify-content: center;
			width: calc(100% + 1em);
			height: calc(100% + 1em);
			margin: -0.5em;
			padding: 0.5em;
			color: inherit;
			text-decoration: none;
			}
	.tabMenu .select{
		background: #000;
		color: #fff;
		}
        .tabMenu li:not(.select):hover{
            background: #ddd;
        }
.pdfDownload{
	padding: 1em;
	background: #ffffcc;
	border: 1px solid #ffcc66;
	}
	.pdfDownload p+p{
		margin-top: 0.5em;
		}

.linkText{
	display: inline-flex;
	align-items: center;
	}
	.linkText i{
		display: flex;
		align-items: center;
		}
	.linkText[data-icon="popup"]{}
		.linkText[data-icon="popup"] span{
			display: flex;
			align-items: center;
			margin-right: 0.2em;
			opacity: 0.5;
			}
		.linkText[data-icon="popup"] svg{
			width: 0.8em;
			}

.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{
			display: flex;
			align-items: flex-start;
			}
			.list.point > li:before{
				content: "●";
				margin-right: 0.2em;
				color: #3684c6;
				transform: scale(0.6);
				}
	.list.line{
		border-top: 1px solid #ccc;
		}
		.list.line > li{
			padding: 0.8em 0;
			border-bottom: 1px solid #ccc;
			}
		.list.line > li+li{
			margin: 0;
			}
	.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;
				}
	.list+*,
	*+.list{
		margin-top: 1em;
		}

.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{
		display: flex;
		flex-wrap: wrap;
		}
		dl.table > dt,
		dl.table > dd{
			padding: 0.8em;
			margin-top: 1px;
			line-height: 1.4em;
			}
		dl.table > dt{
			width: 10em;
			background: rgba(0,104,182,0.1);
			}
		dl.table > dd{
			width: calc(100% - 10em);
			background: rgba(0,0,0,0.05);
			}
	.table+*,
	*+.table{
		margin-top: 1em;
		}

.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;
	}

.slick-slider{}
	.slick-slider .slick-track{
		display: flex;
		}
	.slick-slider .slick-slide{
		float: none;
		height: auto;
		align-self: stretch;
		}
.slick-arrow{
	position: absolute;
	top: calc(50% - 0.5em);
	width: 1em;
	height: 1em;
	font-size: 2em;
	cursor: pointer;
	z-index: 1;
	}
.slick-prev{
	left: 0;
	transform: scale(-1,1);
	}
.slick-next{
	right: 0;
	}

.display-lsc-isDev{
	display: none;
	}

.none{
	display: none!important;
	}




/* for all */
@media (max-width: 1199.98px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
body{}
	body:not(.nav){}
		body:not(.nav) #nav{
			left: 100vw;
			}
#header{}
	#header .wrap{
		width: 100%;
		padding-left: 1em;
		}
#siteName{}
	[data-type="member"] #siteName{}
		[data-type="member"] #siteName a{
			align-items: flex-end;
			}
		[data-type="member"] #siteName span{
			margin-left: 1em;
			}
#navButton{
	position: relative;
	flex: 0 0 1em;
	width: 1em;
	height: 1em;
	margin: 0;
	padding: 0;
	background: #3684c6;
	border: none;
	color: transparent;
	text-align: center;
	box-sizing: border-box;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	}
	.nav #navButton{}
		.nav #navButton i:nth-child(1){
			top: 50%;
			transform: rotate(-45deg);
			}
		.nav #navButton i:nth-child(2){
			left: 100%;
			}
		.nav #navButton i:nth-child(3){
			top: 50%;
			transform: rotate(45deg);
			}
	#navButton i{
		position: absolute;
		content: "";
		display: block;
		left: 20%;
		width: 60%;
		height: 2px;
		margin-top: -1px;
		background: #fff;
		border-radius: 1px;
		transition: all 0.2s ease-out;
		z-index: 100000;
		}
		#navButton i:nth-child(1){
			top: 30%;
			}
		#navButton i:nth-child(2){
			top: 50%;
			}
		#navButton i:nth-child(3){
			top: 70%;
			}
#nav{
	position: fixed;
	top: 0;
	left:100vw;
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
	background: rgba(255,255,255,.05);
	transition: left 0.2s ease-out;
	overflow-y: scroll;
	}
	#nav ul{
		flex-direction: column;
		}
#globalNav{
	background: #3684c6;
	}
	#globalNav a{
		padding: 1em 0;
		color: #fff;
		}
	#globalNav li+li{
		border-top: 1px solid rgba(255,255,255,.3);
		}
	#globalNav a+div{
		position: relative;
		margin-top: -3em;
		}
		#globalNav a+div i{
			position: absolute;
			top: 1.5em;
			right: 0;
			display: flex;
			align-items: center;
			height: 0;
			fill: #fff;
			}
		#globalNav a+div svg{
			font-size: 1.4em;
			transform: rotate(90deg);
			}
		#globalNav a+div ul{
			padding-left: 1.5em;
			border-top: 1px solid rgba(255,255,255,.3);
			}
		#globalNav a+div li{}
			#globalNav a+div li i{
				display: none;
				}
		#globalNav a+div li+li{
			border-style: dotted;
			}
	#globalNav .open{}
		#globalNav .open a+div{
			height: auto;
			}
			#globalNav .open a+div svg{
				transform: rotate(-90deg);
				}
#extraNav{background: #3684c6;padding-bottom:1em;}
	#extraNav li{
		margin-top: 1em;
		}
		#extraNav li a{
            color:#fff;
			position: relative;
			padding-left: 1.5em;
			}
			#extraNav li a:before{
				content: "─ ";
				position: absolute;
				top: 0.2em;
				left: 0;
				transform: scale(0.6,1);
				}
#googleSearch{
	margin-top: 1.5em;
	}
	#googleSearch dt{
		display: none;
		}
	#googleSearch menu{
		display: none;
		}
}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
body{
	font-size: 1rem;
	}
main > *,
article,
article section,
article header,
article footer,
article nav{
	padding-top: 2em;
	padding-bottom: 2em;
	}
#pagePath{
	display: none;
	}
#fContents{
	padding: 2em 0;
	}
#fNav{
	margin-top: 2em;
	}
	#fNav a+ul{
		display: none;
		}
.subject,
.headline{
	font-size: 1.6em;
	}
.title{
	font-size: 1.4em;
	}
.subTitle{
	font-size: 1.2em;
	}
.topicsList{}
	.topicsList dl{
		padding-right: 2em;
		}
	.topicsList dt+dd{
		font-size: 0.8em;
		}
	.topicsList dd{}
		.topicsList dd a{
			font-size: 1.5em;
			}
	.topicsList ul{
		width: 100%;
		margin: 0.5em 0 0 0;
		}
.tabMenu{}
	.tabMenu li{
		font-size: 0.8em;
		}
	.tabMenu li+li{
		margin-left: 0.5em;
		}
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
html{
	font-size: 4vw;
	}
#header{}
	#header .wrap{
		height: 15vw;
		}
#siteName{}
	#siteName svg{
		font-size: 10vw;
		}
	[data-type="member"] #siteName{}
		[data-type="member"] #siteName svg{
			font-size: 7vw;
			}
		[data-type="member"] #siteName span{
			font-size: 0.6em;
			}
#navButton{
	font-size: 15vw;
	}
#nav{
	top: 15vw;
	left: calc(100vw - 18em);
	width: 18em;
	height: calc(100% - 15vw);
	}
#fNav{}
	#fNav > ul{
		height: 14em;
		}
	[data-type="member"] #fNav{}
		[data-type="member"] #fNav > ul{
			height: auto;
			}
.buttonSet{
	flex-direction: column;
	align-items: center;
	}
	.buttonSet *+*{
		margin-top: 1em;
		}
	.buttonSet li{
		align-self: stretch;
		}
.table{}
	dl.table{}
		dl.table > dt,
		dl.table > dd{
			width: 100%;
			}
		dl.table > dt+dd{
			margin-top: 0;
			}
.topicsMonth{}
	.topicsMonth li{
		width: calc(50% - 0.8em);
		}
.pageList{
	flex-direction: column;
	align-items: stretch;
	}
	.pageList dl+dl{
		margin-top: 2em;
		}
.googlemap{
	height: 100vw;
	}
.anchor{
	margin-top: calc(-15vw - 1em);
	}
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
html{
	font-size: 2.5vw;
	}
#header{}
	#header .wrap{
		height: 8vw;
		}
#siteName{}
	#siteName svg{
		font-size: 5vw;
		}
	[data-type="member"] #siteName{}
		[data-type="member"] #siteName span{
			font-size: 0.8em;
			}
#navButton{
	font-size: 8vw;
	}
#nav{
	top: 8vw;
	left: calc(100vw - 16em);
	width: 16em;
	height: calc(100% - 8vw);
	}
#fAddress{
	display: flex;
	justify-content: space-between;
	}
	#fAddress dl+div{
		margin-top: 0;
		}
#fNav{}
	#fNav > ul{
		height: 8.8em;
		}
	[data-type="member"] #fNav{}
		[data-type="member"] #fNav > ul{
			height: 11em;
			align-content: flex-start;
			}
		[data-type="member"] #fNav li{
			margin-right: 2em;
			}
.buttonSet{
	justify-content: center;
	}
	.buttonSet *+*{
		margin-left: 1em;
		}
.pageList{
	flex-wrap: wrap;
	justify-content: space-between;
	}
	.pageList dl{
		width: calc(50% - 1em);
		}
		.pageList dl:nth-of-type(n+3){
			margin-top: 2em;
			}
	.pageList dd{
		font-size: 0.8em;
		}
.googlemap{
	height: 70vh;
	}
.anchor{
	margin-top: calc(-8vw - 1em);
	}
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
html{
	font-size: 62.5%;
	}
#fAddress{}
	#fAddress dt{
		font-size: 1.6em;
		}
#fNav{}
	#fNav > ul{
		height: 23em;
		}
	[data-type="member"] #fNav{}
		[data-type="member"] #fNav > ul{
			height: 11em;
			}
#pagePath{
	padding: 1em 0;
	}
	#pagePath a{
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		}
		#pagePath a:hover{
			text-decoration: none;
			}
	#pagePath ul{
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		}
	#pagePath li{
		display: flex;
		padding: 0.25em;
		align-items: center;
		min-width: 1em;
		font-size: 0.875em;
		line-height: 1.4em;
		}
		#pagePath li:last-child{
			font-weight: bold;
			}
	#pagePath i{
		display: flex;
		align-content: center;
		margin: 0 0.3em;
		opacity: 0.5;
		}
.buttonSet{
	justify-content: center;
	}
	.buttonSet *+*{
		margin-left: 1em;
		}
.subject,
.headline{
	font-size: 1.8em;
	}
.title{
	font-size: 1.6em;
	}
.subTitle{
	font-size: 1.4em;
	}
.topicsList{}
	.topicsList dl{
		padding-right: 3em;
		}
	.topicsList dd{}
		.topicsList dd a{
			font-size: 1.8em;
			}
.pageList{
	flex-wrap: wrap;
	justify-content: space-between;
	}
	.pageList dl{}
		.pageList dl:nth-of-type(-n+2){
			margin-top: 0;
			}
.tabMenu{}
	.tabMenu li+li{
		margin-left: 1em;
		}
}
@media (min-width: 768px) and (max-width: 1199.98px) {
/*768px～1200px*/
body{
	font-size: 1.4rem;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
main > *,
article,
article section,
article header,
article footer{
	padding-top: 3em;
	padding-bottom: 3em;
	}
#header{}
	#header .wrap{
		max-width: 100%;
		height: 4em;
		}
#siteName{}
	#siteName svg{
		font-size: 3em;
		}
#navButton{
	font-size: 4em;
	}
#nav{
	top: 4em;
	left: calc(100% - 16em);
	width: 16em;
	height: calc(100% - 4em);
	}
#fContents{
	padding: 3em;
	}
#fAddress{
	display: flex;
	justify-content: space-between;
	}
	#fAddress dl+div{
		width: 20em;
		margin-top: 0;
		}
#fNav{
	margin-top: 3em;
	}
.wrap{
	max-width: 720px;
	}
.pageList{}
	.pageList dl{
		width: calc(50% - 0.75em);
		margin-top: 2em;
		}
.googlemap{
	height: 30em;
	}
.anchor{
	margin-top: calc(-4em - 2em);
	}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
main > *,
article,
article section,
article header,
article footer,
article nav{
	padding-top: 4em;
	padding-bottom: 4em;
	}
#header{
	background: rgba(255,255,255,0.8);
	}
	#header .wrap{
		height: 6em;
		}
#siteName{}
	#siteName svg{
		font-size: 3em;
		}
	[data-type="member"] #siteName{}
		[data-type="member"] #siteName a{
			flex-direction: column-reverse;
			align-items: flex-start;
			}
		[data-type="member"] #siteName span{
			position: relative;
			padding: 0.5em 1em;
			top: -0.6em;
			}
#navButton{
	display: none;
	}
#nav{
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	display: flex;
	flex-direction: column;
	height: 6em;
	margin-top: -6em;
	pointer-events: none; 
	}
	#nav ul{
		justify-content: flex-end;
		}
#globalNav{
	margin-top: auto;
	order: 1;
	}
	#globalNav li{
		position: relative;
		display: flex;
		flex-direction: column;
		align-self: stretch;
		pointer-events: all;
		}
		#globalNav li:hover{
			z-index: 1;
			}
			#globalNav li:hover > a{
				border-bottom-color: #3684c6;
				color: #3684c6;
				}
			#globalNav li:not(:hover) a+div{
				height: 3em;
				}
	#globalNav li+li{
		margin-left: 2em;
		}
	#globalNav a{
		position: relative;
		padding: 1em 0;
		border-bottom: 2px solid transparent;
		color: inherit;
		z-index: 1;
		}
	#globalNav a+div{
		position: absolute;
		top: 0;
		left: 0;
		}
		#globalNav a+div > i{
			display: none;
			}
		#globalNav a+div ul{
			flex-direction: column;
			margin-top: 2px;
			background: #3284c3;
			color: #fff;
			fill: #fff;
			
			cursor: pointer;
			}
		#globalNav a+div li{
			height: 3em;
            padding: 0 1em;
			white-space: nowrap;
			text-overflow: ellipsis;
			overflow: hidden;
			}
             #globalNav a+div li:hover{
                 background: #89BAE0;
             }
            #globalNav a+div li:hover > a{
				color: inherit;
			}
            
			
		#globalNav a+div li+li{
			margin: 0;
			border-top: 1px solid #fff;
			}
		#globalNav a+div a{
			display: flex;
			justify-content: space-between;
			color: inherit;
			fill: inherit;
			padding-right: 1.8em;
			border: none;
			}
			#globalNav a+div a:hover{
				color: inherit;
				fill: inherit;
				}
		#globalNav a+div i{
			position: absolute;
			top: calc(50% - 0.5em);
			right: 0;
			font-size: 1.2em;
            transition-duration: 0.2s;
			}
            #globalNav a+div li:hover i{
                transform:translateX(7px);
            }
    
		#globalNav [href="/topics/index.html"]+div,
		#globalNav [href="/member/topics/index.html"]+div{
			height: calc(3em * 4 + 2px);
			}
		#globalNav [href="/aboutUs/index.html"]+div{
			height: calc(3em * 5 + 2px);
			}
		#globalNav [href="/activities/index.html"]+div{
			height: calc(3em * 8 + 2px);
			margin-left: -3.6em;
			}
	#globalNav .active{
		border-bottom-color: #3684c6;
		color: #3684c6;
		}
#extraNav{
	margin-top: 0.5em;
	}
	#extraNav li+li{}
		#extraNav li+li:before{
			content: "｜";
			margin: 0 0.5em;
			}
	#extraNav a{
		position: relative;
		font-size: 0.8em;
		pointer-events: all;
		z-index: 1;
		transition-duration:0.2s;
        }
  	#extraNav a:hover{
		color: #3684c6;
        text-decoration: underline;
        }
  	#extraNav .wrap{
		display: flex;
		align-items: center;
		justify-content: flex-end;
		}
#googleSearch{
	margin-left: 1em;
	pointer-events: all;
	}
	#googleSearch dt{
		width: 2em;
		height: 2em;
		color: transparent;
		cursor: pointer;
		overflow: hidden;
		}
		#googleSearch dt i{
			display: flex;
			align-items: center;
			justify-content: center;
			width: 2em;
			height: 2em;
			background: #666;
			border-radius: 100%;
			color: transparent;
			fill: #fff;
            transition-duration: 0.2s;
			}
            #googleSearch dt i:hover{
                background: #999;
            }
		#googleSearch dt svg{
			transform: scale(1.4);
			}
	#googleSearch dd{
		position: fixed;
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0.8);
		opacity: 0;
		transition: opacity 0.2s ease-out;
		pointer-events: none;
		}
	#googleSearch menu{
		position: absolute;
		top: -1em;
		right: -1em;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 2em;
		height: 2em;
		background: #3684c6;
		border-radius: 100%;
		fill: #fff;
		cursor: pointer;
        transition: transform 0.2s ease-out;
		}
		#googleSearch menu svg{
			transform: scale(1.4);
			}
        #googleSearch menu:hover{
             transform: rotate(180deg);
            background: #2B699D;
        }
	#googleSearch form{
		position: relative;
		width: 700px;
		padding: 1em;
		background: rgba(255,255,255,0.5);
		}
	#googleSearch.open{
		position: relative;
		z-index: 210;
		}
		#googleSearch.open dd{
			pointer-events: all;
			opacity: 1;
			}
	#googleSearch [type="text"]{
		border: none;
		}
#fContents{
	padding: 4em 0;
	}
	#fContents .wrap{
		display: flex;
		}
#fAddress{
	flex: 0 0 22em;
	}
#fNav{
	width: 100%;
	}
	#fNav > ul{
/*		align-content: flex-end;*/
		}
		#fNav > ul> li{
			margin-left: 2em;
			}
.pageList{}
	.pageList dl{
		width: calc(50% - 1em);
		margin-top: 2em;
		}
	.pageList dt{
		font-size: 1.2em;
		}
.googlemap{
	height: 40em;
	}
.anchor{
	margin-top: calc(-6em - 2em);
	}
}
@media (min-width: 992px) and (max-width: 1199.98px) {
/*992px～1199px*/
.wrap{
	max-width: 940px;
	}
}
@media (min-width: 1200px) {
/*1200px以上*/
body{
	font-size: 1.6rem;
	}
.wrap{
	max-width: 1140px;
	}
}


/* ie */
@media all and (-ms-high-contrast: none) {
body{
	text-justify: inter-cluster;
	}
}




/* --------------------------------------------- */
/* 　　　　　　　　　　LSC用　　　　　　　　　　 */
/* --------------------------------------------- */

.none{
    display: none!important;
}

.disable{
    pointer-events: none!important;
    opacity: 0.4!important;
}
.lsc-error-form{
    border: solid 1px red;
    background-color: rgba(255,0,4,0.05);
}

.lsc-dim{
    opacity: 0.3;
}




/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767px) {
/*767以下px*/
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1199.98px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* ie */
@media all and (-ms-high-contrast: none) {
}




