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

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

/*headerここから*/
header{
	width: 100%;
	height: auto;
	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: 0px 4px 10px -5px rgba(0,0,0,0.2);
	}
}
header .header01{
	width: 100%;
	height: 104px;
	padding: 0 14px 0 26px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 10;
}
@media only screen and (max-width: 767px){
	header .header01{
		height: 64px;
		padding: 0 0 0 10px;
		background-color: transparent;
		transition: all .5s;
	}
	/*.change .header01{
		background-color: rgba( 255, 255, 255, .8);
		transition: all .5s;
	}*/
}
header .header01 h1{
	width: 232px;
	height: auto;
	margin: 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 h1{
		width: 142px;
		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 .header01_00{
		width: 120px;
		height: 40px;
		margin: auto 0 auto auto;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-shrink: 0;
		position: relative;
		z-index: 0;
	}
	@media only screen and (max-width: 340px){
		header .header01 .header01_00{
			width: 80px;
		}
	}
	header .header01 .header01_00 a{
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		margin: 0;
		border: 2px solid #FF6E02;
		border-radius: 38px;
		font-size: 11px;
		line-height: 21px;
		color: #FF6E02;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

/*メニューオープンボタン*/
	header .header01 .slide-menu-btn{
		width: 68px;
		height: 100%;
		z-index: 10;
		position: relative;
		margin: 0;
		cursor: pointer;
		flex-shrink: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		align-content: center;
		flex-direction: column;
	}
	/*メニューオープンボタン内部の線*/
	header .header01 .slide-menu-btn .line-bar{
		width: 36px;
		height: 2px;
		background-color: transparent;
		position: relative;
		margin: 0;
		transition: all 0.6s ease;
		display: block;
	}
	header .header01 .slide-menu-btn .line-bar::before{
		content: "";
		display: block;
		background-color: #000000;
		border-radius: 1px;
		position: absolute;
		width: 100%;
		height: 2px;
		transition: all 0.6s ease;
		top: -6px;
	}
	header .header01 .slide-menu-btn .line-bar::after{
		content: "";
		display: block;
		background-color: #000000;
		border-radius: 1px;
		position: absolute;
		width: 100%;
		height: 2px;
		transition: all 0.6s ease;
		bottom: -6px;
	}
	.header01.change .header01 .slide-menu-btn .line-bar::after{
		background-color: #000000;
	}
	header .header01 .slide-menu-btn.active{
	}
	header .header01 .slide-menu-btn.active .line-bar{
		background-color: #000000;
		transform: rotate(135deg);
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar::before{
		background-color: #000000;
		transform: rotate(90deg);
		top: 0;
	}
	header .header01 .slide-menu-btn.active .line-bar::after{
		opacity: 0;
	}
/*メニューオープンボタン*/
}
header .header01 nav{
	box-sizing: border-box;
	/*width: 1036px;*/
	width: 880px;
	height: 100%;
	flex-shrink: 0;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	header .header01 nav{
		width: 930px;
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav{
		width: 100%;
		min-width: 320px;
		height: 100vh;
		padding: 66px 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 34px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-grow: 1;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01{
		width: 90%;
		max-width: 335px;
		height: 100%;
		margin: 0 auto;
		display: block;
		overflow-y: scroll;
	}
}
header .header01 nav .nav_01 li{
	width: auto;
	height: auto;
	display: block;
	text-align: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 li{
		width: 100%;
		border-top: 1px solid #CCCCCC;
	}
	header .header01 nav .nav_01 li:nth-of-type(1){
		border-top: 0;
	}
	header .header01 nav .nav_01 li:last-of-type{
		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{
		height: 55px;
		font-size: 14px;
		line-height: 18px;
		border-bottom: 0;
		justify-content: flex-start;
	}
}
header .header01 nav .nav_01 li a:hover{
	opacity: 1;
}
header .header01 nav .nav_01 .drop{
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop{
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
}
header .header01 nav .nav_01 .drop a::after{
	content: '';
	width: 10px;
	height: 8px;
	margin: 0 0 0 7px;
	background-image: url(../img/common/item01.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop a{
		width: calc(100% - 27px);
	}
	header .header01 nav .nav_01 .drop a::after{
		display: none;
	}
	header .header01 nav .nav_01 .drop .drop-btn{
		width: 27px;
		height: 55px;
		margin: 0;
		background-image: url(../img/header/arrow01.png);
		background-repeat: no-repeat;
		background-size: 11px auto;
		background-position: center;
		display: block;
		transform: rotateZ(0);
		transition: all .5s;
	}
	header .header01 nav .nav_01 .drop .drop-btn.drop-active{
		transform: rotateZ(180deg);
		transition: all .5s;
	}
}
header .header01 nav .nav_01 .drop ul{
	width: auto;
	min-width: 220px;
	height: auto;
	padding-top: 31px;
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	bottom: auto;
	z-index: -1;
	margin: auto;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	header .header01 nav .nav_01 .drop ul{
		min-width: 250px;
	}
}
header .header01 nav .nav_01 .drop ul.right{
	left: auto;
	right: 0;
}
@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;
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop ul{
		width: 100%;
		padding: 0 0 15px;
		position: static;
		margin: auto;
		display: none;
	}
}
@media only screen and (min-width: 768px){
	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);
	}
}
/*ナビアニメーション(ドロップダウン)指示*/
header .header01 nav .nav_01 .drop ul li{
	width: 100%;
	height: 50px;
	background-color: #ffffff;
	border-top: 1px solid #EFEFEF;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop ul li{
		height: auto;
		background-color: transparent;
		padding: 0 10px;
		margin: 5px auto 0;
		border: 0;
	}
}
header .header01 nav .nav_01 .drop ul li:nth-of-type(1){
	border-top: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop ul li:nth-of-type(1){
		margin-top: 0;
	}
}
header .header01 nav .nav_01 .drop ul li a{
	width: 100%;
	height: 100%;
	padding: 0 18px 0 21px;
	font-size: 15px;
	line-height: 20px;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop ul li a{
		font-size: 13px;
		line-height: 23px;
		padding: 0;
		background-color: transparent;
		justify-content: flex-start;
	}
}
header .header01 nav .nav_01 .drop ul li a::after{
	content: '';
	width: 4px;
	height: 7px;
	margin: 0 0 0 7px;
	background-image: url(../img/common/item02.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop ul li a::before{
		content: '';
		width: 3px;
		height: 1px;
		margin: 0 5px 0 0;
		background-color: #000000;
		display: block;
		flex-shrink: 0;
	}
	header .header01 nav .nav_01 .drop ul li a::after{
		display: none;
	}
}
header .header01 nav .nav_01 .drop ul li a:hover{
	background-color: #EFEFEF;
}
@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: 30px;
	}
	header .header01 nav .nav_01 .nav01_01 ul{
		width: 100%;
		height: auto;
		margin: 20px 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(1){
		margin-top: 0;
		display: block;
	}
	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:nth-of-type(1) li:nth-of-type(1){
		margin-bottom: 13px;
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(2) li:nth-of-type(3){
		margin-top: 13px;
	}
	header .header01 nav .nav_01 .nav01_01 ul li a{
		width: auto;
		height: auto;
		padding: 0 10px;
		font-size: 12px;
		line-height: 22px;
		text-decoration: underline;
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(1) li a{
		width: 280px;
		height: 55px;
		margin: 0;
		font-size: 14px;
		line-height: 24px;
		color: #ffffff;
		background-color: #FF6E02;
		border-radius: 38px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration: none;
	}
	@media only screen and (max-width: 340px){
		header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(2) li a{
			font-size: 11px;
			line-height: 21px;
		}
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(1) li .nav01_01_01{
		width: auto;
		height: auto;
		padding: 0 10px;
		font-size: 12px;
		line-height: 22px;
		text-decoration: none;
		background-color: transparent;
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(1) li .nav01_01_01 .nav01_01_01_01{
		width: 33px;
		height: 33px;
		margin: 0 3px 0 0;
		border: 1px solid #FF6E02;
		border-radius: 50%;
		background-image: url(../img/common/icon01_sp.png);
		background-repeat: no-repeat;
		background-size: 14px auto;
		background-position: center;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-shrink: 0;
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(1) li .nav01_01_01 .nav01_01_01_02 {
		width: auto;
		height: auto;
		margin: 0;
		display: block;
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(1) li .nav01_01_01 .nav01_01_01_02 .text01 {
		font-size: 19px;
		line-height: 23px;
		color: #FF6E02;
		letter-spacing: .5px;
		margin: 0;
		text-align: center;
		display: block;
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(1) li .nav01_01_01 .nav01_01_01_02 .text02 {
		font-size: 10px;
		line-height: 16px;
		color: #FF6E02;
		margin: 0;
		text-align: center;
		display: block;
	}
}
header .header01 nav .nav_02{
	width: auto;
	height: auto;
	margin: auto 18px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
header .header01 nav .nav_02 .nav_02_01{
	width: 44px;
	height: 44px;
	margin: 0 7px 0 0;
	border: 1px solid #000000;
	border-radius: 50%;
	background-image: url(../img/common/icon01.png);
	background-repeat: no-repeat;
	background-size: 17px auto;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
header .header01 nav .nav_02 .nav_02_02{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
}
header .header01 nav .nav_02 .nav_02_02 .text01{
	font-size: 24px;
	line-height: 28px;
	letter-spacing: .5px;
	margin: 0;
	text-align: center;
	display: block;
}
header .header01 nav .nav_02 .nav_02_02 .text02{
	font-size: 11px;
	line-height: 21px;
	margin: 0;
	text-align: center;
	display: block;
}
header .header01 nav .nav_03{
	width: 215px;
	height: 70px;
	margin: auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
header .header01 nav .nav_03 a{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0;
	border: 2px solid #FF6E02;
	border-radius: 38px;
	font-size: 16px;
	line-height: 26px;
	color: #FF6E02;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
header .header02 {
	width: 100%;
	height: 70px;
	margin: 0 auto;
	background-color: #dddddd;
	display: block;
	position: relative;
	z-index: 1;
}
header .header02 .header02_01 {
	width: 1180px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .header02 .header02_01 .img {
	width: auto;
	height: 28px;
	margin: 0 20px 0 0;
	display: block;
	flex-shrink: 0;
}
header .header02 .header02_01 .img img {
	width: auto;
	height: 100%;
	display: block;
	margin: 0;
}
header .header02 .header02_01 nav {
	box-sizing: border-box;
	width: auto;
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
}
header .header02 .header02_01 nav .nav_01 {
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-grow: 1;
}
header .header02 .header02_01 nav .nav_01 li {
	box-sizing: border-box;
	width: auto;
	height: 100%;
	padding: 0 15px;
	border-right: 1px solid #FFFFFF;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	display: block;
	text-align: center;
	transition: all .5s;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	header .header02 .header02_01 nav .nav_01 li {
		padding: 0 10px;
	}
}
header .header02 .header02_01 nav .nav_01 li:nth-of-type(1){
	border-left: 1px solid #FFFFFF;
}
header .header02 .header02_01 nav .nav_01 li:hover{
	border-bottom: 3px solid #FF6E02;
	transition: all .5s;
}
header .header02 .header02_01 nav .nav_01 .active{
	border-bottom: 3px solid #FF6E02;
}
header .header02 .header02_01 nav .nav_01 li a{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	font-size: 14px;
	line-height: 24px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	header .header02 .header02_01 nav .nav_01 li a{
		font-size: 12px;
		line-height: 22px;
	}
}
header .header02 .header02_01 nav .nav_01 .drop{
	position: relative;
	z-index: 1;
}
header .header02 .header02_01 nav .nav_01 .drop a::after{
	content: '';
	width: 10px;
	height: 8px;
	margin: 0 0 0 7px;
	background-image: url(../img/common/item01.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
header .header02 .header02_01 nav .nav_01 .drop ul{
	width: auto;
	min-width: 230px;
	height: auto;
	padding-top: 30px;
	position: absolute;
	top: 37px;
	left: 0;
	right: auto;
	bottom: auto;
	z-index: -1;
	margin: auto;
}
header .header02 .header02_01 nav .nav_01 .drop ul.right{
	left: auto;
	right: 0;
}
header .header02 .header02_01 nav .nav_01 .drop ul{
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	animation: tooltipShow2 0.3s linear 0s;
}
header .header02 .header02_01 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);
	}
}
/*ナビアニメーション(ドロップダウン)指示*/
header .header02 .header02_01 nav .nav_01 .drop ul li{
	width: 100%;
	height: 50px;
	padding: 0;
	background-color: #ffffff;
	border: 0;
	border-top: 1px solid #EFEFEF;
	display: block;
}
header .header02 .header02_01 nav .nav_01 .drop ul li:nth-of-type(1){
	border-top: 0;
}
header .header02 .header02_01 nav .nav_01 .drop ul li a{
	width: 100%;
	height: 100%;
	padding: 0 18px 0 15px;
	font-size: 12px;
	line-height: 20px;
	background-color: #ffffff;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .header02 .header02_01 nav .nav_01 .drop ul li a::after{
	content: '';
	width: 4px;
	height: 7px;
	margin: 0 0 0 7px;
	background-image: url(../img/common/item02.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
header .header02 .header02_01 nav .nav_01 .drop ul li a:hover{
	background-color: #EFEFEF;
}
/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: auto;
	margin: 0 auto;
	color: #ffffff;
	background-color: #000000;
	display: block;
}
footer .footer01{
	width: 1180px;
	height: auto;
	padding: 60px 0 10px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01{
		width: 90%;
		max-width: 335px;
		padding: 13px 0 10px;
	}
}
footer .footer01 .logo{
	width: 272px;
	height: auto;
	margin: 0 0 35px;
	display: block;
}
footer .footer01 .logo img{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
footer .footer01 .footer01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 60px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01{
		margin: 0 auto 70px;
		display: block;
	}
}
footer .footer01 .footer01_01 .footer01_01_01{
	width: auto;
	height: auto;
	margin: 40px 45px 0 0;
	display: block;
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01{
		width: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
		position: relative;
	}
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(14){
		margin-bottom: 35px;
	}
}

/*不動産を探すの復活で削除*/
footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(-n+4){
	margin-top: 0;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(-n+4){
		margin-top: 40px;
	}
}
footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(4),
footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(9){
	margin-right: 0;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(4),
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(9){
		margin-right: 45px;
	}
}
/*不動産を探すの復活で削除*/

/*不動産を探すの復活で追加*/
/*footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(-n+5){
	margin-top: 0;
}*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	/*footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(-n+5){
		margin-top: 40px;
	}*/
}
/*footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(5),
footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(11){
	margin-right: 0;
}*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	/*footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(5),
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(11){
		margin-right: 45px;
	}*/
}
/*不動産を探すの復活で追加*/

footer .footer01 .footer01_01 .footer01_01_01 .text01{
	width: auto;
	height: auto;
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 24px;
	display: inline-block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 .text01{
		width: 100%;
		height: auto;
		padding: 15px 0;
		margin: 0;
		border-bottom: 1px solid #ffffff;
		font-size: 14px;
		line-height: 24px;
		display: block;
	}
	footer .footer01 .footer01_01 .footer01_01_01 .drop-btn{
		width: 27px;
		height: 55px;
		background-image: url(../img/common/arrow01.png);
		background-repeat: no-repeat;
		background-size: 11px auto;
		background-position: center;
		display: block;
		position: absolute;
		top: 0;
		bottom: auto;
		left: auto;
		right: 0;
		z-index: 1;
		margin: auto;
		transform: rotateZ(0);
		transition: all .5s;
		cursor: pointer;
	}
	footer .footer01 .footer01_01 .footer01_01_01 .drop-btn.drop-active{
		transform: rotateZ(180deg);
		transition: all .5s;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 ul{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 ul{
		border-bottom: 1px solid #ffffff;
		display: none;
	}
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(15) ul{
		border-bottom: 0;
		margin: 20px 0 0;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(15) ul:nth-of-type(1){
		margin-top: 0;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 ul li{
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(15) ul li{
		width: auto;
		margin-right: 25px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 ul li a{
	font-size: 12px;
	line-height: 22px;
	display: inline-block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 ul li a{
		padding: 5px 16px;
		display: block;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 .text02{
	width: auto;
	height: auto;
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 24px;
	display: inline-block;
}
footer .footer01 .footer01_01 .footer01_01_01 ul li:nth-of-type(1) .text02{
	margin-top: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(15) ul li .text02{
		margin: 0;
		padding: 0;
		font-size: 13px;
		line-height: 23px;
		border-bottom: 1px dashed #FFFFFF;
	}
}
@media only screen and (max-width: 340px) {
	footer .footer01 .footer01_01 .footer01_01_01:nth-of-type(15) ul li .text02{
			font-size: 12px;
			line-height: 22px;
		}
}
footer .footer01 .footer01_01 .footer01_01_01 .footer01_01_01_01{
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 .footer01_01_01_01{
		display: none;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 .footer01_01_01_01 ul{
	width: auto;
	height: auto;
	margin: 0 auto;
	display: block;
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 .footer01_01_01_01 ul{
		width: 100%;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 .footer01_01_01_01 ul:nth-of-type(1){
	margin: 0 30px 0 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 .footer01_01_01_01 ul:nth-of-type(1){
		margin: 0 auto;
		border-bottom: 0;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 .footer01_01_01_01 ul li{
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
}
footer .footer01 .footer01_01 .footer01_01_01 .footer01_01_01_01 ul li a{
	font-size: 12px;
	line-height: 22px;
	display: inline-block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 .footer01_01_01_01 ul li a{
		display: block;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 p{
	margin: 0;
	font-size: 12px;
	line-height: 22px;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_03{
		width: 230px;
		height: auto;
		margin: 0 auto 25px;
		display: block;
	}
	footer .footer01 .footer01_03 img{
		width: 100%;
		height: auto;
		margin: 0 auto;
		display: block;
	}
}
footer .footer01 .footer01_02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_02{
		margin: 0 auto;
		display: block;
	}
}
footer .footer01 .footer01_02 ul{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_02 ul{
		margin: 0 auto;
		justify-content: space-between;
		flex-wrap: wrap;
	}
}
footer .footer01 .footer01_02 ul li{
	width: auto;
	height: auto;
	margin-left: 30px;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_02 ul li{
		margin: 0;
	}
}
footer .footer01 .footer01_02 ul li:nth-of-type(1){
	margin-left: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_02 ul li:nth-of-type(3){
		width: 100%;
		margin: 15px auto 0;
	}
}
footer .footer01 .footer01_02 ul li a{
	font-size: 14px;
	line-height: 24px;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_02 ul li a{
		font-size: 13px;
		line-height: 23px;
		border-bottom: 1px dashed #ffffff;
	}
}
@media only screen and (max-width: 340px) {
	footer .footer01 .footer01_02 ul li a{
		font-size: 12px;
		line-height: 22px;
	}
}
footer .footer01 .footer01_02 P{
	font-size: 12px;
	line-height: 22px;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_02 P{
		font-size: 11px;
		line-height: 21px;
		margin-top: 35px;
		text-align: center;
	}
}
.btn-top {
	position: fixed;
	bottom: 0;
	right: 20px;
	width: 50px;
	height: 50px;
	display: block;
	z-index: 10;
	cursor: pointer;
}
.btn-top::before {
	content: '';
	width: 0;
	height: 0;
	display: block;
	border-style: solid;
	border-width: 0 12px 21px 12px;
	border-color: transparent transparent #104EA3 transparent;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	.btn-top {
		right: 0;
	}
}
/*footerここまで*/

/*includeここから*/

/*.eyecatch_incここから*/
.eyecatch_inc.top{
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: relative;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc_01{
	width: 100%;
	min-width: 1180px;
	height: auto;
	padding: 130px 0 24px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc_01{
		min-width: initial;
		padding: 80px 0 17px;
	}
}
.eyecatch_inc.top .eyecatch_inc_01 h2{
	font-size: 45px;
	line-height: 70px;
	letter-spacing: 2px;
	margin: 0 auto;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc_01 h2{
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 1px;
		padding: 0 5px;
	}
}
.eyecatch_inc.else{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
}
.eyecatch_inc.else .eyecatch_inc_01{
	box-sizing: border-box;
	width: 100%;
	min-width: 1180px;
	height: auto;
	min-height: 250px;
	padding: 10px 0;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.else .eyecatch_inc_01{
		min-width: initial;
		height: auto;
		min-height: 176px;
		padding: 10px 20px;
	}
}
.eyecatch_inc.long .eyecatch_inc_01{
	min-height: 320px
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.long .eyecatch_inc_01{
		min-height: 232px
	}
}
.eyecatch_inc.else01 .eyecatch_inc_01{
	padding-top: 0;
	padding-bottom: 70px;
}
.eyecatch_inc.else02 .eyecatch_inc_01{
	padding-top: 0;
	padding-bottom: 36px;
}
.eyecatch_inc.else .eyecatch_inc_01 h2{
	width: 100%;
	height: auto;
	margin: 0 auto 13px;
	font-size: 35px;
	line-height: 45px;
	letter-spacing: 2px;
	color: #ffffff;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.else .eyecatch_inc_01 h2{
		margin: 0 auto 11px;
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 1px;
	}
}
.eyecatch_inc.else .eyecatch_inc_01 p{
	width: 100%;
	height: auto;
	margin: 0 auto;
	font-size: 20px;
	line-height: 38px;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.else .eyecatch_inc_01 p{
		font-size: 14px;
		line-height: 24px;
	}
}
/*.eyecatch_incここまで*/

/*.paginationここから*/
.wp-pagenavi {
	width: 80%;
	height: auto;
	margin: 100px auto;
	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: 80px auto;
	}
}
.wp-pagenavi span{
	width: 50px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 9px;
	text-align: center;
	border-radius: 6px;
	border: 1px solid #cccccc;
	font-family: 'Noto_Sans_JP',
	sans-serif;
	font-weight: 700;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi span{
		width: 35px;
		height: 35px;
		font-size: 11px;
		line-height: 35px;
		border-radius: 4px;
	}
}
.wp-pagenavi a{
	width: 50px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 9px;
	text-align: center;
	border-radius: 6px;
	border: 1px solid #cccccc;
	font-family: 'Noto_Sans_JP',
	sans-serif;
	font-weight: 700;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi a{
		width: 35px;
		height: 35px;
		font-size: 11px;
		line-height: 35px;
		border-radius: 4px;
	}
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	border: 1px solid transparent;
}
.wp-pagenavi .extend{
	display: none;
}
.wp-pagenavi a:hover{
	color: #ffffff;
	border: 1px solid #FF6E02;
	background-color: #FF6E02;
	opacity: 1;
}
.wp-pagenavi .current{
	width: 50px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 9px;
	text-align: center;
	color: #ffffff;
	border: 1px solid #FF6E02;
	background-color: #FF6E02;
	border-radius: 6px;
	font-family: 'Noto_Sans_JP',
	sans-serif;
	font-weight: 700;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi .current{
		width: 35px;
		height: 35px;
		font-size: 11px;
		line-height: 35px;
		border-radius: 4px;
	}
}
/*.paginationここまで*/

/*.contact_footer_incここから*/
.contact_footer_inc{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #000000;
	color: #ffffff;
	display: block;
}
.contact_footer_inc .contact_footer_inc_01{
	width: 1180px;
	height: auto;
	padding: 14px 0;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	.contact_footer_inc .contact_footer_inc_01{
		width: 90%;
		max-width: 320px;
		padding: 25px 0 15px;
	}
}
.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02{
		display: block;
	}
}
.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02 ul{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02 ul{
		margin: 0 auto 10px;
	}
}
.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02 ul li{
	width: auto;
	height: auto;
	display: block;
	padding: 0 10px;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02 ul li{
		padding: 0 15px;
	}
}
.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02 ul li::before {
	content: '';
	box-sizing: border-box;
	width: 1px;
	height: 13px;
	display: block;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: auto;
	margin: auto;
}
.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02 ul li::after {
	content: '';
	box-sizing: border-box;
	width: 1px;
	height: 13px;
	display: block;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02 ul li a{
	font-size: 12px;
	line-height: 22px;
	color: #ffffff;
}
.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02 .text01{
	font-size: 10px;
	line-height: 20px;
	color: #ffffff;
}
@media only screen and (max-width: 767px) {
	.contact_footer_inc .contact_footer_inc_01 .contact_footer_inc_01_02 .text01{
		text-align: center;
	}
}
/*.contact_footer_incここまで*/

/*.inc01ここから*/
.inc01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-image: url(../img/common/photo01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01{
		background-image: url(../img/common/photo01_sp.jpg);
	}
}
.inc01 .inc01_01{
	width: 1060px;
	height: auto;
	padding: 80px 0;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01{
		width: 90%;
		max-width: 335px;
		padding: 45px 0 33px;
	}
}
.inc01 .inc01_01 p{
	width: auto;
	height: auto;
	margin: 0 auto 25px;
	font-size: 28px;
	line-height: 48px;
	letter-spacing: 2px;
	color: #ffffff;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 p{
		margin: 0 auto 15px;
		font-size: 20px;
		line-height: 34px;
		letter-spacing: 1px;
	}
}
.inc01 .inc01_01 .inc01_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 30px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01{
		margin: 0 auto 35px;
		display: block;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01{
	width: 50%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01{
		width: 100%;
		margin: 0 auto;
		display: block;
		text-align: center;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01{
	width: auto;
	height: auto;
	margin: 0 33px 0 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-shrink: 0;
	pointer-events: none;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01{
		margin: 0 auto 16px;
		display: inline-flex;
		justify-content: center;
		pointer-events: auto;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 .inc01_01_01_01_01_01{
	width: 60px;
	height: 60px;
	margin: 0 12px 0 0;
	border: 1px solid #ffffff;
	border-radius: 50%;
	background-image: url(../img/common/icon03.png);
	background-repeat: no-repeat;
	background-size: 21px auto;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 .inc01_01_01_01_01_01{
		width: 42px;
		height: 42px;
		margin: 0 8px 0 0;
		background-size: 15px auto;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 .inc01_01_01_01_01_02{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 .inc01_01_01_01_01_02 .text01{
	font-size: 41px;
	line-height: 45px;
	letter-spacing: .5px;
	margin: 0;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 .inc01_01_01_01_01_02 .text01{
		font-size: 30px;
		line-height: 34px;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 .inc01_01_01_01_01_02 .text02{
	font-size: 15px;
	line-height: 25px;
	margin: 0;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 .inc01_01_01_01_01_02 .text02{
		font-size: 13px;
		line-height: 23px;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02{
	width: 50%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02{
		width: 100%;
		margin: 0 auto;
		display: block;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02 a{
	width: 360px;
	height: 75px;
	margin: 0 0 0 24px;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 1px;
	color: #ffffff;
	background-color: #FF6E02;
	border-radius: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02 a{
		width: 250px;
		height: 55px;
		margin: 0 auto;
		font-size: 14px;
		line-height: 24px;
		border-radius: 38px;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02 a::after {
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	border-bottom: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 34px;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02 a::after {
		border-bottom: 1px solid #ffffff;
		border-right: 1px solid #ffffff;
		right: 32px;
	}
}
.inc01 .inc01_01 .inc01_01_02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02{
		display: block;
	}
}
.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01{
	width: 50%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01{
		width: 100%;
		margin: 0 auto;
		display: block;
		text-align: center;
	}
}
.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01:nth-of-type(2){
	justify-content: flex-start;
}
.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 a{
	width: auto;
	height: auto;
	margin: 0 30px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 a{
		margin: 13px auto 0;
	}
	.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01:nth-of-type(1) a{
		margin-top: 0;
	}
}
.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 a span{
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	border-bottom: 1px dashed #ffffff;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 a span{
		font-size: 15px;
		line-height: 25px;
	}
}
.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 a::after{
	content: '';
	width: 35px;
	height: 35px;
	margin: 0 0 0 11px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	background-image: url(../img/common/item05.png);
	background-repeat: no-repeat;
	background-size: 6px auto;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_02 .inc01_01_02_01 a::after{
		margin: 0 0 0 15px;
	}
}
.inc01 .inc01_01 .inc01_01_03 {
	width: 100%;
	height: auto;
	margin: 0 auto 42px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_03 {
		margin: 0 auto 35px;
	}
}
.inc01 .inc01_01 .inc01_01_03  a{
	width: 390px;
	height: auto;
	margin: 0;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px){
	.inc01 .inc01_01 .inc01_01_03  a{
		width: 100%;
	}
}
.inc01 .inc01_01 .inc01_01_03  a img {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
/*.inc01ここまで*/

/*.inc02ここから*/
.inc02{
	width: auto;
	height: 80px;
	padding: 0 0 0 23px;
	display: block;
	border: 2px solid #FF6E02;
	border-radius: 6px 0 0 6px;
	background-color: #ffffff;
	position: fixed;
	top: auto;
	bottom: 19px;
	left: auto;
	right: 0;
	z-index: 10;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	.inc02{
		bottom: 100px;
	}
}
@media only screen and (max-width: 767px){
	.inc02{
		height: 65px;
		padding: 0 0 0 15px;
		bottom: 13px;
	}
}
.inc02 .inc02_01{
	width: 100%;
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01{
		-webkit-overflow-x: scroll;
		overflow-x: scroll;
	}
}
.inc02 .inc02_01 img{
	width: 31px;
	height: auto;
	margin: 0 13px 0 0;
	display: block;
	flex-shrink: 0;
}
.inc02 .inc02_01 p{
	width: auto;
	font-size: 17px;
	line-height: 27px;
	cursor: pointer;
	overflow: hidden;
	opacity: 1;
	display: block;
	flex-shrink: 0;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 p{
		font-size: 16px;
		line-height: 26px;
	}
}
.inc02.active .inc02_01 p{
	width: 0;
	opacity: 0;
	transition: all .5s;
}
.inc02 .inc02_01 p span{
	font-size: 13px;
	line-height: 23px;
	display: block;
}
.inc02 .inc02_01 a{
	width: 0;
	height: auto;
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-shrink: 0;
	overflow: hidden;
	opacity: 0;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 a{
		font-size: 14px;
		line-height: 18px;
		text-align: center;
	}
}
.inc02.active .inc02_01 a{
	width: auto;
	margin: 0 0 0 25px;
	opacity: 1;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc02.active .inc02_01 a{
		margin: 0 0 0 19px;
	}
}
.inc02 .inc02_01 a:nth-of-type(1){
	margin: 0;
}
.inc02.active .inc02_01 a::after{
	content: '';
	width: 18px;
	height: 18px;
	margin: 0 0 0 8px;
	border-radius: 50%;
	background-color: #FF6E02;
	background-image: url(../img/common/item05.png);
	background-repeat: no-repeat;
	background-size: 6px auto;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc02.active .inc02_01 a::after{
		width: 13px;
		height: 13px;
		margin: 0 0 0 4px;
		background-size: 4px auto;
	}
}
.inc02 .inc02_01 .inc02_01_01{
	width: 45px;
	height: 100%;
	margin: 0 0 0 25px;
	cursor: pointer;
	background-color: #FF6E02;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_01{
		width: 36px;
		height: 100%;
		margin: 0 0 0 18px;
	}
}
.inc02 .inc02_01 .inc02_01_01 .line-bar{
	width: 14px;
	height: 2px;
	color: #ffffff;
	background-color: #ffffff;
	position: relative;
	margin: 0;
	transition: all 0.6s ease;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_01 .line-bar{
		width: 13px;
		height: 1px;
	}
}
.inc02 .inc02_01 .inc02_01_01 .line-bar::before{
	content: "";
	display: block;
	background-color: #ffffff;
	position: absolute;
	width: 100%;
	height: 2px;
	transform: rotate(90deg);
	transition: all 0.6s ease;
	top: 0;
}
@media only screen and (max-width: 767px){
	.inc02 .inc02_01 .inc02_01_01 .line-bar::before{
		height: 1px;
	}
}
.inc02.active .inc02_01 .inc02_01_01 .line-bar{
	background-color: #ffffff;
	transform: rotate(180deg);
	transition: all 0.6s ease;
}
.inc02.active .inc02_01 .inc02_01_01 .line-bar::before{
	transform: rotate(90deg);
	opacity: 0;
}
/*.inc02ここまで*/

/*.inc03ここから*/
.inc03{
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: relative;
	display: block;
}
.inc03 .inc03_01{
	width: 100%;
	height: auto;
	padding: 82px 0 76px;
	position: relative;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01{
		padding: 50px 0 0;
	}
}
.inc03 .inc03_01 .inc03_01_01{
	width: 100%;
	min-width: 1180px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01{
		min-width: initial;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01{
		margin: 0 auto 30px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-list{
	width: 100%;
	height: auto;
	display: block;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img{
	width: 300px;
	height: auto;
	margin: 0 calc(48px / 2);
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img{
		width: 161px;
		margin: 0 calc(27px / 2);
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .img_area{
	width: 100%;
	height: 260px;
	margin: 0 auto 10px;
	border-radius: 8px;
	display: block;
	overflow: hidden;
	position: relative;	
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .img_area{
		height: 137px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .img_area::before{
	content: 'PICK UP';
	width: 128px;
	height: 19px;
	padding: 0 0 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	line-height: 18px;
	font-weight: 700;
	color: #ffffff;
	background-color: #254A9D;
	transform: rotate(-30deg);
	position: absolute;
	top: 9px;
	bottom: auto;
	left: -36px;
	right: auto;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .img_area::before{
		width: 90px;
		height: 14px;
		padding: 0 0 1px;
		font-size: 10px;
		line-height: 12px;
		top: 6px;
		bottom: auto;
		left: -21px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .new::before{
	content: 'NEW';
	width: 128px;
	height: 19px;
	padding: 0 0 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 18px;
	font-weight: 700;
	color: #ffffff;
	background-color: #E20D00;
	transform: rotate(-30deg);
	position: absolute;
	top: 9px;
	bottom: auto;
	left: -36px;
	right: auto;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .new::before{
		width: 90px;
		height: 14px;
		padding: 0 0 1px;
		font-size: 10px;
		line-height: 12px;
		top: 6px;
		bottom: auto;
		left: -21px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .img_area img{
	width: 100%;
	height: 100%;
	margin: 0;
	display: block;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .img_area .img{
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #dddddd;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .img_area .img::before{
	content: '';
	width: 50%;
	height: 50%;
	margin: 0;
	background-image: url(../img/common/logo01.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .cat {
	box-sizing: border-box;
	width: auto;
	height: auto;
	padding: 0 5px;
	margin: 0 auto 5px;
	font-size: 13px;
	line-height: 21px;
	color: #333333;
	border: 1px solid #333333;
	border-radius: 4px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .cat {
		margin: 0 auto 2px;
		font-size: 10px;
		line-height: 15px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .text01{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .text01 h2 {
	font-size: 14px;
	line-height: 24px;
	margin: 0 auto;
	text-align: left;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .eye_img .text01 h2 {
		font-size: 11px;
		line-height: 21px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-prev,
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-next{
	width: 75px;
	height: 75px;
	top: 0;
	bottom: 0;
	z-index: 10;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-prev,
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-next{
		width: 32px;
		height: 32px;
		top: 55px;
		bottom: auto;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-prev:hover,
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-next:hover{
	opacity: .8;
	transition: all .5s;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-prev{
	left: -1180px;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-prev{
		left: -218px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-next{
	left: 0;
	right: -1180px;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-next{
		right: -218px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-prev::before{
	width: 75px;
	height: 75px;
	background-color: #000000;
	border-radius: 50%;
	background-image: url(../img/common/icon018.png);
	background-repeat: no-repeat;
	background-size: 10px auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-prev::before{
		width: 32px;
		height: 32px;
		background-size: 7px auto;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-next::before{
	width: 75px;
	height: 75px;
	background-color: #000000;
	border-radius: 50%;
	background-image: url(../img/common/icon019.png);
	background-repeat: no-repeat;
	background-size: 10px auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01 .slick-next::before{
		width: 32px;
		height: 32px;
		background-size: 7px auto;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2{
	width: 100%;
	height: auto;
	margin: 0 auto 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2{
		margin: 0 auto 20px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .slick-list{
	width: 100%;
	height: auto;
	display: block;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img{
	width: 300px;
	height: 260px;
	margin: 0 calc(48px / 2);
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img{
		width: 161px;
		height: 137px;
		margin: 0 calc(27px / 2);
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img01{
	background-image: url(../img/common/eye01.jpg);
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img01{
		background-image: url(../img/common/eye01_sp.jpg);
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img02{
	background-image: url(../img/common/eye02.jpg);
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img02{
		background-image: url(../img/common/eye02_sp.jpg);
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img03{
	background-image: url(../img/common/eye03.jpg);
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img03{
		background-image: url(../img/common/eye03_sp.jpg);
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img04{
	background-image: url(../img/common/eye04.jpg);
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img04{
		background-image: url(../img/common/eye04_sp.jpg);
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img05{
	background-image: url(../img/common/eye05.jpg);
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_01_2 .eye_img05{
		background-image: url(../img/common/eye05_sp.jpg);
	}
}

.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02{
	width: 1060px;
	height: auto;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02{
		width: 100%;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 ul{
	width: 100%;
	height: 56px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 ul{
		height: 65px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 ul li{
	width: auto;
	height: 44px;
	padding: 0 28px;
	margin: 0 calc(15px / 2);
	font-size: 17px;
	line-height: 27px;
	color: #ffffff;
	background-color: #CCCCCC;
	border-radius: 8px 8px 0 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 ul li{
		height: 50px;
		padding: 0 7px;
		margin: 0 calc(7px / 2);
		font-size: 13px;
		line-height: 17px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 ul .active{
	height: 100%;
	font-size: 20px;
	line-height: 30px;
	background-color: #000000;
	pointer-events: none;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 ul .active{
		font-size: 14px;
		line-height: 20px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 ul li:hover{
	height: 100%;
	font-size: 20px;
	line-height: 30px;
	background-color: #000000;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 ul li:hover{
		font-size: 14px;
		line-height: 20px;
	}
}
/*施工事例・プランから選ぶここから*/
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 27px 48px 43px;
	margin: 0 auto;
	border-radius: 8px;
	border: 1px solid #EFEFEF;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .16);
	display: none;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01{
		padding: 0 0 15px;
		border-radius: 0;
		border: 0;
		border-top: 2px solid #000000;
		border-bottom: 1px solid #EFEFEF;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01.active{
	display: block;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 18px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01{
		padding: 15px 17px 3px;
		margin: 0 auto;
		background-color: #EFEFEF;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 3px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01_01{
		margin: 0 auto 4px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01_01 p{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01_01 p{
		font-size: 12px;
		line-height: 15px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01_01 .active{
	color: #FF6E02;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01_01 .active::before {
	content: '';
	width: 0;
	height: 0;
	display: block;
	border-style: solid;
	border-width: 6px 5px 0 5px;
	border-color: #FF6E02 transparent transparent transparent;
	position: absolute;
	top: -7px;
	bottom: auto;
	left: 0;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01_01 .active::before {
		border-width: 4px 4px 0 4px;
		top: -8px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01_01 .item04{
	width: 7px;
	height: 12px;
	margin: 0 15px;
	background-image: url(../img/common/item04.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	position: relative;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01_01 .item04{
		width: 6px;
		height: 10px;
		margin: 0 8px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01 .text01{
	margin: 0;
	font-size: 11px;
	line-height: 21px;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_01 .text01{
		font-size: 10px;
		line-height: 20px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02{
		display: block;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01{
	width: auto;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01{
		margin: 0 auto 15px;
		flex-wrap: wrap;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01 label{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01 label{
		width: 50%;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01 label input{
	display: none;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01 label span{
	box-sizing: border-box;
	width: 100%;
	min-width: 150px;
	height: 55px;
	padding: 0 23px;
	margin: 0;
	border: 2px solid #CCCCCC;
	border-radius: 28px;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01 label span{
		min-width: initial;
		height: 47px;
		padding: 0;
		border: 0;
		border-right: 1px solid #CCCCCC;
		border-bottom: 1px solid #CCCCCC;
		border-radius: 0;
		font-size: 14px;
		line-height: 24px;
		transition: none;
	}
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01 label:nth-of-type(2n) span{
		border-right: 0;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01 label input:checked + span{
	border: 2px solid #FF6E02;
	color: #FF6E02;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 .inc03_01_01_02_01_01_02_01 label input:checked + span{
		transition: none;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 input[type="submit"]{
	width: 250px;
	height: 70px;
	padding: 0 0 0 23px;
	margin: 0 0 0 31px;
	border: 0;
	background-color: #FF6E02;
	border-radius: 38px;
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
	text-align: center;
	background-image: url(../img/common/icon02.png);
	background-repeat: no-repeat;
	background-size: 33px auto;
	background-position: center left 50px;
	display: block;
	cursor: pointer;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 input[type="submit"]{
		width: 160px;
		height: 45px;
		padding: 0 0 0 10px;
		margin: 0 auto;
		border-radius: 32px;
		font-size: 14px;
		line-height: 24px;
		background-image: url(../img/common/icon02.png);
		background-repeat: no-repeat;
		background-size: 18px auto;
		background-position: center left 36px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 input[type="submit"]:disabled{
	pointer-events: none;
	opacity: .5;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_01 .inc03_01_01_02_01_01 .inc03_01_01_02_01_01_02 input[type="submit"]:hover{
	opacity: .8;
	transition: all .5s;
}
/*施工事例・プランから選ぶここまで*/
/*設計コンペで選ぶ・目的から探すここから*/
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 27px 48px 43px;
	margin: 0 auto;
	border-radius: 8px;
	border: 1px solid #EFEFEF;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .16);
	display: none;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02{
		padding: 0 0 15px;
		border-radius: 0;
		border: 0;
		border-top: 2px solid #000000;
		border-bottom: 1px solid #EFEFEF;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02.active{
	display: block;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 18px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_01{
		padding: 15px 17px 18px;
		margin: 0 auto;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 3px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_01_01{
		margin: 0 auto 7px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_01_01 p{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_01_01 p{
		font-size: 16px;
		line-height: 26px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_01 .text01{
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_01 .text01{
		font-size: 13px;
		line-height: 23px;
	}
}
/*設計コンペで選ぶここから*/
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02{
	width: 920px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02{
		width: 90%;
		max-width: 335px;
		flex-wrap: wrap;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02 a{
	box-sizing: border-box;
	width: auto;
	min-width: 170px;
	height: 55px;
	padding: 0 32px;
	margin: 0;
	border: 2px solid #CCCCCC;
	border-radius: 28px;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02 a{
		width: calc((100% - 10px) / 2);
		min-width: initial;
		height: 42px;
		padding: 0;
		margin: 0;
		border: 1px solid #CCCCCC;
		border-radius: 25px;
		font-size: 12px;
		line-height: 22px;
	}
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02 a:nth-of-type(3),
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02 a:nth-of-type(4){
		margin-top: 14px;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02 a:hover {
	border: 2px solid #FF6E02;
	color: #ffffff;
	background-color: #FF6E02;
	opacity: 1;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02 a:hover{
		border: 1px solid #FF6E02;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02 a::after {
	content: '';
	width: 6px;
	height: 6px;
	display: block;
	border-bottom: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 17px;
	margin: auto;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02 a::after {
		display: none;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_02 a:hover::after {
	border-bottom: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	transition: all .5s;
}
/*設計コンペで選ぶここまで*/
/*目的から探すここから*/
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03{
	width: 780px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03{
		width: 800px;
	}
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03{
		width: 90%;
		max-width: 335px;
		flex-wrap: wrap;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03 a{
	box-sizing: border-box;
	width: auto;
	min-width: 170px;
	height: 55px;
	padding: 0 32px;
	margin: 0;
	border: 2px solid #CCCCCC;
	border-radius: 28px;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03 a{
		width: calc((100% - 10px) / 2);
		min-width: initial;
		height: 42px;
		padding: 0;
		margin: 0;
		border: 1px solid #CCCCCC;
		border-radius: 25px;
		font-size: 12px;
		line-height: 22px;
	}
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03 a:nth-of-type(4){
		width: auto;
		padding: 0 20px;
		margin: 14px auto 0;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03 a:hover {
	border: 2px solid #FF6E02;
	color: #ffffff;
	background-color: #FF6E02;
	opacity: 1;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03 a:hover{
		border: 1px solid #FF6E02;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03 a::after {
	content: '';
	width: 6px;
	height: 6px;
	display: block;
	border-bottom: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 17px;
	margin: auto;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03 a::after {
		display: none;
	}
}
.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03 a:hover::after {
	border-bottom: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc03 .inc03_01 .inc03_01_01 .inc03_01_01_02 .inc03_01_01_02_02 .inc03_01_01_02_02_01 .inc03_01_01_02_02_01_03 a:hover::after{
		border-bottom: 1px solid #ffffff;
		border-right: 1px solid #ffffff;
	}
}
/*目的から探すここまで*/
/*設計コンペで選ぶ・目的から探すここまで*/
/*.inc03ここまで*/

/*.inc04ここから*/
.inc04{
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: relative;
	display: block;
}
.inc04 .inc04_01{
	width: 100%;
	height: auto;
	padding: 0 0 130px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01{
		width: 90%;
		max-width: 335px;
		padding: 0 0 29px;
		display: block;
	}
}
.inc04 .inc04_01 a{
	box-sizing: border-box;
	width: 480px;
	height: 140px;
	padding: 0 40px 0 53px;
	margin: 0 calc(60px / 2);
	border: 2px solid #EFEFEF;
	border-radius: 8px;
	background-color: #ffffff;
	box-shadow: 0px 3px 6px rgb(0, 0, 0, .16);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 a{
		width: 100%;
		height: 60px;
		padding: 0 19px 0 24px;
		margin: 16px auto 0;
	}
	.inc04 .inc04_01 a:nth-of-type(1){
		margin-top: 0;
	}
}
.inc04 .inc04_01 a:hover{
	opacity: 1;
	background-color: #EFEFEF;
}
.inc04 .inc04_01 a::after{
	content: '';
	width: 8px;
	height: 17px;
	margin: 0;
	background-image: url(../img/common/item06.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
}
.inc04 .inc04_01 a span{
	font-size: 17px;
	line-height: 27px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 a span{
		font-size: 14px;
		line-height: 24px;
	}
}
.inc04 .inc04_01 a span::before{
	content: '';
	width: 27px;
	height: 28px;
	margin: 0 13px 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 a span::before{
		width: 16px;
		height: 17px;
		margin: 0 23px 0 0;
	}
}
.inc04 .inc04_01 .choose_case span::before{
	background-image: url(../img/common/icon05.svg);
}
.inc04 .inc04_01 .competition span::before{
	background-image: url(../img/common/icon06.svg);
}
.inc04 .inc04_01 .purpose span::before{
	background-image: url(../img/common/icon07.svg);
}
/*.inc04ここまで*/

/*.inc05ここから*/
.inc05{
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 52px 0;
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
	.inc05{
		padding: 37px 0 43px;
	}
}
.inc05 .inc05_01{
	width: 878px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc05 .inc05_01{
		width: 90%;
		max-width: 335px;
		display: block;
	}
}
.inc05 .inc05_01 img{
	width: 100px;
	height: auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc05 .inc05_01 img{
		width: 100px;
		height: auto;
		margin: 0 auto 20px;
		display: block;
	}
}
.inc05 .inc05_01 p{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 25px;
	line-height: 35px;
	letter-spacing: 1px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc05 .inc05_01 p{
		width: 100%;
		margin: 0 auto 20px;
		font-size: 18px;
		line-height: 28px;
		letter-spacing: 0;
		text-align: center;
	}
}
.inc05 .inc05_01 a{
	width: 360px;
	height: 75px;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 1px;
	color: #ffffff;
	background-color: #FF6E02;
	border-radius: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media only screen and (max-width: 767px){
	.inc05 .inc05_01 a{
		width: 250px;
		height: 55px;
		margin: 0 auto;
		font-size: 14px;
		line-height: 24px;
		border-radius: 38px;
	}
}
.inc05 .inc05_01 a::after {
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	border-bottom: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 34px;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.inc05 .inc05_01 a::after {
		top: -5px;
		right: 32px;
	}
}
/*.inc05ここまで*/

/*.inc06ここから*/
.inc06{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.inc06 .inc06_01{
	width: 1180px;
	height: auto;
	padding: 90px 0 110px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01{
		width: 90%;
		max-width: 335px;
		padding: 55px 0 100px;
	}
}
.inc06 .inc06_01 img{
	width: auto;
	height: 60px;
	display: block;
	margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 img{
		width: 100%;
		max-width: 335px;
		height: auto;
		margin-bottom: 50px;
	}
}
.inc06 .inc06_01 .inc06_01_01{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01{
		display: block;
	}
}
.inc06 .inc06_01 .inc06_01_01 table{
	width: 550px;
	height: auto;
	table-layout: fixed;
	flex-shrink:0;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 table{
		width: 100%;
		margin-bottom: 28px;
	}
}
.inc06 .inc06_01 .inc06_01_01 table tr{
	width: 100%;
	height: auto;
	border-top: 1px dotted #CCCCCC;
}
.inc06 .inc06_01 .inc06_01_01 table tr:nth-of-type(1){
	border-top: 0;
}
.inc06 .inc06_01 .inc06_01_01 table tr th{
	width: 126px;
	height: auto;
	padding: 12px 5px;
	font-size: 15px;
	line-height: 25px;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 table tr th{
		width: 100%;
		height: auto;
		display: block;
		padding: 11px 0 0;
	}
	.inc06 .inc06_01 .inc06_01_01 table tr:first-of-type th{
		padding-top: 0;
	}
}
.inc06 .inc06_01 .inc06_01_01 table tr td{
	width: auto;
	height: auto;
	padding: 12px 0;
	font-size: 15px;
	line-height: 25px;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 table tr td{
		width: 100%;
		height: auto;
		display: block;
		padding: 0 0 12px;
	}
	.inc06 .inc06_01 .inc06_01_01 table tr:last-of-type td{
		padding-bottom: 0;
	}
}
.inc06 .inc06_01 .inc06_01_01 table tr td p{
	font-size: 13px;
	line-height: 18px;
	margin-top: 3px;
	display: block;
}
.inc06 .inc06_01 .inc06_01_01 table tr td .text01{
	width: 100%;
	height: auto;
	margin: 0 auto 5px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 table tr td .text01{
		margin: 0 auto 10px;
	}
}
.inc06 .inc06_01 .inc06_01_01 table tr td .text01 a{
	margin: 0;
	font-size: 16px;
	line-height: 21px;
	pointer-events: none;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 table tr td .text01 a{
		pointer-events: auto;
	}
}
.inc06 .inc06_01 .inc06_01_01 .inc06_01_01_01{
	width: 562px;
	height: 349px;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 .inc06_01_01_01{
		width: 100%;
		height: 208px;
		display: block;
		position: relative;
	}
}
.inc06 .inc06_01 .inc06_01_01 .inc06_01_01_01 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;
}
/*.inc06ここまで*/

/*.inc07ここから*/
.inc07{
	box-sizing: border-box;
	width: 68px;
	height: auto;
	padding: 0 5px;
	background-color: #FF6E02;
	border-radius: 8px 0 0 8px;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .16);
	position: fixed;
	top: 246px;
	right: 0;
	display: block;
	z-index: 100;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	.inc07{
		width: 90px;
	}
}
@media only screen and (max-width: 767px) {
	.inc07{
		width: 100%;
		height: 55px;
		padding: 10px 20px;
		border-radius: 0;
		top: auto;
		bottom: 0;
		left: 0;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		z-index: 10;
	}
}
.inc07 .inc07_01{
	width: 100%;
	height: auto;
	margin: 0;
	border-top: 1px solid #ffffff;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01{
		width: calc(100% / 3);
		height: 100%;
		border-top: 0;
		border-left: 1px solid #ffffff;
	}
}
.inc07 .inc07_01_1{
	border-top: 0;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01_4{
		border-left: 0;
	}
}
.inc07 .inc07_01 a{
	width: 100%;
	height: auto;
	padding: 13px 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 a{
		height: 100%;
		padding: 0;
		flex-direction: row;
	}
}
.inc07 .inc07_01 a img{
	width: 25px;
	height: auto;
	margin: 0 0 10px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 a img{
		margin: 0 6px 0 0;
	}
}
.inc07 .inc07_01_2 a img{
	width: 25px;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01_2 a img{
		width: 22px;
	}
}
.inc07 .inc07_01_3 a img{
	width: 21px;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01_4 a img{
		width: 16px;
	}
}
.inc07 .inc07_01 a .text01{
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 1px;
	color: #fff;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.inc07 .inc07_01 a .text02{
	font-size: 13px;
	line-height: 23px;
	color: #fff;
	text-align: center;
}
/*.inc07ここまで*/

/*.inc08ここから*/
.inc08{
	width: 100%;
	height: 150px;
	margin: -70px auto 0;
}
@media only screen and (max-width: 767px) {
	.inc08{
		height: 110px;
	}
}
.inc08 .inc08_01{
	box-sizing: border-box;
	width: 1060px;
	height: 100%;
	margin: 0 auto;
	background-color: #ffffff;
	border: 2px solid #EFEFEF;
	border-radius: 8px;
	box-shadow: 0px 3px 6px rgb(0, 0 ,0, .16);
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01{
		width: 100%;
		border: 0;
		border-radius: 0;
	}
}
.inc08 .inc08_01 ul{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 20px 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 ul{
		padding: 6px 0;
	}
}
.inc08 .inc08_01 ul li{
	box-sizing: border-box;
	width: calc(100% / 3);
	height: 100%;
	margin: 0;
	border-left: 1px solid #CCCCCC;
	display: block;
}
.inc08 .inc08_01 ul li:nth-of-type(1){
	border: 0;
}
.inc08 .inc08_01 ul li a{
	width: auto;
	height: 100%;
	margin: 0 auto;
	font-size: 17px;
	line-height: 27px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 ul li a{
		font-size: 13px;
		line-height: 18px;
	}
}
.inc08 .inc08_01 ul li a:hover{
	color: #FF6E02;
	opacity: 1;
}
.inc08 .inc08_01 ul li:nth-of-type(1) a .svg{
	width: 30px;
	height: 35px;
	margin: 0 auto 13px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 ul li:nth-of-type(1) a .svg{
		width: 19px;
		height: 23px;
		margin: 0 auto 7px;
	}
}
.inc08 .inc08_01 ul li:nth-of-type(2) a .svg{
	width: 27px;
	height: 29px;
	margin: 0 auto 15px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 ul li:nth-of-type(2) a .svg{
		width: 18px;
		height: 20px;
		margin: 0 auto 9px;
	}
}
.inc08 .inc08_01 ul li:nth-of-type(3) a .svg{
	width: 30px;
	height: 29px;
	margin: 0 auto 14px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 ul li:nth-of-type(3) a .svg{
		width: 20px;
		height: 20px;
		margin: 0 auto 8px;
	}
}
.inc08 .inc08_01 ul li a .svg path{
	fill: #000000;
	transition: all .5s;
}
.inc08 .inc08_01 ul li a:hover .svg path{
	fill: #FF6E02;
	transition: all .5s;
}
.inc08 .inc08_01 ul li a::after{
	content: '';
	width: 6px;
	height: 6px;
	margin: 8px auto 0;
	display: block;
	border-bottom: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 ul li a::after{
		margin: 7px auto 0;
	}
}
.inc08 .inc08_01 ul li a:hover::after{
	border-bottom: 2px solid #FF6E02;
	border-right: 2px solid #FF6E02;
	transition: all .5s;
}
/*.inc08ここまで*/

/*.inc09ここから*/
.inc09{
	width: 100%;
	height: 130px;
	margin: -47px auto 0;
}
@media only screen and (max-width: 767px) {
	.inc09{
		height: 157px;
		margin: -40px auto 0;
	}
}
.inc09 .inc09_01{
	box-sizing: border-box;
	width: 1060px;
	height: 100%;
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0px 3px 6px rgb(0, 0 ,0, .16);
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01{
		width: 90%;
		max-width: 335px;
	}
}
.inc09 .inc09_01 ul{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 ul{
		flex-wrap: wrap;
		padding: 0;
	}
}
.inc09 .inc09_01 ul li{
	box-sizing: border-box;
	width: calc(100% / 4);
	height: 100%;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 ul li{
		width: calc(100% / 2);
		height: 50%;
	}
}
.inc09 .inc09_01 ul li a{
	width: auto;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-top: 5px;
	border-bottom: 5px solid #fff;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 ul li a{
		font-size: 10px;
		line-height: 13px;
		border-bottom: 1px solid #CCCCCC;
		padding-top: 0;
	}
}
.inc09 .inc09_01 ul li a:hover{
	border-bottom: 5px solid #FF6E02;
	opacity: 1;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 ul li a:hover{
		border-bottom: 1px solid #cccccc;
	}
}
.inc09 .inc09_01 ul .active a{
	border-bottom: 5px solid #FF6E02;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 ul .active a{
		border-bottom: 1px solid #cccccc;
	}
}
.inc09 .inc09_01 ul li a p{
	border-left: 1px solid #CCCCCC;
	width: 100%;
	height: 80px;
	font-size: 17px;
	line-height: 27px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 ul li a p{
		font-size: 13px;
		line-height: 23px;
	}
}
.inc09 .inc09_01 ul li:nth-of-type(1) a p {
	border-left: 0;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 ul li:nth-of-type(3) a p{
		border-left: 0;
	}
}
.inc09 .inc09_01 ul li a:hover p{
	color: #FF6E02;
	transition: all .5s;
}
.inc09 .inc09_01 ul .active a p{
	color: #FF6E02;
}
.inc09 .inc09_01 ul li a p::after{
	content: '';
	width: 6px;
	height: 6px;
	margin: 8px auto 0;
	display: block;
	border-bottom: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .5s;
}
.inc09 .inc09_01 ul li a:hover p::after{
	border-bottom: 2px solid #FF6E02;
	border-right: 2px solid #FF6E02;
	transition: all .5s;
}
.inc09 .inc09_01 ul .active a p::after{
	border-bottom: 2px solid #FF6E02;
	border-right: 2px solid #FF6E02;
	transition: all .5s;
}
.inc09 .inc09_01 ul li a p span{
	font-size: 14px;
	line-height: 24px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPadが縦向きのみの記述*/
	.inc09 .inc09_01 ul li a p span{
		font-size: 10px;
		line-height: 20px;
	}
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 ul li a p span{
		font-size: 9px;
		line-height: 19px;
		font-weight: 500;

	}
}
/*.inc09ここまで*/

/*.inc010ここから*/
.inc010{
	width: 100%;
	height: 109px;
	margin: -46px auto 0;
}
.inc010 .inc010_01{
	box-sizing: border-box;
	width: 1060px;
	height: 100%;
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0px 3px 6px rgb(0, 0 ,0, .16);
	display: block;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.inc010 .inc010_01{
		width: 90%;
		max-width: 335px;
	}
}
.inc010 ul{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
@media only screen and (max-width: 767px) {
	.inc010 ul{
	  flex-wrap: wrap;
	  padding: 0;
	}
}
.inc010 ul li{
	box-sizing: border-box;
	width: calc(100% / 4);
	height: 100%;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc010 ul li{
		width: calc(100% / 2);
		height: 50%;
	}
}
.inc010 ul li a{
	width: auto;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-top: 5px;
	border-bottom: 5px solid #fff;
}
@media only screen and (max-width: 767px) {
	.inc010 ul li a{
		font-size: 10px;
		line-height: 13px;
		border-bottom: 1px solid #CCCCCC;
		padding-top: 0;
	}
}
.inc010 ul li a:hover{
	border-bottom: 5px solid #FF6E02;
	opacity: 1;
}
@media only screen and (max-width: 767px) {
	.inc010 ul li a:hover{
		border-bottom: 1px solid #cccccc;
	}
}
.inc010 ul .active a{
	border-bottom: 5px solid #FF6E02;
}
@media only screen and (max-width: 767px) {
	.inc010 ul .active a{
		border-bottom: 1px solid #cccccc;
	}
}
.inc010 ul li a p{
	border-left: 1px solid #CCCCCC;
	width: 100%;
	height: 80px;
	font-size: 17px;
	line-height: 27px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc010 ul li a p{
		font-size: 13px;
		line-height: 18px;
	}
}
.inc010 ul li:nth-of-type(1) a p {
	border-left: 0;
}
@media only screen and (max-width: 767px) {
	.inc010 ul li:nth-of-type(3) a p{
		border-left: 0;
	}
}
.inc010 ul li a:hover p{
	color: #FF6E02;
	transition: all .5s;
}
.inc010 ul .active a p{
	color: #FF6E02;
}
.inc010 ul li a p::after{
	content: '';
	width: 6px;
	height: 6px;
	margin: 8px auto 0;
	display: block;
	border-bottom: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .5s;
}
.inc010 ul li a:hover p::after{
	border-bottom: 2px solid #FF6E02;
	border-right: 2px solid #FF6E02;
	transition: all .5s;
}
.inc010 ul .active a p::after{
	border-bottom: 2px solid #FF6E02;
	border-right: 2px solid #FF6E02;
	transition: all .5s;
}
/*.inc010ここまで*/

/*.inc011ここから*/
.inc011{
	width: 100%;
	height: 110px;
	margin: -36px auto 0;
}
@media only screen and (max-width: 767px) {
	.inc011{
		height: 80px;
	}
}
.inc011 .inc011_01{
	box-sizing: border-box;
	width: 1060px;
	height: 100%;
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0px 3px 6px rgb(0, 0 ,0, .16);
	display: block;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.inc011 .inc011_01{
		width: 90%;
		max-width: 335px;
	}
}
.inc011 ul{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
@media only screen and (max-width: 767px) {
	.inc011 ul{
	  flex-wrap: wrap;
	  padding: 0;
	}
}
.inc011 ul li{
	box-sizing: border-box;
	width: calc(100% / 2);
	height: 100%;
	margin: 0;
	display: block;
}
.inc011 ul li a{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5px;
	border-bottom: 5px solid #fff;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc011 ul li a{
		border-bottom: 0;
		padding-top: 0;
	}
}
.inc011 ul .active a{
	border-bottom: 5px solid #FF6E02
}
@media only screen and (max-width: 767px) {
	.inc011 ul .active a{
		border-bottom: 0;
	}
}
.inc011 ul li a:hover{
	border-bottom: 5px solid #FF6E02;
	opacity: 1;
}
@media only screen and (max-width: 767px) {
	.inc011 ul li a:hover{
		border-bottom: 0;
	}
}
.inc011 ul li a p{
	border-left: 1px solid #CCCCCC;
	width: 100%;
	height: 80px;
	font-size: 17px;
	line-height: 27px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc011 ul li a p{
		height: 100%;
		font-size: 13px;
		line-height: 18px;
		flex-direction: column;
	}
}
.inc011 ul li:nth-of-type(1) a p{
	border-left: 0;
}
.inc011 ul .active a p{
	color: #FF6E02;
}
.inc011 ul li a:hover p{
	color: #FF6E02;
	transition: all .5s;
}
.inc011 ul li a p::after{
	content: '';
	width: 6px;
	height: 6px;
	margin: 0 0 0 50px;
	display: block;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc011 ul li a p::after{
		margin: 5px auto 0;
		border-top: 0;
		border-bottom: 2px solid #000000;
		border-right: 2px solid #000000;
	}
}
.inc011 ul .active a p::after{
	border-top: 2px solid #FF6E02;
	border-right: 2px solid #FF6E02;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc011 ul .active a p::after{
		border-top: 0;
		border-bottom: 2px solid #FF6E02;
		border-right: 2px solid #FF6E02;
	}
}
.inc011 ul li a:hover p::after{
	border-top: 2px solid #FF6E02;
	border-right: 2px solid #FF6E02;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc011 ul li a:hover p::after{
		border-top: 0;
		border-bottom: 2px solid #FF6E02;
		border-right: 2px solid #FF6E02;
	}
}
.inc011 ul li a p .svg.icon08 {
	width: 30px;
	height: 36px;
	margin: 0 17px 0 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc011 ul li a p .svg.icon08 {
		width: 19px;
		height: 22px;
		margin: 0 0 4px;
	}
}
.inc011 ul li a p .svg.icon09 {
	width: 33px;
	height: 36px;
	margin: 0 15px 0 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc011 ul li a p .svg.icon09 {
		width: 19px;
		height: 21px;
		margin: 0 0 4px;
	}
}
.inc011 ul li a p .svg path {
	fill: #000000;
	transition: all .5s;
}
.inc011 ul .active a p .svg path {
	fill: #FF6E02;
}
.inc011 ul li a:hover p .svg path {
	fill: #FF6E02;
	transition: all .5s;
}
/*.inc011ここまで*/

/*.inc012ここから*/
.inc012{
	width: 100%;
	height: 110px;
	margin: -36px auto 0;
}
@media only screen and (max-width: 767px) {
	.inc012{
		height: 70px;
		margin: -39px auto 0;
	}
}
.inc012 .inc012_01{
	box-sizing: border-box;
	width: 1060px;
	height: 100%;
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0px 3px 6px rgb(0, 0 ,0, .16);
	display: block;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.inc012 .inc012_01{
		width: 90%;
		max-width: 335px;
	}
}
.inc012 ul{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
@media only screen and (max-width: 767px) {
	.inc012 ul{
	  flex-wrap: wrap;
	  padding: 0;
	}
}
.inc012 ul li{
	box-sizing: border-box;
	width: calc(100% / 2);
	height: 100%;
	margin: 0;
	display: block;
}
.inc012 ul li a{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5px;
	border-bottom: 5px solid #fff;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc012 ul li a{
		border-bottom: 0;
		padding-top: 0;
	}
}
.inc012 ul .active a{
	border-bottom: 5px solid #FF6E02
}
@media only screen and (max-width: 767px) {
	.inc012 ul .active a{
		border-bottom: 0;
	}
}
.inc012 ul li a:hover{
	border-bottom: 5px solid #FF6E02;
	opacity: 1;
}
@media only screen and (max-width: 767px) {
	.inc012 ul li a:hover{
		border-bottom: 0;
	}
}
.inc012 ul li a p{
	border-left: 1px solid #CCCCCC;
	width: 100%;
	height: 80px;
	font-size: 17px;
	line-height: 27px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc012 ul li a p{
		height: 100%;
		font-size: 13px;
		line-height: 18px;
		flex-direction: column;
	}
}
.inc012 ul li:nth-of-type(1) a p{
	border-left: 0;
}
.inc012 ul .active a p{
	color: #FF6E02;
}
.inc012 ul li a:hover p{
	color: #FF6E02;
	transition: all .5s;
}
.inc012 ul li a p::after{
	content: '';
	width: 6px;
	height: 6px;
	margin: 0 0 0 50px;
	display: block;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc012 ul li a p::after{
		margin: 8px auto 0;
		border-top: 0;
		border-bottom: 2px solid #000000;
		border-right: 2px solid #000000;
	}
}
.inc012 ul .active a p::after{
	border-top: 2px solid #FF6E02;
	border-right: 2px solid #FF6E02;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc012 ul .active a p::after{
		border-top: 0;
		border-bottom: 2px solid #FF6E02;
		border-right: 2px solid #FF6E02;
	}
}
.inc012 ul li a:hover p::after{
	border-top: 2px solid #FF6E02;
	border-right: 2px solid #FF6E02;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.inc012 ul li a:hover p::after{
		border-top: 0;
		border-bottom: 2px solid #FF6E02;
		border-right: 2px solid #FF6E02;
	}
}
/*.inc012ここまで*/

/*.inc013ここから*/
.inc013{
	width: 100%;
	height: auto;
	padding: 0 0 83px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc013{
		padding: 0 0 52px;
	}
}
.inc013 .inc013_01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-top: 1px solid #EFEFEF;
	border-bottom: 1px solid #EFEFEF;
	display: block;
}
.inc013 .inc013_01 .inc013_01_01{
	width: 1060px;
	height: auto;
	padding: 48px 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc013 .inc013_01 .inc013_01_01{
		width: 90%;
		max-width: 335px;
		padding: 37px 0 48px;
		display: block;
	}
}
.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_01{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
}
@media only screen and (max-width: 767px){
	.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_01{
		width: 100%;
		margin: 0 auto 20px;
		display: block;
	}
}
.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_01 .inc013_01_01_01_01{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_01 .inc013_01_01_01_01{
		width: 100%;
		margin: 0 auto;
	}
}
.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_01 .inc013_01_01_01_01 h2{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 25px;
	line-height: 38px;
	letter-spacing: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_01 .inc013_01_01_01_01 h2{
		width: 100%;
		margin: 0 auto;
		font-size: 18px;
		line-height: 28px;
		text-align: center;
		display: block;
	}
}
.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_01 .inc013_01_01_01_01 h2::before{
	content: '';
	width: 100px;
	height: 91px;
	margin: 0 16px 0 0;
	background-image: url(../img/index/item06.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_01 .inc013_01_01_01_01 h2::before{
		margin: 0 auto 20px;
	}
}
.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_02{
	width: auto;
	height: auto;
	margin: 0 0 0 51px;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
@media only screen and (max-width: 767px){
	.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_02{
		width: 100%;
		margin: 0 auto;
		display: block;
	}
}
.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_02 form{
	width: 320px;
	height: 60px;
	margin: 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_02 form{
		height: 50px;
		margin: 0 auto;
	}
}
.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_02 form select{
	/*打ち消し*/
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	/*打ち消し*/
	width: 100%;
	height: 100%;
	margin: 0;
	border: 1px solid #CCCCCC;
	border-radius: 8px;
	background-color: #ffffff;
	background-image: url(../img/common/item08.png);
	background-repeat: no-repeat;
	background-size: 12px auto;
	background-position: center right 26px;
	padding: 0 62px 0 27px;
	font-size: 16px;
	line-height: 16px;
	color: #000000;
	cursor: pointer;
}
@media only screen and (max-width: 767px){
	.inc013 .inc013_01 .inc013_01_01 .inc013_01_01_02 form select{
		font-size: 14px;
		line-height: 14px;
	}
}
/*.inc013ここまで*/

/*.inc014ここから*/
.inc014{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #F7F7F7;
	display: block;
}
@media only screen and (max-width: 767px){
}
.inc014 .inc014_01{
	width: 1180px;
	height: auto;
	padding: 72px 0 93px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01{
		width: 90%;
		max-width: 335px;
		padding: 45px 0 58px;
	}
}
.inc014 .inc014_01 h2{
	width: auto;
	height: auto;
	margin: 0 auto 70px;
	font-size: 30px;
	line-height: 48px;
	letter-spacing: 2px;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 h2{
		margin: 0 auto 37px;
		font-size: 22px;
		line-height: 32px;
		letter-spacing: 0;
	}
}
.inc014 .inc014_01 .inc014_01_01{
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	/*justify-content: flex-start;*/
	justify-content: center;
	align-items: stretch;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01{
		margin: 0 auto;
		display: block;
	}
}
.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01{
	box-sizing: border-box;
	width: calc(100% / 3 - 35px * 2 / 3);
	height: auto;
	padding: 43px 0;
	margin: 0 35px 0 0;
	border-radius: 8px;
	text-align: center;
	background-color: #ffffff;
	box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, .16);
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01{
		width: 280px;
		padding: 23px 0;
		margin: 20px auto 0;
	}
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(1){
		margin-top: 0;
	}
}
/*.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(3){
	margin-right: 0;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(3){
		margin-right: auto;
	}
}*/
.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(2){
	margin-right: 0;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(2){
		margin-right: auto;
	}
}
.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01 .inc014_01_01_01_01{
	width: 100px;
	height: 72px;
	margin: 0 auto 22px;
	background-repeat: no-repeat;
	background-position: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01 .inc014_01_01_01_01{
		width: auto;
		height: auto;
		margin: 0 auto 17px;
	}
}
.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(1) .inc014_01_01_01_01{
	background-image: url(../img/common/icon014.png);
	background-size: 76px auto;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(1) .inc014_01_01_01_01{
		width: 57px;
		height: 55px;
		background-size: 100% auto;
	}
}
.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(2) .inc014_01_01_01_01{
	background-image: url(../img/common/icon015.png);
	background-size: 92px auto;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(2) .inc014_01_01_01_01{
		width: 67px;
		height: 43px;
		background-size: 100% auto;
	}
}
.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(3) .inc014_01_01_01_01{
	background-image: url(../img/common/icon016.png);
	background-size: 100px auto;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01:nth-of-type(3) .inc014_01_01_01_01{
		width: 78px;
		height: 36px;
		background-size: 100% auto;
	}
}
.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01 .inc014_01_01_01_02{
	width: auto;
	height: auto;
	margin: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01 .inc014_01_01_01_02 h3{
	font-size: 22px;
	line-height: 32px;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01 .inc014_01_01_01_02 h3{
		font-size: 16px;
		line-height: 26px;
	}
}
.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01 .inc014_01_01_01_02::after{
	content: '';
	width: 23px;
	height: 23px;
	margin: 0 0 0 15px;
	border-radius: 50%;
	background-color: #FF6E02;
	background-image: url(../img/common/item05.png);
	background-repeat: no-repeat;
	background-size: 6px auto;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc014 .inc014_01 .inc014_01_01 .inc014_01_01_01 .inc014_01_01_01_02::after{
		width: 18px;
		height: 18px;
		margin: 0 0 0 8px;
	}
}
/*.inc014ここまで*/

/*.inc015ここから*/
.inc015 {
	width: 100%;
	height: auto;
	padding: 86px 0 0;
	margin: 0 auto;
	display: block;
	position: relative;
	z-index: 1;
}
.inc015 .inc015_01 {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.inc015 .inc015_01 .img {
	width: auto;
	height: 28px;
	margin: 0 0 10px 10px;
	display: block;
}
.inc015 .inc015_01 .img img {
	width: auto;
	height: 100%;
	display: block;
	margin: 0;
}
.inc015 .inc015_01 ul {
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	flex-grow: 1;
}
.inc015 .inc015_01 ul li {
	box-sizing: border-box;
	width: calc(100% / 3);
	height: 43px;
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
	background-color: #dddddd;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.inc015 .inc015_01 ul li:nth-of-type(-n+3){
	border-top: 0;
}
.inc015 .inc015_01 ul li:nth-of-type(3n){
	border-right: 0;
}
.inc015 .inc015_01 ul .active{
	background-color: #FFE0C4;
}
.inc015 .inc015_01 ul .noactive{
	opacity: .3;
	pointer-events: none;
}
.inc015 .inc015_01 ul li a{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	font-size: 13px;
	line-height: 16px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}
/*.inc015ここまで*/

/*.inc016ここから*/
.inc016{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #F7F7F7;
	display: block;
}
.inc016 .inc016_01{
	width: 1060px;
	height: auto;
	padding: 35px 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01{
		width: 90%;
		max-width: 335px;
		padding: 37px 0 48px;
		display: block;
	}
}
.inc016 .inc016_01 .inc016_01_01{
	width: auto;
	height: auto;
	margin: 0 50px 0 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	pointer-events: none;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_01{
		width: 100%;
		margin: 0 auto 17px;
		display: block;
		pointer-events: auto;
	}
}
.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01{
		width: 100%;
		flex-wrap: wrap;
	}
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01 .text00{
		width: 100%;
		height: auto;
		font-size: 14px;
		line-height: 24px;
		margin: 0 auto 5px;
		text-align: center;
		display: block;
	}
}
.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01 .inc016_01_01_01_01{
	width: 65px;
	height: 65px;
	margin: 0 15px 0 0;
	border: 1px solid #000000;
	border-radius: 50%;
	background-image: url(../img/common/icon01.png);
	background-repeat: no-repeat;
	background-size: 26px auto;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01 .inc016_01_01_01_01{
		width: 45px;
		height: 45px;
		margin: 0 7px 0 0;
		background-size: 18px auto;
	}
}
.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01 .inc016_01_01_01_02{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
}
.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01 .inc016_01_01_01_02 .text00{
	font-size: 14px;
	line-height: 24px;
	margin: 0 auto 5px;
	text-align: center;
	display: block;
}
.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01 .inc016_01_01_01_02 .text01{
	font-size: 33px;
	line-height: 37px;
	letter-spacing: .5px;
	margin: 0 auto 5px;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01 .inc016_01_01_01_02 .text01{
		font-size: 30px;
		line-height: 34px;
		margin: 0 auto;
	}
}
.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01 .inc016_01_01_01_02 .text02{
	font-size: 15px;
	line-height: 25px;
	margin: 0;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_01 .inc016_01_01_01 .inc016_01_01_01_02 .text02{
		font-size: 14px;
		line-height: 24px;
		text-align: left;
	}
}
.inc016 .inc016_01 .inc016_01_02{
	width: auto;
	height: auto;
	margin: 0 0 0 40px;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: column;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_02{
		width: 100%;
		margin: 0 auto;
		display: block;
	}
}
.inc016 .inc016_01 .inc016_01_02 p{
	width: 100%;
	height: auto;
	margin: 0 auto 8px;
	font-size: 13px;
	line-height: 23px;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_02 p{
		margin: 0 auto 13px;
	}
}
.inc016 .inc016_01 .inc016_01_02 form{
	width: 320px;
	height: 60px;
	margin: 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_02 form{
		width: 90%;
		max-width: 320px;
		height: 50px;
		margin: 0 auto;
	}
}
.inc016 .inc016_01 .inc016_01_02 form select{
	/*打ち消し*/
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	/*打ち消し*/
	width: 100%;
	height: 100%;
	margin: 0;
	border: 1px solid #CCCCCC;
	border-radius: 8px;
	background-color: #ffffff;
	background-image: url(../img/common/item08.png);
	background-repeat: no-repeat;
	background-size: 12px auto;
	background-position: center right 26px;
	padding: 0 62px 0 27px;
	font-size: 16px;
	line-height: 16px;
	color: #000000;
	cursor: pointer;
}
@media only screen and (max-width: 767px){
	.inc016 .inc016_01 .inc016_01_02 form select{
		font-size: 14px;
		line-height: 14px;
	}
}
/*.inc016ここまで*/

/*.inc017ここから*/
.inc017{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
}
.inc017 .inc017_01{
	width: 1180px;
	height: auto;
	padding: 75px 0 70px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01{
		width: 100%;
		padding: 50px 0 67px;
	}
}
.inc017 .inc017_01 h2{
	width: auto;
	height: auto;
	margin: 0 auto 20px;
	font-size: 30px;
	line-height: 40px;
	letter-spacing: 2px;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 h2{
		width: 90%;
		max-width: 335px;
		margin: 0 auto 15px;
		font-size: 22px;
		line-height: 32px;
		letter-spacing: 1px;
	}
}
.inc017 .inc017_01 .text01{
	width: auto;
	height: auto;
	margin: 0 auto 32px;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 1px;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 .text01{
		width: 90%;
		max-width: 335px;
		margin: 0 auto 28px;
		font-size: 15px;
		line-height: 25px;
		text-align: left;
	}
}
.inc017 .inc017_01 .inc017_01_01{
	width: 1196px;
	height: auto;
	margin: 0 auto 45px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 .inc017_01_01{
		width: 100%;
		margin: 0 auto 35px;
	}
}
.inc017 .inc017_01 .inc017_01_01 li{
	width: 370px;
	height: auto;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, .16);
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li{
		width: 250px;
	}
}
@media only screen and (min-width: 768px) {
	.inc017 .inc017_01 .inc017_01_01 li{
		margin: 8px 33px 8px 0;
	}
	.inc017 .inc017_01 .inc017_01_01 li:nth-of-type(3){
		margin-right: 0;
	}
	.inc017 .inc017_01 .slick_start li{
		margin: 8px calc(33px / 2);
	}
	.inc017 .inc017_01 .slick_start li:nth-of-type(3){
		margin: 8px calc(33px / 2);
	}
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li{
		margin: 8px auto;
	}
	.inc017 .inc017_01 .slick_start li{
		margin: 8px calc(20px / 2);
	}
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	background-color: #F7F7F7;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_01{
		margin: 0;
	}
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_01 .inc017_01_01_01_01{
	width: 100%;
	height: auto;
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_01 .inc017_01_01_01_01 img{
	width: 100%;
	height: 210px;
	margin: 0;
	object-fit: contain;
	font-family: 'object-fit: contain;';
	display: block;
	border-radius: 8px 8px 0 0;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_01 .inc017_01_01_01_01 img{
		height: 150px;
	}
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_01 .inc017_01_01_01_01 .img{
	width: 100%;
	height: 210px;
	margin: 0;
	background-color: #dddddd;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 8px 8px 0 0;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_01 .inc017_01_01_01_01 .img{
		height: 150px;
	}
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_01 .inc017_01_01_01_01 .img::before{
	content: '';
	width: 50%;
	height: 50%;
	margin: 0;
	background-image: url(../img/common/logo01.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02{
	width: 100%;
	height: auto;
	padding: 15px 20px;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02{
		padding: 17px 20px;
	}
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 .text01{
	width: auto;
	height: auto;
	display: inline-block;
	border: 1px solid #000;
	border-radius: 2px;
	font-size: 13px;
	line-height: 25px;
	padding: 0 13px;
	margin-bottom: 8px;
	pointer-events: none;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 .text01{
		font-size: 11px;
		line-height: 24px;
		margin-bottom: 6px;
	}
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 .inc017_01_01_02_01{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-flow: wrap;
	margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 .inc017_01_01_02_01{
		margin-bottom: 10px;
	}
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 .inc017_01_01_02_01 .text02{
	width: auto;
	height: 25px;
	display: inline-block;
	border: 1px solid #000;
	border-radius: 2px;
	font-size: 13px;
	line-height: 14px;
	padding: 0 13px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 .inc017_01_01_02_01 .text02{
		font-size: 11px;
		line-height: 25px;
	}
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 .text03{
	font-size: 15px;
	line-height: 20px;
	color: #FF6E02;
	margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 .text03{
		margin-bottom: 8px;
	}
}
.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 h3{
	font-size: 20px;
	line-height: 30px;
}
@media only screen and (max-width: 767px) {
	.inc017 .inc017_01 .inc017_01_01 li .inc017_01_01_02 h3{
		font-size: 16px;
		line-height: 26px;
	}
}
.inc017 .inc017_01 .inc017_01_02{
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inc017 .inc017_01 .inc017_01_02 a{
	width: 390px;
	height: 75px;
	margin: 0;
	border: 2px solid #CCCCCC;
	border-radius: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 .inc017_01_02 a{
		width: 300px;
		height: 55px;
		border-radius: 38px;
	}
}
.inc017 .inc017_01 .inc017_01_02 a span{
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 1px;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 .inc017_01_02 a span{
		font-size: 14px;
		line-height: 24px;
	}
}
.inc017 .inc017_01 .inc017_01_02 a::after{
	content: '';
	width: 23px;
	height: 23px;
	margin: 0 0 0 11px;
	border-radius: 50%;
	background-color: #FF6E02;
	background-image: url(../img/common/item010.png);
	background-repeat: no-repeat;
	background-size: 6px auto;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 .inc017_01_02 a::after{
		width: 18px;
		height: 18px;
		margin: 0 0 0 8px;
	}
}
.inc017 .inc017_01 ul .slick-prev,
.inc017 .inc017_01 ul .slick-next{
	width: 75px;
	height: 75px;
	background-color: #333333;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	bottom: 0;
	z-index: 10;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 ul .slick-prev,
	.inc017 .inc017_01 ul .slick-next{
		width: 25px;
		height: 25px;
	}
}
.inc017 .inc017_01 ul .slick-prev{
	left: -1180px;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 ul .slick-prev{
		left: 0;
		right: auto;
	}
}
.inc017 .inc017_01 ul .slick-next{
	left: 0;
	right: -1180px;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 ul .slick-next{
		left: auto;
		right: 0;
	}
}
.inc017 .inc017_01 ul .slick-prev::before{
	width: 13px;
	height: 23px;
	background-image: url(../img/slick/arrow01.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 ul .slick-prev::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
		background-color: #19496f;
	}
}
.inc017 .inc017_01 ul .slick-next::before{
	width: 13px;
	height: 23px;
	background-image: url(../img/slick/arrow02.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 ul .slick-next::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
		background-color: #19496f;
	}
}
.inc017 .inc017_01 ul .slick-dots{
	width: 200px;
	height: auto;
	margin: 40px auto 0;
	position: static;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px){
	.inc017 .inc017_01 ul .slick-dots{
	}
}
.inc017 .inc017_01 ul .slick-dots li{
	width: 8px;
	height: 8px;
	margin: 4px 4px 0;
	display: block;
}
.inc017 .inc017_01 ul .slick-dots li:nth-of-type(-n+12){
	margin-top: 0;
}
.inc017 .inc017_01 ul .slick-dots li button{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}
.inc017 .inc017_01 ul .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: #CCCCCC;
}
.inc017 .inc017_01 ul .slick-dots .slick-active button::before{
	background-color: #000000;
}
/*.inc017ここまで*/

/*.inc018ここから*/
.inc018{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #F7F7F7;
	display: block;
}
@media only screen and (max-width: 767px){
}
.inc018 .inc018_01{
	width: 1060px;
	height: auto;
	padding: 48px 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc018 .inc018_01{
		width: 90%;
		max-width: 335px;
		padding: 40px 0 40px;
		display: block;
	}
}
.inc018 .inc018_01 .inc018_01_01{
	width: 50%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
}
@media only screen and (max-width: 767px){
	.inc018 .inc018_01 .inc018_01_01{
		width: 100%;
		margin: 0 auto 23px;
		display: block;
	}
}
.inc018 .inc018_01 .inc018_01_01 .inc018_01_01_01{
	width: auto;
	height: auto;
	margin: 0 23px 0 0;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc018 .inc018_01 .inc018_01_01 .inc018_01_01_01{
		width: 100%;
		margin: 0 auto;
	}
}
.inc018 .inc018_01 .inc018_01_01 .inc018_01_01_01 h2{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 24px;
	line-height: 38px;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc018 .inc018_01 .inc018_01_01 .inc018_01_01_01 h2{
		width: 100%;
		font-size: 18px;
		line-height: 28px;
		text-align: center;
	}
}
.inc018 .inc018_01 .inc018_01_01 .inc018_01_01_01 h3{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 24px;
	line-height: 38px;
	display: block;
}
@media only screen and (max-width: 767px){
	.inc018 .inc018_01 .inc018_01_01 .inc018_01_01_01 h3{
		width: 100%;
		font-size: 18px;
		line-height: 28px;
		text-align: center;
	}
}
.inc018 .inc018_01 .inc018_01_02{
	width: 50%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
@media only screen and (max-width: 767px){
	.inc018 .inc018_01 .inc018_01_02{
		width: 100%;
		margin: 0 auto;
		display: block;
	}
}
.inc018 .inc018_01 .inc018_01_02 a{
	width: 350px;
	height: 75px;
	margin: 0 0 0 50px;
	background-color: #FF6E02;
	border-radius: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	.inc018 .inc018_01 .inc018_01_02 a{
		width: 250px;
		height: 55px;
		margin: 0 auto;
		border-radius: 38px;
	}
}
.inc018 .inc018_01 .inc018_01_02 a span{
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 1px;
	color: #ffffff;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc018 .inc018_01 .inc018_01_02 a span{
		font-size: 14px;
		line-height: 24px;
	}
}
.inc018 .inc018_01 .inc018_01_02 a::before{
	content: '';
	width: 31px;
	height: 27px;
	margin: 0 16px 0 0;
	background-image: url(../img/common/icon017.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	.inc018 .inc018_01 .inc018_01_02 a::before{
		width: 26px;
		height: 23px;
		margin: 0 14px 0 0;
	}
}
/*.inc018ここまで*/

/*includeここまで*/