@charset "UTF-8";
/****************************************************
* base 基本スタイルシート *
*****************************************************/
/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */button,hr,input{overflow:visible}audio,canvas,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}[aria-disabled],html{cursor:default}*,::after,::before{background-repeat:no-repeat;box-sizing:inherit}::after,::before{text-decoration:inherit;vertical-align:inherit}html{box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}body,button,input,optgroup,select,textarea{margin:0}h1{font-size:2em;margin:.67em 0}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}nav ol,nav ul{list-style:none}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}::selection{background-color:#b3d4fc;color:#000;text-shadow:none}audio,canvas,iframe,img,svg,video{vertical-align:middle}audio:not([controls]){display:none;height:0}img{border-style:none}svg{fill:currentColor}svg:not(:root){overflow:hidden}table{border-collapse:collapse}button,input,select,textarea{background-color:transparent;color:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto;resize:vertical}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}[tabindex],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-hidden=false][hidden]:not(:focus){clip:rect(0,0,0,0);display:inherit;position:absolute}




/*基本・共通******************************************/
/*リンク*/
a[href] {
	font-weight:normal;
	text-decoration:none;
}
a[href]:hover, a[href]:focus, a[href]:active{
	text-decoration:underline;
}
/*見出し*/
h1, h2, h3, h4, h5, h6, strong{
	margin:0;
	padding:0;
	color:inherit;
}
/*強調*/
b,strong{
	font-weight:600;
}
em{
	font-size: 100%;
	text-decoration: none;
	font-style: normal;
}
/*画像など*/
img, object, embed, video {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
/*クリア*/
.clear{
	clear:both;
}
hr{
	border: 0;
	border-top:1px dotted #999;
	margin:10px 0;
}
hr.clear{
	display:none;
}

/*読み上げ用隠し*/
.speech{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
/*印刷のみ*/
.printOnly{
	display:none;
}

@media print{
/*印刷時*/
	.speech{
	  display:none;
	}
	.printOnly{
	  display:block;
	}
}
/*非表示*/
.noDisp{
	display:none !important;
}
/*サイズ別表示*/
/*Mobile*/
@media screen and (max-width: 767px){
	.onlyDesktop {
		display: none !important;
	}
}
/*Desktop&print*/
@media screen and (min-width: 768px), print{
	.onlyMobile{
		display: none !important;
	}
}

/*Helper*/
.center, .text-center{
	text-align:center;
}
.text-left{
	text-align:left;
}
.text-right{
	text-align:right;
}
.float-right{
	float:right;
}
.float-left{
	float:left;
}
.text-large{
	font-size:1.2em;
}
/*clearfix*/
.clearfix:after {
    content:" ";
    display:block;
    clear:both;
}
/*grid*/
.row{
	width:100%;
}
.cell{
	margin-bottom:10px;
}
.row.r2l{
	-ms-flex-direction:row-reverse;
	-webkit-box-orient:horizontal;
	-webkit-box-direction:reverse;
	        flex-direction:row-reverse;
}
/*Mobile*/
@media screen and (max-width: 767px){
	.row,
	.cell{
		display:block;
	}
	.row.mb{
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -ms-flex-wrap: wrap;
	  flex-wrap: wrap;
	  -ms-justify-content: space-between;
	  -webkit-box-pack: justify;
	      -ms-flex-pack: justify;
	          justify-content: space-between;
	}
	.row.mb .cell{
		vertical-align:top;
		-webkit-box-flex: 1;
		    -ms-flex: 1 auto;
		        flex: 1 auto;
	}
}
/*Desktop&print*/
@media screen and (min-width: 768px), print{
	.row {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -ms-flex-wrap: wrap;
	  flex-wrap: wrap;
	  -ms-justify-content: space-between;
	  -webkit-box-pack: justify;
	      -ms-flex-pack: justify;
	          justify-content: space-between;
	}
	.row .cell{
		vertical-align:top;
		-webkit-box-flex: 1;
		    -ms-flex: 1 auto;
		        flex: 1 auto;
	}	
	.row .cell.half{
		width:50%;
	}
	.row .cell.quarter{
		width:25%;
	}
	.row .cell.p30{
		width:30%;
	}
	.row .cell.p70{
		width:70%;
	}
	.row .cell.p60{
		width:60%;
	}
}

.row:after {
    content:" ";
    display:block;
    clear:both;
}

/*ツールチップ****************************/
p#vtip {
	display: none;
	position: absolute;
	padding: 5px 10px;
	left: 5px;
	font-size: 0.8em;
	color: #fff;
	background-color: #000;
	background-color: rgba(0,0,0,0.8);
	border: 2px solid #222;
	z-index: 9999;	
	border-radius: 4px;
	-webkit-box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.2);
	box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.2);
}

/*構造 レイアウト*******************************************************/
body {
	font-size: 100%;
	font-family:YakuHanJP, "Hiragino Sans", "Noto Sans Japanese", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-feature-settings: "pkna";
	line-height: 1.75;
	word-wrap: break-word;
	overflow-wrap: break-word;
	position: relative;
	min-width: 320px;
	width:100%;
	z-index: 1;
}
.container{
}
.container:after{
	content:" ";
	display:block;
	clear:both;
}
/*Mobile*/
@media screen and (max-width: 767px){
}
/*Desktop*/
@media screen and (min-width: 768px), print{
	.container{
		margin:0 auto;
		max-width:1030px;
	}
}
@media print {
/*印刷時*/
	body{
		min-height:0;
		min-width:0;
		width:1030px;
	}
}





/*ヘッダー詳細*******************************************************/
#pageHead{
	position:relative;
	z-index:5;
	font-size:16px;
}
#pageHead ul{
	list-style:none;
	margin:0;
	padding:0;
}
#pageHead a{
	text-decoration:none;
}

#toolBar a[href]:link,
#subHeader a[href]:link{
	color:#fff;
}
#toolBar a[href]:visited,
#subHeader a[href]:visited{
	color:#fdfdfd;
}

/*ロゴ*/
#pageHead h1.logo a{
	display:block;
	overflow:hidden;
	width:230px;
	padding-top:40px;
	height:0;
	background-size:contain;
	background-repeat:no-repeat;
	background-position:left center;
	position:relative;
}
#pageHead h1.logo a:hover,
#pageHead h1.logo a:active,
#pageHead h1.logo a:focus{
	opacity: 0.8;
}


/**文字/配色ツール*/
#t_jtools{
	font-size:12px;
	line-height:1.65;
}
#t_jtools,
#t_jtools ul,
#t_jtools li{
	list-style:none;
	display:inline-block;
	vertical-align:middle;
}
#t_jtools >li+li{
	margin-left:1em;
}
#t_jtools li ul{
	margin-left:5px;
}
#t_jtools .label{
	display:inline-block;
	vertical-align:middle;
}
#t_jtools button{
	text-align:center;
	margin: 0 0.15em;
	padding:0 0.25em;
	min-width:1.5em;
	color:#040000;
	vertical-align:middle;
	background:#fff;
	border:1px solid #B2B2B2;
	border-radius:3px;
}
#t_black button{
	color:#fff;
	background: #000;
}
#t_jtools button:hover,
#t_jtools button:active,
#t_jtools button:focus{
	opacity:0.8;
}

/*翻訳*/
#google_translate_element {
	line-height:1;
}
#google_translate_element a{
	text-decoration:none;
	color:#333 !important;
}
#google_translate_element a:hover,
#google_translate_element a:active,
#google_translate_element a:focus{
	opacity:1;
}
/*検索*/
#search form{
	position:relative;
	text-align:left;
	color:#000;
	background:#fff;
	font-size:14px;
	line-height:1.3;
	border:1px solid #B2B2B2;
	overflow:hidden;
	border-radius:3px;
	padding:0 25px 0 5px;
}
#search form input[type="text"]{
	font-size:1em;
	width:100%;
	min-width:120px;
	padding:2px;
	color:#000;
	background:#fff;
	border:none !important;
}
/*IE*/
#search form input:-ms-input-placeholder {
	font-size:1em;
	color:#666;
	font-weight:normal;
}
/*MS Edge*/
@supports (-ms-ime-align:auto) {
	#search form input[type="text"][style$="48px;"]{
		text-indent:24px !important;
	}
}

#search form button[type="submit"]{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width:0;
	padding: 0 0 0 22px;
	overflow:hidden;
	border:none;
	-webkit-appearance: button;
	text-transform: none;
	background-color: transparent;
}
#search form button[type="submit"]:before{
	position:absolute;
	top:2px;
	left:0;
	right:0;
	font-family: FontAwesome;
	font-size:15px;
	line-height:1;
	content:"\f002";
	color:#333;
}
/*お問い合わせ*/
#contact{
	font-size:12px;
}
#contact p{
	display:inline-block;
	vertical-align:middle;
	margin:0;
}
#contact .tel>*{
	display:inline-block
}
#contact .btn>a{
	display:block;
	vertical-align:middle;
}
#contact .btn>a[href]{
	color:#000;
	background:#f1e534;
}
#contact .btn>a[href]:hover,
#contact .btn>a[href]:active,
#contact .btn>a[href]:focus{
	background:#f1da34;
}
#contact .btn>a:after{
	display:inline-block;
	margin-left:5px;
	font-family: FontAwesome;
	content:"\f101";
	font-size: 16px;
    line-height: 1;
    vertical-align: text-top;
}

/*メニュー*/
#stMenu a>span,
#globalMenu a>span{
	padding:3px;
	display:inline-block;
	position:relative;
}
#stMenu a>span:before,
#globalMenu a>span:before{
	position:absolute;
	content:"";
	bottom:0;
	left:0;
	right:0;
	height:2px;
	background-color:transparent;
}
/*サブ・メニュー*/
#subMenu h4.top{
	font-size:1em;
}
#subMenu a>span{
	display:inline-block;
	padding:3px;
	position:relative;
}
#subMenu a>span:before{
	position:absolute;
	content:"";
	bottom:0;
	left:0;
	right:0;
	height:2px;
	background-color:transparent;
}
#subMenu a:hover>span:before,
#subMenu a:focus>span:before,
#subMenu a:active>span:before{
	background:#FFF;
}
#subMenu a.current>span:before{
	background:#fff;
}

/*Mobile*/
@media screen and (max-width: 767px){
	#globalMenu{
		display:none !important;
	}
	#toolBar{
		font-size:12px;
		font-size:3.75vw;
	}
	/*問合せ*/
	#contact{
		position:relative;
		z-index:100;
		height:36px;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-justify-content: space-between;
		justify-content:space-between;
	}
	#contact p.tel{
		padding:5px 10px;
	}
	#contact p.tel .label{
		font-size:0.8em;
		display:inline-block;
		vertical-align:middle;
		line-height:1;
		margin-right:0.8em;
	}
	#contact p.tel a{
		display:inline-block;
		vertical-align:middle;
		font-weight:600;
		padding:0.1em 0.6em;
		border:1px solid #e6e6e6;
		border-radius:1px;
	}
	#contact p.tel a:before{
		display:inline-block;
		margin-right:0.3em;
		font-family: FontAwesome;
		content:"\f095";
		font-size: 16px;
		line-height: 1;
	}
	#contact p.btn{
		border-left:1px solid #fff;
	}
	#contact p.btn a{
		height:36px;
		padding:6px;
	}
	
	#headBar .container{
		position:relative;
		z-index:100;
	}
	#headBox{
		position:relative;
		padding-right:94px;
		height:60px;
		overflow:hidden;
		border-top:1px solid #FFF;
		border-bottom:1px solid #B2B2B2;
		z-index:101;
	}
	/*fixed*/
	.fixed #headBar{
		padding-top:60px;
	}
	.fixed #headBar .container{
		position:fixed;
		top:0;
		left:0;
		right:0;
	}
	
	/*ロゴ*/
	#pageHead h1{
		display:block;
		margin:10px 5px;
	}
	#pageHead h1.logo a{
		max-width:100%;
	}
	/*ボタン*/
	#spMenu{
		display:block;
		position:absolute;
		right:0;
		top:0;
		padding:5px 3px;
	}
	#spMenu button{
		margin:5px 3px;
		padding:0;
		width:40px;
		height:40px;
		font-size:9px;
		text-align:center;
		border:none;
		border-radius:2px;
		color:#fff;
		background:#396CA9;
	}
	#spMenu button:before{
		display:block;
		width:100%;
		font-family: FontAwesome;
		font-size: 18px;
		line-height: 1;
	}
	#spMenu button.menu:before{
		content:"\f0c9";
	}
	#spMenu button.search:before{
		content:"\f002";
	}
	#spMenu button span{
		display:block;
	}
	.opend #spMenu button.close:before{
		content:"\f00d";
	}
	.opend #spMenu button.close span{
		display:none;
	}
	.opend #spMenu button.close:after{
		content:"閉じる";
	}
	
	/*パネル*/
	.sPanel{
		font-size:15px;
		visibility:hidden;
		opacity:0;
		position:fixed;
		top:-200px;
		width:100%;
		z-index:98;
	}
	.sPanel.transition{
		transition: 0.4s ease-in;
	}
	.sPanel.open{
		top:96px;
		visibility:visible !important;
		opacity:1;
	}
	.fixed .sPanel.open{
		top:60px;
	}
	.sPanel.open .panel{
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	.sPanel.open,
	.sPanel.open .panel{
		max-height: -webkit-calc(100vh - 96px);
		max-height: calc(100vh - 96px);
	}
	.fixed .sPanel.open,
	.fixed .sPanel.open .panel{
		max-height: -webkit-calc(100vh - 60px);
		max-height: calc(100vh - 60px);
	}
	
	/*panel開時cover*/
	#headBar:after{
		content:"";
		position:fixed;
		left:0;
		right:0;
		top:60px;
		bottom:0;
		opacity:0;
		display:block;
		visibility:hidden;
		background-color:rgba(255,255,255,.8);
		transition: linear 0.4s;
	}
	.opend #headBar:after{
		visibility:visible;
		opacity:1;
		z-index:90;
	}
	/*ツール*/
	#tools #t_jtools{
		text-align:center;
		font-size:1em;
		display:block;
		margin:10px 0;
		padding:10px;
		border-bottom:1px solid;
	}
	#t_jtools >li{
		margin:5px;
	}
	#t_jtools button{
		font-size:1.2em;
	}
	#google_translate_element{
		display:block;
		margin:20px 10px;
	}
	/*検索*/
	#search form{
		margin:20px 10px;
	}
	/*メニュー*/
	#stMenu,#subMenu {
		font-size:15px;
	}
	#stMenu br,#subMenu br{
		display:none;
	}
	#subMenu small{
		display:inline-block;
	}
	#stMenu li,
	#subMenu li,
	#subMenu h4.top{
		display:block;
	}
	#stMenu li a,
	#subMenu a{
		display:block;
		line-height:1.2;
	}
	#stMenu >ul >li,
	#subMenu{
		border-bottom:1px solid #B2B2B2;
	}
	#stMenu >ul>li >a,
	#subMenu h4.top a{
		font-size:16px;
		padding:0 0.5em;
		height:3.4em;
	}
	/*開閉*/
	
	#stMenu >ul> li >a,
	#subMenu h4.top a{
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-justify-content: space-between;
		justify-content:space-between;
	}
	#stMenu li.sect >a:after,
	#subMenu h4.top a:after{
		content:"\f078";
		display:block;
		font-family: FontAwesome;
		font-size: 1em;
		line-height: 1;
		align-self: center;
		transition:transform 0.4s ease-in;
	}
	#stMenu >ul>li >a >span,
	#subMenu h4.top a >span{
		align-self: center;
	}
	#stMenu li.sect >a span:before,
	#subMenu h4.top a >span:before{
		display:none;
	}
	#stMenu ul.sub,
	#subMenu>ul{
		max-height: 0;
		overflow:hidden;
		transition:max-height 0.4s ease-in;
	}
	#stMenu li.open ul.sub,
	#subMenu .open+ul{
		max-height: 700px;
	}
	#stMenu li.sect.open >a,
	#subMenu h4.top.open a{
		border-bottom:1px solid #B2B2B2;
	}
	#stMenu li.sect.open >a:after,
	#subMenu h4.top.open a:after{
		transform:rotate(180deg);
	}
	#stMenu ul.sub li:last-child,
	#subMenu>ul li:last-child{
		margin-bottom:10px;
	}
	#stMenu ul.sub li a,
	#subMenu ul li a{
		padding:0.4em 1em 0.4em 2em;
	}
	#stMenu ul.sub li a:before,
	#subMenu ul li a:before{
		display:inline-block;
		vertical-align:middle;
		content:"";
		width:.5em;
		height:0;
		border-bottom:1px solid;
		margin-right:0.5em;
		margin-left:-1em;
	}
	#stMenu ul.sub li a>span,
	#subMenu ul li a>span{
		vertical-align: text-top;
	}

}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	#spMenu,#stMenu{
		display:none !important;
	}
	
	#toolBar .container>*{
		float:left;
	}
	#toolBar .panel{
		margin:18px 10px 10px;
	}
	#toolBar .panel>*{
		display:inline-block;
		vertical-align:middle;
	}
	#tools .panel{
		margin-left:0;
	}
	#tools .panel>*+*{
		margin-left:10px;
	}
	#search form{
		font-size:12px;
		width:150px;
		height:24px;
	}
	#search form input[type="text"]{
		height:22px;
	}
	#pageHead #contact{
		float:right;
		padding:0 10px;
	}
	#pageHead #contact p{
		display:block;
		text-align:center;
	}
	#contact .tel{
		padding:5px;
		line-height:1.32;
	}
	#contact .tel .label{
		display:none;
	}
	#contact .tel .telNo{
		display:block;
		font-size:22px;
		font-family: 'Oswald', sans-serif;
		font-weight:500;
	}
	#contact .btn>a{
		padding:0;
		margin-bottom:10px;
	}
	
	#headBar .container{
		display: -webkit-flex;
		display: flex;
		/*-webkit-flex-flow: row wrap;
		flex-flow: row wrap;*/
		-webkit-justify-content: space-between;
		justify-content:space-between;
		align-items: center;
    	height: 78px;
	}
	#headBox{
		display: -webkit-flex;
		display: flex;
		width: 230px;
		/*-webkit-flex: 1 0 30%;
		flex: 1 0 30%;*/
		-webkit-justify-content:center;
		justify-content:center;
		align-items: center;
		margin-right: 15px;
	}
	#headBox h1{
		display:inline-block;
	}
	#headBox h1.logo a{
		width:210px;
		padding-bottom:10px;
	}
	/*メニュー*/
	#globalMenu,
	#globalMenu >ul,
	#globalMenu >ul>li,
	#globalMenu >ul>li>a,
	#globalMenu .sect>ul.sub{
		display: -webkit-flex;
		display: flex;
	}
	#globalMenu{
		/*-webkit-flex: 3 1 68%;
		flex: 3 1 68%;*/
		padding-top:2px;
		/*max-width:710px;*/
		width: calc(100% - 230px);
	}
	#globalMenu >ul{
		width:100%;
		-webkit-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-justify-content: space-between;
		justify-content:space-between;
	}
	#globalMenu >ul>li{
		position:relative;
	}
	#globalMenu >ul>li>a{
		padding:7px 0;
		font-size:14px;
		font-size:1.904761904762vw;
		line-height:1.3;
		font-weight:600;
		position:relative;
		-webkit-flex-flow: column nowrap;
		flex-flow: column nowrap;
		-webkit-justify-content: center;
		justify-content: center;
	}

	#globalMenu .sect>ul.sub{
		position:absolute;
		visibility:hidden;
		opacity:0;
		top:100%;
		left:0;
		width:100%;
		min-width:21.6vw;
		font-size:11.5px;
		font-size:1.5vw;
		-webkit-flex-flow: column wrap;
		flex-flow: column wrap;
		padding:10px;
		border-width: 0 1px 1px 1px;
		border-style: solid;
		transition: .2s ease-in-out;
		transform: translateY(10px);
		z-index:30;
	}
	#globalMenu .sect:hover>ul.sub,
	#globalMenu .open.sect>ul.sub{
		transform: translateY(0);
		opacity:1;
		visibility:visible;
	}
	#globalMenu .sect:before{
		position: absolute;
		content: "";
		border-style: solid;
		border-width: 9px 9px 0 9px;
		border-color: #ccc transparent transparent transparent;
		bottom: -9px;
		left: 50%;
		margin-left:-9px;
		opacity:0;
		transition: opacity .4s ease-in-out;
		z-index:31;
	}
	#globalMenu .sect:hover:before,
	#globalMenu .sect.open:before{
		opacity:1;
	}
	#globalMenu .sect>ul.sub li{
		margin:2px 7px;
	}
	#globalMenu .sub  a[href]:link{
		color:#fff;
	}
	#globalMenu .sub a[href]:visited{
		color:#fdfdfd;
	}
	#globalMenu .sub a:hover>span:before,
	#globalMenu .sub a:focus>span:before,
	#globalMenu .sub a:active>span:before{
		background:#FFF;
	}
	#globalMenu .sect.facility>ul.sub{
		min-width:42.857142857143vw;
		left:50%;
		margin-left:-21.4285714285715vw;
		height:32vw;
	}
	#globalMenu .sect.spr>ul.sub{
		min-width:27.380952380952vw;
		left:50%;
		margin-left:-13.690476190476vw;
	}
	/*サブ・メニュー*/
	#subMenu,
	#subMenu .top,
	#subMenu ul,
	#subMenu li,
	#subMenu a{
		display: -webkit-flex;
		display: flex;
	}
	#subMenu{
		font-size:13px;
		font-size:1.666666666667vw;
		-webkit-flex-flow: row nowrap;
		flex-flow: row nowrap;
	}
	#subMenu ul{
		padding:5px 0 8px 0;
		-webkit-flex: 1;
		flex: 1;
		-webkit-flex-flow: row wrap;
		flex-flow: row wrap;
	}
	#subMenu a{
		-webkit-flex-flow: column nowrap;
		flex-flow: column nowrap;
		-webkit-justify-content: center;
		justify-content: center;
		padding:5px 5px;
	}
	
	#subMenu .top>a{
		min-height:52px;
	}

}
/*(large) Desktop & Print*/
@media screen and (min-width: 840px), print{
	#headBox{
		/*-webkit-justify-content: start;
	    justify-content: start;
	    align-items: start;*/
	}
	#headBox h1.logo a{
		width:230px;
	}
	#tools .panel{
		margin-left:0;
	}
	#tools #t_jtools{
		margin-left:3px;
	}
	/*メニュー*/
	#globalMenu >ul>li>a{
		font-size:15px;
	}
	#globalMenu >ul>li>a{
		padding:3px;
	}
	#globalMenu .sect>ul.sub{
		font-size:14px;
		min-width:182px;
		width:auto;
	}
	#globalMenu .sect.facility>ul.sub{
		min-width:360px;
		margin-left:-180px;
		height:265px;
	}
	#globalMenu .sect.spr>ul.sub{
		min-width:230px;
		margin-left:-115px;
	}
	/*サブ・メニュー*/
	#subMenu{
		font-size:14px;
	}
	#subMenu a{
		padding:0 10px;
	}
	#subMenu .top a{
		background-color:rgba(255,255,255,0.2);
	}
	#subMenu .top a span:after{
		content:"トップ";
	}
}
@media screen and (min-width: 900px), print{
	#toolBar .panel{
		margin-top:10px;
	}
	#pageHead #contact{
		padding:0;
	}
	#pageHead #contact p{
	    float: left;
	}
	#contact .tel{
		padding:4px 20px;
	}
	#contact .tel .label{
		display:block;
	}
	#contact .btn>a{
		height:52px;
		padding:15px 10px;
		margin:0;
	}
}
@media screen and (min-width: 1030px), print{
	#contact .tel{
		padding:4px 30px;
	}
}
/*フッター*******************************************************/
#pageFoot{
	clear:both;
	margin-top:20px;
}
.sbhub #pageFoot{
	margin-top:0;
}
#pageFoot a{
	text-decoration:none;
}
#pageFoot a[href]:link{
	color:#fff;
}
#pageFoot a[href]:visited{
	color:#fdfdfd;
}
#pageFoot ul{
	list-style: none;
	margin:0;
	padding:0;
}
/*上へ*/
#upLink{
	position:fixed;
	z-index:5;
	right:40px;
	bottom:50px;
	transition: ease-in 0.4s;
}
#upLink a{
	position:relative;
	display: block;
	opacity:0.9;
	width:50px;
	height:50px;
	border-radius:4px;
	border:1px solid;
	overflow:hidden;
}
#upLink a:before,
#upLink a:after{
	display:block;
	text-align:center;
}
#upLink a:before{
	font-family: FontAwesome;
	font-size:40px;
	line-height:0.55;
	content:"\f0d8";
}
#upLink a:after{
	font-size:14px;
	font-family: 'Oswald', sans-serif;
	font-weight:500;
	content:"TOP";
}
#upLink a span{
	position: absolute;
	width: 0;
	height: 0;
	margin:-1px;
	clip: rect(0, 0, 0, 0);
}
#upLink a:hover,
#upLink a:active,
#upLink a:focus{
	opacity:1;
}
#upLink.hide{
	opacity:0;
	bottom:0;
}
/*Mobile*/
@media screen and (max-width: 767px){
	#upLink{
		right:5px;
		bottom:35px;
	}
}
@media print{
	#upLink{
		display:none;
	}
}
/*サイト情報*/
#fotNav ul{
	font-size:0.75em;
	padding:5px 10px;
}
#fotNav ul li,
#fotNav ul li a{
	display:inline-block;
}
#fotNav ul li a:before{
	display:inline-block;
	font-family: FontAwesome;
	content:"\f0da";
	margin-right:.4em;
	text-decoration:none;
}
#fotNav ul li a:hover,
#fotNav ul li a:focus,
#fotNav ul li a:active{
	text-decoration:underline;
}
/*ピックアップ*/
#fPickUp .board{
	width:100%;
	display:block;
	text-align:center;
}
.board p{
	margin:0;
}
#pageFoot #fPickUp .board a,
#fPickUp .board a{
	color:inherit;
}
a.board{
	transition:all ease .3s;
}
a.board:hover,
a.board:active,
a.board:focus{
	box-shadow:0 4px 10px rgba(0,0,0,.6) ;
}
/*抽選*/
#fPickUp .lottery .board,
.lottery .board,
.lottery h3,
.lottery .detail .date{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#fPickUp .lottery .board,
.lottery .board{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	-webkit-box-pack:justify;
	    -ms-flex-pack:justify;
	        justify-content:space-between;
}
.lottery h3{
	font-size:1em;
	line-height:1.2;
	width:6em;
	padding:0.8em;
	font-weight:600;
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
}
.lottery h3 span{
	display:inline-block;
	max-width:100%;
	-ms-flex-item-align:center;
	    align-self:center;
}
.lottery .detail{
	-webkit-box-flex: 4;
	    -ms-flex: 4 1 auto;
	        flex: 4 1 auto;
	padding:10px;
	line-height:1.15;
}
.lottery .detail p{
	display:block;
	text-align:left;
}
.lottery .detail p+p{
	margin-top:10px;
}
.lottery .detail strong{
	display:block;
	font-weight:600;
}
.lottery .detail .date{
	vertical-align:text-bottom;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-justify-content: space-between;
	justify-content:space-between;
}
.lottery .detail .date .ymd{
	display:inline-block;
	vertical-align:text-bottom;
	font-weight:600;
	font-size:0.9375em;
}
.lottery .detail .date .ymd b{
	font-family: 'Oswald', sans-serif;
	font-weight:700;
	font-size:2.33333333333333em;
	margin:0 0.05em;
	display:inline-block;
	text-align:right;
	min-width:.8em;	
}
.lottery .detail .date .ymd b:first-child{
	font-size:1.4em;
	margin-left:0;
}
.lottery .detail .date .w{
	display:inline-block;
	vertical-align:text-bottom;
	align-self: flex-end;
	font-weight:600;
	padding:0.5em 5px;
}
.lottery .detail .btn{
	display:block;
	text-align:center;
	font-size:0.75em;
	line-height:1.75;
	transition:ease-in 0.3s;
}
.lottery .detail .btn:after {
    display: inline-block;
    margin-left: 2em;
    font-family: FontAwesome;
    content: "\f101";
    font-size: 1.25em;
    line-height: 1;
}
/*募集*/
#fPickUp .Wanted .board,
.Wanted .board{
	line-height:1.2;
	font-weight:600;
	padding:10px 5px;
}
.Wanted .board p{
	margin:10px 0;
	font-size:1.1875em;
}
.Wanted .board strong{
	padding:0 5px;
	font-weight:800;
	display:inline-block;
	font-size:1.63157894736842em;
	position:relative;
	z-index:1;
}
.Wanted .board strong:before{
	content:"";
	position:absolute;
	display:block;
	left:0;
	right:0;
	bottom:0;
	height:0.2em;
	z-index:-1;
}

/*関連リンク*/
#fotLinks{
	background:rgba(0,0,0,.3);
	padding:10px 0;
}
#fotLinks h2{
	margin:0 5px;
	font-size:1em;
}
#fotLinks ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
#fotLinks ul li{
	width:20%;
	padding:5px;
}
.banner a,
.banner a img{
	display:block;
}
.banner a:hover img,
.banner a:focus img,
.banner a:active img{
	opacity:0.8;
}

/*著作権*/
#copyright{
	line-height:1.2;
	display:block;
}
/*Mobile*/
@media screen and (max-width: 767px){
	#fsMap{
		display:none;
	}
	
	#pageFoot{
		font-size:16px;
	}
	#fotNav ul{
		overflow:hidden;
	}
	#fotNav ul li{
		display:block;
		float:left;
		width:49%;
	}

	#fPickUp .board,
	#copyright{
		font-size:13px;
		font-size:4.266666666667vw;
	}
	/*ピックアップ*/
	#fPickUp{
		padding:5px 0;
		overflow:hidden;
	}
	#fPickUp>div{
		margin:10px;		
	}
	

	/*関連リンク*/
	#fotLinks{
		padding:10px;
		font-size:15px;
	}
	#fotLinks ul li{
		width:50%;
	}
	/*発信元*/
	#OficeAddress{
		padding:10px;
		font-size:15px;
	}
	#OficeAddress li{
		display:inline-block;
		margin-right:.6em;
	}
	#OficeAddress li.btn{
		display:inline;
	}
	#OficeAddress li.btn:after{
		content:"\0A";
		white-space: pre;
	}
	#OficeAddress li.btn a{
		padding:0 0.8em;
		display:inline-block;
	}
	#OficeAddress li.btn a:after {
		display: inline-block;
		margin-left: 1em;
		font-family: FontAwesome;
		content: "\f101";
		font-size: 1.25em;
		line-height: 1;
	}
	#copyright{
		margin:10px -5px;
	}
	#copyright small{
		font-size:0.5em;
	}

}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	#OficeAddress .access{
		display:none;
	}
	#pageFoot{
		padding:0 0 20px;
	}

	#fotNav ul{
		margin:0 auto;
		max-width:1030px;
	}
	#fotNav ul li{
		margin-right:2em;
	}

	
	#fotBox,
	#fPickUp,
	#fPickUp>div{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	#fotBox{
		padding:10px 0;
		-webkit-flex-flow: column nowrap;
		flex-flow: column nowrap;
	}
	#fPickUp{
		text-align:center;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-flow: row nowrap;
		        flex-flow: row nowrap;
		-webkit-box-pack:justify;
		    -ms-flex-pack:justify;
		        justify-content:space-between;
	}
	#fPickUp>div{
		margin:10px;
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 46%;
		        flex: 1 1 46%;
	}
	#fPickUp .board{
		font-size:13px;
		font-size:1.6vw;
	}
	#fsMap{
		-webkit-flex: 1 auto;
		flex: 1 auto;
		padding:10px;
		font-size:12px;
		font-size:1.479591836735vw;
		line-height:1.5;
	}
	#fsMap li{
		display:block;
	}
	#fsMap a:hover,
	#fsMap a:active,
	#fsMap a:focus{
		text-decoration:underline;
		opacity:0.8;
	}
	#fsMap >ul>li{
		width:11em;
		float:left;
		margin-right:0.5em;
		margin-bottom: 0.5em;
	}
	#fsMap >ul>li>a{
		font-weight:600;
	}
	#fsMap li small{
		display:inline-block;
	}
	#fsMap ul.sub{
		margin:5px 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-flow: column wrap;
		        flex-flow: column wrap;
		font-size:0.82758620689655em;
	}
	#fsMap ul.sub li{
		padding-left:1em;
		margin-bottom:0.4em;
	}
	#fsMap ul.sub li:before{
		display:inline-block;
		vertical-align:middle;
		content:"";
		width:.5em;
		height:0;
		border-bottom:1px solid;
		margin-right:0.5em;
		margin-left:-1em;
	}
	#fsMap .facility {
		width:20em;
	}
	#fsMap .facility .sub{
		height:12.5em;
	}
	#fsMap .sbhub,
	#fsMap .spr{
		width:20em;
	}
	
	
	#fotLinks,#OficeAddress{
		font-size:15px;
		font-size:1.785714285714vw;
	}

	#OficeAddress{
		text-align:center;
		padding:20px 5px;
	}
	#OficeAddress li{
		display:inline-block;
		margin:0 .3em;
	}
	
	#copyright{
		text-align:center;
		margin:10px;
	}
	#copyright small{
		font-size:10px;
	}
}
/*(large) Desktop & Print*/
@media screen and (min-width: 840px), print{
	#fotBox{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
			-ms-flex-flow: row-reverse nowrap;
				flex-flow: row-reverse nowrap;
		-webkit-box-pack:justify;
			-ms-flex-pack:justify;
				justify-content:space-between;
	}
	#fPickUp{
		width:36%;
		-webkit-flex-flow: column nowrap;
		flex-flow: column nowrap;
		-webkit-justify-content: space-around;
		justify-content:space-around;
	}
	#fPickUp >div{
		-webkit-flex: 1 auto;
		flex: 1 auto;
	}
	#fsMap >ul>li{
		width:10em;
	}
	#fsMap{
		-webkit-box-flex: 3;
		    -ms-flex: 3 1 64%;
		        flex: 3 1 64%;	
	}
	#fsMap .facility {
		width:17em;
	}
	#fsMap .seminar{
		width:10em;
	}
	#fsMap .sbhub,
	#fsMap .spr,
	#fsMap .spr~li{
		width:12em;
		width : -webkit-calc(100% - 28.5em) ;
		width : calc(100% - 28.5em);
		float:right;
		clear:right;
	}
	#fotLinks,#OficeAddress{
		font-size:15px;
	}
}
/*(large2) Desktop & Print*/
@media screen and (min-width: 1030px), print{
	#fsMap{
		padding:10px 5px;
		font-size:14.5px;
	}
	#fPickUp .board{
		font-size:16px;
	}
	#fsMap .facility {
		width:18em;
	}
	#fsMap .sbhub,
	#fsMap .spr,
	#fsMap .spr~li{
		width:15em;
		width : -webkit-calc(100% - 29.5em) ;
		width : calc(100% - 29.5em);
	}
}
/*バンクズ*******************************************************/
.breadcrumbs{
	overflow: hidden;
	text-align:left;
	clear: both;
	padding:0 10px;
	font-size:0.8em;
}
.breadcrumbs ol {
	margin:0;
	padding:0;
	list-style-type:none;
}
.breadcrumbs li {
	display:inline-block;
	vertical-align:middle;
}
.breadcrumbs li:after{
	display:inline-block;
	font-size:1.2em;
	margin-left:.5em;
	margin-right:.2em;
	font-family: FontAwesome;
	content:"\f105";
	line-height:1.2;
	vertical-align:middle;
}
.breadcrumbs li:last-child:after{
	display:none;
	content:"";
}
.breadcrumbs a:hover,
.breadcrumbs a:focus,
.breadcrumbs a:active{
	opacity:0.8;
}
/*Mobile*/
@media screen and (max-width: 767px){
	.breadcrumbs{
		margin:5px 0;
	}
}
/*Desktop*/
@media screen and (min-width: 768px), print{
	.breadcrumbs{
		margin:10px auto;
		max-width:1030px;
	}
}
/*コンテンツ*******************************************************/
#contents{
	z-index:2;
	overflow:hidden;
}
#contents,#main{
	position:relative;
}
#contents.page #main .mainText:last-child{
	margin-bottom:40px;
}

#main a[href]:hover,
#main a[href]:active,
#main a[href]:focus{
	opacity:0.8;
}
/*コンテンツ・ヘッダー*/
#contentHead{
	margin-bottom:2em;
}
/*記事タイトル*/
#contentHead >h2{
	font-weight:600;
	line-height:1.2;
}
/*ページ内目次*/
#indexInter{
	line-height:1.2;
	overflow:hidden;
	padding:10px;
}
#indexInter b{
	font-weight:600;
	margin-bottom:10px;
}
#indexInter ul{
	margin:5px;
	padding:0;
}
#indexInter ul li{
	display:inline-block;
	margin-right:0.8em;
}
#indexInter ul li:before{
    display:inline-block;
	font-size:1.2em;
	margin-right:.4em;
	font-family: FontAwesome;
	content:"\f107";
	line-height:1;
	vertical-align:middle;
}

/*コンテンツ・フッター*/
#contentFoot{
	margin-top:2em;
}
/*更新日*/
.lastDate{
	display:block;
	margin:15px 0;
	text-align:right;
}

#contents:after,
#contentHead:after,
#main:after{
	content:" ";
	display:block;
	clear:both;
}
/*Mobile*/
@media screen and (max-width: 767px){
	#contents{
		font-size:0.875em;
	}
	#main{
		margin:10px 0;
		padding:0 10px;
	}
	#contentHead >h2{
		font-size:1.25em;
		padding:5px 8px 9px;
	}
	#contentHead p{
		margin:1em 10px;
	}
	#indexInter{
		margin-top:10px;
	}
}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	#contents{
		font-size:0.9375em;
	}
	#main{
		margin:10px auto;
		padding:0 5px;
		max-width:1030px;
	}
	.sbhub #main{
		margin-bottom: 0;
	}
	#contentHead >h2{
		font-size:1.93333333333333em;
		padding:10px 16px 14px;
	}
	#contentHead p{
		margin:20px 15px;
	}
	#indexInter{
		margin:20px 10px;
	}
}

/**本文パーツ**************************/

.mainText p, .txtPart{
	margin:0 0 .65em;
}
/*リスト*/
.mainText ul, .mainText ol{
	padding:0;
	margin:1em 1em 1em 2em;
}
.mainText li ol, .mainText li ul{
	margin-top: 0;
	margin-bottom: 0.2em;
}

/*clearfix*/
.mainText:after,
.mainText article:after,
.mainText section:after,
.txtPart:after{
	content:" ";
	display:block;
	clear:both;
}

.mainText h3{
	position:relative;
	clear:both;
	margin-top:40px;
	margin-bottom:15px;
	border-top:3px solid;
	font-weight:600;
	font-size:1.66666666666667em;
	line-height:1.5;
	padding:5px 16px 7px;
}

.mainText h4{
	clear:both;
	margin-top:15px;
	margin-bottom:10px;
	font-weight:600;
	font-size:1.375em;
	line-height:1.5;
	padding:3px 10px 8px 18px;
	position:relative;
	border-bottom:1px solid #BFBFBF;
}
.mainText h4:before{
	content:"";
	display:block;
	position:absolute;
	left:5px;
	bottom:8px;
	top:4px;
	width:5px;
}

.mainText h5{
	clear:both;
	margin-top:15px;
	margin-bottom:10px;
	font-weight:600;
	font-size:1.2em;
	line-height:1.2;
	padding-left:1.05em;
}
.mainText h5:before{
	content:"";
    display:inline-block;
	margin-left:-1em;
	margin-right:0.33em;
	width:0.67em;
	height:0.67em;
	border:3px solid;
	border-radius:50%;
}
.mainText h6{
	clear:both;
	margin-bottom:.65em;
	font-weight:600;
	font-size:1em;
}


/*Mobile*/
@media screen and (max-width: 767px){
	.mainText h3{
		font-size:1.21428571428571em;
		padding:3px 8px 7px;
	}
	.mainText h4{
		font-size:1.14285714285714em;
		padding:0 5px 6px 16px;
	}
	.mainText h4:before{
		width:3px;
	}
	.mainText h5{
		font-size:1.07142857142857em;
	}
}
/*Desktop*/
@media screen and (min-width: 768px), print{
	.mainText{
		padding-left:20px;
	}
	.mainText h3{
		margin-left:-16px;
	}
	.mainText h4{
		margin-left:-7px;
	}
	.mainText h5{
		margin-left:0px;
	}
	
}


/*表*/
.mainText table {
	max-width:100%;
	padding: 0px;
	margin: 1em  0;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
.mainText caption {
	font-weight: 600;
	text-align: left;
	margin:5px;
}
.mainText caption:before{
	content:"";
	display:inline-block;
	margin-right:0.3em;
	width:0.75em;
	height:0.75em;
	border:3px solid;	
}
.mainText th, .mainText td {
	padding: .5em;
	vertical-align: top;
	border-color: #666;
	border-style: solid;
	border-width: 1px;
	word-break: break-word;
}
.mainText th[scope="row"] {
	text-align: left;
}
.mainText th[scope="col"] {
	text-align: center;
}
.mainText table th{
	font-weight:600;
	vertical-align:middle;
}

/*数値用*/
td.num{
	text-align:right;
}
/*改行不可*/
.nowrap {
    white-space: nowrap;
}

.mainText td ul, .mainText td ol{
	margin-top:0;
	margin-bottom:0;
}
/*reflow*/
.mainText .reflow .label{
	display:none;
}

/*Mobile*/
@media screen and (max-width: 767px){
	/*scroll*/
	.tableScroll{
		margin:1em  0 ;
		overflow: auto;
		overflow-y: hidden;
		width: 100%;
		max-width:none;
		min-height: .01%;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.tableScroll::-webkit-scrollbar{
		 height: 5px;
	}
	.tableScroll::-webkit-scrollbar-track{
		background: #e6e6e6;
	}
	.tableScroll::-webkit-scrollbar-thumb {
		background: #333;
	}

	.mainText .tableScroll table,
	.tableScroll table{
		margin:0;
		max-width:none;
	}
	.mainText .tableScroll table caption,
	.tableScroll table caption{
		text-align: left;
	}
	.tableScroll table th,
	.tableScroll table td{
		white-space: nowrap;
	}
	/*reflow*/
	.mainText table.reflow{
		display:block;
		border-collapse:separate;
		border-width:0;
	}
	.mainText .reflow caption,
	.reflow caption{
		display:block;
		text-align: left;
	}
	.mainText .reflow thead,
	.reflow thead{
		display:none;
	}
	.mainText .reflow tbody,.mainText .reflow tbody tr
	.reflow tbody, .reflow tbody tr{
		display:block;
		margin-bottom:1em;
	}
	.mainText .reflow th, .mainText .reflow td,
	.reflow th,.reflow td{
		width:auto;
		display:block;
		border-top-width:0;
	}
	.mainText .reflow tr>th:first-child,
	.mainText .reflow tr>td:first-child{
		border-top-width:1px;
	}
	.mainText .reflow tbody th{
		text-align:left;
	}
	.mainText .reflow .label{
		text-align:left;
		display:block;
		font-weight:600;
		border-bottom: 1px dotted #ccc;
		margin:0 -0.5em 0.3em;
		padding:0 0.5em 0.3em;
	}
	.reflow .nowrap {
		white-space:inherit;
	}

}
/*外部などコード埋め込み*/
.gCode{
	clear:both;
	overflow:hidden;
	margin: 20px 0;
	text-align:center;
}
.gCode iframe, .gCode object ,.gCode video {
	margin: 0 auto;
	text-align: left;
	max-width: 100%;
}
.gCode iframe {
	border: none;
}
/*clearfix*/
.gCode:after {
	content: "";
	display: block;
	clear: both;
}
/*Mobile*/
@media screen and (max-width: 767px){
	/*レスポンシブ化*/
	.RFrameWrap{
		margin:0 auto;
		position: relative;
		padding-bottom: 60%;/*縦横比 default*/
		height: 0;
		overflow: hidden;
	}
	.RFrameWrap video,
	.RFrameWrap iframe {
		margin:0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}

	/*scroll化*/
	.gCode.scroll{
		overflow: auto;
		width: 100%;
		min-height: .01%;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
	}
	.gCode.scroll iframe {
		overflow: auto;
		width: 100%;
		max-width: none;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
	}

}
/*Desktop&print*/
@media screen and (min-width: 768px), print{
	.RFrameWrap{
		padding:0  !important;
	}
}
/*リンクリスト*/
.mainText .iLink ul, .mainText ul.iLink {
	list-style-type:none;
	margin-left:0;
}
.mainText .iLink li {
	margin-bottom:5px;
}
.mainText .iLink a,
.iLink a,
a.iLink{
	display:inline-block;
	vertical-align:text-top;
	padding-left:1.5em;
}
.mainText .iLink a:before,
.iLink a:before,
a.iLink:before{
	margin-left:-1.4em;
	display:inline-block;
	margin-right:.4em;
	font-family: FontAwesome;
	content:"\f138";
	line-height:1;
	vertical-align:baseline;
	text-decoration:none;
}
 a span.nw,
.mainText a span.nw{
	display:inline-block;
	margin-left: 0.5em;
	text-decoration:none;
}
/*外部リンク*/
.mainText a span.out,
#leadBox a span.out{
	margin-left: 0.5em;
	margin-right:.2em;
	display: inline-block;
	overflow:hidden;
	position: relative;
	width: 1em;
	padding-top:1em;
	height:0;
	text-decoration:none;
	line-height:1;
    vertical-align: middle;
}
.mainText a span.out:before,
#leadBox a span.out:before{
	position:absolute;
	left:0;
	top:0;
	display:block;
	font-family: FontAwesome;
	content:"\f08e";
}

/*書類*/
.mainText .iPaper ul, .mainText ul.iPaper {
	list-style-type:none;
	margin-left:0;
}
.mainText .iPaper li {
	margin-bottom:5px;
}
.mainText .iPaper a,
a.iPaper{
	display:inline-block;
	padding-left:1.5em;
	vertical-align:text-top;
}
.mainText .iPaper a:before,
a.iPaper:before{
	margin-left:-1.4em;
	display:inline-block;
	vertical-align:baseline;
	margin-right:.4em;
	font-family: FontAwesome;
	content:"\f0f6";
	line-height:1;
	text-decoration:none;
}

.mainText a.iPaper[href$=".pdf"]:before,
.mainText .iPaper a[href$=".pdf"]:before{
	content:"\f1c1";
}
.mainText .iPaper a[href$=".doc"]:before,
.mainText a.iPaper[href$=".doc"]:before,
.mainText .iPaper a[href$=".docx"]:before,
.mainText a.iPaper[href$=".docx"]:before {
	content:"\f1c2";
}
.mainText .iPaper a[href$=".xls"]:before,
.mainText a.iPaper[href$=".xls"]:before,
.mainText .iPaper a[href$=".xlsx"]:before,
.mainText a.iPaper[href$=".xlsx"]:before {
	content:"\f1c3";
}
/*ボタン*/
.mainText .linkBtn,
.linkBtn{
	margin:20px;
	text-align:center;
}
.mainText .linkBtn a,
.linkBtn a{
	display:inline-block;
	text-decoration:none;
	line-height:1.5;
	padding:10px 1em;
	border:3px solid;
	overflow:hidden;
	position:relative;
	opacity:1 !important;
	transition: 0.4s ease-out;
	border-radius:5px;
}
.mainText .linkBtn a:before,
.linkBtn a:before{
	margin-left:0;
}
.linkBtn.iPaper a:before,
.linkBtn a.iPaper:before{
	font-size:1.5em;
}

.mainText .linkBtn a:after,
.linkBtn a:after{
	content:"";
	position:absolute;
	z-index:-1;
	display:block;
	top:0;
	bottom:0;
	left:0;
	width:0;
    transition: 0.4s ease-out;
}
.mainText .linkBtn a:hover:after,
.mainText .linkBtn a:active:after,
.mainText .linkBtn a:focus:after,
.linkBtn a:hover:after,
.linkBtn a:active:after,
.linkBtn a:focus:after{
    width: 100%;
}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	.mainText .linkBtn a,
	.linkBtn a{
		font-size:1.33333333333333em;
	}
}


/*添付画像:1枚(中央)*/
.iFigureC {
	clear: both;
	padding: 0;
	margin: 20px 0;
	text-align: center;
}
/*添付画像:複数を行別中央配置*/
.iFigure {
	clear: both;
	margin: 20px 0;
	text-align: center;
}
.iFigure ul {
	list-style-type: none;
	display: block;
	margin: 0 -8px;
	padding: 0;
}
.iFigure ul li {
	display: inline-block;
	padding:8px;
	margin-bottom: 10px;
	overflow: hidden;
	vertical-align: top;
	max-width: 100%;
}
.iFigureR,.iFigureL {
	clear: both;
	max-width: 100%;
	text-align: center;
}
/*添付画像:1枚(右)*/
.iFigureR{
	float:right;
	margin-left:20px;
}
/*添付画像:1枚(左)*/
.iFigureL{
	clear:left;
	float:left;
	margin-right:20px;
}
/*添付画像詳細*/
.iFigure li img ,
.iFigureC img,
.iFigureR img,
.iFigureL img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
/*comment*/
.mainText figcaption,
.iFigure li .caption {
	text-align:left;
	word-wrap: break-word;
	display: block;
	margin: 5px 10px;
	font-size:0.875em;
}
.mainText figcaption p,
.caption p{
	margin-bottom:0;
}
/*title*/
.mainText figcaption strong,
 .caption strong{
	display:block;
	font-weight:600;
	word-wrap: break-word;
	margin-bottom:5px;
}
.mainText .caption h6,
.caption h6{
	margin-bottom:5px;
}

/*配置*/
.txtPart.row{
	margin:10px -10px;
	clear:both;
	width : -webkit-calc(100% + 20px) ;
	width : calc(100% + 20px);
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-justify-content: space-between;
	justify-content:space-between;
}
.txtPart.row >*{
	-webkit-flex: 1 auto;
	flex: 1 auto;
	margin:10px;
}
.txtPart.row >*[style*="width"]
.txtPart.row >.iFigureR,
.txtPart.row >.iFigureL{
	flex-shrink:0;
}

/*Mobile*/
@media screen and (max-width: 767px){
	.txtPart.row:not(.mb),
	.txtPart.row:not(.mb)>*{
		display:block;
		margin:0;
	}
	.txtPart.row:not(.mb){
		width:auto;
	}
	.txtPart.row:not(.mb)>*{
		margin-bottom:10px;
	}
	.iFigureR,
	.iFigureL{
		margin-left:0;
		margin-right:0;
		margin-bottom:15px;
		float:none;
		min-width:100%;
	}
	.iFigure ul{
		margin:10px 0;
	}
	.iFigure ul li{
		min-width:100%;
		display:block;
		padding:0;
		margin:0 0 15px;
		box-sizing: border-box;
	}

}
/*clearfix*/
.iFigure ul:after,
.txtPTxt:after {
	content: "";
	display:block;
	clear: both;
}

/**トピックス**************************/
ul.topics{
	display:block;
	margin:20px 0;
	padding:0;
	list-style-type:none;
}
ul.topics li{
	display:block;
	line-height:1.5;
	border-top:1px solid #CBCBCB;
}
ul.topics li:first-child{
	border:none;
}
ul.topics li p{
	margin:0;
}
ul.topics li a{
	display:inline-block;
	text-decoration:none;
}
ul.topics li a:hover,
ul.topics li a:focus,
ul.topics li a:active{
	text-decoration:underline;
}
/*Mobile*/
@media screen and (max-width: 767px){
	ul.topics li{
		padding:8px 4px;
	}
	ul.topics li time{
		display:block;
	}

}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	ul.topics{
		margin:20px 30px;
	}
	ul.topics li{
		padding:8px 20px;
	}
	ul.topics li time{
		line-height:1.875;
		font-size:0.8em;
		float:left;
		width:8em;
		display:block;
	}
	ul.topics li p{
		display:block;
		margin-left:8em;
	}
}

/**目次**************************/
/*タイトル*/
#cTitle{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;

	text-align:center;
	background-size:cover;
	background-position: center center;
	background-repeat:no-repeat;
	background-image:url(images/title_bg0.jpg);
}
#cTitle h2{
	line-height:1.5;
	display:inline-block;
	color:#fff;
	text-shadow: 0 0 10px #000;
	background: -moz-linear-gradient(left, rgba(4,0,0,0) 0%, rgba(4,0,0,0.8) 19%, rgba(4,0,0,0.9) 49%, rgba(4,0,0,0.9) 54%, rgba(4,0,0,0.8) 85%, rgba(4,0,0,0.02) 100%);
	background: -webkit-linear-gradient(left, rgba(4,0,0,0) 0%,rgba(4,0,0,0.8) 19%,rgba(4,0,0,0.9) 49%,rgba(4,0,0,0.9) 54%,rgba(4,0,0,0.8) 85%,rgba(4,0,0,0.02) 100%);
	background: linear-gradient(to right, rgba(4,0,0,0) 0%,rgba(4,0,0,0.8) 19%,rgba(4,0,0,0.9) 49%,rgba(4,0,0,0.9) 54%,rgba(4,0,0,0.8) 85%,rgba(4,0,0,0.02) 100%);
}

.idxBox{
	margin:40px 0;
}
.idxBox ul{
	margin:0;
	padding:0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-between;
	justify-content:space-between;
}
.idxBox li{
	display:block;
	margin-bottom:40px;
}
.idxBox li a{
	display:block;
	text-decoration:none;
	opacity:1 !important;
	position:relative;
}
.idxBox .thumb {
	position: relative;
	overflow:hidden;
	padding-top:64.516129032258%;
	background:#B2B2B2;
}
.idxBox .thumb img{
	position:absolute;
	top:0;
	left:0;
	min-width:100%;
	min-height:100%;
	height:auto;
	width:auto;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition:transform ease-in .3s;
}
.idxBox a:hover .thumb img,
.idxBox a:focus .thumb img,
.idxBox a:active .thumb img{
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}
.idxBox .title {
	position:relative;
	overflow:hidden;
	line-height:1.3;
	padding:10px;
	color: #fff;
}
.idxBox .thumb +.title{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	z-index:1;
}
.idxBox .title:before,
.idxBox .title:after{
	content:"";
	position:absolute;
	top:0;
	bottom:0;
	width:100%;
	transition: linear .3s;
	z-index:-1;
}
.idxBox .title:before{
	left:-100%;
	background-color: rgba(22,45,80,0.9);
}
.idxBox .title:after{
	left:0;
	background-color: rgba(45,86,127,0.9);
}
.idxBox a:hover .title:before,
.idxBox a:focus .title:before,
.idxBox a:active .title:before{
	left:0;
}
.idxBox a:hover .title:after,
.idxBox a:focus .title:after,
.idxBox a:active .title:after{
	left:100%;
}

/*Mobile*/
@media screen and (max-width: 767px){
	.idxBox {
		font-size:1.07142857142857em;
	}
	#cTitle{
		margin:0 -10px;
		height:120px;
	}
	#cTitle h2{
		padding:10px 20px;
		min-width:74%;
		font-size:1.14285714285714em;
	}
	.idxBox li{
		-webkit-flex: 0 1 48%;
		flex: 0 1 48%;
	}
}
/*Mobile(slim)*/
@media screen and (max-width: 480px){
	.idxBox li{
		-webkit-flex: 0 1 100%;
		flex: 0 1 100%;
	}
	#cTitle h2{
		padding:10px;
	}
}

/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	#cTitle{
		position:relative;
		margin:0 -5px ; 
		height:175px;
	}
	#cTitle h2{
		max-width:1020px;
		min-width:495px;
		padding:10px 90px;
		font-size:26px;
	}
	.idxBox{
		font-size:1.06666666666667em;
	}
	.idxBox li{
		-webkit-flex: 0 1 30.4%;
		flex: 0 1 30.4%;
		max-width:310px;
	}
	.idxBox ul::after{
	  content:"";
	  display: block;
	  width:30%;
	}

}
@media screen and (min-width: 1030px), print{
	#cTitle{
		width:2000px;
		left:50%;
		margin-left:-1000px;
	}
	#cTitle h2{
		padding:10px 120px;
	}
}
/**コーナー別背景設定**/
.facility #cTitle{
	background-image:url(images/title_bg1.jpg);
}
.spr #cTitle{
	background-image:url(images/title_bg2.jpg);
}
.wa #cTitle{
	background-image:url(images/title_bg3.jpg);
}



/*サイトマップ*/
.sitemap{
	margin:40px 0;
}
.sitemap ul{
	margin:1em 0;
	padding:0;
}
.sitemap ul li{
	display:block;
}
.sitemap >ul >li>a{
	font-weight:600;
	font-size:1.3em;
}
.sitemap >ul >li>ul{
	margin:0 0 1em 1em;
	font-size:1.06666666666667em;
}
.sitemap li a{
	text-decoration:none;
	display:inline-block;
	vertical-align:text-top;
	padding-left:1.5em;
}
.sitemap li a:hover,
.sitemap li a:focus,
.sitemap li a:active{
	text-decoration:underline;
}
.sitemap li a:before{
	margin-left:-1.4em;
	display:inline-block;
	margin-right:.4em;
	font-family: FontAwesome;
	content:"\f138";
	line-height:1;
	vertical-align:baseline;
	text-decoration:none;
}
.sitemap li li a:before{
	content:"\f0da";
}
/*Mobile*/
@media screen and (max-width: 767px){
}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	.sitemap {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: row wrap;
		flex-flow: row wrap;
	}
	.sitemap >ul{
		width:50%;
		-webkit-flex: 1 auto;
		flex: 1 auto;
		margin-bottom:1em;
	}

}

/*QA***/
.qaPanel{
	margin:20px 0;
}
.qaPanel h4{
	background:none;
	border:none;
	padding:0;
	margin:0;
}
.qaPanel h4:before{
	display:none;
}
.qaPanel .toggle{
	display:block;
	position:relative;
	text-decoration:none;
	padding:0.6em 2em;
	font-weight:600;
	line-height:1.7;
	border-radius:3px;
}
.qaPanel .toggle:before,
.qaPanel .toggle:after{
	position:absolute;
	font-family: FontAwesome;
	font-size:1.2em;
	line-height: 1;
	font-weight:normal;
	vertical-align:middle;
	text-decoration:none !important;
}
.qaPanel .toggle:before{
	content:"\f059";
	left:0.5em;
	top:0.8em;
}
.qaPanel .toggle:after{
	content:'\f068';
	font-size:1.18em;
	right:0.5em;
	top:50%;
	margin-top:-0.5em;
}
.qaPanel.closed .toggle:after{
	content:'\f067';
}

.qaPanel .toggle .cntMsg{
	display:block;
	position:absolute;
	right:0;
}
.qaPanel .toggle .cntMsg>span{
	display:inline-block;
	font-size:0.7em;
	text-align:right;
}
.qaPanel.closed .toggle .cntMsg>.close,
.qaPanel .toggle .cntMsg>.open{
	display:none;
}
.qaPanel .toggle .cntMsg>.close,
.qaPanel.closed .toggle .cntMsg>.open{
	display:inline-block;
}
.qaPanel .collapse{
	display:block;
	overflow: hidden;
	height:auto;
	padding:1em 0.2em 1em 1em;
}
.qaPanel .collapse.hide{
	padding:0;
	height:0;
}


/*Mobile*/
@media screen and (max-width: 767px){
	.qaPanel h4 .toggle{
		font-size:1em;
	}
	.qaPanel h4 .toggle .cntMsg{
		position: absolute;
		width: 0;
		height: 0;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}
	
}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	.qaPanel .toggle{
		font-size:1.0625em;
		padding-right:5.4em;
	}
	.qaPanel h4 .toggle .cntMsg{
		font-size:0.7em;
		line-height:1;
		top:50%;
		margin-top:-0.7em;
		right:2.72em;
	}
	.qaPanel .collapse{
		padding-left:3em;
	}
}

/*フロアマップ*/
.floorMap{
	margin:20px 0;
	text-align:left;
}
.floorMap .floorInfo{
	list-style-type:none;
	padding:0;
	margin:10px 0;
}
.floorInfo .btn{
	max-width:100%;
	display:inline-block;
	text-decoration:none;
	line-height:1.5;
	font-weight:600;
	padding:10px 1em;
	border:2px solid;
	border-radius:5px;
	overflow:hidden;
	position:relative;
	opacity:1 !important;
	transition: 0.4s ease-out;
}
.floorInfo .btn:after{
	margin-left:0.4em;
	display:inline-block;
	font-family: FontAwesome;
	content:"\f030";
	text-decoration:none;
}
.floorInfo .btn[href^="#"]:after{
	content:"\f107";
}

.floorInfo.column{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
	margin:0 -10px;
}
.floorInfo.column >li{
	padding: 10px;
}
.floorInfo.column >li .btn{
	width:100%;
}
/*Mobile*/
@media screen and (max-width: 767px){
	.floorInfo .btn{
		width:50%;
	}
	.floorInfo.column>li{
		width:50%;
	}
}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	.floorInfo .btn{
		width:25%;
	}
	.floorInfo.column>li{
		width:25%;
	}
}

/* Magnific Popup CSS +カスタム*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #040000;
  opacity: 0.7; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
 	padding: 10px;
  text-align: left;
  z-index: 1045; }
 
.mfp-s-loading .mfp-content{
	background:none;
}


.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #eee;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #eee !important; }
    .mfp-preloader a:hover {
      color: #FFF !important; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  height: 2em;
  line-height: 2em;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
   color:inherit;
  font-style: normal;
  font-size: 12px;
 }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close.ja:before{
	display:inline-block;
	vertical-align:baseline;
	margin-right:.4em;
	font-family: FontAwesome;
	content:"\f057";
	line-height:1;
	text-decoration:none;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	text-align: right;
	margin:10px;
}
.mfp-iframe-holder .mfp-close {
	color:#fff;
}

.mfp-counter {
  position: absolute;
  top: 0;
  left: 0;
  color: #999;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding:  0;
  margin: 0 auto; }

.mfp-figure {
	padding-top:32px;
	line-height: 0; 
}

  .mfp-figure small {
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  width: 100%;
  cursor: auto;
  padding-top: 10px ; 
 }

.mfp-title {
  text-align: left;
  line-height: 1.8;
  word-wrap: break-word;
  }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }


@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; }
}
/*Mobile*/
@media screen and (max-width: 767px){
	.mfp-close {
		font-size:14px;
	}
}
/*インタビュー*/
.companyInfo{
	border: 1px solid #b9b9b9;
	border-radius: 5px;
	padding: 15px 20px 10px;
	margin: 30px 0 0 -5px;
	background-color: rgba(130,130,130,0.05);
}
.companyInfo h4{
	border: none;
	margin: 0 0 5px;
	padding: 0;
}
.companyInfo h4:before{
	display: none;
}
/****************************/

/*カスタム検索結果*/
.gsc-control-cse{
	line-height: 1.2;
	box-sizing:content-box;
}
.gsc-input-box{min-height:25px;height:auto;overflow:hidden}
input.gsc-input{padding:8px;color:#000;}

.gsc-search-button input.gsc-search-button,
.gsc-search-button input.gsc-search-button:hover,
.gsc-search-button input.gsc-search-button:focus{
	background:#396CA9;
	boder-color:#2d567f;
}
.sbhub #contents.page #main .mainText:last-child{
	margin: 0;
}
#hubIntro{
	font-size: 1.06666666667em;
	display: flex;
	justify-content: space-between;
}
#titleBox{
	width: 60.294117647%;
	position: relative;
	padding: 0;	
}
#leadBox{
	width: 36.274509803%;
	padding: 0; 
	display: flex;
	flex-direction: column;
    justify-content: space-between;
}
#hubIntro strong{
	color: #376AB2;
}
.leadTxt{
	line-height: 2.375;
	font-weight: 600;
	margin: 0;
}
#leadBox .infoBox{
	background-color: #D8E4EF;
	border-radius: 5px;
	padding: 15px 20px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#leadBox .infoBox:last-child{
	margin: 0;
	padding: 10px 20px 10px;
}
#leadBox .infoBox dt{
	background-color: #376AB2;
	color: #FFF;
	width: 5em;
	padding: 0 .5em .1em;
	text-align: center;
	
}
#leadBox .infoBox dd{
	width: calc(100% - 5em);
	padding-left: 15px;
	margin: 0 0 1em;
	line-height: 1.4;	
}
#leadBox .infoBox dd a{
	display: inline-block;
	line-height: 1.1;
	background-color: #0A7FA3;
	color: #FFF;
	padding: .2em 1em;
	border-radius: 1em;
}
#leadBox .infoBox strong{
	font-size: 1.875em;
}
#leadBox #snsLink.infoBox{
	padding: 0;
	display: block;
	background-color: transparent;
}
#leadBox #snsLink.infoBox a{
	display: block;
}
#leadBox #snsLink.infoBox a:hover,
#leadBox #snsLink.infoBox a:active,
#leadBox #snsLink.infoBox a:focus{
	filter: brightness(1.20);
	opacity: 1;
}
#leadBox #snsLink.infoBox .out::before{
	display: none;
}
#leadBox #snsLink.infoBox img{
	border-radius: 5px;
}
#calendarLink{
	margin: 2em 0 0 0;
}
#calendarLink a{
	background-color: #F5F29B;
	font-size: 1.5em;
    font-weight: 600;
	color: #333;
	padding: .5em 1.5em;
	display: inline-block;
	border-radius: 3em;
	box-shadow: 0 1px 1px rgba(0,0,0,.2);
	transition: filter .3s;
}
#calendarLink a:hover{
	filter: brightness(1.03);
}
#calendarLink a::before{
	content: "";
	display: inline-block;
	width: 36px;
	height: 36px;
	vertical-align: bottom;
	margin-bottom: .16em;
	margin-right: .5em;
	
background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJpY29uIGljb24tdGFibGVyIGljb24tdGFibGVyLWNhbGVuZGFyLWNoZWNrIiB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZT0iIzU5N2U4ZCIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj4KICA8cGF0aCBzdHJva2U9Im5vbmUiIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4KICA8cGF0aCBkPSJNMTEuNSAyMWgtNS41YTIgMiAwIDAgMSAtMiAtMnYtMTJhMiAyIDAgMCAxIDIgLTJoMTJhMiAyIDAgMCAxIDIgMnY2IiAvPgogIDxwYXRoIGQ9Ik0xNiAzdjQiIC8+CiAgPHBhdGggZD0iTTggM3Y0IiAvPgogIDxwYXRoIGQ9Ik00IDExaDE2IiAvPgogIDxwYXRoIGQ9Ik0xNSAxOWwyIDJsNCAtNCIgLz4KPC9zdmc+');
}
#usage{
	background-color: #EDF4F9;
	margin: 40px calc(50% - 50vw);
  width: 100vw;
	padding: 40px 0px 0;	
}
#usage .container{
	background-image: url("images/i1_2.png");
	background-position: right top;
	background-repeat: no-repeat;
	padding-bottom: 60px;
}
#usage p{
	font-size: 1.06666666667em;
}
#usage ul{
	background-color: #D5EAEF;
	padding: 15px 15px 10px;
	margin: 10px;
	list-style: none;
	border-radius: 5px;
}
#usage ul li{
	padding-left: 20px;
	line-height: 1.5;
	margin-bottom: .5em;
}
#usage ul li::before{
	content: "";
	display: inline-block;
	background-image:url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHN0eWxlPSJvdmVyZmxvdzp2aXNpYmxlO2VuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjAgMjA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPiAuc3Qwe2ZpbGw6bm9uZTt9IC5zdDF7ZmlsbDpub25lO3N0cm9rZTojMzc2QUIyO3N0cm9rZS13aWR0aDoxLjY2Njc7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjMuMzMzMzt9PC9zdHlsZT48ZGVmcz48L2RlZnM+PGc+IDxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0wLDBoMjB2MjBIMFYweiIvPiA8cG9seWxpbmUgY2xhc3M9InN0MSIgcG9pbnRzPSI3LjUsOS4yIDEwLDExLjcgMTYuNyw1ICIvPiA8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTYuNywxMHY1YzAsMC45LTAuNywxLjctMS43LDEuN0g1Yy0wLjksMC0xLjctMC43LTEuNy0xLjdWNWMwLTAuOSwwLjctMS43LDEuNy0xLjdoNy41Ii8+PC9nPjwvc3ZnPg=="); 
	width: 20px;
	height: 20px;
	vertical-align: bottom;
	margin:0 .3em .1em -24px;
}
.sbhub #contents .container{
	padding: 0 10px 50px;
}
.sbhub h3{
	background-color:transparent !important;
	border: none;
	text-align: center;
	margin: 0;
}
.sbhub h4{
	border: none;
}
.sbhub .mainText h4:before{
	display: none;
}
.sbhub .hub{
	color: #376AB2;
}
#cworking{
	font-size: 1.5em;
	background-color: #376AB2;
	color: #FFF;
	display: inline-block;
	padding: .5em 1em;
}
#uevent{
	color: #376AB2;
	padding: 0;
}
#usageTxt{
	width: 51.960784313%;
}
.hubBtn{
	text-align: center;
}
.hubBtn a{
	background-color: #0A7FA3;
	color: #FFF !important;
	display: inline-block;
	padding: .8em 2em;
	border-radius: 2em;
	margin: 1em auto!important;
}
.hubBtn a::after{
	content: "";
	display: inline-block;
}
.fmbnrLink{
	margin: 10px !important;
	border-radius: 5px;
	overflow: hidden;
}
.mainText .hubBtn a span.out:before{
	display: none;
}
.mainText .hubBtn a span.out{
	height: 0;
	width: 0;
	overflow: hidden;
}
.hubBtn a.link::after{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #ffffff;
	margin-left: .5em;
}
.hubBtn small{
	font-size: 0.875em;
}
.hubBtn.floormap a{
	background-color: aqua;
}
#hubContact{
	background-color: #EDF4F9;
	margin:40px calc(50% - 50vw) 0;
  width: 100vw;
	padding: 40px 0px 0;	
}
#contactForm{
	padding: 20px;
	border-radius: 5px;
	background-color: #FFF;
	text-align: center;
}
#hubAddress{
	text-align: center;
	margin-top: 3em;
}
#hubAddress span{
	display: inline-block;
}
/*Mobile*/
@media screen and (max-width: 767px){
	#hubIntro{
		flex-direction: column;
	}
	#tbTxt{
		width: 50%;
	}
	#titleBox,#leadBox,#usageTxt{
		width: 100%;
	}
	#usage .container{
		background-position: bottom center;
		background-image: url("images/i2.png");
		
	}
	#usage{
		    padding: 40px 10px 0;
	}
	.sbhub #contents #usage .container{
		padding-bottom: 25%;
		background-size: 100%;
	}
}