@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 (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フォントここから*/
body{
	-webkit-text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	color: #fff;
	letter-spacing: calc((0/1000)*1em);
	/*text-decoration-thickness: 1px;
	text-decoration-line: underline;
	text-decoration-color: #000000;
	text-decoration-style: solid;
	text-underline-offset: 3px;
	text-decoration-skip-ink: none;*/
}
html.active,
body.active{
	overflow: hidden;
}

.thin{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 100;
}
.elight{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 200;
}
.light{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 300;
}
.regular{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}
.mid{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
}
.sbold{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 600;
}
.bold{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 700;
}
.ebold{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 800;
}
.black{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 900;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.title{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}



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

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;
}
::-webkit-scrollbar{
	display: none;
}
::scrollbar{
	display: none;
}

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

main{
	width: 100%;
	height: auto;
	padding-top: 74px;
	margin: 0 auto;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	main{
	}
}

/*headerここから*/
header{
	width: 100%;
	height: 74px;
	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{
		box-shadow: none;
	}
}
header .header01{
	width: 100%;
	height: 100%;
	padding: 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: 140px;
	height: auto;
	margin: 0 5px 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;
	margin: 0;
	display: block;
}
header .header01 h1 a img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px){
/*メニューオープンボタン*/
	header .header01 .slide-menu-btn{
		width: auto;
		height: 100%;
		aspect-ratio: 1/1;
		margin: 0;
		background-color: #254A9D;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		flex-shrink: 0;
		cursor: pointer;
		position: relative;
		z-index: 10;
	}
	/*メニューオープンボタン内部テキスト*/
	header .header01 .slide-menu-btn::after{
		content: 'メニュー';
		width: auto;
		height: auto;
		margin: 5px 0 0;
		font-size: 12px;
		line-height: 12px;
		font-weight: 400;
		color: #ffffffff;
		display: block;
		text-align: center;
	}
	header .header01 .slide-menu-btn.active::after{
		content: '閉じる';
		color: #2C4B98;
	}
	/*メニューオープンボタン内部の線*/
	header .header01 .slide-menu-btn .line-bar_area{
		width: calc(100% - 50%);
		height: calc(100% - 70%);
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		position: relative;
	}
	header .header01 .slide-menu-btn.active{
		background-color: #ffffffff;
	}
	header .header01 .slide-menu-btn .line-bar_area::before{
		content: '';
		width: 100%;
		height: 2px;
		background-color: #ffffffff;
		display: block;
		position: absolute;
		top: 0;
		bottom: auto;
		left: 0;
		right: 0;
		margin: auto;
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar_area::before{
		background-color: #2C4B98;
		transform: rotate(calc(180deg + 45deg));
		bottom: 0;
	}
	header .header01 .slide-menu-btn .line-bar_area::after{
		content: '';
		width: 100%;
		height: 2px;
		background-color: #ffffffff;
		display: block;
		position: absolute;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar_area::after{
		background-color: #2C4B98;
		transform: rotate(calc(180deg + 45deg + 90deg));
		top: 0;
	}
	header .header01 .slide-menu-btn .line-bar_area .line-bar{
		width: 100%;
		height: 2px;
		margin: 0;
		background-color: #ffffff;
		display: block;
		transition: all 1.0s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar_area .line-bar{
		background-color: transparent;
		transition: all 1.0s ease;
	}
/*メニューオープンボタン*/
}
header .header01 nav{
	box-sizing: border-box;
	width: 700px;
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav{
		width: 100%;
		min-width: 320px;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		padding: 74px 0 30px;
		background-color: rgba( 255, 255, 255, .9);
		display: block;
		position: fixed;
		top: calc(var(--vh, 1vh) * -100);
		right: 0;
		z-index: 1;
		transition: all .5s;
	}
	header .header01 .panelactive{
		top: 0;
		right: 0;
		transition: all .5s;
	}
}
header .header01 nav .nav_01{
	width: 100%;
	height: 100%;
	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;
		margin: 0 auto;
		display: block;
		overflow-y: scroll;
		overflow-x: hidden;
		border-top: 1px solid #D9D9D9;
	}
}
header .header01 nav .nav_01 > li{
	width: auto;
	height: 100%;
	display: block;
	text-align: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li{
		width: 100%;
		height: auto;
		min-height: 60px;
		border-top: 1px solid #D9D9D9;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		text-align: left;
	}
	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: 100%;
	height: 100%;
	font-size: 15px;
	line-height: 19px;
	position: relative;
	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: auto;
		height: auto;
		padding: 5px 0;
		font-size: 16px;
		line-height: 20px;
		justify-content: flex-start;
	}
}
header .header01 nav .nav_01 > li > a:hover{
	opacity: 1;
}
header .header01 nav .nav_01 > li > a::before{
	content: '';
	width: auto;
	height: 6px;
	background-color: transparent;
	display: block;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li > a::before{
		display: none;
	}
}
header .header01 nav .nav_01 > li > a:hover::before{
	background-color: #104EA3;
	transition: all .5s;
}
header .header01 nav .nav_01 > li > .active::before{
	background-color: #104EA3;
	transition: all .5s;
}
header .header01 nav .nav_01 .drop{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
header .header01 nav .nav_01 .drop > a{
	width: auto;
	flex-grow: 1;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > a{
		max-width: calc(100% - 60px);
		flex-grow: 0;
	}
}
header .header01 nav .nav_01 .drop .drop-btn{
	width: 20px;
	height: auto;
	aspect-ratio: 1/1;
	margin: 0 0 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: rotateZ(0);
	transition: all .5s;
	flex-shrink: 0;
}
@media only screen and (min-width: 768px){
	header .header01 nav .nav_01 .drop:hover .drop-btn{
		transform: rotateZ(180deg);
		transition: all .5s;
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop .drop-btn{
		width: 60px;
		margin: 0;
	}
	header .header01 nav .nav_01 .drop .drop-btn.drop-active{
		transform: rotateZ(180deg);
		transition: all .5s;
	}
}
header .header01 nav .nav_01 .drop .drop-btn::before{
	content: '';
	width: 6px;
	height: 6px;
	margin: calc(-6px / 2) 0 0;
	border-bottom: 1px solid #000000;
	border-right: 1px solid #000000;
	display: block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	flex-shrink: 0;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop .drop-btn::before{
		width: 10px;
		height: 10px;
		margin: calc(-10px / 2) 0 0;
	}
}
header .header01 nav .nav_01 .drop > ul{
	width: auto;
	height: auto;
	padding-top: 74px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	bottom: auto;
	z-index: -1;
	margin: auto;
}
@media only screen and (min-width: 768px){
	header .header01 nav .nav_01 .drop > ul{
		visibility: hidden;
		opacity: 0;
		transition: all .3s;
		animation: tooltipShow2 0.3s linear 0s;
	}
	header .header01 nav .nav_01 .drop:hover ul{
		visibility: visible;
		opacity: 1;
		transition: all .3s;
		animation: tooltipShow 0.3s linear 0s;
	}
	/*ナビアニメーション(ドロップダウン)指示*/
	@keyframes tooltipShow{
		from{
			-webkit-transform: translateY(-10px);
			-moz-transform: translateY(-10px);
			-ms-transform: translateY(-10px);
			-o-transform: translateY(-10px);
			transform: translateY(-10px);
		}
		to{
			-webkit-transform: translateY(0px);
			-moz-transform: translateY(0px);
			-ms-transform: translateY(0px);
			-o-transform: translateY(0px);
			transform: translateY(0px);
		}
	}
	@keyframes tooltipShow2{
		from{
			opacity: 1;
			-webkit-transform: translateY(0px);
			-moz-transform: translateY(0px);
			-ms-transform: translateY(0px);
			-o-transform: translateY(0px);
			transform: translateY(0px);
		}
		to{
			opacity: 0;
			-webkit-transform: translateY(-10px);
			-moz-transform: translateY(-10px);
			-ms-transform: translateY(-10px);
			-o-transform: translateY(-10px);
			transform: translateY(-10px);
		}
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > ul{
		width: 100%;
		padding-top: 0;
		position: static;
		margin: auto;
		display: none;
	}
}
/*ナビアニメーション(ドロップダウン)指示*/
header .header01 nav .nav_01 .drop > ul li{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > ul li{
		min-height: 50px;
		padding: 0 0 0 1em;
		align-items: center;
		border-top: 1px dashed #D9D9D9;
	}
	header .header01 nav .nav_01 .drop > ul li:nth-of-type(1){
		border-top: 1px solid #D9D9D9;
	}
}
header .header01 nav .nav_01 .drop > ul li a{
	width: auto;
	height: auto;
	padding: 10px 0;
	font-size: 16px;
	line-height: 20px;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > ul li a{
		padding: 5px 0;
		font-size: 14px;
		line-height: 18px;
		background-color: transparent;
		justify-content: flex-start;
		align-items: center;
	}
}
header .header01 nav .nav_01 .drop > ul li a::before{
	display: none;
}
header .header01 nav .nav_01 .drop > ul li a:hover{
	background-color: #104EA3;
	color: #ffffff;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > ul li a:hover{
		background-color: transparent;
		color: #000000;
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .nav01_01{
		padding-top: 43px;
		border-top: 1px solid #D9D9D9;
		flex-direction: column;
	}
	header .header01 nav .nav_01 .nav01_01 ul{
		width: 100%;
		height: auto;
		margin: 10px 0 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
	}
	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 10px 0 0;
		border: 0;
		display: block;
	}
	header .header01 nav .nav_01 .nav01_01 ul li:last-of-type{
		margin-right: 0;
	}
	header .header01 nav .nav_01 .nav01_01 ul li a{
		width: auto;
		height: auto;
		margin: 0;
		font-size: 14px;
		line-height: 24px;
	}
}
/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: 17.0rem;
	padding: 50px 0 100px;
	margin: 0 auto;
	background-color: #00753b;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px){
	footer{
		height: 124px;
	}
}
footer .text01{
	font-size: 13px;
	line-height: 23px;display;
	color: #fff;
}

/*footerここまで*/

/*btn-topここから*/
.btn-top{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: auto;
	bottom: 0;
	left: auto;
	right: 20px;
	margin: auto;
	z-index: 10;
	cursor: pointer;
}
.btn-top::before{
	content: '';
	width: 50%;
	height: 40%;
	margin: 0;
	clip-path: polygon(0 100%, 50% 0, 100% 100%);
	background-color: #104EA3;
	display: block;
}
@media only screen and (max-width: 767px) {
	.btn-top {
		right: 0;
	}
}
/*btn-topここまで*/

/*includeここから*/

/*.eyecatch_incここから*/
.eyecatch_inc.top{
	width: 100%;
	min-width: 1280px;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top{
		min-width: 320px;
	}
}
.eyecatch_inc.top .eyecatch_inc01{
	width: 1180px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: 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_inc01{
		width: 90%;
		max-width: 320px;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .text01{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 20px;
	line-height: 30px;
}
.eyecatch_inc.top .eyecatch_inc02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-list{
	width: 100%;
	height: auto;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img{
	width: 100%;
	height: calc(100vh - 74px);
	height: calc(var(--vh_2, 1vh) * 100 - 74px);
	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_inc02 .eye_img{
		min-height: initial;
	}
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img01{
	background-color: #abbcca;
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img02{
	background-color:#104EA3;
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img03{
	background-color: #abbcca;
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img04{
	background-color:#104EA3;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc02 .eye_img01{
	}
	.eyecatch_inc.top .eyecatch_inc02 .eye_img02{
	}
	.eyecatch_inc.top .eyecatch_inc02 .eye_img03{
	}
	.eyecatch_inc.top .eyecatch_inc02 .eye_img04{
	}
}
.eyecatch_inc.top .eyecatch_inc02 .slick-prev,
.eyecatch_inc.top .eyecatch_inc02 .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_inc02 .slick-prev,
	.eyecatch_inc.top .eyecatch_inc02 .slick-next{
		width: 25px;
		height: 25px;
	}
}
.eyecatch_inc.top .eyecatch_inc02 .slick-prev:hover,
.eyecatch_inc.top .eyecatch_inc02 .slick-next:hover{
	opacity: .8;
	transition: all .5s;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-prev{
	left: 0;
	right: auto;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-next{
	left: auto;
	right: 0;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc02 .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_inc02 .slick-prev::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
		/*background-color: #19496f;*/
	}
}
.eyecatch_inc.top .eyecatch_inc02 .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_inc02 .slick-next::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
		/*background-color: #19496f;*/
	}
}
.eyecatch_inc.top .eyecatch_inc02 .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_inc02 .slick-dots{
	}
}
.eyecatch_inc.top .eyecatch_inc02 .slick-dots li{
	width: 8px;
	height: 8px;
	margin: 4px 4px 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-dots li:nth-of-type(-n+12){
	margin-top: 0;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-dots li button{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc02 .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_inc02 .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_inc01{
	width: 980px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short .eyecatch_inc01{
		width: 90%;
		max-width: 320px;
	}
}
.eyecatch_inc.short .eyecatch_inc01 h2{
	font-size: 20px;
	line-height: 30px;
}
.eyecatch_inc.short .eyecatch_inc02{
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
.eyecatch_inc.short .eyecatch_inc02 .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_inc02 .eye_img{
	background-color:#104EA3;
}
/*.eyecatch_incここまで*/

/*.pan_incここから*/
.pankuzu_inc{
	width: 100%;
	height: auto;
}
.pankuzu_inc .pankuzu_inc_inner{
	width: 1180px;
	height: auto;
	margin: 0 auto;
	font-size: 0;
	line-height: 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner{
		width: 90%;
		max-width: 320px;
	}
}
.pankuzu_inc .pankuzu_inc_inner > a{
	font-size: 16px;
	line-height: 26px;
	display: inline;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner > a{
		font-size: 12px;
		line-height: 22px;
	}
}
.pankuzu_inc .pankuzu_inc_inner > span{
	font-size: 16px;
	line-height: 26px;
	display: inline;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner > span{
		font-size: 12px;
		line-height: 22px;
	}
}
.pankuzu_inc .pankuzu_inc_inner > p{
	font-size: 16px;
	line-height: 26px;
	display: inline;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner > p{
		font-size: 12px;
		line-height: 22px;
	}
}
/*.pan_incここまで*/

/*.paginationここから*/
.wp-pagenavi {
	width: 1180px;
	height: auto;
	margin: calc(-30px / 2) 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi {
		width: 100%;
		max-width: 320px;
	}
}
.wp-pagenavi span{
	width: 37px;
	height: 37px;
	font-size: 13px;
	line-height: 37px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: calc(30px / 2);
	border: 1px solid #cccccc;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi span{
		margin: calc(30px / 2) calc(15px / 2);
	}
}
.wp-pagenavi a{
	width: 37px;
	height: 37px;
	font-size: 13px;
	line-height: 37px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: calc(30px / 2);
	border: 1px solid #DDDDDD;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi a{
		margin: calc(30px / 2) calc(15px / 2);
	}
}
.wp-pagenavi .current{
	width: 37px;
	height: 37px;
	font-size: 13px;
	line-height: 37px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: calc(30px / 2);
	border: 1px solid #E9EAEF;
	background-color: #E9EAEF;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi .current{
		margin: calc(30px / 2) calc(15px / 2);
	}
}
.wp-pagenavi .previouspostslink{
	border: 0;
	font-size: 0;
	line-height: 0;
}
.wp-pagenavi .previouspostslink::before{
	content: '';
	width: 6px;
	height: 6px;
	margin: 0 -3px 0 0;
	border-top: 1px solid #262626;
	border-left: 1px solid #262626;
	display: block;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	flex-shrink: 0;
}
.wp-pagenavi .nextpostslink{
	border: 0;
	font-size: 0;
	line-height: 0;
}
.wp-pagenavi .nextpostslink::before{
	content: '';
	width: 6px;
	height: 6px;
	margin: 0 0 0 -3px;
	border-bottom: 1px solid #262626;
	border-right: 1px solid #262626;
	display: block;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	flex-shrink: 0;
}
.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .extend{
	display: none;
}
/*.paginationここまで*/

/*includeここまで*/