@charset "UTF-8";
/****************************************************
* base 00基本スタイル *
*****************************************************/
/*! 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;
	-webkit-transition-duration: 0.3s;
	        transition-duration: 0.3s;
	-webkit-transition-property: color, background, opacity, -webkit-box-shadow, -webkit-transform, -webkit-text-decoration;
	transition-property: color, background, opacity, -webkit-box-shadow, -webkit-transform, -webkit-text-decoration;
	transition-property: color, background, box-shadow, opacity, transform, text-decoration;
	transition-property: color, background, box-shadow, opacity, transform, text-decoration, -webkit-box-shadow, -webkit-transform, -webkit-text-decoration;
}
a[href]:link {
	color: #000;
}

a[href]:visited {
	color: #521a8e;
}

a[href]:hover, a[href]:focus, a[href]:active {
	color: #003971;
	text-decoration: underline;
}

/*外部リンク*/
a span.out {
	margin-left: 0.5em;
	margin-right: 0.2em;
	display: inline-block;
	overflow: hidden;
	position: relative;
	width: 1em;
	padding-top: 1em;
	height: 0;
	text-decoration: none;
	line-height: 1;
	vertical-align: middle;
}

a span.out::before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	font-family: FontAwesome;
	content: "\f08e";
}

/*Mobile*/
@media screen and (max-width: 767px) {
	.touchevents a span.out {
		line-height: 1.2;
	}
}
/*見出し*/
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	color: inherit;
	font-weight: 600;
}

/*強調*/
b, strong {
	font-weight: 600;
}

em {
	font-size: 100%;
	text-decoration: none;
	font-style: normal;
	color: #c00;
}

/*画像など*/
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;
}

/*読み上げ用隠し*/
.up_link,
.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;
}

.row .half {
	width: 50%;
}

.row .quote {
	width: 25%;
}

.row.trisect > *,
.row .one-third {
	width: 33.3333333333%;
}

.row.trisect .double,
.row .two-third {
	width: 66.6666666667%;
}

/*Mobile*/
@media screen and (max-width: 767px) {
	.row,
.row:not(.mb) .cell {
		display: block;
		width: auto;
	}
	.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;
	}
	.row.mb .mb_href {
		width: 50%;
	}
}
/*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;
	}
}
/*ナビゲーション*/
nav ul, nav li,
ul.nav, .nav ul, .nav li {
	margin: 0;
	padding: 0;
	display: block;
	list-style: none;
}

/*サムネイル*/
.thumb {
	display: block;
	overflow: hidden;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	background: #bdc7d6;
}

/*比率高さ支え棒*/
.thumb::before {
	content: "";
	display: block;
	position: relative;
	width: 1px;
	z-index: -1;
	height: 0;
	padding-top: 56.25%;
}

.thumb img {
	position: absolute;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit:cover";
	width: 100%;
	height: 100%;
	min-height: 0;
	min-width: 0;
	top: 0;
	left: 0;
}


.prErr{
  display:none;
}

 
/*ページ種別*******************************************************/
/*サイト・ホーム(トップページ)*/
body#homePage{}

/*一般コンテンツ*/
body#contentPage{}
/*構造 レイアウト*******************************************************/
body {
	color: #333;
	background: #fff;
	font-size: 100%;
	font-family: YakuHanMP, "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	-webkit-font-feature-settings: "pkna";
	        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;
}
body:not(#homePage) {
	background: #dae2ea;
}

.container {
	position: relative;
	display: block;
}
#wrapper {
	overflow: hidden;
}
/*Mobile*/
@media screen and (max-width: 767px) {
	.container {
		margin: 0 12px;
	}
}
/*Desktop*/
@media screen and (min-width: 768px), print {
	.container {
		margin: 0 auto;
		padding: 0 20px;
		max-width: 1200px;
	}
	/*フッター下付*/
	html { 
		height: 100%; 
	} 
	body { 
		min-height: 100vh; 
	 	display: -webkit-box; 
	 	display: -ms-flexbox; 
	 	display: flex; 
		-webkit-box-orient: vertical; 
		-webkit-box-direction: normal; 
		    -ms-flex-direction: column; 
		        flex-direction: column; 
	}
	#wrapper {
		 -webkit-box-flex: 1;
		     -ms-flex-positive: 1;
		         flex-grow: 1;
	}
}
@media print {
/*印刷時*/
	body{
		min-height: 0;
		width: 1200px;
	}
}

/*ヘッダー詳細*******************************************************/


/*ロゴ*/
.logo{
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	background-size: contain;
	background-position: left center;
	max-width: 100%;
	height: 0;
}
.logo:hover, .logo:focus, .logo:active {
	opacity: 0.8;
}

#pageHead {
	width: 100%;
	z-index: 100;
	background-color: #fff;
}

#pageHead #menuLink.container{
	position: relative;
}
#pageHead .siteTitle{
	display: inline-block;
	margin: 10px 0;
	font-size: 1.25em;
}
#pageHead .siteTitle a{
	display: block;
	vertical-align: top;
}
#pageHead .logo {
	width: 243px;
	padding-top: 55px;
	background-image:url(../c1hp7h000000004n-img/c1hp7h000000006f.svg);
}

/*ロゴ無し*/
#pageHead .siteTitle a span{
	width: 12.5em;
	color: #071e4c;
	display: inline-block;
}

/*ナビ*/
#headNav{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#menu > ul {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#menu > ul > li > a {
	color: #333;
	padding: 32px 19px 28px;
	min-height: 1.5em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-decoration: none;
	position: relative;
}
#menu > ul > li:last-child a {
	padding-right: 10px;
}

#menu > ul > li > a > span {
	display: block;
	font-weight: 700;
	font-size: 1.125em;
}

#menu > ul > li > a::after {
	content: "";
	display: inline-block;
	background-color: #071e4c;
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
#menu > ul > li > a:hover::after, #menu > ul > li > a:focus::after, #menu > ul > li > a:active::after {
	opacity: 1;
}


/*Mobile*/
@media screen and (max-width: 767px){
	#pageHead {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding-bottom: 9px;
	}
	#pageHead .siteTitle {
		padding: 0;
		margin: 13px auto 10px;
		text-align: center;
		width: 100%;
	}
	#pageHead .siteTitle .logo {
		width: 243px;
		padding-top: 55px;
		margin: auto;

		background-image:url(../c1hp7h000000004n-img/c1hp7h000000007y.svg);

	}
	#pageHead #menuLink.container {
		padding: 0;
		margin: 0;
	}
	#headNav {
		display: block;
		margin: 0;
		padding: 0 0 5px;
	}
	#menu {
		font-size: 0.875em;
		max-width: 100%;
		padding: 0 5px;
		overflow: hidden;
		overflow-x: auto;
	}
	#menu > ul {
		width: 100%;
		display: inline-table;
	}
	#menu > ul > li {
		padding: 0 5px;
		display: table-cell;
	}
	#menu > ul > li > a {
		display: block;
		padding: 0 0.2em;
		font-size: 0.8571428em;
	}
	#menu > ul > li > a > span {
		line-height: 1.5;
	}
}
@media screen and (max-width: 479px) {
	#headNav {
		display: block;
	}
	#menu > ul {
		margin: 0;
	}
	#menu > ul > li {
		text-align: center;
	}
	#menu > ul > li > a > span {
		display: inline-block;
		vertical-align: middle;
		white-space: nowrap;
	}
	#menu > ul > li > a::after {
		vertical-align: middle;
	}
}
/*Desktop & Print*/
@media screen and (min-width: 768px), print {
	#pageHead {
		font-size: 1.6vw;
		position: fixed;
	}
	#pageHead .container {
		width: calc(100% - 20px);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	#pageHead #menuLink.container {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 0 20px;
		margin: auto;
	}
	#menu > ul > li .panel {
		left: auto;
		right: 0;
	}
	#menu > ul > li:first-child .panel {
		left: -13px;
		right: auto;
	}
	#search {
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
	}
}
@media screen and (min-width: 1000px) {
	#pageHead {
		font-size: 1em;
	}
}

/*フッター詳細*******************************************************/
#pageFoot {
	clear: both;
	background-color: #112f6d;
	color: #FFF;
}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	#pageFoot{
		font-size: 1.6vw;
	}
	
}
@media screen and (min-width: 1000px){
	#pageFoot{
		font-size: 1em;
	}
}
/*Mobile*/
@media screen and (max-width: 767px) {
	#pageFoot {
		border-top: 1px solid #fff;
		padding: 20px 0 8px;
	}
}
/*上へ*/
#upLink {
	position: fixed;
	z-index: 10;
	right: 20px;
	bottom: 5px;
	-webkit-transition: ease-in 0.3s;
	transition: ease-in 0.3s;
}

#upLink a {
	position: relative;
	display: block;
	opacity: 0.8;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
}

#upLink a::before,
#upLink a::after {
	content: "";
	display: block;
}

#upLink a::before {
	width: 45px;
	margin: 0 auto;
	height: 37px;
	background: #000;
	border-radius: 5px;
	border: 1px solid #FFF;
}

#upLink a::after {
	position: absolute;
	width: 18px;
	height: 18px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	-webkit-transform: rotate(-45deg) skew(2deg, 2deg);
	transform: rotate(-45deg) skew(2deg, 2deg);
	left: 50%;
	margin-left: -9px;
	top: 14px;
}

#upLink a span {
	display: block;
	width: 80px;
	margin: 5px 0;
	font-size: 10px;
	font-weight: 600;
	line-height: 2;
	color: #000;
	text-shadow: -1px -1px 3px #fff, 1px -1px 3px #fff, -1px 1px 3px #fff, 1px 1px 3px #fff, -1px -1px 2px #fff, 1px -1px 2px #fff, -1px 1px 2px #fff, 1px 1px 2px #fff;
}

#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: 15px;
		bottom: 20px;
	}
	#upLink a::before {
		bottom: 35px;
	}
	#upLink a span {
		position: absolute;
		visibility: hidden;
	}
}
@media print {
	#upLink {
		display: none;
	}
}


/*発信元*/
.office{
	margin: 1em 0;
	padding: 0;
}
.office li{
	list-style-type: none;
}


#fOffice {
	padding: 7px 13px 4px;
}

#fOffice h2 {
	font-size: 0.875em;
}
#fOffice .logo {
	width: 141px;
	padding-top: 37px;
	background-image: url("../c1hp7h000000004n-img/c1hp7h000000006j.png");
}

#fOffice a {
	color: #fff;
}

#fOffice > * {
	display: inline-block;
	vertical-align: middle;
}

#copyright{
	display: block;
	font-size: 0.875em;
}

/*Desktop & Print*/
@media screen and (min-width: 768px), print {
	#fOffice > * {
		margin-right: 10px;
	}
	
	#pageFoot > .container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	#fOffice li {
		display: inline-block;
		margin-right: 1em;
	}
	#copyright {
		margin: 10px 0;
	}
}
/*Mobile*/
@media screen and (max-width: 767px) {
	#fOffice {
		text-align: center;
	}
	#fOffice > * {
		margin-right: 0;
		display: block;
	}
	#fOffice p {
		margin: 15px 0 0 0;
		font-size: 0.9375em;
	}

	#fOffice .office {
		font-size: 0.75em;
	}
	#copyright {
		padding: 14px 0 10px;
		text-align: center;
		font-size: 0.75em;
	}
}
@media screen and (max-width: 479px) {
	#copyright {
		text-align: center;
	}
}

/*コンテンツ部*******************************************************/
#contents {
	z-index: 1;
}

#contents > .container #main {
	font-size: 0.9375em;
	line-height: 2;
	background-color: #FFF;
	padding: 20px 56px;
	margin-bottom: 35px;
}
/*Mobile*/
@media screen and (max-width: 767px){
	#contents{
		font-size: 0.938em;
	}
	#main, #side {
		margin-bottom: 20px;
	}
	#contents > .container #main {
		font-size: 0.8571428571em;
		padding: 12px 10px;
	}
}
/*Desktop*/
@media screen and (min-width: 768px), print {
	#contents {
		padding-top: 92px;
	}
}
/*Desktop*/
@media screen and (min-width: 840px), print {
	#contents>.container.columns{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	#contents > .container.columns #main {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		max-width: 100%;
	}
	#contents > .container.columns #main.onSide {
		max-width: calc(100% - 340px);
	}
	#contents > .container.columns #side {
		width: 290px;
		margin-left: 50px;
	}
}
/*コンテンツヘッダー*******************************************************/
#contentHead {
	margin-bottom: 8px;
}

#contentHead h1.pageTitle,
#contentHead .cTitle {
	position: relative;
	margin-top: 34px;
}
#contentHead .cTitle .container {
	display: block;
}
#contentHead h1.pageTitle,
#contentHead .cTitle h1 {
	font-weight: 600;
	font-size: 1.875em;
	position: relative;
	height: auto;
	display: inline-block;
}


#contentHead.wideMenu {
	margin-bottom: 67px;
}
#contentHead.wideMenu .cTitle {
	position: relative;
}
#contentHead.wideMenu .cTitle .container {
	display: block;
}
#contentHead.wideMenu .cTitle h1 {
	height: auto;
	display: inline-block;
	padding-top: 41px;
	margin-bottom: 50px;
	font-size: 3.125em;
	color: #fff;
}
#contentHead.wideMenu .cTitle h1::before {
	content: "";
	display: block;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIyIiBoZWlnaHQ9IjIyIiB2aWV3Qm94PSIwIDAgMjIgMjIiPjxkZWZzPjxzdHlsZT4uZHtmaWxsOiNmZmY7fS5le2ZpbGw6IzZkMmRhYTt9PC9zdHlsZT48L2RlZnM+PGcgaWQ9ImEiLz48ZyBpZD0iYiI+PGcgaWQ9ImMiPjxnPjxnPjxyZWN0IGNsYXNzPSJlIiB4PSI2IiB5PSI2IiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiLz48cmVjdCBjbGFzcz0iZSIgd2lkdGg9IjEyIiBoZWlnaHQ9IjEyIi8+PC9nPjxyZWN0IGNsYXNzPSJkIiB4PSI2IiB5PSI2IiB3aWR0aD0iNiIgaGVpZ2h0PSI2Ii8+PC9nPjwvZz48L2c+PC9zdmc+");
	width: 22px;
	height: 22px;
	left: -28px;
	top: 43px;
	position: absolute;
}
#contentHead.wideMenu .cTitle h1::after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: -48px;
	right: -120px;
	width: 100vw;
	background-color: #071e4c;
	mix-blend-mode: multiply;
}
#contentHead.wideMenu .cTitle .en,
#contentHead.wideMenu .cTitle .s {
	display: block;
	font-size: 0.36em;
	text-align: left;
	padding-top: 5px;
	padding-left: 6px;
	line-height: 1;
}
#contentHead.wideMenu .cTitle .summary {
	font-size: 0.9375em;
	line-height: 2.1333;
}
#contentHead.wideMenu .cTitle .pict {
	width: 69.6428%;
	height: 390px;
	z-index: -5;
	left: auto;
	right: 0;
	bottom: 0;
}
#contentHead.wideMenu .cTitle .pict::before {
	content: "";
	display: block;
	top: 0;
	bottom: 0;
	width: 100vw;
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 69.6428%;

}

#contentHead.wideMenu .cTitle.message .pict::before, 
#contentHead.wideMenu .cTitle.c1hp7h00000000o3 .pict::before {
	background-image: url("../message/c1hp7h00000000o3-img/c1hp7h00000000ob.jpg");
}


#contentHead.wideMenu .cTitle.greeting .pict::before, 
#contentHead.wideMenu .cTitle.c1hp7h00000000fk .pict::before {
	background-image: url("../greeting/c1hp7h00000000fk-img/c1hp7h00000000fs1.jpg");
}


#contentHead.wideMenu .cTitle.profile .pict::before, 
#contentHead.wideMenu .cTitle.c1hp7h00000000cw .pict::before {
	background-image: url("../profile/c1hp7h00000000cw-img/c1hp7h00000000d41.jpg");
}



#contentHead.pictMenu {
	margin-bottom: 21px;
}
#contentHead.pictMenu .cTitle .text {
	position: relative;
	color: #fff;
	background-image: url("../css/rbg.jpg");
	background-position: center center;
	background-size: cover;
	text-align: center;
	line-height: 1;
	padding: 28px 29px 10px;
}
#contentHead.pictMenu .cTitle .text::before {
	content: "";
	display: inline-block;
	width: auto;
	height: 80px;
	max-height: 7vw;
	position: absolute;
	left: 12px; right: 10px;
	bottom: 22px;
	background-position: center bottom;
	background-size: contain;
	background-repeat: no-repeat;

	background-image: url("../message/c1hp7h00000000o3-img/sign.png");

}
#contentHead.pictMenu .cTitle .text h1 {
	font-size: 1.875em;
	border-bottom: 1px solid #fff;
	padding: 0 0 14px;
	display: block;
	width: 100%;
}
#contentHead.pictMenu .cTitle .text h1 .year {
	font-size: 1.333em;
}
#contentHead.pictMenu .cTitle .text .subTitle {
	font-size: 2.1875em;
	display: block;
	margin-top: 15px;
	letter-spacing: 0.025em;
}
#contentHead.pictMenu .cTitle .text .subTitle .num {
	font-size: 1.8em;
}
#contentHead.pictMenu .cTitle .text .subTitle .public {
	font-size: 0.571em;
	padding: 0 11px 0;
}
#contentHead.pictMenu .cTitle .pict {
	display: inline-block;
	height: 290px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;

	background-image: url("../message/c1hp7h00000000o3-img/c1hp7h00000000pb.jpg");

}
/*Mobile*/
@media screen and (max-width: 767px) {
	#contentHead {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
	  -ms-flex-direction: column;
	  flex-direction: column;
	}
	#contentHead h1.pageTitle,
	#contentHead .cTitle {
		margin-top: 10px;
	}
	#contentHead h1.pageTitle,
	#contentHead .cTitle h1 {
		font-size: 1.25em;
	}

	#contentHead.wideMenu {
		margin-bottom: 20px;
	}
	#contentHead.wideMenu .cTitle {
		margin-top: 0;
	}
	#contentHead.wideMenu .cTitle .container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	#contentHead.wideMenu .cTitle h1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		margin-bottom: 0;
		font-size: 2em;
		padding-top: 37px;
		padding-left: 6px;
	}
	#contentHead.wideMenu .cTitle h1::before {
		top: 11px;
		left: 4px;
	}
	#contentHead.wideMenu .cTitle h1::after {
		bottom: -20px;
		right: 0;
		left: auto;
	}
	#contentHead.wideMenu .cTitle h1 .en, #contentHead.wideMenu .cTitle h1 .s {
		font-size: 0.6em;
	}
	#contentHead.wideMenu .cTitle .pict {
		width: 100vw;
		height: 138px;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		margin-top: 13px;
	}
	#contentHead.wideMenu .cTitle .pict::before {
		height: inherit;
		width: 100%;
		background-size: 100%;
		background-position: center top;
	}
	#contentHead.wideMenu .cTitle .summary {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		margin: 20px 0 8px;
		font-size: 1em;
	}
	#contentHead.pictMenu .cTitle {
		margin-top: 0;
	}
	#contentHead.pictMenu .cTitle .text {
		padding: 28px 10px 86px;
	}
	#contentHead.pictMenu .cTitle .text::before {
		left:10px; right: 10px;
		bottom: 15px;
		max-height: 60px;
	}
	#contentHead.pictMenu .cTitle .text h1 {
		font-size: 1.2em;
		padding: 0 0 12px;
	}
	#contentHead.pictMenu .cTitle .text h1 .year {
		display: block;
		margin-top: 8px;
	}
	#contentHead.pictMenu .cTitle .text .subTitle {
		font-size: 1.4em;
		margin-top: 10px;
	}
	#contentHead.pictMenu .cTitle .text .subTitle .public {
		display: block;
		margin-top: 10px;
	}
	#contentHead.pictMenu .cTitle .pict {
		width: 100%;
		height: 138px;
	}
}
/*Desktop & Print*/
@media screen and (min-width: 768px), print {

	#contentHead.wideMenu .cTitle {
		margin-top: 11px;
	}
	#contentHead.wideMenu .cTitle h1 {
		max-width: 392px;
	}
	#contentHead.wideMenu .cTitle .container {
		height: 424px;
	}
	#contentHead.wideMenu .cTitle .pict {
		position: absolute;
		width: 73.534%;
		height: 390px;
		left: auto;
		right: 0;
		bottom: 0;
	}
	#contentHead.wideMenu .cTitle .pict::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		background-position: bottom left;
		background-repeat: no-repeat;
		background-size: 73.534%;
	}
	#contentHead.wideMenu .cTitle .summary {
		width: 22.3333%;
		margin: 29px 0;
	}
	#contentHead.pictMenu .cTitle .container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	#contentHead.pictMenu .cTitle .text {
		width: 498px;
		height: 290px;
	}
	#contentHead.pictMenu .cTitle .pict {
		width: 665px;
	}
}
/*タブレットサイズ*/
@media screen and (min-width: 768px) and (max-width: 1000px){
	#contentHead.pictMenu .cTitle .text::before {
		bottom: 14px;
	}
}

/*バンクズ*******************************************************/
.breadcrumbs {
	overflow: hidden;
	text-align: left;
	clear: both;
	font-size: 0.875em;
	margin-top: 5px;
	margin-bottom: 5px;
}

.breadcrumbs ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.breadcrumbs li,
.breadcrumbs li a,
.breadcrumbs li span {
	display: inline-block;
	vertical-align: middle;
}

.breadcrumbs li::after {
	display: inline-block;
	font-size: 1em;
	margin-left: 0.5em;
	margin-right: 0.2em;
/*	content: ">";*/
	content:"\03e";
	line-height: 1.2;
	vertical-align: middle;
}

.breadcrumbs li:last-child::after {
	display: none;
	content: "";
}

/*サイド*******************************************************/
#side ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
#side .cMenu{
	line-height: 1.5;
	margin-bottom: 25px;
	border: 1px solid #ccc;
	background-color: #FFF;
}
#side .cMenu h2,#side .cMenu h3{
	padding: 6px;
	font-size: 1.25em;
	background: #f2f2f2;
	border-bottom: 2px solid #071e4c;
}
#side .cMenu ul li{
	display: block;
}
#side .cMenu ul li+li{
	border-top: 1px solid #BFBFBF;
}
#side .cMenu ul li a{
	position: relative;
	display: block;
	padding: 10px ;
}
#side .cMenu ul li a.current{
	font-weight: 600;
	color: #00478e;
	background: rgba(0,71,142,0.10);
}

/*記事タイトル*/
#main h1.pageTitle{
	display:block;
	margin:0 0 20px;
	padding:10px 8px ;
	text-align:left;
	line-height:1.5;
	font-size:1.4em;
	font-weight:normal;
	color:#FFF;
	background-color:#272068;
}
#contents >.container #main h1.pageTitle{
	margin-top: -5px;
	margin-left: -36px;
	margin-right: -36px;
}
/*ページ内目次*/
#indexInter {
	overflow: hidden;
	padding: 13px 15px 10px;
	margin: 6px 0 36px;
	border: 1px solid #cccccc;
	line-height: 1.75;
	letter-spacing: 0.05em;
}

#indexInter h2 {
	display: block;
	margin: 0;
	font-size: 1em;
	font-weight: 700;
}

#indexInter ul {
	display: block;
	margin: 0;
	padding: 0;
}

#indexInter ul li {
	display: inline-block;
	margin-right: 0.267em;
}

#indexInter ul li a {
	color: #000;
}

#indexInter ul li:after {
	display: inline-block;
	font-size: 1.2em;
	margin-left: 0.267em;
	margin-right: 0.4em;
	color: #071e4c;
	font-family: FontAwesome;
	content: "\f107";
	line-height: 1;
	vertical-align: middle;
}

/*Mobile*/
@media screen and (max-width: 767px) {
	#main h1.pageTitle {
		margin-left: -10px;
		margin-right: -10px;
		font-size: 1.24em;
	}
	#contents > .container #main h1.pageTitle {
		margin-top: -10px;
		margin-left: -8px;
		margin-right: -8px;
	}
	#indexInter {
		padding: 3px 10px 5px;
	}
}
/*Desktop&print*/
@media screen and (min-width: 768px), print {
	#indexInter {
		min-height: 1.5em;
		position: relative;
		padding-left: 10.467em;
	}
	#indexInter h2 {
		position: absolute;
		left: 15px;
		top: 13px;
	}
}
#indexInter.speech {
	margin: -1px;
	padding: 0;
	border: 0;
	min-height: 0;
}

/*コンテンツ・フッター*/
#contentFoot {
	margin-top: 1em;
	padding: 10px;
	border-top: 1px solid #ccc;
}
#contentFoot p {
	margin: 0 0 0.5em;
}
/*更新日*/
.lastDate{
	text-align: right;
}


/**本文パーツ**************************/
.about p,
.mainText p, .txtPart{
	margin:0 0 1em;
}
/*リスト*/
.mainText ul, .mainText ol{
	padding:0;
	margin:1em 1em 1em 2em;
}
.mainText li ol, .mainText li ul{
	margin-top: 0;
	margin-bottom: 0.2em;
}
.mainText >.section,
.mainText section{
	clear: both;
	margin-bottom:40px;
}

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



.mainText h2 {
	position: relative;
	clear: both;
	margin-top: 20px;
	margin-bottom: 15px;
	border-bottom: 3px solid #bdc7d6;
	font-size: 1.5em;
	padding: 10px 16px 5px 0;
	line-height: 1.5;
	color: #000;
	letter-spacing: 0.025em;
}

.mainText h2::after {
	content: "";
	display: block;
	height: 3px;
	width: 270px;
	background-color: #071e4c;
	position: absolute;
	left: 0;
	bottom: -3px;
}

.mainText h3 {
	position: relative;
	clear: both;
	margin-top: 25px;
	margin-bottom: 10px;
	font-size: 1.4em;
	line-height: 1.5;
	padding: 6px 4px 8px 10px;
	color: #000;
	background-color: #f3f3f3;
	border-left: 3px solid #071e4c;
}

.mainText h4 {
	clear: both;
	margin-top: 24px;
	margin-bottom: 10px;
	font-size: 1.2em;
	line-height: 1.5;
	color: #1e1e1e;
	padding-top: 3px;
	padding-left: 0.4em;
	padding-bottom: 0.2em;
	border-left: 3px solid #afbac0;
	border-bottom: 1px solid #afbac0;
	font-family: "Noto Sans JP", sans-serif;
}

.mainText h5 {
	clear: both;
	color: #000;
	margin-bottom: 1em;
	font-size: 1em;
}

/*Desktop&print*/
@media screen and (min-width: 768px), print {
	.mainText {
		padding-left: 34px;
	}
	.mainText h2 {
		margin-left: -34px;
	}
	.mainText h3 {
		margin-left: -34px;
	}
	.mainText h4 {
		margin-left: -24px;
	}
}
/*Mobile*/
@media screen and (max-width: 767px) {
	.mainText h2 {
		font-size: 1.5em;
		margin-left: -8px;
		margin-right: -8px;
	}
	.mainText h2::after {
		width: 120px;
	}
	.mainText h3 {
		font-size: 1.3333333333em;
		margin-left: -5px;
		margin-right: -5px;
	}
	.mainText h4 {
		font-size: 1.1666666667em;
	}
}

.mainText .speech{
	padding: 0;
	position: absolute !important;
}
.mainText .speech::before,
.mainText .speech::after{
	display: none !important;
}
.mainText strong{
	color: #000;
}



/*表*/
.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;
	color: #000;
}
.mainText th, .mainText td {
	padding: 0.5em;
	vertical-align: top;
	border-color: #b7b7b7;
	border-style: solid;
	border-width: 1px;
	word-break: break-word;
	line-height: 1.3125;
	color: #333333;
}
.mainText table th {
	font-weight: 600;
	vertical-align: middle;
	background: #e6e6f4;
}
.mainText th[scope="row"],
.mainText table tbody th{
	text-align: left;
}
.mainText th[scope="col"] {
	text-align: center;
}


/*数値用*/
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: 0.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;
	}
}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	.mainText .dataList th[scope="row"]{
		width: 20%;
	}
}

/*外部などコード埋め込み*/
.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;
	}
	.gCode.scroll iframe {
		overflow: auto;
		width: 100%;
		max-width: none;
		-webkit-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 a,
.iLink a,
a.iLink{
	display:inline-block;
	vertical-align:text-top;
	text-decoration: none;
	padding-left:1.5em;
	line-height: 1.75;
}
a.iLink:hover .title,
a.iLink:active .title,
a.iLink:focus .title,
.iLink a:hover .title,
.iLink a:active .title,
.iLink a:focus .title{
	text-decoration: underline;
}
.mainText .iLink a::before,
.iLink a::before,
a.iLink::before {
	content: "";
	margin-left: -1.3em;
	margin-right: 0.3em;
	width: 1.067em;
	height: 1.067em;
	vertical-align: middle;
	display: inline-block;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiB2aWV3Qm94PSIwIDAgMTYgMTYiPjxkZWZzPjxzdHlsZT4uZHtmaWxsOm5vbmU7c3Ryb2tlOiNmZmY7c3Ryb2tlLW1pdGVybGltaXQ6MTA7fS5le2ZpbGw6IzA3MWU0YzttaXgtYmxlbmQtbW9kZTptdWx0aXBseTt9LmZ7aXNvbGF0aW9uOmlzb2xhdGU7fTwvc3R5bGU+PC9kZWZzPjxnIGNsYXNzPSJmIj48ZyBpZD0iYSIvPjxnIGlkPSJiIj48ZyBpZD0iYyI+PGc+PGNpcmNsZSBjbGFzcz0iZSIgY3g9IjgiIGN5PSI4IiByPSI4Ii8+PHBvbHlsaW5lIGNsYXNzPSJkIiBwb2ludHM9IjcuNTMgNC41MyAxMC43NSA3Ljc1IDcuNTMgMTAuOTciLz48L2c+PC9nPjwvZz48L2c+PC9zdmc+");
}
 a span.nw,
.mainText a span.nw{
	display:inline-block;
	margin-left: 0.5em;
	font-size: 0.75em;
	text-decoration:none;
}
.iLink span.nw,
.iLink .out{
	color: #1e3693;
}
@media print{
	/*印刷*/
	.iLink li a.outside:after{
	   content: " (" attr(href) ") ";  
	   font-size: 0.8em;
	   display:block;
	}
}


/*ボタン*/
.linkBtn{
	margin:20px 0;
	text-align:center;
}
.mainText ul.linkBtn,
ul.linkBtn{
	margin:20px 0;
	list-style: none;
}
ul.linkBtn li{
	display:inline-block;
	margin: 3px 0.5em;
}
.linkBtn a {
	position: relative;
	display: inline-block;
	line-height: 1.5;
	padding: 10px 12px 10px 15px;
	margin: 5px;
	text-decoration: none !important;
	color: #FFF !important;
	background-color: #071e4c;
	overflow: hidden;
	text-align: left;
	font-size: 0.875em;
}

.linkBtn a::after {
	content: "";
	display: inline-block;
	text-decoration: none;
	font-size: 1.125em;
	margin-left: 0.3em;
	line-height: 1;
	vertical-align: middle;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjI4LjI4IiBoZWlnaHQ9IjI4LjI4IiB2aWV3Qm94PSIwIDAgMjguMjggMjguMjgiPjxkZWZzPjxzdHlsZT4uZHtzdHJva2U6I2ZmZjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLXdpZHRoOjEuMjVweDt9LmQsLmV7ZmlsbDpub25lO308L3N0eWxlPjwvZGVmcz48ZyBpZD0iYSIvPjxnIGlkPSJiIj48ZyBpZD0iYyI+PGc+PHBhdGggY2xhc3M9ImUiIGQ9Ik0wLDE0LjE0TDE0LjE0LDBsMTQuMTQsMTQuMTQtMTQuMTQsMTQuMTRMMCwxNC4xNFoiLz48Y2lyY2xlIGNsYXNzPSJkIiBjeD0iMTQuMTQiIGN5PSIxNC4xNCIgcj0iNy41Ii8+PGxpbmUgY2xhc3M9ImQiIHgxPSIxNy42OCIgeTE9IjE0LjE0IiB4Mj0iMTQuMTQiIHkyPSIxNy42OCIvPjxwb2x5bGluZSBjbGFzcz0iZCIgcG9pbnRzPSIxNC4xNCAxMC42MSAxNy42OCAxNC4xNCAxMC42MSAxNC4xNCIvPjwvZz48L2c+PC9nPjwvc3ZnPg==");
	width: 28px;
	height: 28px;
}

.linkBtn a:hover,
.linkBtn a:active,
.linkBtn a:focus {
	-webkit-box-shadow: 0 6px 10px 1px rgba(0, 0, 0, 0.15);
	box-shadow: 0 6px 10px 1px rgba(0, 0, 0, 0.15);
}


/*書類*/
.mainText .iPaper ul, .mainText ul.iPaper {
	list-style-type:none;
	margin-left:0;
}
.mainText .iPaper a,
a.iPaper{
	display:inline-block;
	padding-left:1.5em;
	text-decoration: none;
}
.iPaper .fa{
	margin-left: -1.5em;
	position: relative;
	width: 1.5em;
	height:0;
	padding-top: 1.25em;
	line-height: 1;
	vertical-align: middle;
	overflow: hidden;
}
.iPaper .fa::before{
	font-size: 1.125em;
	display: block;
	position: absolute;
	left: 0; right:0;
	top: 0; bottom:0;
	text-indent: 0;
	color: #333;
}
.iPaper .fa-file-word-o::before{
	color: #00187C;
}
.iPaper .fa-file-excel-o::before{
	color: #004934;
}
.iPaper .fa-file-pdf-o::before{
	color: #B60D23;
}
a.iPaper:hover .title,
a.iPaper:active .title,
a.iPaper:focus .title,
.iPaper a:hover .title,
.iPaper a:active .title,
.iPaper a:focus .title{
	text-decoration: underline;
}
.iPaper .ext{
	display:inline-block;
	margin-left: 0.5em;
	font-size: 0.75em;
	text-decoration:none;
}

/*添付画像:1枚(中央)*/
.iFigureC {
	clear: both;
	padding: 0;
	margin: 20px 0;
	text-align: center;
}
/*添付画像:複数を行別中央配置*/
.iFigure {
	clear: both;
	margin: 20px -5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
}
.iFigure figure{
	display: inline-block;
	margin:5px;
	overflow: hidden;
	vertical-align: top;
}
.iFigureR,.iFigureL {
	clear: both;
	max-width: 100%;
	text-align: center;
}
/*添付画像:1枚(右)*/
.iFigureR{
	float:right;
	margin-left:20px;
	margin-right:0;
}
/*添付画像:1枚(左)*/
.iFigureL{
	clear:left;
	float:left;
	margin-left:0;
	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 {
	text-align:left;
	word-wrap: break-word;
	display: block;
	margin: 5px 0;
	line-height: 1.5;
}
.mainText figcaption p{
	font-size:0.9375em;
	margin-bottom:0;
}
/*title*/
.mainText figcaption strong{
	text-align: center;
	display:block;
	font-weight:600;
	word-wrap: break-word;
	margin-bottom:5px;
}

/*Mobile*/
@media screen and (max-width: 767px){
	.iFigureR,
	.iFigureL{
		margin-left:0;
		margin-right:0;
		margin-bottom:15px;
		float:none;
		min-width:100%;
	}
	.iFigure figure {
		margin: 5px;
		width: 100%;
	}

}
/*Desktop & Print*/
@media screen and (min-width: 768px), print{
	.iFigure{
		margin-left: -5px;
		margin-right: -5px;
	}
	article#main.iFigure{
		margin-left: -25px;
	}
	/*配置*/
	.txtPart.row{
		margin:10px 0;
		clear:both;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-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;
	}
	.txtPart.row >.txtPTxt{
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		margin:10px;
	}
	.txtPart.row >.iFigureR,
	.txtPart.row >.iFigureL{
		-ms-flex-negative:0;
		    flex-shrink:0;
	}
}
/*Slider slick v1.8********************/
.slick-slider
{
    position: relative;

    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* Arrows */
.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	z-index: 2;
	position: absolute;
	top: 50%;
	margin-top: -13px;
	display: block;
	width: 40px;
	height: 40px;
	padding: 0;
	cursor: pointer;
	border: none;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.8);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled{
    opacity: 0.25;
}

.slick-prev{
	left: 10px;
}
.slick-next{
	right:10px;
}
.slick-prev:before,
.slick-next:before{
    content: '';
	display:block;
    line-height: 1;
    opacity: .8;
	position:absolute;
	-webkit-box-sizing:content-box;
	        box-sizing:content-box;
	width:40%;
	height:40%;
	border-style:solid;
	-webkit-transform:rotate(45deg);
	        transform:rotate(45deg);
	top:25%;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before{
    opacity: 1;
}
.slick-prev:before{
	right:20%;
	border-width:0 0 1px 1px;
}
.slick-next:before{
	left:20%;
	border-width:1px 1px 0 0 ;
}

/* Dots */
.slick-dotted.slick-slider{
    text-align: center;
}
.slick-dots{
    display:block;
    padding: 0;
    margin: 10px;
    list-style: none;
    text-align: center;
	line-height:14px;
}

.slick-dots li{
    position: relative;
    display: inline-block;
	vertical-align:middle;
    margin: 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
	position:relative;
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
.slick-dots li button:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '';
    text-align: center;
	background:#000;
	border:1px solid #eee;
	border-radius: 50%;
}
.slick-dots li.slick-active button:before{
	background:#fff;
}

/*コントローラーまとめ*/
.slider-control{
	display: block;
	text-align: center;
}
.slider-control .slick-dots {
	display: inline-block;
	margin: 0;
	vertical-align: middle;
}

/*停止/再生button*/
.slider-control button.pause{
	display:inline-block;
	vertical-align: middle;
	margin: 5px;
	padding-top:10px;
	width: 16px;
	position: relative;
	background: #000;
	border:1px solid #eee;
	border-radius: 1px;
	overflow: hidden;
}
.slider-control button.pause span{
	display: block;
	position: absolute;
}
.slider-control button.pause::after{
	position:absolute;
	content:"";
	display:block;
	top:50%;
	left:50%;
	margin-left:-5px;
	margin-top:-4px;
	width:10px;
	height:8px;
	border-style: solid;
	border-color:#fff;
	border-width:0 3px;
	}
.slider-control button.pause.paused::after{
	width: 0;
	height: 0;
	margin-left:-3px;
	margin-top:-4px;
	border-width: 4px 0 4px  7px;
	border-color: transparent transparent transparent #fff ;
}


/*記事内スライドショー*/
.PhotoGarary{
	margin:20px auto;
	padding: 0 15px 10px;
	overflow:hidden;
	position: relative;
	color: #fff;
	background: #444;
}
.PhotoGarary .slide img{
	margin:0 auto;
	width:auto;
	height:auto;
	max-width:100%;
}
/*キャプション*/
.PhotoGarary .caption{
	padding:10px 20px;
	word-wrap: break-word;
	text-align: left;
}
.PhotoGarary  .caption strong{
	display: block;
	margin-bottom: 5px;
	color: #fff;
}
.PhotoGarary  .caption p{
	display: block;
	margin:0;
	color: #E5E5E5;
}

/*arrow*/
.PhotoGarary .slick-prev,
.PhotoGarary .slick-next{
	background: rgba(197,197,197,0.80);
}
.PhotoGarary .slick-prev{
	left: 0;
}
.PhotoGarary .slick-next{
	right: 0;
}
.PhotoGarary .slick-prev::before,
.PhotoGarary .slick-next::before{
	width: 14px;
	height: 14px;
	top:50%;
	margin-top: -7px;
}

.PhotoGarary .main .slide {
	max-width: 800px;
}
.PhotoGarary .main .slick-prev,
.PhotoGarary .main .slick-next{
	height: 98px;
	width: 36px;
	margin-top: -49px;
}
/*サムネイル*/
.PhotoGarary .thumbs{
	margin: 0 -15px;
	padding:15px 35px;
	background: #333;
}
.PhotoGarary .thumbs .slide{
	margin:0 8px;
	overflow:hidden;
	outline:none;
}
.PhotoGarary .thumbs .slide img{
	cursor:pointer;
	border:2px solid transparent;
	width:auto;
	height:70px;
}
/*選択中**/
.PhotoGarary .thumbs .slick-current img{
	border-color:#fff;
}
/*arrow*/
.PhotoGarary .thumbs .slick-prev,
.PhotoGarary .thumbs .slick-next{
	background:none;
	width: 25px;
	height: auto;
	top:5px;
	bottom: 5px;
	margin: 0 5px;
}
.PhotoGarary .thumbs .slick-prev::before,
.PhotoGarary .thumbs .slick-next::before{
	width: 12px;
	height: 12px;
	margin-top: -6px;
}
/*停止/再生button テキスト表示あり*/
.PhotoGarary button.pause{
	margin: 5px;
	display:inline-block;
	border: none;
	background: none;
}
.PhotoGarary button.pause .play,
.PhotoGarary button.pause.paused .stop{
	display: none;
}
.PhotoGarary button.pause.paused .play,
.PhotoGarary button.pause .stop{
	display:inline-block;
}
.PhotoGarary button.pause .play::before,
.PhotoGarary button.pause .stop::before{
	display:inline-block;
	margin-right:.4em;
	font-family: FontAwesome;	
}
.PhotoGarary button.pause .play::before{
	content: "\f04b";
}
.PhotoGarary button.pause .stop::before{
	content: "\f04c";
}

.PhotoGarary .slick-info{
	display: block;
	text-align: right;
	margin: 5px;
}
.PhotoGarary .slick-info button{
	float: left;
	margin: 0 5px 0 0;
}

.no-js .PhotoGarary .slide{
	margin:5px;
}
/*Mobile*/
@media screen and (max-width: 767px){
	.PhotoGarary .thumbs .slide img{
		height:40px;
	}
}
/*Desktop&print*/
@media screen and (min-width: 768px), print{
	.mainText .PhotoGarary {
		max-width: 860px;
	}
	.PhotoGarary .main{
		margin: 0 auto;
	}
	.PhotoGarary .main .slide {
		width: 750px;
		max-width: 100%;
	}

	.no-js .PhotoGarary .slider{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-flow: row wrap;
		        flex-flow: row wrap;
	}
	.no-js .PhotoGarary .slide{
		margin: 0;
		padding: 10px;
		width: 50%;
	}

}


/* Magnific Popup CSS *********************************/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.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;
  -webkit-box-sizing: border-box;
          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;
  text-align: left;
  z-index: 1045; }

.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: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-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;
  -ms-user-select: none;
      user-select: none; }

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

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

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

.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;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  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%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

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

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

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@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; } 
}

/*image POPUP サムネイル*/
.mainText .iPopList,
.iPopList{
	clear: both;
	overflow: hidden;
	margin: 32px -5px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
}
.iPopList li{
	display:inline-block;
	padding: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.iPopList li a{
	display:block;
	overflow: hidden;
	width: 100%;
	text-decoration: none;
	border:1px solid #d3d3d3;
}
.iPopList li a[href]{
	text-decoration: none;
}


.iPopList li a p{
	font-size:0.8125em;
	margin: 5px;
	text-decoration: none;
}
.iPopList li a .thumb{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column nowrap;
	        flex-flow: column nowrap;
	-ms-flex-pack:distribute;
	    justify-content:space-around;
}

.iPopList li a .thumb > img {
	-o-object-fit: contain;
	object-fit: contain;
	font-family: "object-fit:cover";
}

.iPopList .thumb {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	vertical-align: middle;
	text-align: center;
}

.iPopList .thumb.plus::after {
	content: "";
	display: block;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjI4IiBoZWlnaHQ9IjI4IiB2aWV3Qm94PSIwIDAgMjggMjgiPjxkZWZzPjxzdHlsZT4uZCwuZXtmaWxsOm5vbmU7fS5le3N0cm9rZTojMWUzNjkzO3N0cm9rZS1saW5lY2FwOnJvdW5kO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2Utd2lkdGg6MS43NXB4O308L3N0eWxlPjwvZGVmcz48ZyBpZD0iYSIvPjxnIGlkPSJiIj48ZyBpZD0iYyI+PGc+PHBhdGggY2xhc3M9ImQiIGQ9Ik0wLDBIMjhWMjhIMFYwWiIvPjxjaXJjbGUgY2xhc3M9ImUiIGN4PSIxMS42NyIgY3k9IjExLjY3IiByPSI4LjE3Ii8+PGxpbmUgY2xhc3M9ImUiIHgxPSI4LjE3IiB5MT0iMTEuNjciIHgyPSIxNS4xNyIgeTI9IjExLjY3Ii8+PGxpbmUgY2xhc3M9ImUiIHgxPSIxMS42NyIgeTE9IjguMTciIHgyPSIxMS42NyIgeTI9IjE1LjE3Ii8+PGxpbmUgY2xhc3M9ImUiIHgxPSIyNC41IiB5MT0iMjQuNSIgeDI9IjE3LjUiIHkyPSIxNy41Ii8+PC9nPjwvZz48L2c+PC9zdmc+");
	width: 1.867em;
	height: 1.867em;
	position: absolute;
	right: 0;
	bottom: 0;
	line-height: 1.25;
	background-color: rgba(255,255,255,0.4);
	backdrop-filter: blur(5px);
}

@media screen and (max-width: 767px) {
	.iPopList li {
		width: 50%;
		max-width: 230px;
	}
	.iPopList li a .thumb {
		width: 100%;
	}
	.iPopList li a .thumb::before{
		padding-top: 67.4%;
	}
}
@media screen and (min-width: 768px), print {
	.iPopList li {
		width: 230px;
	}
	.iPopList li a .thumb::before{
		display: none;
	}
	.iPopList li a .thumb {
		width: 100%;
		height: 149px;
	}
	.iPopList li a .thumb > img {
		position: static;
	}
}

/*カードリスト*/
ul.cards {
	list-style: none;
}

.mainText .cards {
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.mainText .cards li {
	width: 33.3333333333%;
	padding: 12px;
}
.mainText .cards li a {
	text-decoration: none;
	color: #000;
}
.mainText .cards li a:hover .thumb, .mainText .cards li a:focus .thumb, .mainText .cards li a:active .thumb {
	opacity: 0.6;
}
.mainText .cards li .thumb::before {
	padding-top: 66.6666666667%;
}
.mainText .cards li .thumb img {

	-o-object-fit: contain;
	object-fit: contain;
	font-family: "object-fit:contain";
}
.mainText .cards li .title {
	font-size: 0.933em;
}

/*Mobile*/
@media screen and (max-width: 767px) {
	.mainText .cards {
		margin: 1em 0 1em;
	}
	.mainText .cards li {
		width: 50%;
		padding: 5px;
	}
}
/*Desktop&print*/
@media screen and (min-width: 768px), print {
	.mainText .cards {
		margin: 1em -12px 1em -34px;
	}
}


/*アーカイブメニュー*******************************************************/
#archive {
	background-color: #fff;
	margin-bottom: 80px;
	padding: 10px;
}
#archive h2 {
	font-size: 1.5em;
	padding: 0 5px;
	border-bottom: 3px solid #071e4c;
	margin-bottom: 5px;
}
#archive ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	list-style-type: none;
	margin: 0;
	padding: 2px 10px 10px;
}
#archive ul li {
	margin: 0;
}
#archive ul li a {
	position: relative;
	padding: 0 5px;
	font-size: 0.875em;
	color: #000;
}
#archive ul li a::after {
	content: "\f105";
	font-family: FontAwesome;
	font-size: 1.125em;
	display: inline-block;
	margin-left: 8px;
	width: 0.254em;
	line-height: 1;
	vertical-align: middle;
	margin-top: -0.2em;
	text-decoration: none;
	color: #071e4c;
}
#archive ul li a.current {
	background-color: #071e4c;
	color: #fff;
}
/*Mobile*/
@media screen and (max-width: 767px) {
	#archive {
		margin-bottom: 40px;
	}
}
/*履歴*/
.mainText table.profTable{
	width: 100%;
}
.mainText table.profTable td,
.mainText table.profTable th{
	border-width: 1px 0;
	border-color: #e3e3e3;
	padding: .8em 1em;
}
.mainText table.profTable th{
	width: 15%;
	background-color: transparent;
	color: #4c5c7d;
	white-space: nowrap;
}
