@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/

@import url(file:///C:/Users/chihiro/Documents/新しいフォルダー/HTML5_008/5カラム(sp2カラム) - .css);
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{
	margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;
}body{
	line-height:1;
}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{
	display:block;
}ul{
	list-style:none;
}blockquote,q{
	quotes:none;
}blockquote:before,blockquote:after,q:before,q:after{
	content:none;
}a{
	margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;
}del{
	text-decoration:line-through;
}abbr[title],dfn[title]{
	border-bottom:1px dotted;cursor:help;
}table{
	border-collapse:collapse;border-spacing:0;
}hr{
	display:block;height:1px;border-top-width : 1px;border-right-width : 0px;border-bottom-width : 0px;border-left-width : 0px;border-top-style : solid;border-right-style : none;border-bottom-style : none;border-left-style : none;border-top-color : #7d7d00;border-right-color : initial;border-bottom-color : initial;border-left-color : initial;margin:1em 0;padding:0;
}input,select{
	vertical-align:middle;
}

/*================================================
 *  一般・共通設定
 ================================================*/
body{
	font-size: 16px;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	background-image : url(../bishodo/06.jpg);
	background-repeat: repeat;
}

#contents{
	width: 980px;
	margin: 0 auto;
}

header + #contents{
	padding-top: 50px;
}

.inner{
	position: relative;
	width: 980px;
	margin: 0 auto;
}

a{
	color: #043771;
	text-decoration: none;
}
a:hover{
	color: #144d8d;
	text-decoration: underline;
}

h1{
	font-size: 28px;
}

h2{
	margin-top: 50px;
	margin-bottom: 0.5em;
	font-size: 28px;
	color: #333;
	text-align: center;
	line-height: 1.0;
}

h3{
	margin-bottom: 0.25em;
	font-size : 16px;
}

h4{
	margin-top: 0.25em;
	margin-bottom: 0.25em;
	font-size: 20px;
	font-weight: bold;
}

h5{
	margin-bottom: 0.25em;
	padding-left: 25px;
	font-size: 16px;
	background: url('../images/bg_arrow_black.png') 0 50% no-repeat;
}

h6{
	margin-bottom: 0.25em;
	padding-left: 25px;
	font-size: 16px;
	background: url('../images/bg_arrow_black2.png') 0 50% no-repeat;
}

p{
	margin:0 0 1em 0;
}

img{
	max-width: 100%;
	vertical-align: bottom;
}

em{
	font-weight: bold;
}

strong{
	font-weight: bold;
	color: #ff0000;
}

pre{
	margin:1em 0;
	padding:1em;
}

blockquote{
	margin-bottom: 1em;
	padding: 1em;
	border: 1px dotted #ddd;
	border-left: 5px solid #ddd;
}

ul,ol,dl{
	margin: 0 0 1em 0;
}
ul li{
	list-style: disc;
}
ol li{
	list-style: decimal;
}
li{
	margin-left: 2em;
}

dt{
	margin-bottom: 0.5em;
	border-bottom: 1px dotted #ddd;
}
dd{
	margin-bottom: 1em;
}

/*================================================
 *  汎用クラス
 ================================================*/
/* 中央寄せ */
.center{
	text-align: center;
}

/* 左寄せ */
.left{
	text-align: left;
}

/* 右寄せ */
.right{
	text-align: right;
}

/* 写真中央寄せ */
.imgC{
	clear:both;
	overflow:hidden;
	margin: 0 auto 50px auto;
	margin-bottom:50px;
	text-align:center;
}
.imgC img{
	margin-bottom:10px;
}

/* 写真左寄せ */
.imgL{
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgL img{
	float:left;
	margin:0 10px 0 0;
}

@media screen and (max-width:767px) {
	.imgL{
		margin-bottom:20px;
	}
	.imgL img{
		float:none;
		margin:0 0 10px 0;
	}
}

/* 写真右寄せ */
.imgR{
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgR img{
	float:right;
	margin:0 0 0 10px;
}

@media screen and (max-width:767px) {
	.imgR{
		clear:both;
		overflow:hidden;
		margin-bottom:20px;
	}
	.imgR img{
		float:right;
		margin:0 0 10px 0;
	}
}

/* 写真ズーム */
.zoom{
	overflow: hidden;
}
.zoom img{
	display: block;
	-moz-transition: -moz-transform 0.8s linear;
	-webkit-transition: -webkit-transform 0.8s linear;
	-o-transition: -o-transform 0.8s linear;
	-ms-transition: -ms-transform 0.8s linear;
	transition: transform 0.8s linear;
}
.zoom img:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.zoom img{
	margin-bottom: 0;
}

/* オーバーレイ */
.overlay{
	position: relative;
}
.overlay::after{
	background: rgba(0,0,0,.5);
	content: "　";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all .2s ease-out;
	pointer-events: none;
}
.overlay:hover::after {
	background: rgba(0,0,0,.1);
	transition: all .2s ease-out;
}
.overlay img{
	margin-bottom: 0;
}

/*スクリーン */
.screen{
	position: relative;
}
.screen::after{
	content: "　";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all .2s ease-out;
	pointer-events: none;
}
.screen:hover::after {
	background: rgba(255,255,255,.3);
	transition: all .2s ease-out;
}
.screen img{
	margin-bottom: 0;
}

/* ボタン */
.btn a{
	position: relative;
	display: inline-block;
	padding: 8px 40px 8px 40px;
	color: #fff !important;
	text-align: center;
	text-decoration: none;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	z-index: 1;
	background: #000;
}
.btn a:hover{
	color: #fff;
	background: #333;
}

/* 2カラム（スマートフォンでは1カラム) */
.twoCol{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position:relative;
	overflow:hidden;
	margin-bottom:60px;
}
.twoCol .inner{
	position: relative;
	overflow:hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: column-reverse;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column;
	width: 48.98%;
	width: calc((480 / 980) *100%);
	height: auto;
	margin:0 0 20px 0;
}
.twoCol .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.twoCol .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.twoCol .inner > a{
	width: 100%;
	height: 100%;
}
.twoCol .inner .image{
	width: 100%;
	min-height: 0%;
}
.twoCol .inner img{
	width:100%;
}
.twoCol .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.twoCol .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.twoCol{
		display: block;
		margin-bottom:20px;
	}
	.twoCol .inner{
		width :100%;
		margin:0 0 10px 0;
	}
}

/* 2カラム(3カラムサイズ)（スマートフォンでは1カラム) */
.twoCol1s{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position:relative;
	overflow:hidden;
	margin-bottom:60px;
	width: 66%;
	left: 17%;
}
.twoCol1s .inner{
	position: relative;
	overflow:hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: column-reverse;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column;
	width: 32.14%;
	width: calc((315 / 650) *100%);
	height: auto;
	margin:0 0 20px 0;
}
.twoCol1s .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.twoCol1s .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.twoCol1s .inner > a{
	width: 100%;
	height: 100%;
}
.twoCol1s .inner .image{
	width: 100%;
	min-height: 0%;
}
.twoCol1s .inner img{
	width:100%;
}
.twoCol1s .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.twoCol1s .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.twoCol1s{
		display: block;
		margin-bottom:20px;
		left: 0%;
		width: 100%;
	}
	.twoCol1s .inner{
		width :100%;
		margin:0 0 10px 0;
	}
}

/* 2カラム(4カラムサイズ)（スマートフォンでは2カラム) */
.twoCol2s{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom: 60px;
	width: 49%;
	left: 25.5%;
}
.twoCol2s .inner{
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: column-reverse;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column;
	width: 23.46%;width: calc((230 / 480) *100%);
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}
.twoCol2s .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.twoCol2s .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.twoCol2s .inner > a{
	width: 100%;
	height: 100%;
}
.twoCol2s .inner .image{
	width: 100%;
	min-height: 0%;
}
.twoCol2s .inner img{
	width: 100%;
}
.twoCol2s .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.twoCol2s .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.twoCol2s{
		width: 100%;
		left: 0%;
		margin-bottom:20px;
	}
	.twoCol2s .inner{
		box-sizing: border-box;
		width: 48.98%;
		width: calc((480 / 980) *100%);
		margin-bottom: 10px;
	}
}

/* 3カラム（スマートフォンでは1カラム) */
.threeCol{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:60px;
}
.threeCol .inner{
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 32.14%;
	width: calc((315 / 980) *100%);
	margin: 0 0 20px 0;
}
.threeCol .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.threeCol .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.threeCol .inner > a{
	width: 100%;
	height: 100%;
}
.threeCol .inner .image{
	width: 100%;
	min-height: 0%;
}
.threeCol .inner img{
	width: 100%;
}
.threeCol .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.threeCol .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.threeCol{
		display: block;
		margin-bottom: 20px;
	}
	.threeCol .inner{
		width : 100%;
		margin: 0 0 10px 0;
	}
}

/* 3カラム（スマートフォンでは2カラム) */
.threeCol2{
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-bottom:60px;
}
.threeCol2 .inner{
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 32.14%;
  width: calc((315 / 980) *100%);
  margin: 0 0 20px 0;
}
.threeCol2 .inner h4{
  width: 100%;
  margin-top: 0.5em;
  text-align: left;
}
.threeCol2 .inner p{
  width: 100%;
  margin-bottom: 0px;
  text-align: justify;
}
.threeCol2 .inner > a{
  width: 100%;
  height: 100%;
}
.threeCol2 .inner .image{
  width: 100%;
  min-height: 0%;
}
.threeCol2 .inner img{
  width: 100%;
}
.threeCol2 .inner .btn{
  margin-top: auto;
  padding-top: 20px;
}
.threeCol2 .inner .text{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  pointer-events: none;
}
@media screen and (max-width:767px) {
  .threeCol2{
  margin-bottom: 20px;
}
.threeCol2 .inner{
  box-sizing: border-box;
  width: 48.98%;
  width: calc((480 / 980) *100%);
  margin-bottom: 10px;
}
}

/* 3カラム(4カラムサイズ)（スマートフォンでは1カラム) */
.threeCol1s{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:60px;
	width: 74%;
	left: 12.75%;
}
.threeCol1s .inner{
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 23.46%;
	width: calc((230 / 730) *100%);
	margin: 0 0 20px 0;
}
.threeCol1s .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.threeCol1s .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.threeCol1s .inner > a{
	width: 100%;
	height: 100%;
}
.threeCol1s .inner .image{
	width: 100%;
	min-height: 0%;
}
.threeCol1s .inner img{
	width: 100%;
}
.threeCol1s .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.threeCol1s .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.threeCol1s{
		margin-bottom: 20px;
		width: 100%;
		left: 0%;
	}
	.threeCol1s .inner{
		width :100%;
		margin:0 0 10px 0;
	}
}

/* 3カラム(4カラムサイズ)（スマートフォンでは2カラム) */
.threeCol2s{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:60px;
	width: 74%;
	left: 12.75%;
}
.threeCol2s .inner{
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 23.46%;
	width: calc((230 / 730) *100%);
	margin: 0 0 20px 0;
}
.threeCol2s .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.threeCol2s .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.threeCol2s .inner > a{
	width: 100%;
	height: 100%;
}
.threeCol2s .inner .image{
	width: 100%;
	min-height: 0%;
}
.threeCol2s .inner img{
	width: 100%;
}
.threeCol2s .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.threeCol2s .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.threeCol2s{
		margin-bottom: 20px;
		width: 100%;
		left: 0%;
	}
	.threeCol2s .inner{
		box-sizing: border-box;
		width: 48.98%;
		width: calc((480 / 980) *100%);
		margin-bottom: 10px;
	}
}

/* 3カラム(5カラムサイズ)（タブレット3カラム・スマートフォン2カラム) */
.threeCol32s{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:60px;
	width: 59%;
	left: 20.5%;
}
.threeCol32s .inner{
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 18.36%;
	width: calc((180 / 580) *100%);
	margin: 0 0 20px 0;
}
.threeCol32s .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.threeCol32s .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.threeCol32s .inner > a{
	width: 100%;
	height: 100%;
}
.threeCol32s .inner .image{
	width: 100%;
	min-height: 0%;
}
.threeCol32s .inner img{
	width: 100%;
}
.threeCol32s .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.threeCol32s .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight : normal;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.threeCol32s{
	margin-bottom: 20px;
	width: 100%;
	position: relative;
	left: 0%;
}
	.threeCol32s .inner{
		box-sizing: border-box;
		width: 32.65%;
		width: calc((320 / 980) *100%);
		margin-bottom: 10px;
	}
}

@media screen and (max-width:575px) {
	.threeCol32s{
	margin-bottom: 20px;
	width: 100%;
	position: relative;
	left: 0%;
}
	.threeCol32s .inner{
		box-sizing: border-box;
		width: 48.98%;
		width: calc((480 / 980) *100%);
		margin-bottom: 10px;
	}
}

/* 4カラム（スマートフォンでは2カラム) */
.fourCol{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:60px;
}
.fourCol .inner{
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 23.46%;
	width: calc((230 / 980) *100%);
	margin: 0 0 20px 0;
}
.fourCol .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.fourCol .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.fourCol .inner > a{
	width: 100%;
	height: 100%;
}
.fourCol .inner .image{
	width: 100%;
	min-height: 0%;
}
.fourCol .inner img{
	width: 100%;
}
.fourCol .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.fourCol .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.fourCol{
		margin-bottom: 20px;
	}
	.fourCol .inner{
		box-sizing: border-box;
		width: 48.98%;
		width: calc((480 / 980) *100%);
		margin-bottom: 10px;
	}
}

/* 4カラム（タブレット3カラム・スマートフォン2カラム) */
.fourCol32{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:60px;
}
.fourCol32 .inner{
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 23.46%;
	width: calc((230 / 980) *100%);
	margin: 0 0 20px 0;
}
.fourCol32 .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.fourCol32 .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.fourCol32 .inner > a{
	width: 100%;
	height: 100%;
}
.fourCol32 .inner .image{
	width: 100%;
	min-height: 0%;
}
.fourCol32 .inner img{
	width: 100%;
}
.fourCol32 .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.fourCol32 .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size : 20px;
	font-weight : normal;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
  font-family : "AR P新藝体E",メイリオ;
}
@media screen and (max-width:767px) {
  .fourCol32{
  margin-bottom: 20px;
}
.fourCol32 .inner{
  box-sizing: border-box;
  width: 32.65%;
  width: calc((320 / 980) *100%);
  margin-bottom: 10px;
}
}
@media screen and (max-width:575px) {
	.fourCol32{
		margin-bottom: 20px;
	}
	.fourCol32 .inner{
		box-sizing: border-box;
		width: 48.98%;
		width: calc((480 / 980) *100%);
		margin-bottom: 10px;
	}
}

/* 5カラム（タブレット3カラムスマフォ2カラム) */
.fiveCol{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:60px;
}
.fiveCol .inner{
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 18.36%;
	width: calc((180 / 980) *100%);
	margin: 0 0 20px 0;
}
.fiveCol .inner h4{
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.fiveCol .inner p{
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.fiveCol .inner > a{
	width: 100%;
	height: 100%;
}
.fiveCol .inner .image{
	width: 100%;
	min-height: 0%;
}
.fiveCol .inner img{
	width: 100%;
}
.fiveCol .inner .btn{
	margin-top: auto;
	padding-top: 20px;
}
.fiveCol .inner .text{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.fiveCol{
	margin-bottom: 20px;
	width: 100%;
	position: relative;
	left: 0%;
}
	.fiveCol .inner{
		box-sizing: border-box;
		width: 32.65%;
		width: calc((320 / 980) *100%);
		margin-bottom: 10px;
	}
}

@media screen and (max-width:575px) {
	.fiveCol{
	margin-bottom: 20px;
	width: 100%;
	position: relative;
	left: 0%;
}
	.fiveCol .inner{
		box-sizing: border-box;
		width: 48.98%;
		width: calc((480 / 980) *100%);
		margin-bottom: 10px;
	}
}

/* お知らせ */
.information{
	margin-bottom: 80px;
}

.information dt{
	clear: both;
	float: left;
	margin: 0;
	padding: 10px 0;
	vertical-align: top;
	border-bottom: none;
}

.information dd{
	margin: 0;
	padding: 10px 0 10px 8em;
	vertical-align: top;
	border-bottom: 1px dotted #333;
}

@media screen and (max-width:767px) {
	.information{
		margin-bottom: 40px;
	}

	.information dt{
		float: none;
		margin: 0;
		padding: 10px 0 0 0;
		vertical-align: top;
		border-bottom: none;
	}

	.information dd{
		margin: 0;
		padding: 0 0 10px 0;
		vertical-align: top;
		border-bottom: 1px dotted #333;
	}
}

/*================================================
 *  ヘッダー
 ================================================*/
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #000;
	z-index: 100;
}

header:after{
	content: ""; 
	display: block;
	clear: both;
}

header h1{
	float: left;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	color: #fff;
}

header h1 img{
	vertical-align: middle;
}

@media screen and (max-width:768px) {
	header h1{
		padding: 0 0 0 10px;
	}
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
/* PC用 */
@media print, screen and (min-width:769px) {
	nav.gnav:after{
		content: '';
		display: block;
		clear: both;
	}
	nav.gnav{
	
	display: block;
	
	float: right;
	
}

	/* 共通 */
	nav.gnav ul{
		margin: 0;
		padding: 0;
	}
	nav.gnav ul li{
		position: relative;
		line-height: 50px;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	nav.gnav ul li a{
		display: block;
		background: #000;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		text-decoration: none;
	}
	nav.gnav ul li:hover > a{
		color: #fff;
		background: #333;
	}

	/* 1段目 */
	nav.gnav > ul > li{
		position: relative;
		width: 120px;
		float: left;
		margin: 0;
		padding: 0;
		text-align: center;
		list-style: none;
		line-height: 50px;
	}
	nav.gnav > ul > li.subnav a{
		padding-right: 20px;
	}
	nav.gnav > ul > li.subnav > a:after{
		position: absolute;
		content: "";
		top: 50%;
		width: 0;
		height: 0;
		margin-top: -2.5px;
		margin-left: 10px;
		border: 5px solid transparent;
		border-top-color: #fff;
	}

	/* 2段目 */
	nav.gnav ul li ul{
		position: absolute;
		z-index: 3;
		top: 100%;
		left: 0;
		width: 180px;
		margin: 0;
		padding: 0;
	}
	nav.gnav ul li ul li{
		overflow: hidden;
		height: 0;
		color: #fff;
		transition: .2s;
	}
	nav.gnav ul li ul li a{
		padding: 0 15px;
		text-align: left;
		background: #333;
		font-weight: normal;
	}
	nav.gnav ul li ul li a:hover{
		background: #444;
	}
	nav.gnav ul li:hover > ul > li{
		overflow: visible;
		height: 40px;
		line-height: 40px;
		border-bottom: 1px solid #555;
	}
	nav.gnav ul li:hover ul li:last-child{
		border-bottom: none;
	}
	nav.gnav > ul > li:last-child > ul{
		left: -60px;
	}
	nav.gnav ul li ul li ul:before{
		position: absolute;
		content: "";
		top: 17.5px;
		left: -20px;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-left-color: #fff;
	}
	nav.gnav > ul > li:last-child ul li ul:before{
		position: absolute;
		content: "";
		top: 17.5px;
		left: 200%;
		margin-left: -20px;
		border: 5px solid transparent;
		border-right-color: #fff;
	}

	/* 3段目 */
	nav.gnav ul li ul li ul{
		top: 0;
		left: 100%;
	}
	nav.gnav ul li ul li ul li{
		width: 100%;
	}
	nav.gnav ul li ul li:hover > ul > li{
		border-bottom: 1px solid #555;
	}
	nav.gnav > ul > li:last-child > ul li ul{
		left: -100%;
	}
	nav.gnav ul li ul li ul li a{
		background: #444;
	}
	nav.gnav ul li ul li ul li a:hover{
		background: #666;
	}

	/* 3段目 */
	nav.gnav > ul{
		display: block !important;
	}
	#spMenu{
		display: none;
	}
}

/* タブレット・スマートフォン用 */
@media screen and (max-width:768px) {
	nav.gnav{
		display: none;
	}
	nav.gnav ul{
		margin: 0;
		padding: 0;
	}
	nav.gnav > ul{
		z-index: 2;
		overflow: auto;
		position: fixed;
		top: 50px;
		right: 0;
		width: 100%;
		height: 88%;
		height: -webkit-calc(100% - 50px);
		height: calc(100% - 50px);
	}
	nav.gnav li{
		position: relative;
		width: 100%;
		float: none;
		margin: 0;
		text-align: left;
		list-style: none;
		border-bottom: 1px solid #333;
		background: #000;
	}
	nav.gnav li:first-child{
		border-top: 0;
	}
	nav.gnav li:last-child{
		border-bottom: 0;
	}
	nav.gnav li a{
		display: block;
		padding: 10px 20px;
		color: #fff;
		text-decoration: none;
		background: #000;
	}
	nav.gnav li a:hover{
		color: #fff;
		background: #222;
	}
	nav.gnav ul ul{
		display: none;
		position: relative;
	}
	nav.gnav li li a{
		box-sizing: border-box;
		width: 100%;
		padding: 10px 30px 10px 34px;
		text-align: left;
	}
	nav.gnav li li li a{
		padding: 10px 20px 10px 48px;
	}

	nav.gnav .subnav > a:before{
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 20px;
		width: 10px;
		height: 10px;
		margin-top: -5px;
		background: #f1f1f1;
	}
	nav.gnav .subnav > a:after{
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 20px;
		width: 10px;
		height: 10px;
		margin-top: -10px;
		background: #000;
	}
	nav.gnav .subnav a:hover:after{
		background: #222;
	}
	nav.gnav .subnav.active > a:before{
		margin-top: 0;
	}
	nav.gnav .subnav.active > a:after{
		margin-top: 5px;
	}

	.spMenuWrap{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		-ms-transition: all 1s;
		-o-transition: all 1s;
		transition: all 1s;
		background: transparent;
	}

	#spMenu{
		position: absolute;
		top: 10px;
		right: 10px;
	}

	#spMenu:hover{
		cursor: pointer;
	}

	#navBtn{
		display: inline-block;
		position: relative;
		width: 30px;
		height: 30px;
		border-radius: 5%;
		background: #333;
	}
	#navBtnIcon{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 2px;
		margin: -1px 0 0 -7px;
		background: #f1f1f1;
		transition: .2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after{
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 14px;
		height: 2px;
		background: #f1f1f1;
		transition: 0.3s;
	}
	#navBtnIcon:before{
		margin-top: -6px;
	}
	#navBtnIcon:after{
		margin-top: 4px;
	}
	#navBtn .close{
		background: transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after{
		margin-top: 0;
	}
	#navBtn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#navBtn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
}

/*================================================
 *  フッター
 ================================================*/
footer{
	clear: both;
	margin-top: 80px;
	background: #ddd;
  list-style-image : url(../00.gif);
}

.fnav{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0 50px;
	padding: 20px 0;
}

.fnav > ul{
	width: 33%;
	margin-bottom: 0px;
	font-size: 12px;
}

.fnav > ul li{
	text-align: left;
	list-style: none;
}

.copyright{
	padding: 20px 0;
	color: #fff;
	font-size: 11px;
	text-align: center;
	background: #000;
}

@media screen and (max-width:767px) {
	footer{
		margin-top: 40px;
	}

	.fnav{
		display: block;
		margin: 0;
	}
	.fnav > ul{
		width: 100%;
	}
	.copyright{
		padding: 10px 0;
	}
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop{
	position:fixed;
	bottom:15px;
	right:15px;
	z-index:1;
}
.totop a{
	display:block;
	text-decoration:none;
}
.totop img{
	background:#111;
}
.totop img:hover{
	background:#222;
}

/*================================================
 *  スライドショー
 ================================================*/
.slide{
	padding-top: 50px;
	overflow: hidden;
	position: relative;
}
.slideInner{
	list-style: none;
	margin: 0;
	padding: 0;
}
.slideInner li{
	position: absolute;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
	background-position: 50% 0;
	background-repeat: no-repeat;
}

/*================================================
 *  タブレット・スマートフォン向けデザイン
 ================================================*/
/* テンプレートより小さくなった場合に適用 */
@media screen and (max-width:979px) {
	.inner{
		width: 100%;
	}

	#contents{
		box-sizing: border-box;
		width: 100%;
		padding: 0 10px;
	}

	footer{
		width: 100%;
	}

	.lock{
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
	}
}
