@charset "UTF-8";

/*================================================
 *  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:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
body {
	font-size: 18px;
	font-family:"Lucida Grande","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","游ゴシック","Yu Gothic",sans-serif;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}

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

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

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

a {
	color: #FFF;
}
a:hover {
	color: #FFF;
}

h1 {
	font-size: 28px;
}

h2 {
	margin-top: 50px;
	margin-bottom: 38px;
	color: #006fba;
	text-align: center;
	line-height: 1.0;
	font-size: 230%;
	font-weight: bold;
}

h3 {
	margin-bottom: 0.25em;
}

p {
	margin:0 0 1em 0;
}

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

strong {
	font-weight: bold;
}

/*================================================
 *  汎用クラス
 ================================================*/
.line_blue{
	border: 5px solid #0046b3;
}
.line_orange{
	border: 5px solid #f19700;
}
/* 中央寄せ */
.center {
	text-align: center;
}

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

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

@media screen and (max-width:599px) {
	.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:599px) {
	.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 .3s ease-out;
	pointer-events: none;
}
.overlay:hover::after {
	background: rgba(0,0,0,.1);
	transition: all .3s ease-out;
}
.overlay img {
	margin-bottom: 0;
}

/* ボタン */
.btn a,.btn_o a {
	position: relative;
	display: block;
	padding: 15px 10px ;
	color: #fff !important;
	text-align: center;
	text-decoration: none;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	z-index: 1;
	background: #006fba;
}
.btn_o a{
	background: #f19700;
}
.btn a:hover {
	color: #fff;
	background: #2883c1;
}
.btn_o a:hover{
	background: #e9a636;
}
.btn a::after,.btn_o a::after{
	content: "";
	background: url("../img/icon.png") no-repeat right center;
	display: inline-block;
	height: 15px;
	width: 10px;
	vertical-align: middle;
	margin-left: 6%;
}

/* 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((520 / 1100) *100%);
	height: auto;
	margin:0 0 20px 0;
}
.twoCol .inner p {
	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,
.twoCol .inner .btn_o{
	margin-top: auto;
	padding-top: 20px;
}

@media screen and (max-width:768px) {
	.twoCol {
		display: block;
		margin-bottom:20px;
	}
	.twoCol .inner {
		width :100%;
		margin:0 0 10px 0;
	}
	.twoCol .inner .btn,
	.twoCol .inner .btn_o{
	margin-top: 0;
	padding-top: 20px;
}
}


/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255,255,255,0.70);
	z-index: 100;
	border-bottom: 1px solid #dadada;
	text-align: center;
}

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

header h1 {
	height: 116px;
	padding: 16px;
}

header h1 img {
	vertical-align: middle;
	height: 100%;
	width: auto;
}

@media screen and (max-width:599px) {
header h1 {
	height: 80px;
	padding: 5px;
}
}

/*================================================
 *  フッター
 ================================================*/
footer {
	clear: both;
	margin-top: 80px;
	background: #ddd;
}

.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: 0;
	font-size: 12px;
}
.fnav > ul li {
	text-align: left;
}

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

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

	.fnav {
		display: block;
		margin: 0;
	}
	.fnav > ul {
		width: 100%;
	}
}

/*================================================
 *  contents
 ================================================*/
p.catch{
	width: 80%;
	text-align: left;
	margin: 0 auto 1.2em;
}
p.catchR{
	width: 80%;
	text-align: right;
	margin: 0 auto 60px;
}
.twoCol .inner article{
	width: 100%;
	padding: 20px;
	text-align: center;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.twoCol .inner h3{
	width: 32%;
	margin: 0 auto;
	margin-bottom: 2em;
	height: 120px;
	position: relative;
}
.twoCol .inner:last-child h3{
	width: 60%;
}
.twoCol .inner article:last-child img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
p.text{
	width: 80%;
	margin: 0 auto;
}

/* 改行指定 */
@media screen and (min-width: 960px) {
  .ps-br{
    display: block; 
  }
  .sp-br{
    display: none; 
  }
}

@media screen and (max-width: 959px) {
  .ps-br{
    display: none; 
  }
  .sp-br{
    display: block; 
  }
}



/*================================================
 *  タブレット向けデザイン
 ================================================*/
@media screen and (max-width:1024px) {
	.inner {
		width: 100%;
	}

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

	footer {
		width: 100%;
	}

	h2{
		line-height: 1.8;
		font-size: 230%;
	}
	.twoCol .inner h3{
	width: 42%;
	}

}

@media screen and (max-width:768px) {
.twoCol .inner h3{
	width: 24%;
	height: 120px;
}

}
/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:599px) {
	.inner {
		width: 100%;
	}
	
	header + #contents{
		padding-top: 80px;
	}

	#contents {
		box-sizing: border-box;
		width: 100%;
		padding: 0 10px;
	}
	h2{
		line-height: 1.8;
		font-size: 180%;
		margin: 20px 0;
	}
	p.catch{
		width: 96%;
		margin-bottom: 20px;
	}
	p.catchR{
		width: 96%;
	    margin: 0 auto 30px;
	}		
	.twoCol .inner h3{
		width: 35%;
		height: 130px;
		margin-bottom: 20px;
	}
	p.text{
		width: 90%;
	}
	.btn a, .btn_o a{
		padding: 6px 5px;
		font-size: 92%;
	}
	.twoCol .inner article{
		min-height: 240px;
	}
	footer {
		width: 100%;
	}

	.lock {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
	}
}
/*================================================
 *  スマートフォンmini向けデザイン
 ================================================*/
@media screen and (max-width:374px) {
	.twoCol .inner h3{
		width: 40%;
		height: 110px;
		margin-bottom: 10px;
	}
}
