@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: 'Noto_Sans_JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Regular.otf') format('truetype');
	font-weight: 400;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto_Sans_JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Light.otf') format('truetype');
	font-weight: 300;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto_Sans_JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Medium.otf') format('truetype');
	font-weight: 500;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto_Sans_JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Bold.otf') format('truetype');
	font-weight: 700;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto_Sans_JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Black.otf') format('truetype');
	font-weight: 900;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Roboto';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Roboto/Roboto-Medium.ttf') format('truetype');
	font-weight: 500;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Roboto';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Roboto/Roboto-Bold.ttf') format('truetype');
	font-weight: 700;
}
/*Googleフォントここまで*/

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

/*サイト全体のベースフォントが明長体の場合ここから*/
/*例外でゴシック体を使う場合.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;
}*/
/*サイト全体のベースフォントが明長体ここまで*/

/*Googleフォントここから*/
.g_bold02{
	font-family:
	'Roboto',
	'Noto_Sans_JP';
	font-weight: 700;
}
.g_mid02{
	font-family:
	'Roboto',
	'Noto_Sans_JP';
	font-weight: 500;
}
/*Googleフォントここまで*/

/*x フォントここから*/
.x_bold{
	font-family:
	'ゴシックMB101 B',
	'Gothic MB101',
	'Noto_Sans_JP';
}
/*x フォントここまで*/

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

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;
	}
}
/*includeここから*/

/*.eyecatch_inc01ここから*/
.eyecatch_inc01.top{
	width: 100%;
	height: auto;
	padding-top: 104px;
	position: relative;
	display: block;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc01.top{
		padding-top: 64px;
	}
}
.eyecatch_inc01.top .eyecatch_inc01_01{
	width: 1180px;
	height: auto;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	position: absolute;
	top: 104px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc01.top .eyecatch_inc01_01{
		width: 90%;
		max-width: 335px;
		top: 64px;
	}
}
.eyecatch_inc01.top .eyecatch_inc01_01 h1, .eyecatch_inc01.top .eyecatch_inc01_01 h2{
	font-size: 36px;
	line-height: 46px;
	text-align: center;
	margin: 0 0 20px;
}
.eyecatch_inc01.top .eyecatch_inc01_01 p{
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc01.top .eyecatch_inc01_01 p{
		font-size: 10px;
		line-height: 20px;
	}
}
.eyecatch_inc01.top .eyecatch_inc01_02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-list{
	width: 100%;
	height: auto;
	display: block;
}
.eyecatch_inc01.top .eyecatch_inc01_02 .eye_img{
	width: 100%;
	height: auto;
	min-height: 500px;
	margin: 0 auto;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc01.top .eyecatch_inc01_02 .eye_img{
		min-height: 365px;
	}
}
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-prev,
.eyecatch_inc01.top .eyecatch_inc01_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_inc01.top .eyecatch_inc01_02 .slick-prev,
	.eyecatch_inc01.top .eyecatch_inc01_02 .slick-next{
		width: 25px;
		height: 25px;
	}
}
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-prev:hover,
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-next:hover{
	opacity: .8;
	transition: all .5s;
}
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-prev{
	left: 0;
	right: auto;
	margin: auto;
}
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-next{
	left: auto;
	right: 0;
	margin: auto;
}
.eyecatch_inc01.top .eyecatch_inc01_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_inc01.top .eyecatch_inc01_02 .slick-prev::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
		/*background-color: #19496f;*/
	}
}
.eyecatch_inc01.top .eyecatch_inc01_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_inc01.top .eyecatch_inc01_02 .slick-next::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
		/*background-color: #19496f;*/
	}
}
.eyecatch_inc01.top .eyecatch_inc01_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_inc01.top .eyecatch_inc01_02 .slick-dots{
	}
}
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-dots li{
	width: 12px;
	height: 12px;
	margin: 4px 4px 0;
	display: block;
}
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-dots li:nth-of-type(-n+12){
	margin-top: 0;
}
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-dots li button{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}
.eyecatch_inc01.top .eyecatch_inc01_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: #ffffff;
}
.eyecatch_inc01.top .eyecatch_inc01_02 .slick-dots .slick-active button::before{
	background-color: #F09923;
}
.eyecatch_inc01.short{
	width: 100%;
	height: auto;
	padding-top: 104px;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc01.short{
		padding-top: 64px;
	}
}
.eyecatch_inc01.short .eyecatch_inc01_01{
	width: 1180px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	top: 104px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc01.short .eyecatch_inc01_01{
		width: 90%;
		max-width: 335px;
		top: 64px;
	}
}
.eyecatch_inc01.short .eyecatch_inc01_01 h1, .eyecatch_inc01.short .eyecatch_inc01_01 h2{
	font-size: 36px;
	line-height: 46px;
	margin: 0 0 5px;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc01.short .eyecatch_inc01_01 h1, .eyecatch_inc01.short .eyecatch_inc01_01 h2{
		font-size: 30px;
		line-height: 40px;
	}
}
.eyecatch_inc01.short .eyecatch_inc01_01 p{
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc01.short .eyecatch_inc01_01 p{
		font-size: 10px;
		line-height: 20px;
	}
}
.eyecatch_inc01.short .eyecatch_inc01_02{
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
.eyecatch_inc01.short .eyecatch_inc01_02 .eye_img{
	width: 100%;
	height: 300px;
	margin: 0 auto;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc01.short .eyecatch_inc01_02 .eye_img{
		height: 264px;
	}
}
/*.eyecatch_inc01ここまで*/

/*.inc02_2ここから*/
.inc02_2{
	width: 100%;
	height: auto;
	display: block;
}
.inc02_2 .inc02_2_01{
	width: 1180px;
	height: auto;
	padding: 30px 0;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc02_2 .inc02_2_01{
		width: 90%;
		max-width: 335px;
	}
}
.inc02_2 .inc02_2_01 ul{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-content: stretch;
}
@media only screen and (max-width: 767px){
	.inc02_2 .inc02_2_01 ul{
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}
.inc02_2 .inc02_2_01 ul li{
	box-sizing: border-box;
	width: auto;
	height: auto;
	padding: 2px;
	margin: 0 2px;
	border: 1px solid #d6d6d6;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
@media only screen and (max-width: 767px){
	.inc02_2 .inc02_2_01 ul li{
		width: calc((100% - 5px) / 2);
		margin: 5px 5px 0 0;
	}
	.inc02_2 .inc02_2_01 ul li:nth-of-type(-n+2){
		margin-top: 0;
	}
	.inc02_2 .inc02_2_01 ul li:nth-of-type(2n){
		margin-right: 0;
	}
}
.inc02_2 .inc02_2_01 ul li a{
	width: 100%;
	height: 100%;
	padding: 10px 30px;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc02_2 .inc02_2_01 ul li a{
		padding: 10px 5px;
	}
}
.inc02_2 .inc02_2_01 ul li a:hover {
	background-color: #f6f6f6;
}
/*.inc02_2ここまで*/

/*includeここまで*/