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


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

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

.bold{
	font-weight: 600;
}
@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-Bold.ttf") format('truetype');
	font-weight: 700;
}
.g_font{
	font-family:
	'Lato',
	sans-serif;
	font-weight: 400;
}
.g_bold{
	font-family:
	'Lato',
	sans-serif;
	font-weight: 700;
}
.svg{
	position: relative;
}
.svg img,
.svg svg{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
*{
	box-sizing: border-box;
}

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

@keyframes rotation{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}

/*headerここから*/
header{
	width: 100%;
	min-width: 1280px;
	height: auto;
	display: block;
	position: fixed;
	top: 0;
	bottom: auto;
	left: 0;
	right: 0;
	z-index: 100;
	color: #ffffff;
	background-color: #000000;
}
@media only screen and (max-width: 767px){
	header{
		min-width: 320px;
	}
}
header .header_01{
	width: 980px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1;
	position: relative;
}
@media only screen and (max-width: 767px){
	header .header_01{
		width: 100%;
		padding: 14px 0;
		background-color: transparent;
		transition: all .5s;
	}
	.change .header_01{
		background-color: rgba( 255, 255, 255, .8);
		transition: all .5s;
	}
}
header .header_01 .logo{
	width: 144px;
	height: auto;
	display: block;
	margin-right: 50px;
}
header .header_01 .logo a{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
header .header_01 .logo a .svg{
	width: 100%;
	height: 53px;
	display: block;
	margin: 0 auto;
}
@media only screen and (max-width: 767px){
	header .header_01 .logo{
		width: 154px;
		margin-left: 12px;
	}
	header .header_01 .logo a .svg{
		width: 100%;
		height: 57px;
		display: block;
		margin: 0 auto;
	}
}
header .header_01 .logo .svg svg path{
	fill: #ffffff;
	transition: all .5s;
}
header .header_01 .logo a:hover .svg svg path{
	fill: #B40808;
	opacity: 1;
	transition: all .5s;
}
/*メニューオープンボタン*/
header .header_01 .slide-menu-btn{
	width: 85px;
	height: 100%;
	display: block;
	position: relative;
	z-index: 100;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}
header .header_01 .slide-menu-btn .line-bar{
	width: 35px;
	height: 3px;
	background: #fff;
	border-radius: 1px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
	color: #fff;
}
header.change .header_01 .slide-menu-btn .line-bar{
	background: #656565;
}
header .header_01 .slide-menu-btn .line-bar::before{
	content: "";
	display: block;
	background: #fff;
	border-radius: 1px;
	position: absolute;
	width: 100%;
	height: 3px;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
	top: -10px;
}
header.change .header_01 .slide-menu-btn .line-bar::before{
	background: #656565;
}
header .header_01 .slide-menu-btn .line-bar::after{
	content: "";
	display: block;
	background: #fff;
	border-radius: 1px;
	position: absolute;
	width: 100%;
	height: 3px;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
	bottom: -10px;
}
header.change .header_01 .slide-menu-btn .line-bar::after{
	background: #656565;
}
header .header_01 .slide-menu-btn.active .line-bar{
	background: #ffffff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
header .header_01 .slide-menu-btn.active .line-bar::before{
	background: #ffffff;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	top: 0;
}
header .header_01 .slide-menu-btn.active .line-bar::after{
	opacity: 0;
}
/*スマホメニュー中身*/
header .header_01 nav{
	box-sizing: border-box;
	width: 550px;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-right: auto;
}
header .header_01 nav .nav_01{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
}
header .header_01 nav .nav_01 li{
	width: auto;
	height: auto;
	display: block;
	text-align: center;
}
@media only screen and (max-width: 767px){
	header .header_01 nav{
		display: block;
		background-color: #000000;
		width: 100%;
		min-width: 320px;
		height: 100vh;
		padding: 85px 0 30px;
		position: fixed;
		top: -110vh;
		right: 0;
		z-index: 10;
		transition: all .5s;
	}
	header .header_01 .panelactive{
		top: 0;
		right: 0;
		transition: all .5s;
	}
}
header .header_01 nav .nav_01 li:nth-of-type(4){
	cursor: auto;
}
header .header_01 nav .nav_01 li a{
	display: block;
	padding: 30px 0 26px;
	font-size: 16px;
	line-height: 19px;
	border-bottom: 4px solid transparent;
}
header .header_01 nav .nav_01 li a:hover{
	color: #B40808;
	border-bottom: 4px solid #B40808;
	opacity: 1;
}
header .header_01 nav .nav_01 li .active{
	color: #B40808;
	border-bottom: 4px solid #B40808;
	pointer-events: none;
}
header .header_01 nav .nav_01 .parent{
	position: relative;
	z-index: 1000;
}
header .header_01 nav .nav_01 .parent ul{
	position: absolute;
	z-index: -1;
	top: 49px;
	left: 0;
	right: auto;
	bottom: auto;
	margin: auto;
	width: 200px;
	padding-top: 30px;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	animation: tooltipShow2 0.3s linear 0s;
}
header .header_01 nav .nav_01 .parent:hover ul{
	visibility: visible;
  	opacity: 1;
  	transition: all .3s;
  	animation: tooltipShow 0.3s linear 0s;
}
/*ナビアニメーション指示*/
@keyframes tooltipShow{
	from{
		transform: translateY(-1.0px);
	}
	to{
		transform: translateY(.0px);
	}
}
@keyframes tooltipShow2{
	from{
		transform: translateY(.0px);
	}
	to{
		transform: translateY(-1.0px);
	}
}
header .header_01 nav .nav_01 .parent ul li a{
	height: 48px;
	cursor: pointer;
	padding: 0;
	font-size: 14px;
	line-height: 18px;
	background-color: #000000;
	border: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	align-content: center;
}
header .header_01 nav .nav_01 .parent ul li a:hover{
	background-color: #ffffff;
	color: #000000;
}
header .header_01 nav .nav_01 .parent ul li a span{
	font-size: 12px;
	line-height: 16px;
}

header .header_01 .nav_02{
	width: 202px;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	text-align: right;
}
header .header_01 .nav_02 p{
	font-size: 11px;
	line-height: 17px;
	margin: 0;
}
header .header_01 .nav_02 p .text01{
	font-size: 11px;
	line-height: 17px;
	display: block;
}
header .header_01 .nav_02 p .text02{
	font-size: 20px;
	line-height: 20px;
	display: block;
}
header .header_01 .nav_02 ul{
	width: 23px;
	height: auto;
	margin-left: 19px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: space-between;
	flex-wrap: wrap;
}
header .header_01 .nav_02 ul li{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
}
header .header_01 .nav_02 ul li a{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	display: block;
}
header .header_01 .nav_02 ul li:nth-of-type(1) a .svg{
	width: 23px;
	height: 23px;
	display: block;
	margin: 0;
}
header .header_01 .nav_02 ul li:nth-of-type(2) a .svg{
	width: 23px;
	height: 19px;
	display: block;
	margin: 0;
}
header .header_01 .nav_02 ul li a .svg svg path,
header .header_01 .nav_02 ul li a .svg svg ellipse{
	fill: #ffffff;
	transition: all .5s;
}
header .header_01 .nav_02 ul li a:hover .svg svg path,
header .header_01 .nav_02 ul li a:hover .svg svg ellipse{
	fill: #B40808;
	opacity: 1;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header_01 nav ul.nav_03{
		width: 100%;
		height: 100%;
		display: block;
		margin: 0;
		overflow-x: scroll;
	}
	header .header_01 ul.nav_03 li.nav03_00{
		padding: 20px 5%;
		text-align: center;
		font-size: 16px;
		line-height: 26px;
		font-weight: 400;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		border-bottom: 1px solid #D9D9D9;
	}
	header .header_01 ul.nav_03 li:nth-of-type(1){
		padding-top: 0;
	}
	header .header_01 ul.nav_03 li.nav03_00 a{
		display: inline-block;
		font-size: 16px;
		line-height: 26px;
		font-weight: 400;
	}
	header .header_01 ul.nav_03 li.nav03_00:nth-of-type(1) a{
		width: 154px;
		height: 57px;
		display: block;
		margin: 0 auto;
	}
	header .header_01 ul.nav_03 li.nav03_00 .active{
		color: #B40808;
		pointer-events: none;
	}
	header .header_01 ul.nav_03 li.nav03_00:nth-of-type(1) a span{
		width: 100%;
		height: 100%;
		display: block;
		margin: 0;
	}
	header .header_01 nav ul.nav_03 li.nav03_01{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		border-bottom: 1px solid #D9D9D9;
	}
	header .header_01 ul.nav_03 li.nav03_01 a{
		box-sizing: border-box;
		width: calc(100% - 66px);
		height: auto;
		display: inline-block;
		font-weight: 400;
		padding: 20px 5%;
		text-align: center;
		font-size: 16px;
		line-height: 26px;
		font-weight: 400;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	header .header_01 ul.nav_03 li.nav03_01 .active{
		color: #B40808;
		pointer-events: none;
	}
	header .header_01 ul.nav_03 li.nav03_01 .btn{
		width: 66px;
		height: 66px;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
	}
	header .header_01 ul.nav_03 li.nav03_01 .btn .svg{
		width: 14px;
		height: 8px;
		display: block;
		transform: rotateZ(0);
		transition: all .5s;
	}
	header .header_01 ul.nav_03 li.nav03_01 .btn.open .svg{
		transform: rotateZ(180deg);
		transition: all .5s;
	}
	header .header_01 ul.nav_03 li.nav03_01 ul.nav03_01_01{
		display: none;
		width: 100%;
		height: auto;
	}
	header .header_01 ul.nav_03 li.nav03_01 ul.nav03_01_01 li{
		border-bottom: 1px dashed #D9D9D9;
	}
	header .header_01 ul.nav_03 li.nav03_01 ul.nav03_01_01 li:nth-of-type(1){
		border-top: 1px solid #D9D9D9;
	}
	header .header_01 ul.nav_03 li.nav03_01 ul.nav03_01_01 li:last-child{
		border: none;
	}
	header .header_01 ul.nav_03 li.nav03_01 ul.nav03_01_01 li a{
		display: block;
		width: 100%;
		font-size: 16px;
		line-height: 26px;
		font-weight: 400;
		padding: 20px 5% 20px 10%;
		text-align: left;
	}
	li.nav03_02{
		width: 100%;
		margin-top: 43px;
	}
	li.nav03_02 ul.nav03_02_01{
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	li.nav03_02 ul.nav03_02_01 li{
		display: block;
		width: auto;
		text-align: center;
	}
	li.nav03_02 ul.nav03_02_01 li:nth-of-type(1){
		border: none;
	}
	li.nav03_02 ul.nav03_02_01 li a{
		display: block;
		width: 100%;
		padding: 0 10px;
		font-size: 14px;
		line-height: 24px;
		font-weight: 400;
	}
	li.nav03_02 ul.nav03_02_01 li .active{
		color: #B40808;
		pointer-events: none;
	}
	.slick-prev, .slick-next{
		z-index: 99;
	}
}
header .header_03{
	width: 110px;
	height: 100%;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	left: auto;
	right: -7px;
	margin: auto;
}
header .header_03 ul{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	align-content: center;
}
header .header_03 ul li{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
}
header .header_03 ul li a{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	display: block;
}
header .header_03 ul li a .svg{
	width: 100%;
	height: 110px;
	display: block;
	margin: 0;
}
header .header_03 ul .header_03_01 a{
	height: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	background-color: #000000;
}
/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: auto;
	min-width: 1280px;
	display: block;
	padding: 41px 0 0;
	margin: 95px auto 0;
	color: #ffffff;
	background-color: #000000;
}
@media only screen and (max-width: 767px){
	footer{
		min-width: 320px;
		padding: 40px 0 0;
	}
}
footer .footer_01{
	width: 980px;
	height: auto;
	display: block;
	margin: 0 auto;
}
@media only screen and (max-width: 767px){
	footer .footer_01{
		width: 100%;
	}
}
footer .footer_01 .footer_01_00{
	width: 100%;
	height: auto;
	margin: 0 auto 27px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	footer .footer_01 .footer_01_00{
		width: 90%;
		margin: 0 auto 25px;
		display: block;
	}
}
footer .footer_01 .footer_01_00 .svg{
	width: 144px;
	height: 53px;
	display: block;
	margin: 0;
}
@media only screen and (max-width: 767px){
	footer .footer_01 .footer_01_00 .svg{
		width: 192px;
		height: 71px;
		margin: 0 auto 40px;
	}
}
footer .footer_01 .footer_01_00 .svg svg path,
footer .footer_01 .footer_01_00 .svg svg ellipse{
	fill: #ffffff;
	transition: all .5s;
}
footer .footer_01 .footer_01_00 .svg:hover svg path,
footer .footer_01 .footer_01_00 .svg:hover svg ellipse{
	fill: #B40808;
	opacity: 1;
	transition: all .5s;
}
footer .footer_01 .footer_01_00 .footer_01_00_01{
	width: 80px;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	footer .footer_01 .footer_01_00 .footer_01_00_01{
		width: 90%;
		margin: 0 auto;
		justify-content: center;
	}
}
footer .footer_01 .footer_01_00 .footer_01_00_01 .svg{
	width: 32px;
	height: 32px;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px){
	footer .footer_01 .footer_01_00 .footer_01_00_01 .svg{
		margin: 0 15px;
	}
}
footer .footer_01 .footer_01_00 .footer_01_00_01 .svg:nth-of-type(2){
	width: 32px;
	height: 26px;
}
footer .footer_01 .footer_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 15px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
footer .footer_01 .footer_01_01 .footer_01_01_01{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
}
footer .footer_01 .footer_01_01 ul{
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
}
footer .footer_01 .footer_01_01 ul li{
	width: auto;
	height: auto;
	display: block;
	margin: 0;
}
footer .footer_01 .footer_01_01 ul li a{
	padding-left: 1em;
	font-size: 14px;
	line-height: 24px;
	display: block;
}
footer .footer_01 .footer_01_01 ul li:nth-of-type(1) a{
	padding-left: 0;
}
footer .footer_01 .footer_01_01 ul li a:hover{
	color: #B40808;
	opacity: 1;
}
footer .footer_01 .footer_01_01 ul li .active{
	color: #B40808;
	pointer-events: none;
}
footer .footer_01 .footer_01_02{
	width: 100%;
	height: auto;
	padding: 0 0 35px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
@media only screen and (max-width: 767px){
	footer .footer_01 .footer_01_02{
		width: 90%;
		padding: 0 0 20px;
		display: block;
	}
}
footer .footer_01 .footer_01_02 ul{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
}
footer .footer_01 .footer_01_02 ul li{
	width: auto;
	height: auto;
	display: block;
	padding: 0 10px;
	position: relative;
}
footer .footer_01 .footer_01_02 ul li:nth-of-type(1)::before{
	content: '';
	box-sizing: border-box;
	width: 2px;
	height: 12px;
	display: block;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: auto;
	margin: auto;
}
footer .footer_01 .footer_01_02 ul li::after{
	content: '';
	box-sizing: border-box;
	width: 2px;
	height: 12px;
	display: block;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
footer .footer_01 .footer_01_02 ul li a{
	font-size: 14px;
	line-height: 24px;
	text-align: right;
}
footer .footer_01 .footer_01_02 ul li a:hover{
	color: #B40808;
	opacity: 1;
}
footer .footer_01 .footer_01_02 ul li .active{
	color: #B40808;
	pointer-events: none;
}
footer .footer_01 .footer_01_02 .text01{
	font-size: 14px;
	line-height: 24px;
	text-align: right;
}
@media only screen and (max-width: 767px){
	footer .footer_01 .footer_01_02 .text01{
		font-size: 14px;
		line-height: 20px;
	}
}
footer .footer_01 .footer_01_02 .text01 span{
	font-size: 14px;
	line-height: 24px;
}
@media only screen and (max-width: 767px){
	footer .footer_01 .footer_01_02 .text01 a{
		font-size: 14px;
		line-height: 20px;
	}
}
footer .footer_03{
	width: 100%;
	height: auto;
	display: block;
	padding: 7px 0;
	margin: 0 auto;
	background-color: #ffffff;
}
footer .footer_03 .text01{
	font-size: 13px;
	line-height: 23px;
	text-align: center;
	color: #000000;
}
@media only screen and (max-width: 767px){
	footer .footer_03 .text01{
		font-size: 10px;
		line-height: 14px;
	}
}
/*footerここまで*/

/*includeここから*/
/*.eyecatch_incここから*/
.eyecatch_inc{
	width: 100%;
	height: calc(100vh - 79px);
	min-height: 500px;
	margin-top: 79px;
	position: relative;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc{
		height: calc(100vh - 85px);
		min-height: 200px;
		margin-top: 85px;
	}
}
.eyecatch_inc .eyecatch_inc_01{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	background-color: rgba(0, 0, 0, .5);
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.eyecatch_inc .eyecatch_inc_01 .eyecatch_inc_01_01{
	width: 980px;
	height: 100%;
	margin: 0 auto;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc .eyecatch_inc_01 .eyecatch_inc_01_01{
		width: 100%;
	}
}
.eyecatch_inc .eyecatch_inc_01 h2{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	font-size: 60px;
	line-height: 70px;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	text-align: center;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc .eyecatch_inc_01 h2{
		font-size: 30px;
		line-height: 40px;
	}
}
.eyecatch_inc .eyecatch_inc_01 .svg{
	width: 190px;
	height: 71px;
	margin: 0 auto;
	display: block;
	position: absolute;
	top: auto;
	bottom: 30px;
	left: auto;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc .eyecatch_inc_01 .svg{
		width: 60px;
		height: 23px;
		bottom: 5vw;
		right: 5vw;
	}
}
.eyecatch_inc .eyecatch_inc_00{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
.eyecatch_inc .eyecatch_inc_00 h2{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	text-align: center;
}
.eyecatch_inc .eyecatch_inc_00 img{
	width: 715px;
	height: auto;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc .eyecatch_inc_00 img{
		width: 100%;
		max-width: 270px;
	}
}
.eyecatch_inc .eyecatch_inc_02{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
}
.eyecatch_inc .eyecatch_inc_02 .eye_img{
	width: 100%;
	height: 100%;
	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_inc .eyecatch_inc_02 .eye_img{
		min-height: initial;
	}
}
.eyecatch_inc .eyecatch_inc_02 .slick-track,
.eyecatch_inc .eyecatch_inc_02 .slick-list{
	height: 100%;
}
.eyecatch_inc .eyecatch_inc_02 .slick-dots{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 10px;
}
.eyecatch_inc .eyecatch_inc_02 .slick-dots li{
	width: 7px;
	height: 7px;
	display: block;
	margin: 0 7px;
}
.eyecatch_inc .eyecatch_inc_02 .slick-dots li button{
	width: 100%;
	height: 100%;
	display: block;
	padding: 0;
	margin: 0;
}
.eyecatch_inc .eyecatch_inc_02 .slick-dots li button::before{
	width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	border-radius: 50%;
	background: #ffffff;
}
.eyecatch_inc .eyecatch_inc_02 .slick-dots .slick-active button::before{
	background: #000000;
}
.eyecatch_inc.long{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.eyecatch_inc.long .eyecatch_inc_01 .eyecatch_inc_01_01{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.long .eyecatch_inc_01 .eyecatch_inc_01_01{
		width: 100%;
	}
}
.eyecatch_inc.long .eyecatch_inc_01 h2{
	width: 100%;
	height: auto;
	font-size: 40px;
	line-height: 50px;
	color: #ffffff;
	display: block;
	margin: 0 auto 15px;
	text-align: center;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.long .eyecatch_inc_01 h2{
		font-size: 20px;
		line-height: 30px;
	}
}
.eyecatch_inc.long .eyecatch_inc_01 .text01{
	margin: 0 auto 10px;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.long .eyecatch_inc_01 .text01{
		margin: 0 auto 5px;
	}
}
.eyecatch_inc.long .eyecatch_inc_01 h3{
	width: 100%;
	height: auto;
	padding-top: 0;
	font-size: 110px;
	line-height: 120px;
	color: #ffffff;
	display: block;
	margin: 0 auto 45px;
	text-align: center;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.long .eyecatch_inc_01 h3{
		font-size: 40px;
		line-height: 50px;
		margin: 0 auto 30px;
	}
}
.eyecatch_inc.long .eyecatch_inc_01 .item{
	width: 714px;
	height: 164px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.long .eyecatch_inc_01 .item{
		width: 290px;
		height: 69px;
	}
}
.eyecatch_inc.long .eyecatch_inc_01 .item .svg{
	width: 714px;
	height: 164px;
	margin: 0 auto;
	display: block;
	position: relative;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.long .eyecatch_inc_01 .item .svg{
		width: 290px;
		height: 69px;
	}
}
.eyecatch_inc.long .eyecatch_inc_01 .item02{
	width: 191px;
	height: 71px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.long .eyecatch_inc_01 .item02{
		width: 130px;
		height: 49px;
	}
}
.eyecatch_inc.long .eyecatch_inc_01 .item02 .svg{
	width: 191px;
	height: 71px;
	margin: 0 auto;
	display: block;
	position: relative;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.long .eyecatch_inc_01 .item02 .svg{
		width: 130px;
		height: 49px;
	}
}
.eyecatch_inc.short{
	height: 410px;
	min-height: initial;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.short{
		height: 160px;
		margin-top: 85px;
	}
}
/*.eyecatch_incここまで*/

.inc01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.inc01 .inc01_01{
	width: 980px;
	height: auto;
	padding: 95px 0 0;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01{
		width: 100%;
		padding: 60px 0 0;
	}
}
.inc01 .inc01_01 .inc01_01_01{
	width: 100%;
	height: 230px;
	background-color: #B40808;
	background-image: url(../img/common/item04.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: right center;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01{
		height: 125px;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01{
	width: auto;
	height: auto;
	margin-left: 30px;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01{
		margin-left: 5%;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .text01{
	width: 100%;
	height: auto;
	margin: 0 auto 20px;
	display: block;
	font-size: 39px;
	line-height: 49px;
	color: #ffffff;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .text01{
		margin: 0 auto;
		font-size: 25px;
		line-height: 29px;
		text-shadow: 0px 0px 5px #B40808,0px 0px 5px #B40808,0px 0px 5px #B40808,0px 0px 5px #B40808,0px 0px 5px #B40808;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .text01 span{
	font-size: 50px;
	line-height: 60px;
	display: block;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 a{
	width: 315px;
	height: 49px;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	border: 1px solid #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 a:hover{
	color: #B40808;
	background-color: #ffffff;
	opacity: 1;
}
.inc01 .inc01_01 .inc01_01_02{
	width: 100%;
	height: 50px;
	background-color: #C7C7C7;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02{
		height: 71px;
		align-content: center;
		flex-wrap: wrap;
	}
}
.inc01 .inc01_01 .inc01_01_02 .text01{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
	font-size: 20px;
	line-height: 30px;
}
.inc01 .inc01_01 .inc01_01_02 .text02{
	width: auto;
	height: auto;
	margin: 0 5px 0 19px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	line-height: 40px;
	color: #B40808;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02 .text02{
		margin: 0;
		font-size: 30px;
		line-height: 34px;
	}
}
.inc01 .inc01_01 .inc01_01_02 .text02 .svg{
	width: 21px;
	height: 30px;
	margin: 0 5px 0 0;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02 .text02 .svg{
		width: 18px;
		height: 26px;
		margin: 0 8px 0 0;
	}
}
.inc01 .inc01_01 .inc01_01_02 .text03{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
	font-size: 16px;
	line-height: 26px;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02 .text03{
		font-size: 13px;
		line-height: 23px;
		text-align: center;
	}
}

.inc02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.inc02 .inc02_01{
	width: 980px;
	height: auto;
	padding: 95px 0 0;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01{
		width: 100%;
		padding: 60px 0 0;
	}
}
.inc02 .inc02_01 .inc02_01_01{
	width: 100%;
	height: 350px;
	background-color: #C7C7C7;
	background-image: url(../img/common/item05.png);
	background-repeat: no-repeat;
	background-size: 428px 332px;
	background-position: right 40px bottom 13px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_01{
		height: 125px;
		background-image: url(../img/common/item05_sp.png);
		background-size: auto 90%;
		background-position: right 5px center;
	}
}
.inc02 .inc02_01 .inc02_01_01 .inc02_01_01_01{
	width: auto;
	height: auto;
	margin-left: 30px;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_01 .inc02_01_01_01{
		margin-left: 5%;
	}
}
.inc02 .inc02_01 .inc02_01_01 .inc02_01_01_01 .text01{
	width: 100%;
	height: auto;
	margin: 0 auto 20px;
	display: block;
	font-size: 30px;
	line-height: 40px;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_01 .inc02_01_01_01 .text01{
		margin: 0 auto;
		font-size: 13px;
		line-height: 17px;
	}
}
.inc02 .inc02_01 .inc02_01_01 .inc02_01_01_01 .text01 span{
	font-size: 50px;
	line-height: 60px;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_01 .inc02_01_01_01 .text01 span{
		margin: 0 auto 10px;
		font-size: 25px;
		line-height: 35px;
		text-shadow: 0px 0px 5px #C7C7C7,0px 0px 5px #C7C7C7,0px 0px 5px #C7C7C7,0px 0px 5px #C7C7C7,0px 0px 5px #C7C7C7;
	}
}
.inc02 .inc02_01 .inc02_01_01 .inc02_01_01_01 a{
	width: 315px;
	height: 49px;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	color: #000000;
	border: 1px solid #000000;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inc02 .inc02_01 .inc02_01_01 .inc02_01_01_01 a:hover{
	color: #C7C7C7;
	background-color: #000000;
	opacity: 1;
}
.inc02 .inc02_01 .inc02_01_02{
	width: 100%;
	height: 50px;
	background-color: #000000;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_02{
		height: 71px;
		align-content: center;
		flex-wrap: wrap;
	}
}
.inc02 .inc02_01 .inc02_01_02 .text01{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
}
.inc02 .inc02_01 .inc02_01_02 .text02{
	width: auto;
	height: auto;
	margin: 0 5px 0 19px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	line-height: 40px;
	color: #B40808;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_02 .text02{
		margin: 0;
		font-size: 30px;
		line-height: 34px;
	}
}
.inc02 .inc02_01 .inc02_01_02 .text02 .svg{
	width: 21px;
	height: 30px;
	margin: 0 5px 0 0;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_02 .text02 .svg{
		width: 18px;
		height: 26px;
		margin: 0 8px 0 0;
	}
}
.inc02 .inc02_01 .inc02_01_02 .text03{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_02 .text03{
		font-size: 13px;
		line-height: 23px;
		text-align: center;
	}
}
/*includeここまで*/