@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: 1280px) {
	/*1280px- 画面幅1280px閲覧で1px=0.1rem可変*/
	html{
		font-size: 0.782vw;
	}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	/*iPadの縦横両方の記述 safariのdevモードipadair2横画面幅1280px閲覧で1px=0.1rem可変*/
	html{
		font-size: 0.65vw;
	}
}
@media only screen and (max-width: 767px){
	/*-767px 画面幅375px閲覧で1px=0.1rem可変*/
	html{
			font-size: 2.67vw;
		}
}
@media only screen and (max-width: 375px){
	/*-375px 画面幅320pxで1px=0.1rem固定*/
	html{
		font-size: 62.5%;
	}
}
/*@media only screen and (max-width: 1280px){
1280px- 画面幅1280pxで1px=0.1rem固定
	html{
		font-size: 62.5%;
	}
}*/


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

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

/*サイト全体のベースフォントがゴシック体の場合ここから*/
/*例外で明長体を使う場合.font-mを付与*/
body{
	-webkit-text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 400;
	color: #312929;
}
/*サイト全体のベースフォントがゴシック体ここまで*/

/*Googleフォントここから*/
.regular{
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 400;
}
.light{
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 300;
}
.mid{
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 500;
}
.bold{
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 700;
}
.black{
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 900;
}
.g_light02{
	font-family:
	'Roboto',
	sans-serif;
	font-weight: 300;
}
.g_mid02{
	font-family:
	'Roboto',
	sans-serif;
	font-weight: 500;
}
.g_font02{
	font-family:
	'Roboto',
	sans-serif;
	font-weight: 500;
}
.g_bold02{
	font-family:
	'Roboto',
	sans-serif;
	font-weight: 700;
}
.g_sbold03{
	font-family:
	'Noto_Serif_JP',
	sans-serif;
	font-weight: 600;
}
.g_bold03{
	font-family:
	'Noto_Serif_JP',
	sans-serif;
	font-weight: 700;
}
.g_font04{
	font-family:
	'Baskervville',
	sans-serif;
	font-weight: 600;
}
.g_bold05{
	font-family:
	'Poppins',
	sans-serif;
	font-weight: 700;
}
/*Googleフォントここまで*/
* {
	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,
header,
footer{
	min-width: 1280px;
}
@media only screen and (max-width: 767px){
	body,
	header,
	footer{
		min-width: 320px;
	}
}
.main{
	min-width: 1180px;
}
@media only screen and (max-width: 767px){
	.main{
		min-width: 320px;
	}
}

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

.main{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.main.else{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.main.else{
		display: block;
	}
}
.main main{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.main.else main{
	width: 860px;
	padding: 50px 0 0;
	margin: 0;
}
@media only screen and (max-width: 767px) {
	.main.else main{
		width: 100%;
		margin: 0 auto;
	}
}

/*headerここから*/
header{
	width: 100%;
	height: auto;
	display: block;
	position: fixed;
	top: 0;
	bottom: auto;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: #ffffff;
	box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.2);
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header{
		box-shadow: none;
	}
}
.header_bg {
	width: 100%;
	height: auto;
	display: block;
	transition: all .5s;
}
header .header00{
	width: 100%;
	height: 35px;
	padding: 0 20px;
	margin: 0 auto;
	background-color: #312929;
	display: none;
}
@media only screen and (max-width: 767px){
	header .header00{
		height: 35px;
		padding: 0 40px;
	}
}
header .header00 .header00_01{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
header .header00 .header00_01 a{
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	text-decoration: underline;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header00 .header00_01 a{
		font-size: 13px;
		line-height: 23px;
	}
}
header .header00 .header00_01 .header00_01_btn{
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
	cursor: pointer;
}
@media only screen and (max-width: 767px){
	header .header00 .header00_01 .header00_01_btn{
		right: -31px;
	}
}
header .header00 .header00_01 .header00_01_btn .line-bar{
	width: 10px;
	height: 2px;
	background-color: #ffffff;
	position: relative;
	margin: auto;
	transform: rotate(135deg);
	display: block;
}
header .header00 .header00_01 .header00_01_btn .line-bar::before{
	content: "";
	display: block;
	background-color: #ffffff;
	transform: rotate(90deg);
	width: 100%;
	height: 2px;
}
header .header01{
	width: 100%;
	height: 90px;
	padding: 0 30px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01{
		height: 60px;
		padding: 0 0 0 10px;
		background-color: transparent;
		transition: all .5s;
	}
}
header .header01 .h1{
	width: 296px;
	height: auto;
	margin: 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 .h1{
		width: 153px;
		margin: 0 10px 0 0;
		position: relative;
		z-index: 0;
		transition: all 0s;
	}
	header .header01 .h1.active{
		z-index: 100;
		transition: all 0s .5s;
	}
}
@media only screen and (max-width: 360px){
	header .header01 .h1{
		width: 130px;
	}
}
header .header01 .h1 a{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
header .header01 .h1 a img{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
header .header01 .header01_01{
	width: auto;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01 .header01_01{
		width: 110px;
		height: 38px;
		margin: 0 0 0 auto;
		display: block;
	}
}
@media only screen and (max-width: 360px){
	header .header01 .header01_01{
		width: 11.0rem;
		height: 3.8rem;
	}
}
header .header01 .header01_01 .header01_01_01{
	width: auto;
	height: auto;
	text-align: center;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 .header01_01 .header01_01_01{
		width: 100%;
		height: 100%;
	}
}
header .header01 .header01_01 .header01_01_01 .link02{
	width: 240px;
	height: 65px;
	border-radius: 8px;
	text-align: center;
	background-color: #65C442;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 .header01_01 .header01_01_01 .link02{
		width: 100%;
		height: 100%;
		border-radius: 4px;
		text-align: center;
		background-color: #65C442;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
@media only screen and (max-width: 360px) {
	header .header01 .header01_01 .header01_01_01 .link02{
		padding: 0.8rem 0.7rem 0.6rem;
	}
}
header .header01 .header01_01 .header01_01_01 .link02::before{
	content: '';
	width: 38px;
	height: 45px;
	margin: 0 15px 0 0;
	background-image: url(../img/common/icon06.png);
	background-size: 100% auto;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	header .header01 .header01_01 .header01_01_01 .link02::before{
		width: 24px;
		height: 25px;
		margin: 0 3px 0 0;
	}
}
@media only screen and (max-width: 360px){
	header .header01 .header01_01 .header01_01_01 .link02::before{
		width: 18px;
		height: 21px;
	}
}
header .header01 .header01_01 .header01_01_01 .link02 .text02{
	width: auto;
	height: auto;
	color: #ffffff;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header01 .header01_01 .header01_01_01 .link02 .text02{
		display: inline;
	}
}
header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01{
	width: 100%;
	height: auto;
	font-size: 12px;
	line-height: 16px;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01{
		font-size: 11px;
		line-height: 15px;
		display: inline;
	}
}
@media only screen and (max-width: 360px){
	header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01{
		font-size: 10px;
		line-height: 14px;
	}
}
@media only screen and (max-width: 767px){
	header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01 .text02_01_01{
		font-size: 14px;
		line-height: 18px;
	}
}
@media only screen and (max-width: 360px){
	header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01 .text02_01_01{
		font-size: 13px;
		line-height: 17px;
	}
}
header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01::before,
header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01::after {
	display: block;
	content: "";
	width: 7px;
	height: 16px;
	margin-top: 1px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
}
@media only screen and (max-width: 767px) {
	header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01::before,
	header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01::after {
		display: none;
	}
}
header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01::before {
	margin-right: 8px;
	background-image: url(../img/common/icon019.png);
}
header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_01::after {
	margin-left: 3px;
	background-image: url(../img/common/icon020.png);
}
header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_02{
	font-size: 21px;
	line-height: 25px;
}
header .header01 .header01_01 .header01_01_01 .link02 .text02 .text02_02_01{
	font-size: 17px;
	line-height: 21px;
}
header .header01 .header01_01 .header01_01_01 .link03{
	box-sizing: border-box;
	width: auto;
	min-width: 200px;
	height: auto;
	min-height: 65px;
	padding: 5px;
	margin-left: 25px;
	border-radius: 4px;
	text-align: center;
	border: 1px solid #302929;
	background-color: #F4F0EF;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 .header01_01 .header01_01_01 .link03{
		width: 50%;
		min-width: initial;
		height: 100%;
		padding: 0;
		border-radius: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
header .header01 .header01_01 .header01_01_01 .link03::before{
	content: '';
	width: 168px;
	height: 44px;
	margin: 0;
	background-image: url(../img/common/icon04.png);
	background-size: 100% auto;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
/*メニューオープンボタン*/
	header .header01 .slide-menu-btn{
		width: 70px;
		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::after{
		content: "MENU";
		width: 100%;
		height: auto;
		font-size: 12px;
		line-height: 16px;
		font-family:
		'Roboto',
		'Noto_Sans_JP';
		font-weight: 500;
		color: #312929;
		text-align: center;
		margin: 3px 0 0;
		display: block;
	}
	header .header01 .slide-menu-btn.active::after{
		display: none;
	}
	/*メニューオープンボタン内部の線*/
	header .header01 .slide-menu-btn .line-bar{
		width: 34px;
		height: 2px;
		background-color: #312929;
		position: relative;
		margin: 13px 0 8px;
		transition: all 0.6s ease;
		display: block;
	}
	header .header01 .slide-menu-btn .line-bar::before{
		content: "";
		display: block;
		background-color: #312929;
		position: absolute;
		width: 100%;
		height: 2px;
		transition: all 0.6s ease;
		top: -8px;
	}
	header .header01 .slide-menu-btn .line-bar::after{
		content: "";
		display: block;
		background-color: #312929;
		position: absolute;
		width: 100%;
		height: 2px;
		transition: all 0.6s ease;
		bottom: -8px;
	}
	header .header01 .slide-menu-btn.active .line-bar{
		margin: 8px 0;
		transform: rotate(135deg);
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar::before{
		transform: rotate(90deg);
		top: 0;
	}
	header .header01 .slide-menu-btn.active .line-bar::after{
		opacity: 0;
	}
/*メニューオープンボタン*/
}
header .header02{
	box-sizing: border-box;
	width: 100%;
	height: 46px;
	max-height: 46px;
	margin: 0 auto;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header02{
		min-width: 320px;
		height: 100vh;
		max-height: 100vh;
		min-height: 100vh;
		padding: 80px 0 60px;
		background-color: rgba( 255, 255, 255, .96);
		position: fixed;
		top: -100vh;
		right: 0;
		z-index: 1;
		transition: all .5s;
	}
	header .panelactive{
		top: 0;
		right: 0;
		transition: all .5s;
	}
}
header .header02 nav{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav{
		width: 90%;
		max-width: 335px;
		margin: 0 auto;
		overflow-y: scroll;
	}
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_00{
		width: 100%;
		max-width: 335px;
		height: auto;
		padding: 0;
		margin: 0 auto 15px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	header .header02 nav .nav_00 li{
		box-sizing: border-box;
		width: calc((100% - 15px * 2) / 3);
		height: auto;
		padding: 0;
		margin: 0 15px 0 0;
		display: flex;
		justify-content: center;
		align-items: stretch;
	}
	header .header02 nav .nav_00 li:nth-of-type(3){
		margin-right: 5px;
	}
	header .header02 nav .nav_00 li a{
		box-sizing: border-box;
		width: 100%;
		height: auto;
		padding: 12px 0 10px;
		border-radius: 6px;
		background-color: #ffffff;
		border: 1px solid #DDDDDD;
		box-shadow: 2px 2px 4px rgba(0, 0, 0, .16);
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	header .header02 nav .nav_00 li a::before{
		content: '';
		width: 41px;
		height: 42px;
		margin: 0 auto 1px;
		background-repeat: no-repeat;
		background-position: center;
		display: block;
	}
	header .header02 nav .nav_00 li:nth-of-type(1) a::before{
		background-image: url(../img/common/icon01.png);
		background-size: 37px auto;
	}
	header .header02 nav .nav_00 li:nth-of-type(2) a::before{
		background-image: url(../img/common/icon02.png);
		background-size: 41px auto;
	}
	header .header02 nav .nav_00 li:nth-of-type(3) a::before{
		background-image: url(../img/common/icon03.png);
		background-size: 37px auto;
	}
	header .header02 nav .nav_00 li a:hover{
		opacity: .8;
	}
	header .header02 nav .nav_00 li a .text02{
		width: auto;
		height: auto;
		padding: 0 18px 0 0;
		margin: 0;
		position: relative;
		display: block;
	}
	header .header02 nav .nav_00 li a .text02 .arrow{
		content: '';
		width: 13px;
		height: 13px;
		border-radius: 50%;
		background-color: #312929;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		bottom: 0;
		left: auto;
		right: 0;
		margin: auto;
	}
	header .header02 nav .nav_00 li a .text02 .arrow::after{
		content: '';
		width: 4px;
		height: 4px;
		display: block;
		border: 0;
		border-bottom: 1px solid #ffffff;
		border-right: 1px solid #ffffff;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin: 0 0 0 -2px;
		transition: all .5s;
	}
	header .header02 nav .nav_00 li a .text02 span{
		width: auto;
		height: auto;
		margin: 0;
		font-size: 13px;
		line-height: 23px;
		color: #312929;
		display: block;
	}
}
header .header02 nav .nav_01{
	width: 100%;
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	position: relative;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01{
		height: auto;
		margin: 0 auto;
		display: block;
	}
}
header .header02 nav .nav_01 li{
	width: auto;
	height: auto;
	display: block;
	text-align: center;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 li{
		width: 100%;
		border-top: 1px solid #302929;
	}
	header .header02 nav .nav_01 li:nth-of-type(1){
		border-top: 0;
	}
}
header .header02 nav .nav_01 li .link01{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 0 30px;
	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: 1330px){
	header .header02 nav .nav_01 li .link01{
		padding: 0 20px;
	}
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 li .link01{
		height: 60px;
		padding: 0;
		font-size: 14px;
		line-height: 24px;
		border-bottom: 0;
		justify-content: flex-start;
	}
}
header .header02 nav .nav_01 li:hover .link01{
	opacity: 1;
	color: #ffffff;
	background-color: #312929;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 li:hover .link01{
		opacity: .8;
		color: #312929;
		background-color: transparent;
	}
}
header .header02 nav .nav_01 .drop{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
header .header02 nav .nav_01 li .active,
header .header02 nav .nav_01 .drop .active{
	color: #ffffff;
	background-color: #312929;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 li .active,
	header .header02 nav .nav_01 .drop .active{
		color: #312929;
		background-color: transparent;
	}
}
header .header02 nav .nav_01 .drop .link01{
	width: auto;
	flex-grow: 1;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .link01{
		width: calc(100% - 40px);
	}
}
header .header02 nav .nav_01 .drop .link01 .arrow{
	width: 20px;
	height: 100%;
	margin: 0 0 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: rotateZ(0);
	transition: all .5s;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .link01 .arrow{
		display: none;
	}
	header .header02 nav .nav_01 .drop:hover .link01{
		opacity: .8;
		background-color: transparent;
	}
}
header .header02 nav .nav_01 .drop .link01 .arrow::after{
	content: '';
	width: 6px;
	height: 6px;
	display: block;
	border-bottom: 2px solid #312929;
	border-left: 2px solid #312929;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: -3px 0 0 0;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop-btn{
		width: 40px;
		height: 60px;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		transform: rotateZ(0);
		transition: all .5s;
		flex-shrink: 0;
		cursor: pointer;
	}
	header .header02 nav .nav_01 .drop .drop-btn::after{
		content: '';
		width: 10px;
		height: 10px;
		display: block;
		border: 0;
		border-bottom: 2px solid #312929;
		border-left: 2px solid #312929;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin: -5px 0 0 0;
	}
	header .header02 nav .nav_01 .drop .drop-btn.drop-active{
		transform: rotateZ(180deg);
		transition: all .5s;
	}
}
header .header02 nav .nav_01 .drop .link01.active .arrow::after{
	border-bottom: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
	transition: all .5s;
}
header .header02 nav .nav_01 .drop:hover .arrow::after{
	border-bottom: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
	transition: all .5s;
}
header .header02 nav .nav_01 .drop .drop_01{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 30px 110px 30px 45px;
	background-color: rgba(49, 41, 41, .95);
	position: absolute;
	top: 43px;
	left: 0;
	right: auto;
	bottom: auto;
	z-index: -1;
	margin: auto;
}
@media only screen and (min-width: 768px){
	header .header02 nav .nav_01 .drop .drop_01{
		visibility: hidden;
		opacity: 0;
		transition: all .2s;
		animation: tooltipShow2 0.2s linear 0s;
	}
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01{
		padding: 0;
		background-color: transparent;
		position: static;
		z-index: 0;
		display: none;
	}
}
@media only screen and (min-width: 768px){
	header .header02 nav .nav_01 .drop:hover .drop_01{
		visibility: visible;
		opacity: 1;
		transition: all .3s;
		animation: tooltipShow 0.3s linear 0s;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01{
	width: 100%;
	height: auto;
	margin: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01{
		display: block;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .text01{
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0 30px 0 0;
	font-size: 18px;
	line-height: 28px;
	color: #ffffff;
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	flex-grow: 0;
	pointer-events: none;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .text01{
		box-sizing: border-box;
		width: 100%;
		height: 40px;
		padding: 0;
		margin: 0;
		border-top: 1px dashed #DDD6D3;
		font-size: 14px;
		line-height: 24px;
		color: #312929;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		pointer-events: auto;
		position: relative;
	}
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .text01_2{
		padding: 0 30px 0 10px;
	}
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .text01 .arrow{
		content: '';
		width: 14px;
		height: 14px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		bottom: 0;
		left: auto;
		right: 12px;
		margin: auto;
	}
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .text01 .arrow::after{
		content: '';
		width: 8px;
		height: 8px;
		display: block;
		border: 0;
		border-bottom: 2px solid #312929;
		border-right: 2px solid #312929;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin: 0 0 0 -4px;
		transition: all .5s;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01{
	width: 390px;
	height: auto;
	padding: 0;
	margin: 0 24px 0 0;
	position: static;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	transition: none;
	animation: none;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01{
		width: 100%;
		margin: 0;
		display: block;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li{
	box-sizing: border-box;
	width: calc((100% - 15px * 2) / 3);
	height: auto;
	padding: 0;
	margin: 0 15px 0 0;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li{
		width: 100%;
		height: auto;
		margin: 0;
		border-top: 1px dashed #DDD6D3;
		display: block;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li:nth-of-type(3){
	margin-right: 0;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 10px 0 13px;
	border-radius: 4px;
	background-color: #ffffff;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a{
		height: 40px;
		padding: 0 30px 0 10px;
		border-radius: 0;
		background-color: transparent;
		box-shadow: none;
		justify-content: flex-start;
		flex-direction: row;
		position: relative;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a::before{
	content: '';
	width: 47px;
	height: 48px;
	margin: 0 auto 12px;
	background-repeat: no-repeat;
	background-position: center;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a::before{
		display: none;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li:nth-of-type(1) a::before{
	background-image: url(../img/common/icon01.png);
	background-size: 42px auto;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li:nth-of-type(2) a::before{
	background-image: url(../img/common/icon02.png);
	background-size: 47px auto;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li:nth-of-type(3) a::before{
	background-image: url(../img/common/icon03.png);
	background-size: 43px auto;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a:hover{
	opacity: .8;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a .text02{
	width: auto;
	height: auto;
	padding: 0 20px 0 0;
	margin: 0;
	position: relative;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a .text02{
		width: 100%;
		height: 100%;
		padding: 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		position: static;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a .text02 .arrow{
	content: '';
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: #312929;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a .text02 .arrow{
		width: 14px;
		height: 14px;
		border-radius: 0;
		background-color: transparent;
		right: 12px;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a .text02 .arrow::after{
	content: '';
	width: 3px;
	height: 3px;
	display: block;
	border: 0;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: 0 0 0 -1px;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a .text02 .arrow::after{
		width: 8px;
		height: 8px;
		border-bottom: 2px solid #312929;
		border-right: 2px solid #312929;
		margin: 0 0 0 -4px;
	}
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a .text02::before{
		content: '';
		width: 5px;
		height: 1px;
		margin: 0 4px 0 0;
		background-color: #312929;
		display: block;
		flex-shrink: 0;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a .text02 span{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 13px;
	line-height: 23px;
	color: #312929;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01 li a .text02 span{
		width: 100%;
		height: 100%;
		margin: 0;
		font-size: 14px;
		line-height: 24px;
		font-weight: 400;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		text-align: left;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2{
	width: auto;
	height: auto;
	padding: 0;
	margin: 0 60px 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2{
		width: 100%;
		margin: 0;
		display: block;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 a{
	width: 145px;
	height: auto;
	margin: 0 25px 0 0;
	display: block;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 a img{
	width: 100%;
	height: auto;
	margin: 0;
	border-radius: 4px;
	display: block;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul{
	width: 85px;
	height: auto;
	padding: 0;
	margin: 0;
	background-color: transparent;
	position: static;
	display: block;
	transition: none;
	animation: none;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul{
		width: 100%;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 10px 0 0;
	text-align: left;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li{
		height: 40px;
		border-top: 1px dashed #DDD6D3;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li:nth-of-type(2){
	margin-top: 0;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	background-color: transparent;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a{
		height: 100%;
		padding: 0 25px 0 10px;
		margin: 0;
		flex-grow: 0;
		position: relative;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a:hover{
	opacity: .8;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02{
	width: auto;
	height: auto;
	padding-right: 20px;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02{
		width: 100%;
		height: 100%;
		padding-right: 6px;
		position: static;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 .arrow{
	content: '';
	width: 6px;
	height: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 .arrow{
		width: 14px;
		height: 14px;
		border-radius: 0;
		background-color: transparent;
		right: 12px;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 .arrow::after{
	content: '';
	width: 3px;
	height: 3px;
	display: block;
	border: 0;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: 0 0 0 -1px;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 .arrow::after{
		width: 8px;
		height: 8px;
		border-bottom: 2px solid #312929;
		border-right: 2px solid #312929;
		margin: 0 0 0 -4px;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 .blank{
	content: '';
	width: 8px;
	height: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 .blank{
		width: 14px;
		height: 14px;
		background-color: transparent;
		right: 12px;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 .blank::after{
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	margin: 0;
	background-image: url(../img/common/icon022.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 .blank::after{
		width: 14px;
		height: 14px;
		background-image: url(../img/common/icon022_sp.svg);
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 span{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 13px;
	line-height: 23px;
	color: #ffffff;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_01_2 ul li a .text02 span{
		font-size: 14px;
		line-height: 24px;
		font-weight: 400;
		color: #312929;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02{
	width: auto;
	height: auto;
	padding: 0;
	margin: 0 35px 0 0;
	background-color: transparent;
	position: static;
	display: block;
	transition: none;
	animation: none;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02{
		width: 100%;
		padding-bottom: 15px;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02_2{
	width: 372px;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02_2{
		width: 100%;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02:nth-last-of-type(2){
	margin-right: 0;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 10px 0 0;
	text-align: left;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li{
		height: 40px;
		border-top: 1px dashed #DDD6D3;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02_2 li{
	width: 63px;
	margin-right: 40px;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02_2 li{
		width: 100%;
		margin: 0;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li:nth-of-type(1){
	margin-top: 0;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02_2 li:nth-of-type(-n+4){
	margin-top: 0;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02_2 li:nth-of-type(4n){
	margin-right: 0;
}
@media only screen and (max-width: 767px){
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 0;
	background-color: transparent;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a{
		width: 50%;
		height: 100%;
		padding: 0 25px 0 10px;
		flex-grow: 0;
		position: relative;
	}
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02_2 li a{
		width: 100%;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a:hover{
	opacity: .8;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a .text02{
	width: auto;
	height: auto;
	padding-right: 20px;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a .text02{
		width: 100%;
		height: 100%;
		padding-right: 0;
		position: static;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02_2 li a .text02{
	padding-right: 6px;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02_2 li a .text02{
		padding-right: 0;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a .text02 .arrow{
	content: '';
	width: 6px;
	height: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a .text02 .arrow{
		width: 14px;
		height: 14px;
		border-radius: 0;
		background-color: transparent;
		right: 12px;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a .text02 .arrow::after{
	content: '';
	width: 3px;
	height: 3px;
	display: block;
	border: 0;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: 0 0 0 -1px;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a .text02 .arrow::after{
		width: 8px;
		height: 8px;
		border-bottom: 2px solid #312929;
		border-right: 2px solid #312929;
		margin: 0 0 0 -4px;
	}
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a .text02::before{
		content: '';
		width: 5px;
		height: 1px;
		margin: 0 4px 0 0;
		background-color: #312929;
		display: block;
		flex-shrink: 0;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a .text02 span{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 13px;
	line-height: 23px;
	color: #ffffff;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_02 li a .text02 span{
		font-size: 14px;
		line-height: 24px;
		font-weight: 400;
		color: #312929;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03{
	width: 142px;
	height: auto;
	padding: 0;
	margin: 0 60px 0 0;
	background-color: transparent;
	position: static;
	display: block;
	transition: none;
	animation: none;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03{
		width: 100%;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 10px 0 0;
	text-align: left;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li{
		height: 40px;
		border-top: 1px dashed #DDD6D3;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li:nth-of-type(1){
	margin-top: 0;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	background-color: transparent;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a{
		height: 100%;
		padding: 0 25px 0 10px;
		margin: 0;
		flex-grow: 0;
		position: relative;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a:hover{
	opacity: .8;
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02{
	width: auto;
	height: auto;
	padding-right: 20px;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02{
		width: 100%;
		height: 100%;
		padding-right: 6px;
		position: static;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 .arrow{
	content: '';
	width: 6px;
	height: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 .arrow{
		width: 14px;
		height: 14px;
		border-radius: 0;
		background-color: transparent;
		right: 12px;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 .arrow::after{
	content: '';
	width: 3px;
	height: 3px;
	display: block;
	border: 0;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: 0 0 0 -1px;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 .arrow::after{
		width: 8px;
		height: 8px;
		border-bottom: 2px solid #312929;
		border-right: 2px solid #312929;
		margin: 0 0 0 -4px;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 .blank{
	content: '';
	width: 8px;
	height: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 .blank{
		width: 14px;
		height: 14px;
		background-color: transparent;
		right: 12px;
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 .blank::after{
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	margin: 0;
	background-image: url(../img/common/icon022.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 .blank::after{
		width: 14px;
		height: 14px;
		background-image: url(../img/common/icon022_sp.svg);
	}
}
header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 span{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 13px;
	line-height: 23px;
	color: #ffffff;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop .drop_01 .drop_01_01 .drop_01_01_03 li a .text02 span{
		font-size: 14px;
		line-height: 24px;
		font-weight: 400;
		color: #312929;
	}
}
header .header02 nav .nav_01 .drop ul.drop_01{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 30px 45px;
	background-color: rgba(224, 237, 181, .95);
	position: absolute;
	top: 43px;
	left: 0;
	right: auto;
	bottom: auto;
	z-index: -1;
	margin: auto;
}
@media only screen and (min-width: 768px){
	header .header02 nav .nav_01 .drop ul.drop_01{
		visibility: hidden;
		opacity: 0;
		transition: all .2s;
		animation: tooltipShow2 0.2s linear 0s;
	}
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop ul.drop_01{
		width: 100%;
		padding-top: 0;
		position: static;
		margin: auto;
		display: none;
	}
}
@media only screen and (min-width: 768px){
	header .header02 nav .nav_01 .drop:hover ul.drop_01{
		visibility: visible;
		opacity: 1;
		transition: all .3s;
		animation: tooltipShow 0.3s linear 0s;
	}
}
/*ナビアニメーション(ドロップダウン)指示*/
header .header02 nav .nav_01 .drop ul.drop_01 li{
	width: 100%;
	height: 45px;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop ul.drop_01 li{
		height: 55px;
	}
	header .header02 nav .nav_01 .drop ul.drop_01 li:nth-of-type(1){
		border-top: 1px dashed #D9D9D9;
	}
}
header .header02 nav .nav_01 .drop ul.drop_01 li a{
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 20px;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop ul.drop_01 li a{
		padding-left: 5%;
		font-size: 16px;
		line-height: 20px;
		background-color: transparent;
		justify-content: flex-start;
	}
}
header .header02 nav .nav_01 .drop ul.drop_01 li a::after{
	display: none;
}
header .header02 nav .nav_01 .drop ul.drop_01 li a:hover{
	background-color: #104EA3;
	color: #ffffff;
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .drop ul.drop_01 li a:hover{
		background-color: transparent;
	}
}
/*ナビアニメーション(ドロップダウン)指示*/
@keyframes tooltipShow{
	from{
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	to{
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
	}
}
@keyframes tooltipShow2{
	from{
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
	}
	to{
		opacity: 0;
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@media only screen and (max-width: 767px){
	header .header02 nav .nav_01 .nav01_01{
		padding-top: 20px;
		border-top: 1px solid #302929;
	}
	header .header02 nav .nav_01 .nav01_01 ul{
		width: 100%;
		height: auto;
		margin: 0 auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
	}
	header .header02 nav .nav_01 .nav01_01 ul li{
		box-sizing: border-box;
		width: 50%;
		height: auto;
		margin: 12px 0 0;
		border: 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-shrink: 0;
	}
	header .header02 nav .nav_01 .nav01_01 ul li:nth-of-type(-n+2){
		margin-top: 0;
	}
	header .header02 nav .nav_01 .nav01_01 ul li:nth-of-type(2n){
		padding-left: 17px;
	}
	header .header02 nav .nav_01 .nav01_01 ul li a{
		width: auto;
		height: auto;
		font-size: 12px;
		line-height: 22px;
		text-align: left;
	}
	header .header02 nav .nav_01 .nav01_01 ul li .blank{
		display: inline-flex;
		justify-content: flex-start;
		align-items: center;
	}
	header .header02 nav .nav_01 .nav01_01 ul li .blank::after{
		display: block;
		content: "";
		width: 8px;
		height: 8px;
		margin: 2px 0 0 5px;
		background-image: url(../img/common/icon023.svg);
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: center;
	}
}
@media only screen and (max-width: 767px){
	header .header03{
		width: 100%;
		height: auto;
		margin: 0 auto;
		display: block;
	}
	header .header03 .header03_01{
		box-sizing: border-box;
		width: 100%;
		height: 45px;
		margin: 0 auto;
		border-top: 1px solid #8E8E8E;
		border-bottom: 1px solid #8E8E8E;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
	}
	header .header03 .header03_01 li{
		box-sizing: border-box;
		width: 50%;
		height: 100%;
		margin: 0;
		border-left: 1px solid #8E8E8E;
		display: block;
		flex-grow: 0;
	}
	header .header03 .header03_01 li:nth-of-type(1){
		border-left: 0;
	}
	header .header03 .header03_01 li .header03_01_01{
		width: 100%;
		height: 100%;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
	}
	header .header03 .header03_01 li .header03_01_01 .text02{
		width: auto;
		height: auto;
		padding-right: 0;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	header .header03 .header03_01 li .header03_01_01 .text02 .arrow{
		content: '';
		width: 13px;
		height: 13px;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		transform: rotateZ(0);
		transition: all .5s;
		flex-shrink: 1;
	}
	header .header03 .header03_01 li .active .text02 .arrow{
		transform: rotateZ(180deg);
		transition: all .5s;
	}
	header .header03 .header03_01 li .header03_01_01 .text02 .arrow::after{
		content: '';
		width: 7px;
		height: 7px;
		display: block;
		border: 0;
		border-bottom: 2px solid #312929;
		border-left: 2px solid #312929;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin: -3px 0 0 0;
		transition: all .5s;
	}
	header .header03 .header03_01 li .header03_01_01 .text02 span{
		width: auto;
		height: auto;
		margin: 0 20px 0 0;
		font-size: 14px;
		line-height: 24px;
		color: #312929;
		display: block;
	}
	header .header03 .header03_02{
		width: 100%;
		height: calc(100vh - 105px);
		max-height: 243px;
		padding: 30px 0;
		margin: 0 auto;
		background-color: rgba(49, 41, 41, .95);
		display: none;
	}
	header .header03 .header03_02 .header03_02_01{
		width: 90%;
		max-width: 220px;
		height: 100%;
		margin: 0 auto;
		display: block;
		overflow-y: scroll;
	}
	header .header03 .header03_02 .header03_02_01 li{
		box-sizing: border-box;
		width: 100%;
		height: auto;
		padding: 0;
		margin: 15px auto 0;
		display: flex;
		justify-content: center;
		align-items: stretch;
	}
	header .header03 .header03_02 .header03_02_01 li:nth-of-type(1){
		margin-top: 0;
	}
	header .header03 .header03_02 .header03_02_01 li a{
		box-sizing: border-box;
		width: 100%;
		height: auto;
		padding: 8px 46px 8px 14px;
		border-radius: 6px;
		background-color: #ffffff;
		border: 1px solid #DDDDDD;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		position: relative;
	}
	header .header03 .header03_02 .header03_02_01 li a::before{
		content: '';
		width: 32px;
		height: 33px;
		margin: 0 10px 0 0;
		background-repeat: no-repeat;
		background-position: center;
		display: block;
		flex-shrink: 1;
	}
	header .header03 .header03_02 .header03_02_01 li:nth-of-type(1) a::before{
		background-image: url(../img/common/icon01.png);
		background-size: 28px auto;
	}
	header .header03 .header03_02 .header03_02_01 li:nth-of-type(2) a::before{
		background-image: url(../img/common/icon02.png);
		background-size: 31px auto;
	}
	header .header03 .header03_02 .header03_02_01 li:nth-of-type(3) a::before{
		background-image: url(../img/common/icon03.png);
		background-size: 30px auto;
	}
	header .header03 .header03_02 .header03_02_01 li a::after{
		display: none;
	}
	header .header03 .header03_02 .header03_02_01 li a:hover{
		opacity: .8;
	}
	header .header03 .header03_02 .header03_02_01 li a .text02{
		width: auto;
		height: auto;
		margin: 0;
		display: block;
	}
	header .header03 .header03_02 .header03_02_01 li a .text02 .arrow{
		content: '';
		width: 16px;
		height: 16px;
		border-radius: 50%;
		background-color: #C30D23;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		bottom: 0;
		left: auto;
		right: 15px;
		margin: auto;
	}
	header .header03 .header03_02 .header03_02_01 li a .text02 .arrow::after{
		content: '';
		width: 4px;
		height: 4px;
		display: block;
		border: 0;
		border-bottom: 1px solid #ffffff;
		border-right: 1px solid #ffffff;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin: 0 0 0 -2px;
		transition: all .5s;
	}
	header .header03 .header03_02 .header03_02_01 li a .text02 span{
		width: auto;
		height: auto;
		margin: 0;
		font-size: 15px;
		line-height: 25px;
		color: #312929;
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
	}
	header .header03 .header03_02 .header03_02_01 li a .text02 span span{
		width: auto;
		height: auto;
		margin: 0;
		font-size: 20px;
		line-height: 30px;
		color: #312929;
		display: block;
	}
}
/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #312929;
	color: #ffffff;
	display: block;
}
footer .footer01{
	width: 1180px;
	height: auto;
	padding: 65px 0 8px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01{
		width: 90%;
		max-width: 335px;
		padding: 50px 0 10px;
	}
}
footer .footer01 .footer01_00{
	width: 100%;
	height: auto;
	margin: 0 auto 35px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_00{
		margin: 0 auto 30px;
		display: block;
	}
}
footer .footer01 .footer01_00 .footer01_00_01{
	width: 281px;
	height: auto;
	margin: 0 130px 0 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_00 .footer01_00_01{
		width: 251px;
		margin: 0 0 18px;
	}
}
footer .footer01 .footer01_00 .footer01_00_01 .logo{
	width: 100%;
	height: auto;
	margin: 0 0 15px;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_00 .footer01_00_01 .logo{
		margin: 0 0 12px;
	}
}
footer .footer01 .footer01_00 .footer01_00_01 .logo img{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
footer .footer01 .footer01_00 .footer01_00_01 .text01{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 13px;
	line-height: 23px;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_00 .footer01_00_01 .text01{
		font-size: 12px;
		line-height: 22px;
	}
}
footer .footer01 .footer01_00 .footer01_00_02{
	width: auto;
	height: auto;
	margin: 4px 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_00 .footer01_00_02{
		display: block;
	}
}
footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01{
	width: auto;
	height: auto;
	margin: 0 0 0 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01{
		margin: 19px 0 0;
	}
}
footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01:nth-of-type(1){
	margin-left: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01:nth-of-type(1){
		margin: 0;
	}
}
footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01 .footer01_00_02_01_01{
	width: auto;
	height: auto;
	margin: 0 17px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01 .footer01_00_02_01_01{
		width: 96px;
	}
}
footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01:nth-of-type(1) img{
	width: 48px;
	height: auto;
	margin: 0;
	display: block;
}
footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01:nth-of-type(2) img{
	width: 96px;
	height: auto;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01:nth-of-type(2) img{
		width: 100%;
	}
}
footer .footer01 .footer01_00 .footer01_00_02 .footer01_00_02_01 p{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	display: block;
}
footer .footer01 .footer01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 45px;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01{
		margin: 0 auto 3px;
	}
}
footer .footer01 .footer01_01 .footer01_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
footer .footer01 .footer01_01 .footer01_01_01 ul{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 ul{
		align-items: stretch;
		flex-wrap: wrap;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 ul li{
	width: auto;
	height: auto;
	display: block;
	margin: 0 0 0 100px;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 ul li{
		box-sizing: border-box;
		width: 50%;
		padding-left: 10px;
		margin: 30px 0 0;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 ul li:nth-of-type(1){
	margin-left: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 ul li:nth-of-type(-n+2){
		margin-top: 0;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 ul li a{
	margin: 0 0 15px;
	font-size: 14px;
	line-height: 24px;
	display: block;
}
footer .footer01 .footer01_01 .footer01_01_01 ul li .blank {
	position: relative;
}
footer .footer01 .footer01_01 .footer01_01_01 ul li .blank::after {
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	background-image: url(../img/common/icon021.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 63px;
	right: auto;
	margin: auto;
}
footer .footer01 .footer01_01 .footer01_01_01 ul li ul{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
footer .footer01 .footer01_01 .footer01_01_01 ul li ul li{
	width: 100%;
	height: auto;
	display: block;
	margin: 6px 0 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 ul li ul li{
		padding-left: 0;
		margin: 6px 0 0;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 ul li ul li:nth-of-type(1){
	margin-top: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 .footer01_01_01 ul li ul li:nth-of-type(2){
		margin-top: 6px;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 ul li ul li a{
	margin-bottom: 0;
	font-size: 13px;
	line-height: 23px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
}
footer .footer01 .footer01_01 .footer01_01_01 ul li ul li .blank::after{
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	margin: 2px 0 0 5px;
	background-image: url(../img/common/icon021.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: static;
}
footer .footer01 .footer01_02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
footer .footer01 .footer01_02 .text01{
	font-size: 11px;
	line-height: 21px;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_02 .text01{
		width: 100%;
		text-align: right;
	}
}
/*footerここまで*/

/*includeここから*/

/*.eyecatch_incここから*/
.eyecatch_inc{
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: relative;
	display: block;
}
.eyecatch_inc .eyecatch_inc_01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.eyecatch_inc .eyecatch_inc_01 .slick-list{
	width: 100%;
	height: auto;
	display: block;
}
.eyecatch_inc .eyecatch_inc_01 .eye_img{
	width: 100%;
	margin: 0 auto;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.eyecatch_inc.top .eyecatch_inc_01 .eye_img{
	height: 560px;
}
@media only screen and (min-width: 1280px) {
	.eyecatch_inc.top .eyecatch_inc_01 .eye_img{
		height: 56.0rem;
	}
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc_01 .eye_img{
		height: 42.0rem;
	}
}
.eyecatch_inc.else .eyecatch_inc_01 .eye_img{
	height: 280px;
}
@media only screen and (min-width: 1280px) {
	.eyecatch_inc.else .eyecatch_inc_01 .eye_img{
		height: 28.0rem;
	}
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.else .eyecatch_inc_01 .eye_img{
		height: 20.0rem;
	}
}
.eyecatch_inc.sell .eyecatch_inc_01 .eye_img{
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media only screen and (min-width: 1280px) {
	.eyecatch_inc.sell .eyecatch_inc_01 .eye_img{
		height: 45.0rem;
	}
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.sell .eyecatch_inc_01 .eye_img{
		height: 42.0rem;
	}
}
.eyecatch_inc.sell_else .eyecatch_inc_01 .eye_img{
	height: 280px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media only screen and (min-width: 1280px) {
	.eyecatch_inc.sell_else .eyecatch_inc_01 .eye_img{
		height: 28.0rem;
	}
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.sell_else .eyecatch_inc_01 .eye_img{
		height: 25.0rem;
	}
}
.eyecatch_inc.short .eyecatch_inc_01 .eye_img{
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media only screen and (min-width: 1280px) {
	.eyecatch_inc.short .eyecatch_inc_01 .eye_img{
		height: 20.0rem;
	}
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short .eyecatch_inc_01 .eye_img{
		height: 15.0rem;
	}
}
.eyecatch_inc .eyecatch_inc_01 .slick-prev,
.eyecatch_inc .eyecatch_inc_01 .slick-next{
	width: 33px;
	height: 33px;
	top: 0;
	bottom: 0;
	z-index: 10;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc .eyecatch_inc_01 .slick-prev,
	.eyecatch_inc .eyecatch_inc_01 .slick-next{
		width: 25px;
		height: 25px;
	}
}
.eyecatch_inc .eyecatch_inc_01 .slick-prev:hover,
.eyecatch_inc .eyecatch_inc_01 .slick-next:hover{
	opacity: .8;
	transition: all .5s;
}
.eyecatch_inc .eyecatch_inc_01 .slick-prev{
	left: 0;
	right: auto;
	margin: auto;
}
.eyecatch_inc .eyecatch_inc_01 .slick-next{
	left: auto;
	right: 0;
	margin: auto;
}
.eyecatch_inc .eyecatch_inc_01 .slick-prev::before{
	width: 33px;
	height: 33px;
	background-image: url(../img/slick/arrow01.png);
	background-repeat: no-repeat;
	background-size: 15px auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc .eyecatch_inc_01 .slick-prev::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
	}
}
.eyecatch_inc .eyecatch_inc_01 .slick-next::before{
	width: 33px;
	height: 33px;
	background-image: url(../img/slick/arrow02.png);
	background-repeat: no-repeat;
	background-size: 15px auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc .eyecatch_inc_01 .slick-next::before{
		width: 25px;
		height: 25px;
		background-size: 9px auto;
	}
}
.eyecatch_inc .eyecatch_inc_01 .slick-dots{
	width: 200px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: absolute;
	top: auto;
	bottom: 30px;
	left: 0;
	right: 0;
	z-index: 10;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc .eyecatch_inc_01 .slick-dots{
	}
}
.eyecatch_inc .eyecatch_inc_01 .slick-dots li{
	width: 8px;
	height: 8px;
	margin: 4px 4px 0;
	display: block;
}
.eyecatch_inc .eyecatch_inc_01 .slick-dots li:nth-of-type(-n+12){
	margin-top: 0;
}
.eyecatch_inc .eyecatch_inc_01 .slick-dots li button{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}
.eyecatch_inc .eyecatch_inc_01 .slick-dots li button::before{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	display: block;
	font-family: none;
	font-size: 0;
	line-height: 0;
	position: static;
	background: none;
	background-color: #abbcca;
}
.eyecatch_inc .eyecatch_inc_01 .slick-dots .slick-active button::before{
	background-color: #19496f;
}
/*.eyecatch_incここまで*/

/*.paginationここから*/
.wp-pagenavi {
	width: 80%;
	height: auto;
	margin: 72px auto 0;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi {
		width: 100%;
/*		max-width: 335px;*/
		margin: 60px auto 0;
	}
}
.wp-pagenavi span{
	width: 34px;
	height: 34px;
	font-size: 16px;
	line-height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 4.5px;
	text-align: center;
	font-family:'Roboto',sans-serif;
	font-weight: 500;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi span{
		width: 35px;
		height: 35px;
		font-size: 11px;
		line-height: 35px;
	}
}
.wp-pagenavi a{
	width: 34px;
	height: 34px;
	font-size: 16px;
	line-height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 4px;
	text-align: center;
	font-family:'Roboto','Noto_Sans_JP';
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi a{
		width: 35px;
		height: 35px;
		font-size: 11px;
		line-height: 35px;
	}
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	border: 1px solid transparent;
}
.wp-pagenavi .extend{
	display: none;
}
.wp-pagenavi a:hover{
	background-color: #DED6D3;
	opacity: 1;
}
.wp-pagenavi .current{
	width: 34px;
	height: 34px;
	font-size: 16px;
	line-height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 4px;
	text-align: center;
	background-color: #DED6D3;
	font-family:'Roboto','Noto_Sans_JP';
	font-weight: 500;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi .current{
		width: 35px;
		height: 35px;
		font-size: 11px;
		line-height: 35px;
	}
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
	color: transparent;
	background-repeat: no-repeat;
	background-size: 7px 12px;
	background-position: center 11px;
}
.wp-pagenavi a.previouspostslink {
	margin-left: 0;
	background-image: url(../img/common/icon12.png);
}
.wp-pagenavi a.nextpostslink {
	margin-right: 0;
	background-image: url(../img/common/icon13.png);
}
/*.paginationここまで*/

/*.inc02ここから*/
.inc02 {
	width: 100%;
	padding: 0;
}
.inc02.top {
	padding: 70px 0 80px;
	background-color: #F4F4F4;
}
.inc02.sell_else {
	padding: 0 0 68px;
}
@media only screen and (max-width: 767px) {
	.inc02.sell_else {
		padding: 0 0 50px;
	}
}
.inc02 .inc02_01 {
	width: 100%;
}
.inc02.top .inc02_01 {
	text-align: center;
}
.inc02.sell .inc02_01 h2 {
	background-color: #5D5454;
	text-align: center;
	position: relative;
	margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
	.inc02.sell .inc02_01 h2 {
		padding: 17px 0;
		text-align: left;
	}
}
.inc02.sell .inc02_01 h2::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 12px solid transparent;
	border-left: 12px solid transparent;
	border-top: 16px solid #5D5454;
	border-bottom: 0;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -16px;
	left: 0;
}
.inc02.sell .inc02_01 h2 span {
	font-size: 28px;
	line-height: 95px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc02.sell .inc02_01 h2 span {
		font-size: 20px;
		line-height: 30px;
	}
}
.inc02.sell .inc02_01 h2 span::before {
	content: "";
	width: 50px;
	height: 50px;
	margin: 0 13px 0 0;
	background-image: url(../img/common/icon_018.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	display: block;
}
.inc02.top .inc02_01 h2 {
	width: auto;
	height: auto;
	margin: 0 auto 50px;
	padding-bottom: 11px;
	border-bottom: 1px solid #312929;
	display: inline-block;
	position: relative;
}
.inc02.top .inc02_01 h2::after {
	content: "";
	width: 15px;
	height: 15px;
	border-right: 1px solid #312929;
	border-bottom: 1px solid #312929;
	background-color: #F4F4F4;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -9px;
	left: 0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.inc02.top .inc02_01 h2 span {
	display: block;
	margin: 0 auto;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.inc02.sell_else .inc02_01 h2 {
	text-align: center;
	margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
	.inc02.sell_else .inc02_01 h2 {
		margin-bottom: 20px;
	}
}
.inc02.sell_else .inc02_01 h2 span {
	display: inline-block;
	padding: 8px 48px;
	font-size: 25px;
	line-height: 36px;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc02.sell_else .inc02_01 h2 span {
		display: inline-block;
		margin: 0 auto;
		padding: 0 38px 0;
		font-size: 20px;
		line-height: 30px;
	}
}
.inc02.sell_else .inc02_01 h2 span::before,
.inc02.sell_else .inc02_01 h2 span::after {
	content: "";
	width: 30px;
	height: 54px;
	background-image: url(../img/common/icon_019.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	margin: auto;
	position: absolute;
	top: 0;
	right: auto;
	bottom: 0;
	left: 0;
}
.inc02.sell_else .inc02_01 h2 span::after {
	background-image: url(../img/common/icon_020.png);
	right: 0;
	left: auto;
}
.inc02.sell .inc02_01 p {
	font-size: 22px;
	line-height: 27px;
	text-align: center;
	margin-bottom: 27px;
}
@media only screen and (max-width: 767px) {
	.inc02.sell .inc02_01 p {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 14px;
	}
}
.inc02 .inc02_01 .inc02_01_01 {
	width: 1180px;
	margin: 0 auto 40px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-content: stretch;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 {
		width: 90%;
		max-width: 335px;
		margin: 0 auto 30px;
	}
}
.inc02.sell_else .inc02_01 .inc02_01_01 {
	width: 100%;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	.inc02.sell_else .inc02_01 .inc02_01_01 {
		width: 90%;
	}
}
.inc02 .inc02_01 .inc02_01_01 a {
	width: calc((100% - 33px * 3 ) / 4);
	margin: 33px 33px 0 0;
	border: 1px solid #DDD6D3;
	border-radius: 8px;
	box-sizing: border-box;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media only screen and (min-width: 768px) {
	.inc02 .inc02_01 .inc02_01_01 a:nth-of-type(-n+4){
		margin-top: 0;
	}
	.inc02 .inc02_01 .inc02_01_01 a:nth-of-type(4n){
		margin-right: 0;
	}
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 a {
		width: calc((100% - 16px * 1 ) / 2);
		margin: 16px 16px 0 0;
	}
	.inc02 .inc02_01 .inc02_01_01 a:nth-of-type(-n+2){
		margin-top: 0;
	}
	.inc02 .inc02_01 .inc02_01_01 a:nth-of-type(2n){
		margin-right: 0;
	}
}
.inc02.sell_else .inc02_01 .inc02_01_01 a {
	width: calc((100% - 24px * 3 ) / 4);
	margin: 24px 24px 0 0;
}
.inc02.top .inc02_01 .inc02_01_01 a {
	background-color: #FFFFFF;
}
@media only screen and (min-width: 768px) {
	.inc02.sell_else .inc02_01 .inc02_01_01 a:nth-of-type(-n+4){
		margin-top: 0;
	}
	.inc02.sell_else .inc02_01 .inc02_01_01 a:nth-of-type(4n){
		margin-right: 0;
	}
}
@media only screen and (max-width: 767px) {
	.inc02.sell_else .inc02_01 .inc02_01_01 a {
		width: calc((100% - 16px * 1 ) / 2);
		margin: 16px 16px 0 0;
	}
	.inc02.sell_else .inc02_01 .inc02_01_01 a:nth-of-type(-n+2){
		margin-top: 0;
	}
	.inc02.sell_else .inc02_01 .inc02_01_01 a:nth-of-type(2n){
		margin-right: 0;
	}
}
.inc02 .inc02_01 .inc02_01_01 a .inc02_01_01_01 {
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #DED6D3;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 a .inc02_01_01_01 {
		padding: 15px;
	}
}
.inc02.sell_else .inc02_01 .inc02_01_01 a .inc02_01_01_01 {
	padding: 15px;
}
@media only screen and (max-width: 767px) {
	.inc02.sell_else .inc02_01 .inc02_01_01 a .inc02_01_01_01 {
		padding: 14px 14px 12px;
	}
}
.inc02 .inc02_01 .inc02_01_01 a .inc02_01_01_01 img {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 a .inc02_01_01_01 img {
		width: 100%;
	}
}
.inc02 .inc02_01 .inc02_01_01 a:hover .inc02_01_01_01 img {
	opacity: 0.7;
}
.inc02 .inc02_01 .inc02_01_01 a p {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 15px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 a p {
		padding: 12px 0;
	}
}
.inc02.sell_else .inc02_01 .inc02_01_01 a p {
	text-align: center;
}
.inc02 .inc02_01 .inc02_01_01 a p span {
	display: block;
	font-size: 16px;
	line-height: 24px;
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 a p span {
		font-size: 13px;
		line-height: 17px;
	}
}
.inc02.sell_else .inc02_01 .inc02_01_01 a p span {
	font-size: 14px;
	line-height: 24px;
}
@media only screen and (max-width: 767px) {
	.inc02.sell_else .inc02_01 .inc02_01_01 a p span {
		font-size: 13px;
		line-height: 17px;
	}
}
.inc02 .inc02_01 .inc02_01_01 a p::after {
	content: "";
	width: 6px;
	height: 10px;
	background-image: url(../img/common/icon_021.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	position: absolute;
	margin: auto;
	top: 0;
	right: 20px;
	bottom: 0;
	left: auto;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 a p::after {
		content: "";
		width: 4px;
		height: 7px;
		right: 14px;
	}
}
.inc02 .inc02_01 .inc02_01_link {
	box-sizing: border-box;
	width: 350px;
	height: 70px;
	margin: 0 auto;
	border-radius: 8px;
	border: 1px solid #312929;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.5px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_link {
		width: 90%;
		height: 60px;
		max-width: 335px;
		font-size: 16px;
		line-height: 26px;
	}
}
.inc02.top .inc02_01 .inc02_01_link {
	background-color: #FFFFFF;
}
.inc02 .inc02_01 .inc02_01_link::after {
	content: "";
	width: 7px;
	height: 12px;
	background-image: url(../img/common/icon_022.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	position: absolute;
	margin: auto;
	top: 0;
	right: 34px;
	bottom: 0;
	left: auto;
}
/*.inc02ここまで*/

/*.inc03ここから*/
.inc03 {
	width: 100%;
	padding: 70px 0;
}
@media only screen and (max-width: 767px) {
	.inc03 {
		padding: 40px 0;
	}
}
.inc03 .inc03_01 {
	width: 1180px;
	margin: 0 auto;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 {
		width: 90%;
		max-width: 335px;
	}
}
.inc03 .inc03_01 h2 {
	width: auto;
	margin: 0 auto 27px;
	padding-bottom: 8px;
	border-bottom: 1px solid #312929;
	display: inline-block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 h2 {
		margin: 0 auto 17px;
		padding-bottom: 4px;
	}
}
.inc03 .inc03_01 h2 span {
	display: block;
	margin: 0 auto;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 h2 span {
		font-size: 25px;
		line-height: 35px;
	}
}
.inc03 .inc03_01 h2::after {
	content: "";
	width: 15px;
	height: 15px;
	border-right: 1px solid #312929;
	border-bottom: 1px solid #312929;
	background-color: #FFFFFF;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -9px;
	left: 0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.inc03 .inc03_01 p {
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 p {
		font-size: 15px;
		line-height: 25px;
		text-align: left;
		margin-bottom: 25px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.inc03 .inc03_01 .inc03_01_01{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 {
		display: block;
	}
}
.inc03 .inc03_01 .inc03_01_01 a {
	width: 350px;
	height: auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 a {
		width: 100%;
		margin: 40px auto 0;
	}
	.inc03 .inc03_01 .inc03_01_01 a:nth-of-type(1) {
		margin-top: 0;
	}
}
.inc03 .inc03_01 .inc03_01_01 a .inc03_01_01_01 {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.inc03 .inc03_01 .inc03_01_01 a .inc03_01_01_01 img {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}
.inc03 .inc03_01 .inc03_01_01 a .inc03_01_01_01 h3 {
	width: 100%;
	height: auto;
	margin-bottom: 12px;
	padding-bottom: 13px;
	border-bottom: 1px solid #DDD6D3;
	font-size: 20px;
	line-height: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc03 .inc03_01 .inc03_01_01 a .inc03_01_01_01 h3 {
		margin-bottom: 12px;
		padding-bottom: 6px;
	}
}
.inc03 .inc03_01 .inc03_01_01 a .inc03_01_01_01 h3::after {
	content: "";
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background-color: #312929;
	background-image: url(../img/index/icon_013.png);
	background-repeat: no-repeat;
	background-size: 5px auto;
	background-position: right 7px center;
	margin: 0;
	flex-shrink: 0;
}
.inc03 .inc03_01 .inc03_01_01 a .inc03_01_01_01 p {
	font-size: 15px;
	line-height: 25px;
	text-align: left;
	margin-bottom: 0;
}
/*.inc03ここまで*/

/*.inc04ここから*/
.inc04{
	width: 100%;
	padding-bottom: 70px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc04{
		padding-bottom: 50px;
	}
}
.inc04.main_else{
	padding-bottom: 0;
}
.inc04.main{
	padding-bottom: 0;
}
.inc04 .inc04_01{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01{
	}
}
.inc04.main .inc04_01,
.inc04.sell .inc04_01{
	min-height: 400px;
	padding: 70px 0;
	background-image: url(../img/common/img_08.jpg);
}
@media only screen and (max-width: 767px) {
	.inc04.main .inc04_01,
	.inc04.sell .inc04_01{
		padding: 40px 0;
		min-height: initial;
		background-image: url(../img/common/img_08_sp.jpg);
	}
}
.inc04.sell_else .inc04_01 {
	min-height: 571px;
	padding: 62px 0 55px;
	background-image: url(../img/common/img_09.jpg);
}
@media only screen and (max-width: 767px) {
	.inc04.sell_else .inc04_01 {
		padding: 40px 0;
		min-height: initial;
		background-image: url(../img/common/img_08_sp.jpg);
	}
}
.inc04 .inc04_01 .inc04_01_01 {
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 .inc04_01_01 {
		max-width: 335px;
	}
}
.inc04.main .inc04_01 .inc04_01_01 {
	width: 827px;
}
@media only screen and (max-width: 767px) {
	.inc04.main .inc04_01 .inc04_01_01 {
		width: 90%;
	}
}
.inc04.sell .inc04_01 .inc04_01_01 {
	width: 1080px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.inc04.sell .inc04_01 .inc04_01_01 {
		width: 90%;
	}
}
@media only screen and (max-width: 767px) {
	.inc04.sell .inc04_01 .inc04_01_01 {
		width: 90%;
	}
}
.inc04.sell_else .inc04_01 .inc04_01_01 {
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.inc04.sell_else .inc04_01 .inc04_01_01 {
		width: 90%;
	}
}
.inc04 .inc04_01 .inc04_01_01 h2 {
	letter-spacing: 0.5px;
	color: #ffffff;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 .inc04_01_01 h2 {
	}
}
.inc04.main .inc04_01 .inc04_01_01 h2 {
	font-size: 35px;
	line-height: 45px;
	margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
	.inc04.main .inc04_01 .inc04_01_01 h2 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 30px;
	}
}
.inc04.sell .inc04_01 .inc04_01_01 h2 {
	font-size: 35px;
	line-height: 45px;
	margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
	.inc04.sell .inc04_01 .inc04_01_01 h2 {
		font-size: 22px;
		line-height: 32px;
		margin-bottom: 30px;
	}
}
.inc04.sell_else .inc04_01 .inc04_01_01 h2 {
	font-size: 38px;
	line-height: 55px;
	margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
	.inc04.sell_else .inc04_01 .inc04_01_01 h2 {
		font-size: 22px;
		line-height: 32px;
	}
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 {
		display: block;
	}
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 {
	width: auto;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 {
		text-align: center;
	}
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01,
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 {
	margin: 0;
}
@media only screen and (max-width: 767px) {
	.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01,
	.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 {
		margin: 0 auto 30px;
	}
}
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 {
	margin: 0 auto 37px;
}
@media only screen and (max-width: 767px) {
	.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 {
		margin: 0 auto 26px;
	}
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 h3 {
	font-size: 18px;
	line-height: 28px;
	margin: 0 0 5px;
	color: #ffffff;
}
@media only screen and (max-width: 767px) {
	.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 h3 {
		font-size: 14px;
		line-height: 26px;
		margin: 0 0 9px;
		text-align: center;
	}
}
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 h3,
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 h3 {
	font-size: 22px;
	line-height: 32px;
	margin: 0 0 15px;
	color: #ffffff;
}
@media only screen and (max-width: 767px) {
	.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 h3,
	.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 h3 {
		font-size: 14px;
		line-height: 26px;
		margin: 0 0 8px;
		text-align: center;
	}
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 a{
	font-size: 54px;
	line-height: 58px;
	pointer-events: none;
	color: #fff;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 a{
		font-size: 35px;
		line-height: 39px;
		pointer-events: auto;
	}
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 a::before {
	content: "";
	width: 30px;
	height: 45px;
	margin: 0 9px 0 0;
	background-image: url(../img/common/icon15.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 a::before {
		width: 20px;
		height: 31px;
	}
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 .text01 {
	font-size: 17px;
	line-height: 27px;
	color: #ffffff;
	margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 .text01 {
		font-size: 14px;
		line-height: 22px;
		text-align: center;
	}
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 .text02 {
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 .text02 {
		text-align: center;
	}
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 .text02 a {
	width: auto;
	height: auto;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	text-decoration: underline;
	display: inline-block;
	pointer-events: auto;
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_01 .text02 a::before{
	display: none;
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 {
	width: 350px;
	height: auto;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 {
		width: 90%;
		max-width: 280px;
		margin: 0 auto;
	}
}
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02,
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02{
	width: 574px;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02,
	.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02{
		width: 90%;
		max-width: 280px;
		margin: 0 auto;
		flex-direction: column;
	}
}
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 {
	margin: 0 auto;
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a {
	display: block;
	height: 60px;
	margin-top: 20px;
	font-size: 18px;
	line-height: 60px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	border-radius: 4px;
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a{
	padding: 0 10px;
	justify-content: center;
}
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a,
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a{
	padding: 0 16px 0 27px;
	justify-content: space-between;
}
@media only screen and (max-width: 767px) {
	.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a {
		margin-top: 15px;
		padding: 0 15px 0 28px;
		font-size: 18px;
		line-height: 28px;
	}
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a {
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a {
	}
}
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a,
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a {
	width: 280px;
}
@media only screen and (max-width: 767px) {
	.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a,
	.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a {
		width: 100%;
	}
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(1) {
	margin-top: 0;
}
@media only screen and (min-width: 768px) {
	.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(-n+2),
	.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(-n+2) {
		margin-top: 0;
	}
}
@media only screen and (max-width: 767px) {
	.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(1),
	.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(1) {
		margin-top: 0;
	}
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(2),
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(4),
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(4) {
	background-color: #65C442;
	justify-content: center;
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a::after {
	content: "";
	width: 7px;
	height: 12px;
	margin: auto;
	background-image: url(../img/common/icon018.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 34px;
}
@media only screen and (max-width: 767px) {
	.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a::after {
		right: 24px;
	}
}
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a::after,
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a::after {
	content: "";
	width: 24px;
	height: 24px;
	margin: 0;
	background-image: url(../img/common/icon16.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(2)::after,
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(4)::after,
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(4)::after {
	display: none;
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(2)::before,
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(4)::before,
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(4)::before {
	content: "";
	width: 32px;
	height: 38px;
	margin: 0 14px 0 0;
	background-image: url(../img/common/icon17.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
.inc04 .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a span{
	font-size: 18px;
	line-height: 28px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a span{
		font-size: 16px;
		line-height: 25px;
	}
}
.inc04.main .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(2) span,
.inc04.sell .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(4) span,
.inc04.sell_else .inc04_01 .inc04_01_01 .inc04_01_01_01 .inc04_01_01_01_02 a:nth-of-type(4) span{
	color: #fff;
}
/*.inc04ここまで*/

/*.inc05ここまで*/
.inc05 {
	width: 100%;
}
.inc05 ul {
	width: 1180px;
	height: auto;
	margin: 0 auto;
	padding: 22px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc05 ul {
		width: 90%;
		max-width: 335px;
		padding: 30px 0 26px;
		justify-content: space-between;
		flex-wrap: wrap;
	}
}
.inc05 ul li {
	width: 295px;
	height: auto;
}
@media only screen and (max-width: 767px) {
	.inc05 ul li {
		width: 47.5%;
		height: auto;
		margin-top: 22px;
	}
	.inc05 ul li:nth-of-type(1),
	.inc05 ul li:nth-of-type(2) {
		margin-top: 0;
	}
	.inc05 ul li:nth-of-type(3) {
		margin: 22px auto 0;
	}
}
.inc05 ul li a {
	display: block;
	height: auto;
	margin: 0 auto;
}
@media only screen and (min-width: 768px) {
	.inc05 ul li:nth-of-type(1) a {
		width: 235px;
	}
	.inc05 ul li:nth-of-type(2) a {
		width: 244px;
	}
	.inc05 ul li:nth-of-type(3) a {
		width: 194px;
	}
	.inc05 ul li:nth-of-type(4) a {
		width: 174px;
	}
}
@media only screen and (max-width: 767px) {
	.inc05 ul li a {
		display: block;
		width: 100%;
	}
}
.inc05 ul li a img {
	display: block;
	width: 100%;
	height: auto;
}
@media only screen and (max-width: 767px) {
	.inc05 ul li a img {
		margin: 0 auto;
	}
	.inc05 ul li:nth-of-type(1) a img {
		max-width: 155px;
		margin: 0;
	}
	.inc05 ul li:nth-of-type(2) a img {
		max-width: 165px;
		margin: 0;
	}
	.inc05 ul li:nth-of-type(3) a img {
		max-width: 127px;
	}
	.inc05 ul li:nth-of-type(4) a img {
		max-width: 115px;
	}
}
/*.inc05ここまで*/

/*.inc06ここから*/
.inc06 {
	width: 100%;
	height: auto;
}
.inc06 .inc06_01 {
	width: 1180px;
	height: auto;
	margin: 0 auto;
	padding: 0 0 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 {
		width: 90%;
		max-width: 335px;
		display: block;
		padding: 0 0 50px;
	}
}
.inc06 .inc06_01 .inc06_01_01 {
	width: 550px;
	height: auto;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 {
		width: 100%;
		max-width: 550px;
		margin: 37px auto 0;
	}
	.inc06 .inc06_01 .inc06_01_01:nth-of-type(1) {
		margin: 0 auto;
	}
}
.inc06 .inc06_01 .inc06_01_01 h2 {
	width: auto;
	height: auto;
	margin: 0 auto 17px;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 h2 {
		margin: 0 auto 15px;
	}
}
.inc06 .inc06_01 .inc06_01_01 h2 span {
	width: auto;
	height: auto;
	font-size: 32px;
	line-height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 h2 span {
		width: auto;
		height: auto;
		font-size: 23px;
		line-height: 33px;
	}
}
.inc06 .inc06_01 .inc06_01_01 h2 span::before,
.inc06 .inc06_01 .inc06_01_01 h2 span::after {
	display: block;
	content: "";
	width: 25px;
	height: 45px;
	margin-top: 3px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 h2 span::before,
	.inc06 .inc06_01 .inc06_01_01 h2 span::after {
		width: 15px;
		height: 31px;
		margin-top: 0;
	}
}
.inc06 .inc06_01 .inc06_01_01 h2 span::before {
	margin-right: 13px;
	background-image: url(../img/index/icon_07.png);
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 h2 span::before {
		margin-right: 12px;
		background-image: url(../img/index/icon_07_sp.png);
	}
}
.inc06 .inc06_01 .inc06_01_01 h2 span::after {
	margin-left: 0px;
	background-image: url(../img/index/icon_08.png);
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 h2 span::after {
		margin-left: 8px;
		background-image: url(../img/index/icon_08_sp.png);
	}
}
.inc06 .inc06_01 .inc06_01_01 a {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 16px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.32);
	border-radius: 4px;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.inc06 .inc06_01 .inc06_01_01 a {
		margin-bottom: 13px;
	}
}
.inc06 .inc06_01 .inc06_01_01 a img {
	display: block;
	width: 100%;
	height: auto;
}
.inc06 .inc06_01 .inc06_01_01 p {
	font-size: 15px;
	line-height: 24px;
}
/*.inc06ここまで*/

/*.inc07ここから*/
.inc07 {
	width: 100%;
	height: auto;
}
.inc07 .inc07_01 {
	width: 1180px;
	height: auto;
	margin: 0 auto;
	padding: 0 0 36px;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 {
		width: 90%;
		max-width: 335px;
		padding: 0 0 50px;
	}
}
.inc07.else .inc07_01 {
	padding: 67px 0 70px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.inc07.else .inc07_01 {
		padding: 49px 0 55px;
	}
}
.inc07 .inc07_01 .inc07_01_01 {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0 10px 0 80px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 .inc07_01_01 {
		width: 100%;
		height: auto;
		padding: 0;
		flex-direction: column;
	}
}
.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_01 {
	width: 480px;
	height: auto;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_01 {
		width: 100%;
	}
}
.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_01 p {
	margin-bottom: 50px;
	font-size: 16px;
	line-height: 32px;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_01 p {
		margin-bottom: 51px;
	}
}
.inc07.else .inc07_01 .inc07_01_01 .inc07_01_01_01 p {
	text-align: left;
}
.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_01 p .text01 {
	font-size: 18px;
	line-height: 28px;
	color: #C30D23;
}
.inc07 .inc07_01 .inc07_01_01 .link01 {
	box-sizing: border-box;
	width: 350px;
	height: 70px;
	display: flex;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	border: 1px solid #302929;
	border-radius: 8px;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 .inc07_01_01 .link01 {
		width: 100%;
		max-width: 335px;
		height: 60px;
	}
}
.inc07 .inc07_01 .inc07_01_01 .link01 span {
	font-size: 18px;
	line-height: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 .inc07_01_01 .link01 span {
		font-size: 16px;
		line-height: 26px;
	}
}
.inc07 .inc07_01 .inc07_01_01 .link01 span::before,
.inc07 .inc07_01 .inc07_01_01 .link01 span::after {
	display: block;
	content: "";
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.inc07 .inc07_01 .inc07_01_01 .link01 span::before {
	width: 28px;
	height: 28px;
	margin-right: 13px;
	background-image: url(../img/common/icon10.png);
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 .inc07_01_01 .link01 span::before {
		margin-right: 10px;
	}
}
.inc07 .inc07_01 .inc07_01_01 .link01 span::after {
	width: 7px;
	height: 11px;
	margin-left: 33px;
	background-image: url(../img/common/icon11.png);
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 .inc07_01_01 .link01 span::after {
		margin-left: 40px;
	}
}
.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_02 {
	display: block;
	width: 510px;
	height: auto;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_02 {
		width: 100%;
		margin: 0 auto 35px;
	}
}
.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_02 p {
	font-size: 18px;
	line-height: 29px;
	position: absolute;
	top: 194px;
	left: 40px;
}
@media only screen and (max-width: 767px) {
	.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_02 p {
		font-size: 1.8rem;
		font-size: max(1.8rem,15px);
		line-height: 2.8rem;
		top: 39.5%;
		left: 6%;
	}
}
.inc07 .inc07_01 .inc07_01_01 .inc07_01_01_02 img {
	display: block;
	width: 100%;
	height: auto;
}
/*.inc07ここまで*/

/*.inc08ここから*/
.inc08 {
	width: 100%;
	height: auto;
}
.inc08 .inc08_01 {
	width: 900px;
	height: auto;
	margin: 0 auto;
	padding: 80px 0;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 {
		width: 90%;
		padding: 50px 0 47px;
		max-width: 335px;
	}
}
.inc08 .inc08_01 h2 {
	width: auto;
	margin: 0 auto 47px;
	padding-bottom: 5px;
	border-bottom: 1px solid #312929;
	display: inline-block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 h2 {
		margin: 0 auto 38px;
		padding-bottom: 7px;
	}
}
.inc08 .inc08_01 h2 span {
	display: block;
	margin: 0 auto;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 h2 span {
		font-size: 25px;
		line-height: 35px;
	}
}
.inc08 .inc08_01 h2::after {
	content: "";
	width: 15px;
	height: 15px;
	border-right: 1px solid #312929;
	border-bottom: 1px solid #312929;
	background-color: #FFFFFF;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -9px;
	left: 0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.inc08 .inc08_01 .inc08_01_01 {
	display: block;
	width: 216px;
	margin: 0 auto 42px;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 .inc08_01_01 {
		width: 100%;
		margin: 0 auto 30px;
		position: static;
	}
}
.inc08 .inc08_01 .inc08_01_01 img.img01 {
	display: block;
	width: 100%;
	height: auto;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 .inc08_01_01 img.img01 {
		width: 65%;
		max-width: 216px;
		margin: 0 auto;
	}
}
.inc08 .inc08_01 .inc08_01_01 img.img02 {
	display: block;
	width: 164px;
	position: absolute;
	top: -5px;
	right: -173px;
	bottom: 7px;
	left: auto;
}
.inc08 .inc08_01 h3 {
	margin-bottom: 20px;
	font-size: 17px;
	line-height: 28px;
	text-align: center;
}
.inc08 .inc08_01 p {
	margin-bottom: 26px;
	font-size: 16px;
	line-height: 32px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 p {
		margin-bottom: 22px;
		font-size: 15px;
		line-height: 28px;
		text-align: left;
	}
}
.inc08 .inc08_01 .link01 {
	box-sizing: border-box;
	width: 327px;
	height: 60px;
	display: flex;
	margin: 0 auto 34px;
	justify-content: center;
	align-items: center;
	border: 1px solid #302929;
	border-radius: 6px;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 .link01 {
		width: 90%;
		max-width: 335px;
		margin: 0 auto 30px;
	}
}
.inc08 .inc08_01 .link01 span {
	font-size: 16px;
	line-height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inc08 .inc08_01 .link01 span::after {
	display: block;
	content: "";
	width: 7px;
	height: 10px;
	margin-left: 25px;
	background-image: url(../img/common/icon025.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 .link01 span::after {
		margin-left: 20px;
	}
}
.inc08 .inc08_01 .inc08_01_02 {
	width: 380px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 .inc08_01_02 {
		width: 100%;
	}
}
.inc08 .inc08_01 .inc08_01_02 a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 169px;
	height: 54px;
	border: 1px solid #A6A6A6;
	background-color: #000000;
	border-radius: 9px;
	overflow: hidden;
	box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 .inc08_01_02 a {
		width: 45%;
		max-width: 149px;
		height: 50px;
	}
}
.inc08 .inc08_01 .inc08_01_02 a:nth-of-type(2) {
	width: 190px;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 .inc08_01_02 a:nth-of-type(2) {
		width: 51%;
		max-width: 168px;
	}
}
.inc08 .inc08_01 .inc08_01_02 a img {
	display: block;
	width: 140px;
	height: auto;
	margin: 0;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 .inc08_01_02 a img {
		width: 123px;
	}
}
@media only screen and (max-width: 374px) {
	.inc08 .inc08_01 .inc08_01_02 a img {
		width: 103px;
	}
}
.inc08 .inc08_01 .inc08_01_02 a:nth-of-type(2) img {
	width: 163px;
}
@media only screen and (max-width: 767px) {
	.inc08 .inc08_01 .inc08_01_02 a:nth-of-type(2) img {
		width: 144px;
	}
}
@media only screen and (max-width: 374px) {
	.inc08 .inc08_01 .inc08_01_02 a:nth-of-type(2) img {
		width: 124px;
	}
}
/*.inc08ここまで*/

/*.inc09ここまで*/
.inc09 {
	width: 100%;
	height: auto;
	background-color: #F4F4F4;
}
.inc09 .inc09_01 {
	width: 370px;
	margin: 0 auto;
	padding: 59px 0 55px;
	text-align: center;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 {
		width: 90%;
		max-width: 370px;
		padding: 45px 0 40px;
	}
}
.inc09 .inc09_01 h2 {
	margin: 0 auto 10px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 h2 {
		margin: 0 auto 7px;
	}
}
.inc09 .inc09_01 h2 span {
	width: auto;
	height: auto;
	margin: 0 auto 5px;
	font-size: 20px;
	line-height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 h2 span {
		margin: 0 auto 5px;
		font-size: 17px;
		line-height: 31px;
	}
}
@media only screen and (max-width: 360px) {
	.inc09 .inc09_01 h2 span {
		font-size: 15px;
	}
}
.inc09 .inc09_01 h2 span::before,
.inc09 .inc09_01 h2 span::after {
	display: block;
	content: "";
	width: 16px;
	height: 27px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 h2 span::before,
	.inc09 .inc09_01 h2 span::after {
		width: 15px;
		height: 25px;
	}
}
.inc09 .inc09_01 h2 span::before {
	margin-right: 9px;
	background-image: url(../img/about/icon_03.png);
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 h2 span::before {
		margin-right: 9px;
		background-image: url(../img/about/icon_03_sp.png);
	}
}
.inc09 .inc09_01 h2 span::after {
	margin-left: 9px;
	background-image: url(../img/about/icon_04.png);
}
@media only screen and (max-width: 767px) {
	.inc09 .cont01_01 h2 span::after {
		margin-left: 5px;
		background-image: url(../img/about/icon_04_sp.png);
	}
}
.inc09 .inc09_01 h3 {
	font-size: 30px;
	line-height: 38px;
	margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 h3 {
		font-size: 25px;
	}
}
/*店舗検索部分ここから*/
.inc09 .inc09_01 select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	outline: none;
	background: transparent;
	box-sizing: border-box;
	width: 330px;
	height: 60px;
	margin: 0;
	padding: 0 70px 0 25px;
	font-size: 18px;
	line-height: 37px;
	color: #312929;
	position: relative;
	border: 1px solid #DED6D3;
	background: #ffffff;
	font-family: 'Noto_Sans_JP',sans-serif;
	font-weight: 700;
	cursor: pointer;
	text-overflow: ellipsis;
	background-image: url(../img/about/icon_05.jpg);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: right center;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 select {
		width: 100%;
		height: 55px;
		max-width: 305px;
		font-size: 16px;
		margin-bottom: 39px;
		padding: 0 17% 0 3.5%;
		background-image: url(../img/about/icon_05_sp.jpg);
	}
}
.inc09 .inc09_01 select option {
	display: block;
	font-size: 16px;
	line-height: 48px;
	font-weight: 400;
	width: 100%;
	padding-left: 15px;
	cursor: pointer;
	text-overflow: ellipsis;
}
/*店舗検索部分ここまで*/
.inc09 .inc09_01 img {
	display: block;
	width: 219px;
	height: auto;
	position: absolute;
}
@media only screen and (max-width: 767px) {
	.inc09 .inc09_01 img {
		width: 100%;
		position: static;
	}
}
.inc09 .inc09_01 img:nth-of-type(1) {
	bottom: 30px;
	left: -303px;
}
.inc09 .inc09_01 img:nth-of-type(2) {
	width: 134px;
	bottom: 28px;
	right: -322px;
}
/*.inc09ここまで*/

/*売りたい関係　==========================================*/
/*.sell_inc01ここから*/
.sell_inc01 {
	width: 100%;
	padding: 85px 0 70px;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 {
		padding: 40px 0;
	}
}
.sell_inc01 .sell_inc01_01 {
	width: 1180px;
	margin: 0 auto;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 {
		width: 90%;
		max-width: 335px;
	}
}
.sell_inc01 .sell_inc01_01 h1 {
	width: auto;
	margin: 0 auto 27px;
	padding-bottom: 8px;
	border-bottom: 1px solid #312929;
	display: inline-block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 h1 {
		margin: 0 auto 17px;
		padding-bottom: 4px;
	}
}
.sell_inc01 .sell_inc01_01 h1 span {
	display: block;
	margin: 0 auto;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 h1 span {
		font-size: 25px;
		line-height: 35px;
	}
}
.sell_inc01 .sell_inc01_01 h1::after{
	content: "";
	width: 15px;
	height: 15px;
	border-right: 1px solid #312929;
	border-bottom: 1px solid #312929;
	background-color: #ffffff;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -9px;
	left: 0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.sell_inc01 .sell_inc01_01 h2 {
	width: auto;
	margin: 0 auto 27px;
	padding-bottom: 8px;
	border-bottom: 1px solid #312929;
	display: inline-block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 h2 {
		margin: 0 auto 17px;
		padding-bottom: 4px;
	}
}
.sell_inc01 .sell_inc01_01 h2 span {
	display: block;
	margin: 0 auto;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 h2 span {
		font-size: 25px;
		line-height: 35px;
	}
}
.sell_inc01 .sell_inc01_01 h2::after{
	content: "";
	width: 15px;
	height: 15px;
	border-right: 1px solid #312929;
	border-bottom: 1px solid #312929;
	background-color: #ffffff;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -9px;
	left: 0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.sell_inc01 .sell_inc01_01 p {
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 p {
		font-size: 15px;
		line-height: 25px;
		text-align: left;
		margin-bottom: 20px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 {
	width: 100%;
	margin: 0 auto 40px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: stretch;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 {
		margin: 0 auto 35px;
	}
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li{
	box-sizing: border-box;
	width: calc((100% - 20px * 5 ) / 6);
	margin: 20px 20px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li {
		width: calc((100% - 12px * 2 ) / 3);
		margin: 12px 12px 0 0;
	}
}
@media only screen and (min-width: 768px) {
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li:nth-of-type(-n+6){
		margin-top: 0;
	}
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li:nth-of-type(6n){
		margin-right: 0;
	}
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li:nth-of-type(-n+3){
		margin-top: 0;
	}
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li:nth-of-type(3n){
		margin-right: 0;
	}
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0;
	border: 1px solid #DDD6D3;
	border-radius: 8px;
	color: #232323;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 .none a{
	pointer-events: none;
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a .sell_inc01_01_01_01 {
	width: 100%;
	margin: 0 auto;
	padding: 20px 19px 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a .sell_inc01_01_01_01 {
		padding: 7px 7px 0;
	}
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a .sell_inc01_01_01_01::before{
	content: '';
	width: 100%;
	height: 90px;
	margin: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a .sell_inc01_01_01_01::before{
		height: 58px;
	}
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .brandbag .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_027.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .jewelry .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_028.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .watch .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_029.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .ladies_fashion .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_030.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .mens_fashion .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_031.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .kids_fashion .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_032.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .wafuku .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_033.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .tableware .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_034.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .furniture .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_035.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .knick_knacks .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_036.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .baby .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_037.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .appliance .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_038.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .tv .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_039.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .pc .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_040.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .audio .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_041.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .camera .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_042.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .sports .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_043.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .outdoor .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_044.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .instrument .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_045.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .car .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_046.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .toy .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_047.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .game_cd_dvd .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_048.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .gold .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_049.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li .electric_tool .sell_inc01_01_01_01::before{
	background-image: url(../img/common/sell/img_050.png);
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a:hover .sell_inc01_01_01_01::before{
	opacity: 0.7;
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a p {
	width: 100%;
	text-align: center;
	margin-bottom: 0;
	padding: 2px 0 17px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a p {
		padding: 4px 0 9px;
	}
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a p span {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 0 19px;
	font-size: 16px;
	line-height: 23px;
	position: relative;
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a p span {
		padding: 0 13px;
		font-size: 12px;
		line-height: 15px;
	}
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a p span::after {
	content: '';
	width: 6px;
	height: 6px;
	display: block;
	border-bottom: 2px solid #312929;
	border-right: 2px solid #312929;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 15px;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 li a p span::after {
		width: 4px;
		height: 4px;
		right: 7px;
	}
}
.sell_inc01 .sell_inc01_01 .sell_inc01_01_01 .none a p span::after {
	display: none;
}
.sell_inc01 .sell_inc01_01 .link01 {
	box-sizing: border-box;
	width: 350px;
	height: 70px;
	margin: 0 auto;
	border-radius: 8px;
	border: 1px solid #312929;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.05em;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	pointer-events: auto;
}
@media only screen and (max-width: 767px) {
	.sell_inc01 .sell_inc01_01 .link01 {
		width: 100%;
		height: 60px;
		font-size: 16px;
		line-height: 26px;
	}
}
.sell_inc01 .sell_inc01_01 .link01::after {
	content: "";
	width: 7px;
	height: 12px;
	background-image: url(../img/common/sell/icon_01.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	position: absolute;
	margin: auto;
	top: 0;
	right: 34px;
	bottom: 0;
	left: auto;
}
/*.sell_inc01ここまで*/

/*.sell_inc02ここから*/
.sell_inc02 {
	width: 100%;
	padding: 60px 0;
	background-color: #F4F4F4;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 {
		padding: 40px 0;
	}
}
.sell_inc02.sell_else {
	padding: 0 0 70px;
	background-color: transparent;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else {
		padding: 40px 0 55px;
		margin-bottom: 50px;
		background-color: #F4F4F4;
	}
}
.sell_inc02 .sell_inc02_01 {
	width: 1180px;
	margin: 0 auto;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 {
		width: 90%;
		max-width: 335px;
	}
}
.sell_inc02.sell_else .sell_inc02_01 {
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 {
		width: 90%;
	}
}
.sell_inc02 .sell_inc02_01 h2 {
	width: auto;
	margin: 0 auto 27px;
	padding-bottom: 8px;
	border-bottom: 1px solid #312929;
	display: inline-block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 h2 {
		margin: 0 auto 17px;
		padding-bottom: 4px;
	}
}
.sell_inc02 .sell_inc02_01 h2 span {
	display: block;
	margin: 0 auto;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 h2 span {
		font-size: 25px;
		line-height: 35px;
	}
}
.sell_inc02 .sell_inc02_01 h2::after {
	content: "";
	width: 15px;
	height: 15px;
	border-right: 1px solid #312929;
	border-bottom: 1px solid #312929;
	background-color: #F4F4F4;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -9px;
	left: 0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.sell_inc02.sell_else .sell_inc02_01 h2::after {
	background-color: #fff;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 h2::after {
		background-color: #F4F4F4;
	}
}
.sell_inc02 .sell_inc02_01 p {
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 p {
		font-size: 15px;
		line-height: 25px;
		text-align: left;
		margin-bottom: 20px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 {
	width: 100%;
	margin-bottom: 70px;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 {
		margin-bottom: 40px;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 {
	margin-bottom: 40px;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 h3 {
	margin-bottom: 25px;
	padding: 0 20px;
	background-color: #FFFFFF;
	border-bottom: 1px solid #B8ADAC;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 h3 {
		margin-bottom: 22px;
		padding: 0 15px;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 h3 {
	background-color: #FAFAFA;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 h3 {
		margin-bottom: 22px;
		padding: 0 15px;
		background-color: #FFFFFF;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 h3 span {
	font-size: 22px;
	line-height: 70px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 h3 span {
		font-size: 20px;
		line-height: 60px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 h3 span::before {
	content: "";
	width: 39px;
	height: 31px;
	background-image: url(../img/common/sell/icon_08.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	margin: 0 13px 0 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 h3 span::before {
		content: "";
		width: 33px;
		height: 27px;
		margin: 0 10px 0 0;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01:nth-of-type(2) h3 span::before {
	width: 48px;
	height: 31px;
	background-image: url(../img/common/sell/icon_09.png);
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01:nth-of-type(2) h3 span::before {
		width: 39px;
		height: 25px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01:nth-of-type(3) h3 span::before {
	width: 42px;
	height: 46px;
	background-image: url(../img/common/sell/icon_010.png);
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01:nth-of-type(3) h3 span::before {
		width: 36px;
		height: 41px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 h4 {
	display: inline-block;
	padding-bottom: 3px;
	margin-bottom: 15px;
	font-size: 20px;
	line-height: 30px;
	border-bottom: 1px dashed #312929;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 h4 {
		font-size: 18px;
		line-height: 28px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 p {
	font-size: 15px;
	line-height: 25px;
	text-align: left;
	margin-bottom: 11px;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 p {
		margin-bottom: 15px;
	}
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 p{
		width: 100%;
		max-width: initial;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 ul {
	width: 100%;
	margin-bottom: 25px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 ul {
		margin-bottom: 30px;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 ul {
	margin-bottom: 23px;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 ul li {
	width: 90px;
	height: auto;
	margin: 9px 9px 0 0;
	border: 1px solid #DDD6D3;
	border-radius: 4px;
	background-color: #fff;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 ul li:last-of-type{
	margin-right: 0
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 ul li a {
	display: block;
	width: 100%;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 ul li a span {
	display: block;
	width: 100%;
	padding-left: 13px;
	font-size: 15px;
	line-height: 45px;
	position: relative;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 ul li a .kanagawa {
	padding-left: 7px;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 ul li a span::before {
	content: "";
	width: 5px;
	height: 8px;
	background-image: url(../img/common/sell/icon_012.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	position: absolute;
	margin: auto;
	top: 0;
	right: 12px;
	bottom: 0;
	left: auto;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 {
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 {
		flex-direction: column;
		align-items: flex-start;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 {
	flex-wrap: wrap;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 {
	width: auto;
	margin-right: 36px;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 {
		margin: 0 0 20px 0;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 {
	width: 100%;
	margin: 0 auto 23px;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 {
		width: auto;
		margin: 0 0 20px 0;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 h5 {
	font-size: 15px;
	line-height: 25px;
	margin-bottom: 8px;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .sell_inc02_01_01_01_01_01 {
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .sell_inc02_01_01_01_01_01 {
		width: 100%;
		margin: 0 0 12px;
		display: block;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .sell_inc02_01_01_01_01_01 a {
	font-size: 34px;
	line-height: 38px;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	pointer-events: none;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .sell_inc02_01_01_01_01_01 a {
		pointer-events: auto;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .sell_inc02_01_01_01_01_01 a {
	display: inline-flex;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .sell_inc02_01_01_01_01_01 a {
		display: flex;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .sell_inc02_01_01_01_01_01 a::before {
	content: "";
	width: 19px;
	height: 28px;
	margin: 0 5px 0 0;
	background-image: url(../img/common/sell/icon_013.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .sell_inc02_01_01_01_01_01 .text01 {
	font-size: 13px;
	line-height: 18px;
	margin: 0 0 0 14px;
	text-align: left;
	display: block;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .sell_inc02_01_01_01_01_01 .text01 {
		font-size: 13px;
		line-height: 23px;
		margin: 0;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 a {
	margin-left: 20px;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 a:nth-of-type(1) {
	margin: 0;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link02 {
	width: 300px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #312929;
	border-radius: 8px;
}
@media only screen and (max-width: 766px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link02 {
		width: 100%;
		margin: 15px auto 0;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link02 span {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 766px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link02 span {
		padding-right: 0;
		line-height: 60px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link02 span::after{
	content: "";
	width: 7px;
	height: 11px;
	background-image: url(../img/common/sell/icon_015.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	margin: 0 0 0 31px;
	flex-shrink: 0;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link03 {
	width: 300px;
	height: 70px;
	margin-left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	background-color: #302929;
	border-radius: 8px;
}
@media only screen and (max-width: 766px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link03 {
		width: 100%;
		margin: 0 auto;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link03 span {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 766px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link03 span {
		padding-right: 0;
		line-height: 60px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .sell_inc02_01_01_01 .link03 span::before{
	content: "";
	width: 24px;
	height: 19px;
	background-image: url(../img/common/sell/icon_041.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	margin: 0 10px 0 0;
	flex-shrink: 0;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .text03 {
	margin-top: 13px;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 23px;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .text03 {
		margin-top: 12px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .text03 .tel {
	text-decoration: none;
	pointer-events: none;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_01 .text03 .tel {
		pointer-events: auto;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 {
	width: 100%;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_02 {
		max-width: 335px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 h3 {
	margin-bottom: 25px;
	padding: 0 20px;
	background-color: #FFFFFF;
	border-bottom: 1px solid #B8ADAC;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 h3 {
		margin-bottom: 22px;
		padding: 0 15px;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_02 h3 {
	background-color: #FAFAFA;
}
@media only screen and (max-width: 1023.9px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_02 h3 {
		background-color: #FFFFFF;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 h3 span {
	font-size: 22px;
	line-height: 70px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 h3 span {
		font-size: 20px;
		line-height: 60px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 h3 span::before {
	content: "";
	width: 37px;
	height: 44px;
	background-image: url(../img/common/sell/icon_011.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	margin: 0 13px 0 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 h3 span::before {
		width: 30px;
		height: 35px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 {
		display: block;
	}
}
@media only screen and (min-width: 768px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 {
		width: calc((100% - 80px * 1) / 2);
		margin: 80px 80px 0 0;
	}
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01:nth-of-type(-n+2) {
		margin-top: 0;
	}
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01:nth-of-type(2n) {
		margin-right: 0;
	}
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 {
		width: 100%;
		max-width: 335px;
		margin: 0 auto 32px;
	}
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01:last-of-type {
		margin-bottom: 0;
	}
}
@media only screen and (min-width: 768px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 {
		width: calc((100% - 70px * 1) / 2);
		margin: 70px 70px 0 0;
	}
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01:nth-of-type(-n+2) {
		margin-top: 0;
	}
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01:nth-of-type(2n) {
		margin-right: 0;
	}
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 {
		width: 100%;
		max-width: 335px;
		margin: 0 auto 32px;
	}
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01:last-of-type {
		margin-bottom: 0;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 23px;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .img {
		margin-bottom: 17px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .img img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 h4 {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 h4 {
		font-size: 18px;
		line-height: 28px;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 p {
	font-size: 15px;
	line-height: 25px;
	margin-bottom: 10px;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 p {
		margin-bottom: 10px;
	}
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 p{
		width: 100%;
	}
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 a {
	font-size: 15px;
	line-height: 25px;
	text-decoration: underline;
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .blank {
}
.sell_inc02 .sell_inc02_01 .sell_inc02_01_02 .sell_inc02_01_01_01 .sell_inc02_01_01_01_01 .blank::after{
	display: inline-block;
	content: "";
	width: 12px;
	height: 12px;
	margin: 2px 0 0 5px;
	background-image: url(../img/common/sell/icon06.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03 {
	box-sizing: border-box;
	width: 100%;
	padding: 45px 30px 40px;
	background-color: #F4F4F4;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03 {
		padding: 50px 0 0;
		background-color: #fff;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03_01 {
	width: auto;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03_01 {
		width: 90%;
		max-width: 335px;
		margin: 0 auto;
		padding: 20px;
		background-color: #F4F4F4;
		box-sizing: border-box;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03_01 h3 {
	margin-bottom: 30px;
	font-size: 24px;
	line-height: 34px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03_01 h3 {
		margin-bottom: 20px;
		font-size: 20px;
		line-height: 32px;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03_01 .sell_inc02_01_03_01_01 {
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
	background-color: #fff;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03_01 .sell_inc02_01_03_01_01 {
		padding: 20px;
	}
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03_01 .sell_inc02_01_03_01_01 h4 {
	font-size: 18px;
	line-height: 32px;
	margin-bottom: 18px;
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03_01 .sell_inc02_01_03_01_01 ul {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.sell_inc02.sell_else .sell_inc02_01 .sell_inc02_01_03_01 .sell_inc02_01_03_01_01 ul li {
	font-size: 14px;
	line-height: 24px;
}
/*.sell_inc02ここまで*/

/*.sell_inc03ここから*/
.sell_inc03 {
	width: 100%;
	padding: 70px 0 80px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 {
		padding: 40px 0 50px;
	}
}
.sell_inc03.else {
	padding: 0 0 80px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03.else {
		padding: 0 0 50px;
	}
}
.sell_inc03 .sell_inc03_01 {
	width: 1180px;
	margin: 0 auto;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 {
		width: 90%;
		max-width: 335px;
	}
}
.sell_inc03.else .sell_inc03_01 {
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.sell_inc03.else .sell_inc03_01 {
		width: 90%;
	}
}
.sell_inc03 .sell_inc03_01 h2 {
	width: auto;
	margin: 0 auto 24px;
	padding-bottom: 8px;
	border-bottom: 1px solid #312929;
	display: inline-block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 h2 {
		margin: 0 auto 17px;
		padding-bottom: 4px;
	}
}
.sell_inc03 .sell_inc03_01 h2 span {
	display: block;
	margin: 0 auto;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 h2 span {
		font-size: 25px;
		line-height: 35px;
	}
}
.sell_inc03 .sell_inc03_01 h2::after {
	content: "";
	width: 15px;
	height: 15px;
	border-right: 1px solid #312929;
	border-bottom: 1px solid #312929;
	background-color: #ffffff;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -9px;
	left: 0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.sell_inc03 .sell_inc03_01 p {
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 p {
		font-size: 15px;
		line-height: 25px;
		text-align: left;
		margin-bottom: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 {
	box-sizing: border-box;
	width: 100%;
	height: 404px;
	padding: 0 80px;
	margin: 0 auto 30px;
	border: 1px solid #B8ADAC;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 8px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01{
		height: auto;
		margin-bottom: 20px;
		padding: 40px 25px;
		display: block;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01:nth-of-type(2){
	flex-direction: row-reverse;
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01:last-of-type{
	margin-bottom: 40px;
}
.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01 {
	height: 294px;
	padding: 0 50px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01{
		height: auto;
		padding: 40px 25px;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 {
	width: auto;
	height: auto;
	margin: 0 50px 0 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01{
		width: 100%;
		margin: 0 auto 23px;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01:nth-of-type(2) .sell_inc03_01_01_01 {
	margin: 0 0 0 50px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01:nth-of-type(2) .sell_inc03_01_01_01 {
		margin: 0 auto 23px;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .sell_inc03_01_01_01_01 {
	width: 100%;
	margin-bottom: 20px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .sell_inc03_01_01_01_01 {
		justify-content: center;
		text-align: left;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .sell_inc03_01_01_01_01 .text01 {
	margin: 0 33px 0 0;
	font-size: 45px;
	line-height: 49px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .sell_inc03_01_01_01_01 .text01 {
		margin: 0 17px 0 0;
		font-size: 40px;
		line-height: 44px;
		flex-shrink: 0;
	}
}
.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .sell_inc03_01_01_01_01 .text01 {
	margin: 0 25px 0 0;
	font-size: 35px;
	line-height: 39px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .sell_inc03_01_01_01_01 .text01 {
		margin: 0 17px 0 0;
		font-size: 40px;
		line-height: 44px;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .sell_inc03_01_01_01_01 h3 {
	margin: 0;
	font-size: 32px;
	line-height: 46px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .sell_inc03_01_01_01_01 h3 {
		font-size: 25px;
		line-height: 36px;
	}
}
.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .sell_inc03_01_01_01_01 h3 {
	font-size: 25px;
	line-height: 36px;
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .text02 {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	font-size: 18px;
	line-height: 32px;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .text02 {
		font-size: 16px;
		line-height: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .text02 {
	font-size: 16px;
	line-height: 32px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_01 .text02 {
		font-size: 16px;
		line-height: 30px;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_02{
	display: block;
	width: 542px;
	height: auto;
	margin: 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_02{
		width: 100%;
		margin: 0 auto;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01:nth-of-type(2) .sell_inc03_01_01_02{
	width: 501px;
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01:nth-of-type(3) .sell_inc03_01_01_02{
	width: 495px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01:nth-of-type(2) .sell_inc03_01_01_02,
	.sell_inc03 .sell_inc03_01 .sell_inc03_01_01:nth-of-type(3) .sell_inc03_01_01_02{
		width: 100%;
	}
}
.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_02{
	width: 386px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_02{
		width: 100%;
	}
}
.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01:nth-of-type(2) .sell_inc03_01_01_02{
	width: 357px;
}
.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01:nth-of-type(3) .sell_inc03_01_01_02{
	width: 350px;
}
@media only screen and (max-width: 767px) {
	.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01:nth-of-type(2) .sell_inc03_01_01_02,
	.sell_inc03.else .sell_inc03_01 .sell_inc03_01_01:nth-of-type(3) .sell_inc03_01_01_02{
		width: 100%;
	}
}
.sell_inc03 .sell_inc03_01 .sell_inc03_01_01 .sell_inc03_01_01_02 img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.sell_inc03 .sell_inc03_01 a {
	box-sizing: border-box;
	width: 350px;
	height: 70px;
	margin: 0 auto;
	border-radius: 8px;
	border: 1px solid #312929;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.5px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.sell_inc03 .sell_inc03_01 a {
		width: 100%;
		height: 60px;
		font-size: 16px;
		line-height: 26px;
	}
}
.sell_inc03 .sell_inc03_01 a::after {
	content: "";
	width: 7px;
	height: 12px;
	background-image: url(../img/common/sell/icon_033.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	position: absolute;
	margin: auto;
	top: 0;
	right: 34px;
	bottom: 0;
	left: auto;
}
/*.sell_inc03ここまで*/

/*.sell_inc04ここから*/
.sell_inc04 {
	width: 100%;
	padding: 0 0 70px;
}
@media only screen and (max-width: 767px) {
	.sell_inc04 {
		padding: 0 0 45px;
	}
}
.sell_inc04 .sell_inc04_01 {
	width: 1180px;
	margin: 0 auto;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc04 .sell_inc04_01 {
		width: 90%;
		max-width: 335px;
	}
}
.sell_inc04.else .sell_inc04_01 {
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.sell_inc04.else .sell_inc04_01 {
		width: 90%;
	}
}
.sell_inc04 .sell_inc04_01 h2 {
	width: auto;
	margin: 0 auto 40px;
	display: inline-block;
}
@media only screen and (max-width: 767px) {
	.sell_inc04 .sell_inc04_01 h2 {
		margin-bottom: 20px;
	}
}
.sell_inc04 .sell_inc04_01 h2 span {
	display: block;
	margin: 0 auto;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc04 .sell_inc04_01 h2 span {
		font-size: 25px;
		line-height: 38px;
	}
}
.sell_inc04 .sell_inc04_01 .sell_inc04_01_01 {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.sell_inc04 .sell_inc04_01 .sell_inc04_01_01 .sell_inc04_01_01_01 {
	width: 100%;
	height: 580px;
	margin: 0 auto;
	background-color: #F4F4F4;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.sell_inc04 .sell_inc04_01 .sell_inc04_01_01 .sell_inc04_01_01_01 {
		height: 50.2rem;
	}
}
.sell_inc04.else .sell_inc04_01 .sell_inc04_01_01 .sell_inc04_01_01_01 {
	height: 512px;
}
@media only screen and (max-width: 767px) {
	.sell_inc04.else .sell_inc04_01 .sell_inc04_01_01 .sell_inc04_01_01_01 {
		height: 50.2rem;
	}
}
.sell_inc04 .sell_inc04_01 .sell_inc04_01_01 .sell_inc04_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;
}
/*.sell_inc04ここまで*/

/*.sell_inc05ここから*/
.sell_inc05{
	width: 100%;
	height: auto;
	padding: 0 0 80px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.sell_inc05{
		padding: 0 0 60px;
	}
}
.sell_inc05 .sell_inc05_01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.sell_inc05 .sell_inc05_01 h2{
	background-color: #5D5454;
	text-align: center;
	position: relative;
	margin-bottom: 54px;
}
@media only screen and (max-width: 767px) {
	.sell_inc05 .sell_inc05_01 h2{
		padding: 17px 10px;
		text-align: left;
		margin: 0 auto 35px;
	}
}
.sell_inc05 .sell_inc05_01 h2::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 12px solid transparent;
	border-left: 12px solid transparent;
	border-top: 16px solid #5D5454;
	border-bottom: 0;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -16px;
	left: 0;
}
.sell_inc05 .sell_inc05_01 h2 span {
	font-size: 28px;
	line-height: 80px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc05 .sell_inc05_01 h2 span {
		font-size: 20px;
		line-height: 30px;
	}
}
.sell_inc05 .sell_inc05_01 h2 span::before {
	content: "";
	width: 40px;
	height: 41px;
	margin: 0 13px 0 0;
	background-image: url(../img/common/sell/icon_019.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc05 .sell_inc05_01 h2 span::before {
		width: 36px;
		height: 38px;
	}
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01{
	width: 1180px;
	height: auto;
	margin: 0 auto 40px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.sell_inc05 .sell_inc05_01 .sell_inc05_01_01{
		width: 90%;
		max-width: 335px;
		margin: 0 auto 30px;
	}
}
.sell_inc05.else .sell_inc05_01 .sell_inc05_01_01{
	width: 100%;
	height: auto;
	margin: 0 auto 50px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.sell_inc05.else .sell_inc05_01 .sell_inc05_01_01{
		width: 90%;
		margin: 0 auto 30px;
	}
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 p {
	font-size: 18px;
	line-height: 28px;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 1023.9px) {
	.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 p {
		font-size: 16px;
		line-height: 30px;
	}
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01{
	width: 100%;
	height: auto;
	margin: 40px auto 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 {
		margin: 25px auto 0;
	}
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01:nth-of-type(1) {
	margin-top: 0;
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-bottom: 1px solid #B8ADAC;
	display: block;
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h3{
	width: 100%;
	height: auto;
	margin-bottom: 0;
	position: relative;
	font-size: 18px;
	line-height: 28px;
	cursor: pointer;
	padding: 25px 60px 25px 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h3{
		font-size: 16px;
		line-height: 26px;
		padding: 20px 40px 20px 0;
	}
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h3::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 20px;
	height: 2px;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	background-color: #312929;
	transition: all .5s ease-in-out;
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h3::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 20px;
	height: 2px;
	background-color: #312929;
	transition: all .5s ease-in-out;
}
@media only screen and (max-width: 767px) {
	.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h3::before,
	.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h3::after{
		right: 20px;
		width: 16px;
		height: 2px;
	}
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h3.open::before{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h3.open::after{
	opacity: 0;
}
.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h4{
	font-size: 15px;
	line-height: 25px;
	margin: 0;
	padding: 0 0 25px 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc05 .sell_inc05_01 .sell_inc05_01_01 .sell_inc05_01_01_01 .sell_inc05_01_01_01_01 h4{
		padding: 0 0 20px 0;
	}
}
.sell_inc05_01 a {
	box-sizing: border-box;
	width: 350px;
	height: 70px;
	margin: 0 auto;
	border-radius: 8px;
	border: 1px solid #312929;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.5px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.sell_inc05_01 a {
		width: 90%;
		height: 60px;
		max-width: 335px;
		font-size: 16px;
		line-height: 26px;
	}
}
.sell_inc05_01 a::after {
	content: "";
	width: 7px;
	height: 12px;
	background-image: url(../img/common/sell/icon_020.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	position: absolute;
	margin: auto;
	top: 0;
	right: 34px;
	bottom: 0;
	left: auto;
}
/*.sell_inc05ここまで*/

/*.sell_inc06ここから*/
.sell_inc06 {
	box-sizing: border-box;
	width: 288px;
	height: 270px;
	margin: auto;
	position: fixed;
	top: 0;
	right: -216px;
	bottom: 0;
	left: auto;
	z-index: 100000;
	background-color: #fff;
	border: 2px solid #312929;
	border-radius: 8px 0 0 8px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	transition: all 0.5s 0s ease;
}
.sell_inc06.active {
	right: 0;
}
.sell_inc06 h2 {
	width: 70px;
	height: 100%;
	margin: 0;
	padding: 18px 0 0;
	font-size: 24px;
	line-height: 34px;
	letter-spacing: 0.5px;
	border-radius: 0 0 0 8px;
	border-right: 2px solid #312929;
	color: #232323;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: relative;
	box-sizing: border-box;
	cursor: pointer;
}
.sell_inc06 h2:hover {
	opacity: 0.8;
	transition: all .5s;
}
.sell_inc06 h2 .btn_bg{
	content: "";
	width: 100%;
	height: 60px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: #312929;
	overflow: hidden;
	transition: all 0.5s 0s ease;
}
.sell_inc06 h2 .btn_bg .btn_item{
	box-sizing: border-box;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.sell_inc06 h2 .btn_bg .btn_item .btn_line{
	width: 12px;
	height: 2px;
	background-color: #ffffff;
	position: relative;
	margin: auto;
	transform: rotate(0deg);
	display: block;
	transition: all 0.5s 0s ease;
}
.sell_inc06.active h2 .btn_bg .btn_item .btn_line{
	transform: rotate(360deg);
	transition: all 0.5s 0s ease;
}
.sell_inc06 h2 .btn_bg .btn_item .btn_line::before{
	content: "";
	display: block;
	background-color: #ffffff;
	transform: rotate(90deg);
	width: 100%;
	height: 2px;
	transition: all 0.5s 0s ease;
}
.sell_inc06.active h2 .btn_bg .btn_item .btn_line::before{
	opacity: 0;
	transition: all 0.5s 0s ease;
}
.sell_inc06 .sell_inc06_01 {
	width: auto;
	height: 100%;
	padding: 28px 13px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	flex-grow: 1;
}
.sell_inc06 .sell_inc06_01 a {
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 0 13px 0 8px;
	border: 2px solid #312929;
	position: relative;
	border-radius: 4px;
	box-sizing: border-box;
	line-height: 38px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.sell_inc06 .sell_inc06_01 a:before {
	content: "";
	width: 35px;
	height: 39px;
	margin: 0 6px 0 0;
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
.sell_inc06 .sell_inc06_01 a:nth-of-type(1):before {
	background-image: url(../img/common/sell/icon_021.png);
	background-size: 30px auto;
}
.sell_inc06 .sell_inc06_01 a:nth-of-type(2):before {
	background-image: url(../img/common/sell/icon_022.png);
	background-size: 34px auto;
}
.sell_inc06 .sell_inc06_01 a:nth-of-type(3):before {
	background-image: url(../img/common/sell/icon_023.png);
	background-size: 35px auto;
}
.sell_inc06 .sell_inc06_01 a:after {
	content: "";
	width: 16px;
	height: 16px;
	background-color: #C30D23;
	border-radius: 50%;
	display: block;
	background-image: url(../img/common/sell/icon_024.png);
	background-repeat: no-repeat;
	background-size: 5px auto;
	background-position: right 5px center;
	margin: 0 0 0 auto;
}
.sell_inc06 .sell_inc06_01 a span {
	font-size: 16px;
	line-height: 26px;
}
.sell_inc06 .sell_inc06_01 a span span {
	font-size: 24px;
	line-height: 34px;
}
.sell_inc06 .sell_inc06_01 .sell_inc06_01_01 {
	background-color: #65C442;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 10px;
	font-size: 13px;
	line-height: 38px;
	color: #fff;
}
.sell_inc06 .sell_inc06_01 .sell_inc06_01_01 img {
	display: block;
	width: 30px;
	margin-right: 7px;
}
.sell_inc06 .sell_inc06_01 .sell_inc06_01_01 span {
	font-size: 18px;
}
/*.sell_inc06ここまで*/

/*.sell_inc07ここから*/
.sell_inc07 {
	width: 280px;
	height: auto;
	padding: 50px 0 0;
	margin-left: 40px;
	flex-shrink: 0;
}
.sell_inc07 .sell_inc07_01 {
	width: 100%;
	height: auto;
	margin-bottom: 45px;
}
.sell_inc07 .sell_inc07_01 h2 {
	width: 100%;
	height: 60px;
	margin-bottom: 20px;
	font-size: 22px;
	line-height: 32px;
	color: #fff;
	background-color: #5D5454;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.sell_inc07 .sell_inc07_01 h2::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	border-top: 9px solid #5D5454;
	border-bottom: 0;
	margin: auto;
	position: absolute;
	top: auto;
	right: 0;
	bottom: -9px;
	left: 0;
}
.sell_inc07 .sell_inc07_01 a {
	width: 100%;
	height: 90px;
	margin: 0 auto 15px;
	padding:  0 20px 0 16px;
	border: 1px solid #8E8E8E;
	position: relative;
	border-radius: 4px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.sell_inc07 .sell_inc07_01 a:hover {
	opacity: 0.7;
}
.sell_inc07 .sell_inc07_01 a::before {
	content: "";
	width: 51px;
	height: 52px;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 14px 0 0;
	display: block;
	flex-shrink: 0;
}
.sell_inc07 .sell_inc07_01 a:nth-of-type(1)::before {
	background-image: url(../img/common/sell/icon_026.png);
	background-size:  46px auto;
}
.sell_inc07 .sell_inc07_01 a:nth-of-type(2)::before {
	background-image: url(../img/common/sell/icon_027.png);
	background-size:  51px auto;
}
.sell_inc07 .sell_inc07_01 a:nth-of-type(3)::before {
	background-image: url(../img/common/sell/icon_028.png);
	background-size: 47px auto;
}
.sell_inc07 .sell_inc07_01 a::after {
	content: "";
	width: 21px;
	height: 21px;
	background-color: #C30D23;
	border-radius: 50%;
	display: block;
	background-image: url(../img/common/sell/icon_029.png);
	background-repeat: no-repeat;
	background-size: 5px auto;
	background-position: right 7px center;
	margin: 0 0 0 auto;
	flex-shrink: 0;
}
.sell_inc07 .sell_inc07_01 a .sell_inc07_01_01{
	width: auto;
	height: auto;
	display: block;
	margin: 0;
}
.sell_inc07 .sell_inc07_01 a .sell_inc07_01_01 .text01 {
	display: block;
	font-size: 13px;
	line-height: 21px;
	margin: 0;
}
.sell_inc07 .sell_inc07_01 a .sell_inc07_01_01 .text02 {
	font-size: 22px;
	line-height: 30px;
	letter-spacing: 0.5px;
}
.sell_inc07 .sell_inc07_01 a .sell_inc07_01_01 .text02 span {
	font-size: 29px;
	line-height: 37px;
	letter-spacing: 0.5px;
}

.sell_inc07 .sell_inc07_02 {
	width: 100%;
	height: auto;
	margin: 0 auto 55px;
}
.sell_inc07 .sell_inc07_02 h2 {
	width: 100%;
	height: auto;
	padding-bottom: 10px;
	margin: 0 auto;
	border-bottom: 1px solid #B8ADAC;
	display: block;
}
.sell_inc07 .sell_inc07_02 h2 a {
	font-size: 20px;
	line-height: 30px;
	display: inline-block;
}
.sell_inc07 .sell_inc07_02 ul {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.sell_inc07 .sell_inc07_02 ul li {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	border-bottom: 1px dashed #B8ADAC;
}
.sell_inc07 .sell_inc07_02 ul li a {
	box-sizing: border-box;
	width: 100%;
	height:  60px;
	padding: 0 26px 0 0;
	margin: 0 auto;
	font-size: 15px;
	line-height: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sell_inc07 .sell_inc07_02 ul li a:hover {
	opacity: 0.7;
}
.sell_inc07 .sell_inc07_02 ul li a::after {
	content: "";
	width: 5px;
	height: 9px;
	background-image: url(../img/common/sell/icon_030.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	margin: 0;
}
.sell_inc07 .sell_inc07_03 {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	min-height: 340px;
	margin-bottom: 24px;
	padding: 35px 0;
	text-align: center;
	background-image: url(../img/common/sell/img_020.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.sell_inc07 .sell_inc07_03 h2 {
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	margin-bottom: 25px;
}
.sell_inc07 .sell_inc07_03 h3 {
	font-size: 12px;
	line-height: 22px;
	color: #fff;
	margin-bottom: 0;
}
.sell_inc07 .sell_inc07_03 .tel01 {
	font-size: 30px;
	line-height: 34px;
	color: #fff;
	pointer-events: none;
	position: relative;
	margin-bottom: 19px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.sell_inc07 .sell_inc07_03 .tel01::before {
	content: "";
	width: 17px;
	height: 26px;
	margin: 0 3px 0 0;
	background-image: url(../img/common/sell/icon_031.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
.sell_inc07 .sell_inc07_03 .text01 {
	font-size: 13px;
	line-height: 20px;
	color: #fff;
	margin-bottom: 12px;
}
.sell_inc07 .sell_inc07_03 .text02 {
	font-size: 13px;
	line-height: 20px;
	color: #fff;
	margin-bottom: 13px;
}
.sell_inc07 .sell_inc07_03 .text02 a {
	font-size: 13px;
	line-height: 20px;
	color: #fff;
	text-decoration: underline;
}
.sell_inc07 .sell_inc07_03 .line01 {
	width: 240px;
	height: 60px;
	margin: 0 auto;
	background-color: #65C442;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
}
.sell_inc07 .sell_inc07_03 .line01:hover,
.sell_inc07 .sell_inc07_03 .line01:hover img {
	opacity: 0.7;
}
.sell_inc07 .sell_inc07_03 .line01::before {
	content: "";
	width: 32px;
	height: 39px;
	background-image: url(../img/common/sell/icon_032.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	margin: 0 10px 0 0;
	display: block;
	flex-shrink: 0;
}
.sell_inc07 .sell_inc07_03 .line01 .line01_01 {
	font-size: 18px;
	line-height: 28px;
}
.sell_inc07 .sell_inc07_03 .line01 .line01_01 span{
	font-size: 22px;
	line-height: 32px;
}
.sell_inc07 .sell_inc07_03 a img {
	display: block;
	width: 36px;
	height: auto;
	margin-right: 12px;
}
.sell_inc07 .link01 {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 26px;
	position: relative;
}
.sell_inc07 .link01:nth-of-type(1) {
	margin-top: 0;
}
.sell_inc07 .link01 .text01{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 79px;
	height: 79px;
	font-size: 15px;
	line-height: 22px;
	color: #ffffff;
	background-color: #FA3B02;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	top: 6px;
	bottom: auto;
	left: 6px;
	right: auto;
	margin: auto;
}
.sell_inc07 .link01 .text01 span{
	font-size: 15px;
	line-height: 22px;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sell_inc07 .link01 .text01 span span{
	display: block;
	font-size: 20px;
	line-height: 22px;
	color: #ffffff;
}
.sell_inc07 .link01 img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
/*.sell_inc07ここまで*/

/*.sell_inc08ここから*/
.sell_inc08 {
	width: 100%;
	padding: 0;
}
.sell_inc08 .sell_inc08_01 {
	width: 1180px;
	margin: 0 auto;
	padding: 0 0 68px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 {
		width: 90%;
		max-width: 335px;
		margin: 0 auto;
		padding: 0 0 68px;
		text-align: center;
	}
}
.sell_inc08 .sell_inc08_01 h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	margin: 0 auto 34px;
	font-size: 30px;
	line-height: 38px;
	text-align: center;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 h2 {
		margin: 0 auto 20px;
	}
}
.sell_inc08 .sell_inc08_01 h2 span {
	display: inline-flex;
	justify-content: center;
	align-items: flex-end;
	font-size: 25px;
	line-height: 36px;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 h2 span {
		font-size: 20px;
		line-height: 30px;
	}
}
.sell_inc08 .sell_inc08_01 h2 span::before,
.sell_inc08 .sell_inc08_01 h2 span::after {
	content: "";
	width: 27px;
	height: 50px;
	margin: 0 24px -8px 0;
	background-image: url(../img/common/sell/icon_036.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 h2 span::before,
	.sell_inc08 .sell_inc08_01 h2 span::after {
		width: 15px;
		height: 35px;
		margin: 0 12px 1px 0;
		background-image: url(../img/common/sell/icon_036_sp.png);
	}
}
.sell_inc08 .sell_inc08_01 h2 span::after {
	background-image: url(../img/common/sell/icon_037.png);
	margin: 0 0 -8px 24px;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 h2 span::after {
		width: 15px;
		height: 35px;
		margin: 0 0 1px 12px;
		background-image: url(../img/common/sell/icon_037_sp.png);
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 {
	width: 100%;
	max-width: 1048px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 {
		display: block;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a {
	width: 47%;
	max-width: 490px;
	height: auto;
	min-height: 180px;
	border: 2px solid #312929;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	border-radius: 6px;
	box-sizing: border-box;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a {
		width: 100%;
		max-width: 335px;
		min-height: 123px;
		border: 1px solid #312929;
		margin: 25px auto 0;
	}
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a:nth-of-type(1) {
		margin: 0 auto;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .img01 {
	display: block;
	width: 45%;
	max-width: 222px;
	height: 100%;
	border-radius: 4px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: auto;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .img01 {
		width: 152px;
		height: auto;
	}
}
@media only screen and (max-width: 350px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .img01 {
		width: 115px;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 .store .img01 {
	background-image: url(../img/common/sell/img_025.png);
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 .home .img01 {
	background-image: url(../img/common/sell/img_023.png);
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 .takuhai .img01 {
	background-image: url(../img/common/sell/img_024.png);
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01 {
	box-sizing: border-box;
	width: auto;
	height: auto;
	padding: 10px 50px 10px 45%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01 {
		padding: 10px 30px 10px 152px;
	}
}
@media only screen and (max-width: 350px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01 {
		padding: 10px 30px 10px 115px;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01::after {
	content: "";
	width: 30px;
	height: 30px;
	background-color: #C30D23;
	border-radius: 50%;
	display: block;
	background-image: url(../img/common/sell/icon_038.png);
	background-repeat: no-repeat;
	background-size: 8px auto;
	background-position: right 10px center;
	margin: auto;
	position: absolute;
	top: 0;
	right: 19px;
	bottom: 0;
	left: auto;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01::after {
		width: 20px;
		height: 20px;
		background-size: 5px auto;
		background-position: right 7px center;
		right: 12px;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 .store .sell_inc08_01_01_01 img {
	display: block;
	width: 48px;
	height: auto;
	margin: 0 auto 7px;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 .store .sell_inc08_01_01_01 img {
		width: 33px;
		margin: 0 auto 4px;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 .home .sell_inc08_01_01_01 img {
	display: block;
	width: 62px;
	height: auto;
	margin: 0 auto 10px;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 .home .sell_inc08_01_01_01 img {
		width: 42px;
		margin: 0 auto 6px;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 .takuhai .sell_inc08_01_01_01 img {
	display: block;
	width: 55px;
	height: auto;
	margin: 0 auto 5px;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 .takuhai .sell_inc08_01_01_01 img {
		width: 38px;
		margin: 0 auto;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01 .text01 {
	margin-bottom: 6px;
	font-size: 31px;
	line-height: 41px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-wrap: wrap;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01 .text01 {
		margin-bottom: 0;
		font-size: 21px;
		line-height: 31px;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01 .text01 span {
	font-size: 40px;
	line-height: 50px;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01 .text01 span {
		font-size: 27px;
		line-height: 37px;
	}
}
.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01 .text02 {
	margin-bottom: 0;
	font-size: 17px;
	line-height: 27px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc08 .sell_inc08_01 .sell_inc08_01_01 a .sell_inc08_01_01_01 .text02 {
		font-size: 13px;
		line-height: 23px;
	}
}
/*.sell_inc08ここまで*/

/*.sell_inc09ここから*/
.sell_inc09 {
	width: 100%;
	padding: 0 0 85px;
}
@media only screen and (max-width: 767px) {
	.sell_inc09 {
		width: 100%;
		padding: 0 0 65px;
	}
}
.sell_inc09 .sell_inc09_01 {
	box-sizing: border-box;
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	padding: 42px 45px 37px;
	border: 8px solid #DDD6D3;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.sell_inc09 .sell_inc09_01 {
		width: 90%;
		max-width: 335px;
		padding: 32px 43px 37px;
		justify-content: flex-start;
		flex-direction: column;
	}
}
.sell_inc09 .sell_inc09_01 h3 {
	width: 100%;
	margin: 0 auto 34px;
	font-size: 20px;
	line-height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	.sell_inc09 .sell_inc09_01 h3 {
		margin: 0 auto 25px;
	}
}
.sell_inc09 .sell_inc09_01 .sell_inc09_01_01 {
	width: auto;
	height: auto;
	margin: 0 auto;
}
.sell_inc09 .sell_inc09_01 .sell_inc09_01_01 h4 {
	margin: 0 0 7px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.sell_inc09 .sell_inc09_01 .sell_inc09_01_01 h4 span {
	font-size: 17px;
	line-height: 27px;
}
@media only screen and (max-width: 767px) {
	.sell_inc09 .sell_inc09_01 .sell_inc09_01_01 h4 span {
		font-size: 16px;
		line-height: 26px;
	}
}
.sell_inc09 .sell_inc09_01 .sell_inc09_01_01 h4::before {
	display: block;
	content: "";
	width: 21px;
	height: 19px;
	margin-right: 7px;
	background-image: url(../img/common/sell/icon_040.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
}
.sell_inc09 .sell_inc09_01 .sell_inc09_01_01 p {
	width: auto;
	height: auto;
	margin: 0 auto;
	font-size: 14px;
	line-height: 24px;
}
@media only screen and (max-width: 767px) {
	.sell_inc09 .sell_inc09_01 .sell_inc09_01_01 p {
		margin: 0 auto 18px;
	}
}
.sell_inc09 .sell_inc09_01 img {
	display: block;
	width: 238px;
	height: auto;
}

.sell_inc09 .text01_rext {
	padding-top: 20px;
	width: 100%;
    height: auto;
    margin: 0 auto;
    font-size: 14px;
    line-height: 24px;
    display: block;
}

@media only screen and (max-width: 767px) {
	.sell_inc09 .sell_inc09_01 img {
		max-width: 100%;
		margin: 0 auto;
	}
}
.sell_inc09 .link01 {
	width: 100%;
	height: auto;
	margin: 20px auto 0;
	font-size: 15px;
	line-height: 25px;
	text-align: center;
	text-decoration: underline;
}
/*.sell_inc09ここまで*/

/*.sell_inc010ここから*/
.sell_inc010 {
	width: 100%;
	padding: 70px 0 80px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	.sell_inc010 {
		width: 90%;
		max-width: 335px;
		padding: 40px 0;
	}
}
.sell_inc010.sell_else {
	padding: 70px 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc010.sell_else {
		padding: 45px 0 50px;
	}
}
.sell_inc010 .sell_inc010_01 {
	width: 1180px;
	padding: 0 10px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.sell_inc010 .sell_inc010_01 {
		width: 100%;
		padding: 0;
	}
}
.sell_inc010.sell_else .sell_inc010_01 {
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.sell_inc010.sell_else .sell_inc010_01 {
		padding: 0;
	}
}
.sell_inc010 .sell_inc010_01 .sell_inc010_01_01 {
	width: 270px;
	height: auto;
	margin: 0 10px;
	display: block;
}
.sell_inc010.sell_else .sell_inc010_01 .sell_inc010_01_01 {
	margin: 0 5px;
}
.sell_inc010 .sell_inc010_01 .sell_inc010_01_01 a {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.sell_inc010 .sell_inc010_01 .sell_inc010_01_01 a img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.sell_inc010 .sell_inc010_01 .slick-prev,
.sell_inc010 .sell_inc010_01 .slick-next {
	width: 36px;
	height: 36px;
	margin: auto;
	top: 0;
	bottom: 0;
	z-index: 1;
}
.sell_inc010 .sell_inc010_01 .slick-prev {
	left: 0;
}
.sell_inc010 .sell_inc010_01 .slick-next {
	right: 0;
}
@media only screen and (max-width: 767px) {
	.sell_inc010 .sell_inc010_01 .slick-prev {
		left: 5%;
	}
	.sell_inc010 .sell_inc010_01 .slick-next {
		right: 5%;
	}
}
.sell_inc010 .sell_inc010_01 .slick-prev::before,
.sell_inc010 .sell_inc010_01 .slick-next::before {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .65);
	background-size: 11px auto;
}
.sell_inc010 .sell_inc010_01 .slick-prev::before {
	background-image: url(../img/common/sell/icon05.png);
	background-position: left 12px center;
}
.sell_inc010 .sell_inc010_01 .slick-next::before {
	background-image: url(../img/common/sell/icon04.png);
	background-position: right 12px center;
}
/*.sell_inc010ここまで*/
/*売りたい関係　==========================================*/

/*店舗案内関係　==========================================*/
/*.shop_inc01ここから*/
.shop_inc01 {
	width: 280px;
	height: auto;
	padding: 50px 0 90px;
	margin-right: 40px;
	flex-shrink: 0;
}
.shop_inc01 .shop_inc01_01 {
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.shop_inc01 .shop_inc01_01 h2 {
	width: 100%;
	height: 40px;
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	background-color: #5D5454;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.shop_inc01 .shop_inc01_01 .nav_01{
	width: 100%;
	height: auto;
	margin: 30px auto 0;
	display: block;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop{
	width: 100%;
	height: auto;
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop:nth-of-type(1){
	margin-top: 0;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop::before{
	content: '';
	width: 100%;
	height: 1px;
	background-color: #312929;
	display: block;
	position: absolute;
	top: 40px;
	bottom: auto;
	left: 0;
	right: 0;
	margin: auto;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop a{
	box-sizing: border-box;
	width: auto;
	height: 40px;
	font-size: 16px;
	line-height: 26px;
	position: relative;
	border-bottom: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	flex-grow: 1;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop .drop-btn{
	width: 40px;
	height: 40px;
	margin: 0;
	display: block;
	transform: rotateZ(0);
	transition: all .5s;
	flex-shrink: 0;
	position: relative;
	cursor: pointer;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop .drop-btn.drop-active{
	transform: rotateZ(180deg);
	transition: all .5s;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop .drop-btn::after{
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	border-bottom: 2px solid #312929;
	border-left: 2px solid #312929;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: -4px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop ul{
	width: 100%;
	height: auto;
	margin: 18px auto 0;
	display: none;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop ul li{
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	border: 0;
	text-align: left;
	display: block;
}
.shop_inc01 .shop_inc01_01 .nav_01 .drop ul li a{
	width: auto;
	height: auto;
	font-size: 13px;
	line-height: 30px;
	text-decoration: underline;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
}
.shop_inc01 .shop_inc01_01 .nav_01 .nav01_01{
	padding-top: 43px;
	border-top: 1px solid #D9D9D9;
}
.shop_inc01 .shop_inc01_01 .nav_01 .nav01_01 ul{
	width: 100%;
	height: auto;
	margin: 10px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.shop_inc01 .shop_inc01_01 .nav_01 .nav01_01 ul:nth-of-type(1){
	margin-top: 0;
}
.shop_inc01 .shop_inc01_01 .nav_01 .nav01_01 ul li{
	width: auto;
	height: auto;
	margin: 0;
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.shop_inc01 .shop_inc01_01 .nav_01 .nav01_01 ul li a{
	width: auto;
	height: auto;
	padding: 0 10px;
	font-size: 14px;
	line-height: 24px;
}
/*.shop_inc01ここまで*/

/*.shop_inc02ここから*/
.shop_inc02 {
	width: 280px;
	height: auto;
	padding: 20px 0 90px;
	margin-left: 40px;
	flex-shrink: 0;
	position: relative;
}
.shop_inc02 .shop_inc02_01 {
	width: 280px;
	height: auto;
	display: block;
	margin: auto;
}
.shop_inc02 .shop_inc02_01 h2 {
	width: 100%;
	height: 40px;
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	background-color: #5D5454;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.shop_inc02 .shop_inc02_01 .nav_01{
	width: 100%;
	height: auto;
	margin: 11px auto 0;
	display: block;
}
.shop_inc02 .shop_inc02_01 .nav_01 li{
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-bottom: 1px dashed #B8ADAC;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.shop_inc02 .shop_inc02_01 .nav_01 li a{
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	padding-right: 38px;
	font-size: 16px;
	line-height: 26px;
	position: relative;
	border-bottom: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	flex-grow: 1;
}
.shop_inc02 .shop_inc02_01 .nav_01 .sale a{
	font-size: 15px;
	line-height: 25px;
}
.shop_inc02 .shop_inc02_01 .nav_01 li .arrow{
	width: 28px;
	height: 60px;
	display: block;
	transform: rotateZ(0);
	transition: all .5s;
	flex-shrink: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	z-index: -1;
	margin: auto;
}
.shop_inc02 .shop_inc02_01 .nav_01 li .arrow::after{
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	border-bottom: 2px solid #312929;
	border-right: 2px solid #312929;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: -4px;
	right: 0;
	margin: auto;
}
/*.shop_inc02ここまで*/
/*店舗案内関係　==========================================*/

/* セール・イベント・キャンペーン関係　==========================================*/
/*.sale_inc01ここから*/
.sale_inc01 {
	width: 280px;
	height: auto;
	padding: 20px 0 90px;
	margin-left: 40px;
	flex-shrink: 0;
	 position: relative;
}
.sale_inc01 .sale_inc01_01 {
	width: 280px;
	height: auto;
	display: block;
	margin: auto;
}
.sale_inc01 .sale_inc01_01 h2 {
	width: 100%;
	height: 40px;
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	background-color: #5D5454;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.sale_inc01 .sale_inc01_01 .nav_01{
	width: 100%;
	height: auto;
	margin: 11px auto 0;
	display: block;
}
.sale_inc01 .sale_inc01_01 .nav_01 li{
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-bottom: 1px dashed #B8ADAC;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.sale_inc01 .sale_inc01_01 .nav_01 li a{
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	padding-right: 38px;
	font-size: 16px;
	line-height: 26px;
	border-bottom: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	flex-grow: 1;
}
.sale_inc01 .sale_inc01_01 .nav_01 li a::after{
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	border-bottom: 2px solid #312929;
	border-right: 2px solid #312929;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 10px;
	margin: auto;
}
/*.sale_inc01ここまで*/
/* セール・イベント・キャンペーン関係　==========================================*/

/*買取品目一覧関係　==========================================*/
/*.item_inc01ここから*/
.item_inc01 {
	width: 280px;
	height: auto;
	padding: 50px 0 90px;
	margin-right: 40px;
	flex-shrink: 0;
}
.item_inc01 .item_inc01_01 {
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.item_inc01 .item_inc01_01 h2 {
	width: 100%;
	height: auto;
	padding-bottom: 15px;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	text-align: left;
	border-bottom: 1px solid #B8ADAC;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.item_inc01 .item_inc01_01 ul{
	width: 100%;
	height: auto;
	margin: 20px auto 0;
	display: block;
}
.item_inc01 .item_inc01_01 ul li{
	width: 100%;
	height: auto;
	margin: 0;
	border-bottom: 1px dashed #B8ADAC;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.item_inc01 .item_inc01_01 ul li a{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 8px 35px 8px 0;
	font-size: 14px;
	line-height: 24px;
	position: relative;
	border-bottom: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.item_inc01 .item_inc01_01 ul li a:hover{
	background-color: #F7F5F4;
}
.item_inc01 .item_inc01_01 ul .none a{
	pointer-events: none;
}
.item_inc01 .item_inc01_01 ul .active a{
	background-color: #F7F5F4;
}
.item_inc01 .item_inc01_01 ul li a::before{
	content: '';
	width: 65px;
	height: 42px;
	margin: 0 7px 0 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
.item_inc01 .item_inc01_01 ul li .brandbag::before{
	background-image: url(../img/common/item05.png);
}
.item_inc01 .item_inc01_01 ul li .jewelry::before{
	background-image: url(../img/common/item06.png);
}
.item_inc01 .item_inc01_01 ul li .watch::before{
	background-image: url(../img/common/item07.png);
}
.item_inc01 .item_inc01_01 ul li .ladies_fashion::before{
	background-image: url(../img/common/item08.png);
}
.item_inc01 .item_inc01_01 ul li .mens_fashion::before{
	background-image: url(../img/common/item09.png);
}
.item_inc01 .item_inc01_01 ul li .kids_fashion::before{
	background-image: url(../img/common/item010.png);
}
.item_inc01 .item_inc01_01 ul li .wafuku::before{
	background-image: url(../img/common/item011.png);
}
.item_inc01 .item_inc01_01 ul li .tableware::before{
	background-image: url(../img/common/item012.png);
}
.item_inc01 .item_inc01_01 ul li .furniture::before{
	background-image: url(../img/common/item013.png);
}
.item_inc01 .item_inc01_01 ul li .knick_knacks::before{
	background-image: url(../img/common/item014.png);
}
.item_inc01 .item_inc01_01 ul li .baby::before{
	background-image: url(../img/common/item015.png);
}
.item_inc01 .item_inc01_01 ul li .appliance::before{
	background-image: url(../img/common/item016.png);
}
.item_inc01 .item_inc01_01 ul li .tv::before{
	background-image: url(../img/common/item017.png);
}
.item_inc01 .item_inc01_01 ul li .pc::before{
	background-image: url(../img/common/item018.png);
}
.item_inc01 .item_inc01_01 ul li .audio::before{
	background-image: url(../img/common/item019.png);
}
.item_inc01 .item_inc01_01 ul li .camera::before{
	background-image: url(../img/common/item020.png);
}
.item_inc01 .item_inc01_01 ul li .sports::before{
	background-image: url(../img/common/item021.png);
}
.item_inc01 .item_inc01_01 ul li .outdoor::before{
	background-image: url(../img/common/item022.png);
}
.item_inc01 .item_inc01_01 ul li .instrument::before{
	background-image: url(../img/common/item023.png);
}
.item_inc01 .item_inc01_01 ul li .car::before{
	background-image: url(../img/common/item024.png);
}
.item_inc01 .item_inc01_01 ul li .toy::before{
	background-image: url(../img/common/item025.png);
}
.item_inc01 .item_inc01_01 ul li .game_cd_dvd::before{
	background-image: url(../img/common/item026.png);
}
.item_inc01 .item_inc01_01 ul li .gold::before{
	background-image: url(../img/common/item028.png);
}
.item_inc01 .item_inc01_01 ul li .electric_tool::before{
	background-image: url(../img/common/item029.png);
}
.item_inc01 .item_inc01_01 ul li a::after{
	content: '';
	width: 6px;
	height: 6px;
	display: block;
	border-bottom: 2px solid #312929;
	border-right: 2px solid #312929;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 21px;
	margin: auto;
}
.item_inc01 .item_inc01_01 ul .none a::after{
	display: none;
}
/*.item_inc01ここまで*/
/*買取品目一覧関係　==========================================*/


/*フローティングバナー、spボトム固定ボタンここから==========================================*/
.f_banner {
    position: fixed;
    z-index: 99998;
    bottom: 176px;
    right: 26px;
}
.banner02{
	bottom: 82px;
}
.f_banner a {
    text-decoration: none;
}
.f_banner a img{
	width: 300px;
	height: auto;
	display: block;
}
/*閉じるボタン*/
.banner-close {
    font-weight: bold;
    position: absolute;
    top: -9px;
    right: -10px;
    z-index: 99999;
    border: none;
    cursor: pointer;
}
.close_btn {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #65C443;
  background: #ffffff; /* ボタンの背景色 */
}
.close_btn::before, .close_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 10px;
  background: #65C443; /* バツ印の色 */
}

/*2つ目のバナー*/
.banner-close.close02 .close_btn{
	border: 1px solid #312929;
	background: #312929; /* ボタンの背景色 */
}
.banner-close.close02 .close_btn::before, .banner-close.close02 .close_btn::after {
  background: #fff; /* バツ印の色 */
}

.close_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.close_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
/*フローティングバナーここまで*/

/*SPボトム用固定ボタン*/
.sp_fix_btn{
	width: 100%;
	height: auto;
	position: fixed;
	bottom: 0;
	z-index: 10;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}

.f_btn{
	width: 100%;
	height: auto;
	background-color: #312929;
	display: block;
}
.f_btn .sp_fix_btn{
	position: relative;
	z-index: 90;
	opacity: 0;
}
.sp_fix_btn li{
	width: 62.95%;
	height: auto;
	display: block;
}
.sp_fix_btn li:nth-of-type(2){
	width: 37.5%;
}
.sp_fix_btn li a{
	width: auto;
	height: auto;
	display: block;
}
.sp_fix_btn li a:hover{
	opacity: initial;
}

.sp_fix_btn li a img{
	width: 100%;
	height: auto;
	display: block;
}
/*フローティングバナー、spボトム固定ボタンここまで ==========================================*/
/*includeここまで*/