@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- 画面幅1366px閲覧で1px=0.1rem可変*/
	html{
			font-size: 0.733vw;
		}
}
@media only screen and (max-width: 767px){
/*	-767px 画面幅375px閲覧で1px=0.1rem可変*/
	html{
			font-size: 2.67vw;
			/*font-size: 2.23vw;*/
		}
}
@media only screen and (max-width: 374px){
/*	-374px 画面幅374pxで1px=0.1rem固定*/
	/*html{
			font-size: 62.5%;
		}*/
}
@media only screen and (min-width: 1280px){
/*	1280px- 画面幅1280pxで1px=0.1rem固定*/
	html{
		/*font-size: 62.5%;*/
	}
}

/*Googleフォントここから*/
@font-face{
	/*フォントの名前*/
	font-family: 'Noto Sans JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Thin.otf') format('otf');
	font-weight: 100;
	font-style: normal;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto Sans JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Light.otf') format('otf');
	font-weight: 300;
	font-style: normal;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto Sans JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Regular.otf') format('otf');
	font-weight: 400;
	font-style: normal;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto Sans JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Medium.otf') format('otf');
	font-weight: 500;
	font-style: normal;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto Sans JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Bold.otf') format('otf');
	font-weight: 700;
	font-style: normal;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto Sans JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Black.otf') format('otf');
	font-weight: 900;
	font-style: normal;
}

body{
	-webkit-text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	font-family:
	'Noto Sans JP',
	sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #000;
}
html.active,
body.active{
	height: 100%;
	overflow-y: hidden;
}
body.cover main,
body.cover footer{
	opacity: 0;
}

/*ADOBEフォントここから*/
/*Wayfinder CF Thin*/
.font01{
	font-family: wayfinder-cf, serif;
	font-weight: 100;
	font-style: normal;
}

/*Miller Headline Light Italic*/
.font02{
	font-family: miller-headline, serif;
	font-weight: 300;
	font-style: italic;
}
/*Miller Text Roman*/
.font03{
	font-family: miller-text, serif;
	font-weight: 400;
	font-style: normal;
}

/*Miller Display light*/
.font04{
	font-family: miller-display, serif;
	font-weight: 300;
	font-style: normal;
}

/*ADOBEフォントここまで*/
*{
	box-sizing: border-box;
}

.svg{
	position: relative;
}
.svg svg{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}
iframe{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}

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

/*headerここから*/
header{
	width: 100%;
	height: 80px;
	display: block;
	position: fixed;
	top: 0;
	bottom: auto;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: #ffffff;
/*	box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.2);*/
}
@media only screen and (max-width: 767px){
	header{
		height: 74px;
/*		box-shadow: none;*/
	}
}
header .header01{
	width: 100%;
	height: 100%;
	padding: 0 0 0 20px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01{
		padding: 0 0 0 5%;
		background-color: transparent;
		transition: all .5s;
	}
}
header .header01 h1{
	width: 270px;
	height: auto;
	margin: 0 30px 0 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 h1{
		width: 100px;
		position: relative;
		z-index: 0;
		transition: all 0s;
	}
	header .header01 h1.active{
		z-index: 100;
		transition: all 0s .5s;
	}
}
header .header01 h1 a{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
header .header01 h1 a img{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
@media only screen and (max-width: 767px){
/*メニューオープンボタン*/
	header .header01 .slide-menu-btn{
		width: 74px;
		height: 100%;
		z-index: 10;
		background-color: #254A9D;
		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::after{
		content: "メニュー";
		width: 100%;
		height: auto;
		font-size: 12px;
		line-height: 12px;
		font-weight: 400;
		color: #fff;
		text-align: center;
		margin: 5px 0 0;
		display: block;
	}
	header .header01 .slide-menu-btn.active::after{
		content: "閉じる";
		color: #2C4B98;
	}
	/*メニューオープンボタン内部の線*/
	header .header01 .slide-menu-btn .line-bar{
		width: 25px;
		height: 2px;
		color: #ffffff;
		background-color: #ffffff;
		border-radius: 1px;
		position: relative;
		margin: 15px 0 10px;
		transition: all 0.6s ease;
		display: block;
	}
	header .header01 .slide-menu-btn .line-bar::before{
		content: "";
		display: block;
		background-color: #fff;
		border-radius: 1px;
		position: absolute;
		width: 100%;
		height: 2px;
		transition: all 0.6s ease;
		top: -10px;
	}
	header .header01 .slide-menu-btn .line-bar::after{
		content: "";
		display: block;
		background-color: #fff;
		border-radius: 1px;
		position: absolute;
		width: 100%;
		height: 2px;
		transition: all 0.6s ease;
		bottom: -10px;
	}
	header .header01 .slide-menu-btn.active{
		background-color: #fff;
	}
	header .header01 .slide-menu-btn.active .line-bar{
		background-color: #2C4B98;
		transform: rotate(135deg);
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar::before{
		background-color: #2C4B98;
		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: 767px){
	header .header01 nav{
		width: 100%;
		min-width: 320px;
		height: 100vh;
		padding: 100px 0 30px;
		background-color: rgba( 255, 255, 255, .96);
		display: block;
		position: fixed;
		top: -100vh;
		right: 0;
		z-index: 1;
		transition: all .5s;
	}
	header .header01 .panelactive{
		top: 0;
		right: 0;
		transition: all .5s;
	}
}
header .header01 nav .nav_01{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01{
		width: 90%;
		max-width: 320px;
		height: 100%;
		margin: 0 auto;
		display: block;
		overflow-y: scroll;
		border-top: 1px solid #D9D9D9;
	}
}
header .header01 nav .nav_01 li{
	width: auto;
	height: auto;
	padding: 0 0 0 23px;
	margin: 0 0 0 23px;
	border-left: 1px solid #04122F;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 li{
		width: 100%;
		height: auto;
		border-top: 1px dashed #D9D9D9;
	}
}
header .header01 nav .nav_01 li:nth-of-type(1){
	padding-left: 0;
	margin-left: 0;
	border-left: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 li:nth-of-type(1){
		border-top: 0;
	}
}
header .header01 nav .nav_01 li a{
	box-sizing: border-box;
	width: auto;
	height: auto;
	font-size: 16px;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 li a{
		width: 100%;
		height: 66px;
		font-size: 16px;
		line-height: 20px;
		border-bottom: 0;
		justify-content: flex-start;
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .nav01_01{
		padding-top: 43px;
		border-top: 1px solid #D9D9D9;
	}
	header .header01 nav .nav_01 .nav01_01 ul{
		width: 100%;
		height: auto;
		margin: 10px 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(1){
		margin-top: 0;
	}
	header .header01 nav .nav_01 .nav01_01 ul li{
		width: auto;
		height: auto;
		margin: 0;
		border: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header .header01 nav .nav_01 .nav01_01 ul li a{
		width: auto;
		height: auto;
		padding: 0 10px;
		font-size: 14px;
		line-height: 24px;
	}
}
header .header01 nav .nav_02{
	width: 160px;
	height: auto;
	margin: 0 0 0 43px;
	display: block;
	flex-shrink: 0;
}
header .header01 nav .nav_02 a{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0.04em;
	color: #ffffff;
	background-color: #36B772;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: auto;
	margin: 0 auto;
	color: #ffffff;
	background-color: #04122F;
	display: block;
}
footer .footer01{
	width: 1120px;
	height: auto;
	padding: 56px 0 5px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	footer .footer01{
		width: 90%;
		max-width: 320px;
		padding: 40px 0 10px;
	}
}
footer .footer01 .footer01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 8px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
footer .footer01 .footer01_01 .footer01_01_01{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
	flex-shrink: 0;
}
footer .footer01 .footer01_01 .footer01_01_01 .logo{
	width: 310px;
	height: auto;
	margin: 0 0 20px;
	display: block;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_01 .footer01_01_01 .logo{
		width: 147px;
		margin: 0 auto 25px;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 .logo img{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
footer .footer01 .footer01_01 .footer01_01_01 p{
	width: auto;
	height: auto;
	margin: 0 0 1px;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.02em;
	display: block;
}
footer .footer01 .footer01_01 .footer01_01_01 .link01{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.02em;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	pointer-events: none;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_01 .footer01_01_01 .link01{
		pointer-events: auto;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 .link01::before{
	content: '';
	width: 13px;
	height: 10px;
	margin: 0 4px 0 0;
	background-image: url(../img/common/item01.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
footer .footer01 .footer01_01 .footer01_01_02{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
}
footer .footer01 .footer01_01 .footer01_01_02 ul{
	width: 100%;
	height: auto;
	margin: 20px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
footer .footer01 .footer01_01 .footer01_01_02 ul li{
	width: auto;
	height: auto;
	padding: 0 0 0 23px;
	margin: 0 0 0 23px;
	border-left: 1px solid #ffffff;
	display: block;
}
footer .footer01 .footer01_01 .footer01_01_02 ul li:nth-of-type(1){
	padding-left: 0;
	margin-left: 0;
	border-left: 0;
}
footer .footer01 .footer01_01 .footer01_01_02 ul li a{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 0.06em;
	display: block;
}
footer .footer01 .footer01_02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_02{
	}
}
footer .footer01 .footer01_02 .footer01_02_01{
	width: 1120px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	flex-direction: column;
}
footer .footer01 .footer01_02 .footer01_02_01 a{
	width: auto;
	height: auto;
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 24px;
	display: block;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_02 .footer01_02_01 a{
		font-size: 13px;
		line-height: 23px;
	}
}
footer .footer01 .footer01_02 .footer01_02_01 .text01{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 10px;
	line-height: 20px;
	letter-spacing: 0.02em;
	display: block;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_02 .footer01_02_01 .text01{
		font-size: 12px;
		line-height: 22px;
		margin-top: 10px;
	}
}
/*footerここまで*/

/*includeここから*/

/*.eyecatch_incここから*/
.eyecatch_inc.top{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top{
		width: 100%;
		height: calc(100vh - 60px);
		min-height: 458px;
		padding-bottom: 68px;
	}
}
.eyecatch_inc.top .eyecatch_inc01{
	box-sizing: border-box;
	width: 100%;
	height: calc(100vh - 80px);
	min-height: 780px;
	padding: 0 0 45px;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
}
.eyecatch_inc.top .eyecatch_inc01::before{
	content: '';
	width: 100%;
	height: 140px;
	background-color: #143893;
	display: block;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01{
	width: 82%;
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	position: relative;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01{
	width: auto;
	height: auto;
	margin: 0 0 202px -177px;
	display: block;
	position: relative;
	z-index: 1;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 .text01{
	width: 462px;
	height: auto;
	margin: 0 0 52px;
	display: block;
	clip-path: inset(0 100% 0 0);
	position: relative;
}
.eyecatch_inc.top.active .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 .text01{
	clip-path: inset(0 0 0 0);
	transition: clip-path .5s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 .text01::before{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
.eyecatch_inc.top.active .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 .text01::before{
	left: auto;
	right: -100%;
	transition: right .5s 1.2s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 .text01 img{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2{
	width: 590px;
	height: auto;
	margin: 0 0 19px;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(1){
	box-sizing: border-box;
	width: 590px;
	height: auto;
	padding: 23px;
	margin: 0 0 -1px;
	background-color: #ffffff;
	display: block;
	clip-path: inset(0 100% 0 0);
	position: relative;
}
.eyecatch_inc.top.active .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(1){
	clip-path: inset(0 0 0 0);
	transition: clip-path .5s .2s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(1)::before{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
.eyecatch_inc.top.active .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(1)::before{
	left: auto;
	right: -100%;
	transition: right .5s 1.4s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(1) img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(2){
	box-sizing: border-box;
	width: 291px;
	height: auto;
	padding: 0 23px 23px;
	margin: 0;
	background-color: #ffffff;
	display: block;
	clip-path: inset(0 100% 0 0);
	position: relative;
}
.eyecatch_inc.top.active .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(2){
	clip-path: inset(0 0 0 0);
	transition: clip-path .5s .4s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(2)::before{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
.eyecatch_inc.top.active .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(2)::before{
	left: auto;
	right: -100%;
	transition: right .5s 1.6s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h2 span:nth-of-type(2) img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h3{
	width: 317px;
	height: auto;
	margin: 0 0 0 -25px;
	display: block;
	clip-path: inset(0 100% 0 0);
	position: relative;
}
.eyecatch_inc.top.active .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h3{
	clip-path: inset(0 0 0 0);
	transition: clip-path .5s .6s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h3::before{
	content: '';
	width: 100%;
	height: 60%;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
.eyecatch_inc.top.active .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h3::before{
	left: auto;
	right: -100%;
	transition: right .5s 1.8s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_01 h3 img{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 .eyecatch_inc01_01_02{
	width: auto;
	height: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.eyecatch_inc.else{
	width: 100%;
	height: 280px;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.else{
	}
}
.eyecatch_inc.else .eyecatch_inc01{
	width: 1120px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.else .eyecatch_inc01{
		width: 90%;
		max-width: 320px;
	}
}
.eyecatch_inc.else .eyecatch_inc01 h2{
	width: auto;
	height: auto;
	margin: 0 auto 15px;
	font-size: 18px;
	line-height: 28px;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.eyecatch_inc.else .eyecatch_inc01 h2 img{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.eyecatch_inc.else .eyecatch_inc01 h3{
	width: 100%;
	height: auto;
	margin: 0 auto;
	font-size: 15px;
	line-height: 25px;
	color: #36B772;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*.eyecatch_incここまで*/

/*.paginationここから*/
.wp-pagenavi{
	width: 80%;
	height: auto;
	margin: 80px auto 0;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px){
	.wp-pagenavi{
		max-width: 335px;
		margin: 30px auto 0;
	}
}
.wp-pagenavi span{
	width: 34px;
	height: 34px;
	font-size: 15px;
	line-height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 8px;
	text-align: center;
	border-radius: 50%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
.wp-pagenavi a{
	width: 34px;
	height: 34px;
	font-size: 15px;
	line-height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 8px;
	text-align: center;
	border-radius: 50%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .extend{
	display: none;
}
.wp-pagenavi a:hover{
	color: #ffffff;
	background-color: #36B772;
	opacity: 1;
}
.wp-pagenavi .current{
	width: 34px;
	height: 34px;
	font-size: 15px;
	line-height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 8px;
	text-align: center;
	color: #ffffff;
	background-color: #36B772;
	border-radius: 50%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
/*.paginationここまで*/

/*.inc01ここから*/
.inc01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #F0F1F4;
	display: block;
}
.inc01 .inc01_01{
	width: 1120px;
	height: auto;
	padding: 65px 0 55px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01{
		width: 90%;
		max-width: 335px;
		padding: 42px 0 0;
	}
}
.inc01 .inc01_01 .inc01_01_01{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
}
.inc01 .inc01_01 .inc01_01_01 .text01{
	width: 252px;
	height: auto;
	margin: 0 0 15px;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .text01{
		width: 100%;
		margin: 0 auto 4px;
	}
}
.inc01 .inc01_01 .inc01_01_01 .text01 img{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.inc01 .inc01_01 .inc01_01_01 .text02{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 15px;
	line-height: 25px;
	color: #36B772;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .text02{
		width: 100%;
		margin: 0 auto;
		font-size: 16px;
		line-height: 20px;
	}
}
.inc01 .inc01_01 .inc01_01_02{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 .link01{
	width: auto;
	height: auto;
	margin: 0 0 5px;
	font-size: 36px;
	line-height: 46px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-shrink: 0;
	pointer-events: none;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 .link01{
		pointer-events: auto;
	}
}
.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 .link01 span{
	margin: 0 14px 0 0;
	font-size: 24px;
	line-height: 34px;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 .link01{
	}
}
.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 p{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.02em;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 p{
	}
}
.inc01 .inc01_01 .inc01_01_02 .link02{
	box-sizing: border-box;
	width: 320px;
	height: 70px;
	margin: 0 0 0 50px;
	font-size: 18px;
	line-height: 28px;
	color: #ffffff;
	background-color: #36B772;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02 .link02{
		width: 100%;
		max-width: 270px;
	}
}
.inc01 .inc01_01 .inc01_01_02 .link02 span{
	width: auto;
	height: auto;
	margin: 0 0 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inc01 .inc01_01 .inc01_01_02 .link02 span::before{
	content: '';
	width: 6px;
	height: 6px;
	margin: 0 0 0 -3px;
	border-top: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
	transform: rotateZ(45deg);
	display: block;
}
.inc01 .inc01_01 .inc01_01_02 .link02 span::after{
	content: '';
	width: 6px;
	height: 6px;
	margin: 0;
	border-top: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
	transform: rotateZ(45deg);
	display: block;
}
/*.inc01ここまで*/

/*.inc02ここから*/
.inc02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.inc02 .inc02_01{
	width: 1120px;
	height: auto;
	padding: 80px 0 63px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01{
		width: 90%;
		max-width: 335px;
	}
}
.inc02 .inc02_01 .inc02_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.inc02 .inc02_01 a{
	width: 530px;
	height: 160px;
	margin: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	box-shadow: 5px 5px 0 #CCCCCC;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inc02 .inc02_01 a:nth-of-type(1){
	background-image: url(../img/index/photo07.jpg);
}
.inc02 .inc02_01 a:nth-of-type(2){
	background-image: url(../img/index/photo08.jpg);
}
.inc02 .inc02_01 a::before{
	content: '';
	margin: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
}
.inc02 .inc02_01 a:nth-of-type(1)::before{
	width: 329px;
	height: 33px;
	background-image: url(../img/index/photo07_1.png);
}
.inc02 .inc02_01 a:nth-of-type(2)::before{
	width: 379px;
	height: 98px;
	background-image: url(../img/index/photo08_1.png);
}
/*.inc02ここまで*/
/*includeここまで*/