@charset 'utf-8';

/*PC用CSS(ipad mini 7.9インチ対応)*/
@media only screen and (min-width: 768px) {
	.pc_none{
		display: none!important;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.sp_none{
		display: none!important;
	}
}

/*リキッドの場合に使用*/
/*@media only screen and (min-width: 768px){
	768px-1280px 画面幅1280px閲覧で1px=0.1rem可変
	html{
			font-size: 0.782vw;
		}
}
@media only screen and (max-width: 767px){
	-767px 画面幅375px閲覧で1px=0.1rem可変
	html{
			font-size: 2.67vw;
		}
}
@media only screen and (min-width: 1280px){
	1280px- 画面幅1280pxで1px=0.1rem固定
	html{
		font-size: 62.5%;
	}
}*/


/*font関係*/
/*基本的にはfont-familyはreset.cssにプリセットから引用*/

/*Googleフォントここから*/
@font-face{
	/*フォントの名前*/
	font-family: 'Lato';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Lato/Lato-Regular.ttf') format('truetype');
	font-weight: 400;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Lato';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Lato/Lato-Light.ttf') format('truetype');
	font-weight: 300;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Lato';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Lato/Lato-Bold.ttf') format('truetype');
	font-weight: 700;
}
/*Googleフォントここまで*/

/*サイト全体のベースフォントがゴシック体の場合ここから*/
/*例外で明長体を使う場合.font-mを付与*/
body{
	-webkit-text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	font-family:
	'Lato',
	sans-serif;
	font-weight: 400;
	color: #333333;
}
.light{
	font-family:
	'Lato',
	sans-serif;
	font-weight: 300;
}
.bold{
	font-family:
	'Lato',
	sans-serif;
	font-weight: 700;
}
.font-m{
	font-family: 'Times New Roman',
	'YuMincho',
	'Hiragino Mincho ProN',
	'Yu Mincho',
	'MS PMincho',
	serif;
}
/*サイト全体のベースフォントがゴシック体ここまで*/

/*サイト全体のベースフォントが明長体の場合ここから*/
/*例外でゴシック体を使う場合.font-gを付与*/
/*body{
	-webkit-text-size-adjust: 100%;
	font-family:
	'Times New Roman',
	'YuMincho',
	'Hiragino Mincho ProN',
	'Yu Mincho',
	'MS PMincho',
	serif;
	color: #000000;
}
.font-g{
	font-family:
	'Helvetica Neue',
	'Helvetica',
	'Hiragino Sans',
	'Hiragino Kaku Gothic ProN',
	'Arial',
	'Yu Gothic',
	'Meiryo',
	sans-serif;
}
.bold{
	font-weight: 800;
}*/
/*サイト全体のベースフォントが明長体ここまで*/

* {
	box-sizing: border-box;
}

body,
main,
header,
footer{
	/*min-width: 1280px;*/
}
@media only screen and (max-width: 767px){
	body,
	main,
	header,
	footer{
		min-width: 320px;
	}
}

body{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
}
@media only screen and (max-width: 767px) {
	body{
		min-width: initial;
	}
}

main{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
}

/*headerここから*/
header{
	width: 100%;
	height: 93px;
	display: block;
	position: fixed;
	top: 0;
	bottom: auto;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: rgba(255, 255, 255, .9);
	/*box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.2);*/
}
header .header00{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 20px;
}
@media only screen and (max-width: 840px){
	header .header00{
		position: relative;
		z-index: 0;
	}
	header .header00.active{
		z-index: 100;
	}
}
header .header00 h1{
	font-size: 11px;
	line-height: 16px;
	padding: 15px 0 5px;
}
@media only screen and (max-width: 540px){
	header .header00 h1{
		font-size: 10px;
		line-height: 15px;
		padding: 5px 0;
	}
}
header .header01{
	width: 100%;
	height: 57px;
	padding: 0 40px 0 25px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 840px){
	header .header01{
		padding: 0 10px 0 25px;
		background-color: transparent;
	}
}
header .header01 .logo{
	width: 219px;
	height: auto;
	margin: 0 0 6px;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 840px){
	header .header01 .logo{
		width: 219px;
		position: relative;
		z-index: 0;
	}
	header .header01 .logo.active{
		z-index: 100;
	}
}
header .header01 .logo a{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
header .header01 .logo a img{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
/*メニューオープンボタン*/
header .header01 .slide-menu-btn{
	display: none;
}
@media only screen and (max-width: 840px){
/*メニューオープンボタン*/
	header .header01 .slide-menu-btn{
		width: 54px;
		height: 100%;
		z-index: 10;
		position: relative;
		margin: 0;
		cursor: pointer;
		flex-shrink: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		align-content: center;
		flex-direction: column;
	}
	/*メニューオープンボタン内部の線*/
	header .header01 .slide-menu-btn .line-bar{
		width: 33px;
		height: 4px;
		background-color: #464646;
		position: relative;
		margin: 9px 0;
		display: block;
	}
	header .header01 .slide-menu-btn .line-bar::before{
		content: "";
		display: block;
		background-color: #464646;
		position: absolute;
		width: 100%;
		height: 4px;
		top: -9px;
	}
	header .header01 .slide-menu-btn .line-bar::after{
		content: "";
		display: block;
		background-color: #464646;
		position: absolute;
		width: 100%;
		height: 4px;
		bottom: -9px;
	}
	header .header01 .slide-menu-btn.active{
		background-color: transparent;
	}
	header .header01 .slide-menu-btn.active .line-bar{
		background-color: #464646;
		transform: rotate(135deg);
	}
	header .header01 .slide-menu-btn.active .line-bar::before{
		background-color: #464646;
		transform: rotate(90deg);
		top: 0;
	}
	header .header01 .slide-menu-btn.active .line-bar::after{
		opacity: 0;
	}
/*メニューオープンボタン*/
}
header .header01 nav{
	box-sizing: border-box;
	width: auto;
	height: 100%;
	flex-shrink: 0;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
@media only screen and (max-width: 840px){
	header .header01 nav{
		width: 100%;
		min-width: 320px;
		height: 100vh;
		padding: 110px 0 30px;
		background-color: rgba( 255, 255, 255, .96);
		display: block;
		position: fixed;
		top: -100vh;
		right: 0;
		z-index: 1;
	}
	header .header01 .panelactive{
		top: 0;
		right: 0;
	}
}
header .header01 nav .nav_01{
	width: 100%;
	height: auto;
	margin: 0 0 10px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
@media only screen and (max-width: 840px){
	header .header01 nav .nav_01{
		width: 70%;
		height: 100%;
		margin: 0 auto;
		display: block;
		overflow-y: scroll;
	}
}
header .header01 nav .nav_01 li{
	width: auto;
	height: auto;
	margin: 0 0 0 40px;
	display: block;
	text-align: center;
}
@media only screen and (max-width: 1140px){
	header .header01 nav .nav_01 li{
		margin: 0 0 0 30px;
	}
}
@media only screen and (max-width: 840px){
	header .header01 nav .nav_01 li{
		width: 100%;
		margin: 0;
		border-top: 1px solid #dddddd;;
	}
}
header .header01 nav .nav_01 li:nth-of-type(1){
		border-left: 0;
	}
header .header01 nav .nav_01 li a{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 19px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}
@media only screen and (max-width: 840px){
	header .header01 nav .nav_01 li a{
		height: 60px;
		padding: 0 0 0 30px;
		font-size: 17px;
		line-height: 20px;
		border-bottom: 0;
		justify-content: flex-start;
	}
}
header .header01 nav .nav_01 .nav01_01{
	display: none;
}
@media only screen and (max-width: 840px){
	header .header01 nav .nav_01 .nav01_01{
		padding-top: 30px;
		display: block;
	}
	header .header01 nav .nav_01 .nav01_01 ul{
		width: 100%;
		height: auto;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header .header01 nav .nav_01 .nav01_01 .icon{
		margin: 0 auto 46px;
	}
	header .header01 nav .nav_01 .nav01_01 ul li{
		width: auto;
		height: auto;
		display: block;
		border-top: 0;
		margin: 0 15px;
	}
	header .header01 nav .nav_01 .nav01_01 ul li a{
		font-size: 15px;
		line-height: 25px;
	}
	header .header01 nav .nav_01 .nav01_01 .icon li a{
		width: 30px;
		height: 30px;
		padding: 0;
		margin: 0;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		display: block;
	}
	header .header01 nav .nav_01 .nav01_01 .icon li:nth-of-type(1) a{
		background-image: url(../img/common/icon02_1.png);
	}
	header .header01 nav .nav_01 .nav01_01 .icon li:nth-of-type(2) a{
		background-image: url(../img/common/icon03_1.png);
	}
	header .header01 nav .nav_01 .nav01_01 .icon li:nth-of-type(3) a{
		background-image: url(../img/common/icon04_1.png);
	}
	header .header01 nav .nav_01 .nav01_01 .btn{
		width: 200px;
		height: 50px;
		padding: 0;
		margin: 0 auto 40px;
		background-color: #0141a2;
		border-radius: 80px;
		font-size: 15px;
		line-height: 25px;
		color: #ffffff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header .header01 nav .nav_01 .nav01_01 .btn span{
		font-size: 14px;
		line-height: 24px;
		display: block;
	}
	header .header01 nav .nav_01 .nav01_01 .btn:hover{
		background-color: #013079;
		opacity: 1;
	}
	header .header01 nav .nav_01 .nav01_01 .btn::before{
		content: '';
		width: 20px;
		height: 20px;
		margin: 0 6px 0 0;
		display: block;
		background-image: url(../img/common/icon01.png);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
	}
}
/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
footer .footer01{
	width: 100%;
	height: 433px;
	padding: 0;
	margin: 0 auto;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01{
		height: 416px;
	}
}
footer .footer01::before{
	content: '';
	width: auto;
	height: auto;
	background-image: url(../img/common/photo01.jpg);
	filter: brightness(0.6);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	margin: auto;
}
footer .footer01 .footer01_01{
	width: 980px;
	height: auto;
	margin: 0;
	display: block;
	position: relative;
	z-index: 1;
}
footer .footer01 .footer01_01 p{
	font-size: 24px;
	line-height: 34px;
	margin: 0 0 25px;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 540px) {
	footer .footer01 .footer01_01 p{
		font-size: 18px;
		line-height: 28px;
	}
}
footer .footer01 .footer01_01 .btn{
	width: 301px;
	height: 67px;
	margin: 0 auto 40px;
	background-color: #0141a2;
	border-radius: 80px;
	font-size: 15px;
	line-height: 25px;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .footer01 .footer01_01 .btn:hover{
	background-color: #013079;
	opacity: 1;
}
footer .footer01 .footer01_01 .btn::before{
	content: '';
	width: 24px;
	height: 24px;
	margin: 0 10px 0 0;
	display: block;
	background-image: url(../img/common/icon01.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
footer .footer01 .footer01_01 .btn span{
	font-size: 15px;
	line-height: 25px;
	display: block;
}
footer .footer01 .footer01_01 ul{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .footer01 .footer01_01 .icon{
	margin: 0 auto 40px;
}
footer .footer01 .footer01_01 ul li{
	width: auto;
	height: auto;
	display: block;
	margin: 0 18px;
}
footer .footer01 .footer01_01 ul li a{
	font-size: 15px;
	line-height: 25px;
}
footer .footer01 .footer01_01 .icon li a{
	width: 28px;
	height: 28px;
	margin: 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
}
footer .footer01 .footer01_01 .icon li:nth-of-type(1) a{
	background-image: url(../img/common/icon02.png);
}
footer .footer01 .footer01_01 .icon li:nth-of-type(2) a{
	background-image: url(../img/common/icon03.png);
}
footer .footer01 .footer01_01 .icon li:nth-of-type(3) a{
	background-image: url(../img/common/icon04.png);
}
footer .footer02{
	width: 100%;
	height: 50px;
	margin: 0 auto;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .footer02 .text01{
	font-size: 12px;
	line-height: 22px;
}
@media only screen and (max-width: 767px) {
	footer .footer02 .text01{
		font-size: 12px;
		line-height: 22px;
	}
}
/*footerここまで*/

/*includeここから*/

/*.eyecatch_incここから*/
.eyecatch_inc.top{
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc_01{
	width: 980px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc_01{
		width: 90%;
		max-width: 335px;
	}
}
.eyecatch_inc.top .eyecatch_inc_01 h2{
	font-size: 20px;
	line-height: 30px;
}
.eyecatch_inc.top .eyecatch_inc_02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-list{
	width: 100%;
	height: auto;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc_02 .eye_img{
	width: 100%;
	height: 100vh;
	min-height: 500px;
	margin: 0 auto;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc_02 .eye_img{
		min-height: initial;
	}
}
.eyecatch_inc.top .eyecatch_inc_02 .eye_img01{
	background-color: #abbcca;
}
.eyecatch_inc.top .eyecatch_inc_02 .eye_img02{
	background-color:#104EA3;
}
.eyecatch_inc.top .eyecatch_inc_02 .eye_img03{
	background-color: #abbcca;
}
.eyecatch_inc.top .eyecatch_inc_02 .eye_img04{
	background-color:#104EA3;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc_02 .eye_img01{
	}
	.eyecatch_inc.top .eyecatch_inc_02 .eye_img02{
	}
	.eyecatch_inc.top .eyecatch_inc_02 .eye_img03{
	}
	.eyecatch_inc.top .eyecatch_inc_02 .eye_img04{
	}
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-prev,
.eyecatch_inc.top .eyecatch_inc_02 .slick-next{
	width: 33px;
	height: 33px;
	top: 0;
	bottom: 0;
	z-index: 10;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc_02 .slick-prev,
	.eyecatch_inc.top .eyecatch_inc_02 .slick-next{
		width: 25px;
		height: 25px;
	}
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-prev:hover,
.eyecatch_inc.top .eyecatch_inc_02 .slick-next:hover{
	opacity: .8;
	transition: all .5s;
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-prev{
	left: 0;
	right: auto;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-next{
	left: auto;
	right: 0;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-prev::before{
	width: 33px;
	height: 33px;
	background-image: url(../img/slick/arrow01.png);
	background-repeat: no-repeat;
	background-size: 15px auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc_02 .slick-prev::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
		/*background-color: #19496f;*/
	}
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-next::before{
	width: 33px;
	height: 33px;
	background-image: url(../img/slick/arrow02.png);
	background-repeat: no-repeat;
	background-size: 15px auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc_02 .slick-next::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
		/*background-color: #19496f;*/
	}
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-dots{
	width: 200px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: absolute;
	top: auto;
	bottom: 30px;
	left: 0;
	right: 0;
	z-index: 10;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc_02 .slick-dots{
	}
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-dots li{
	width: 8px;
	height: 8px;
	margin: 4px 4px 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-dots li:nth-of-type(-n+12){
	margin-top: 0;
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-dots li button{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-dots li button::before{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	display: block;
	font-family: none;
	font-size: 0;
	line-height: 0;
	position: static;
	background: none;
	background-color: #abbcca;
}
.eyecatch_inc.top .eyecatch_inc_02 .slick-dots .slick-active button::before{
	background-color: #19496f;
}
.eyecatch_inc.short{
	width: 100%;
	height: 422px;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short{
		height: 205px;
	}
}
.eyecatch_inc.short .eyecatch_inc_01{
	width: 980px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 74px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short .eyecatch_inc_01{
		width: 90%;
		max-width: 335px;
	}
}
.eyecatch_inc.short .eyecatch_inc_01 h2{
	font-size: 20px;
	line-height: 30px;
}
.eyecatch_inc.short .eyecatch_inc_02{
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
.eyecatch_inc.short .eyecatch_inc_02 .eye_img{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
}
.eyecatch_inc.short .eyecatch_inc_02 .eye_img{
	background-color:#104EA3;
}
/*.eyecatch_incここまで*/

/*includeここまで*/