@charset "UTF-8";

/*----------------------------------------------------------

all common css

/*----------------------------------------------------------

/* -------------------------------------------------
  body
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
body {
	padding-top:60px;
	position:relative;
}
#overray {
	width:100%;
	height:120%;
	background:rgba(255,255,255,0.7);
	position:fixed !important;
	position:absolute;
	top:0px;
	right:0px;
	bottom:0px;
	left:0px;
	z-index:999;
	display:none;
}
/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){
	body {
		padding-top:92px;
	}
}



/* -------------------------------------------------
  header
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#header{
	width: 100%;
	height: 60px;
	background: #ffffff;
	border-bottom:1px solid var(--color-border);
	position:fixed;
	top:0;
	z-index:9000;
	transition:height 0.5s ease;
}
.sc #header{
	border-bottom: 1px solid #ECE7E1;
}
#header .headerInnerWrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 0 20px;
	position:relative;
	transition:height 0.5s ease;
}
#header .siteLogo{
	width: 128px;
	padding: 0;
}
#header .siteLogo a{
	display: block;
	height: 100%;
	padding-top: 12px;
}
#header .siteLogo img{
	width: 100%;
}
#header #gNav {
	display: none;
}

#header #menuBtn{
	width: 60px;
	height:60px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9999;
	cursor: pointer;
}
#header #menuBtn:hover{
	opacity:0.6;
	transition:all 0.5s ease;
}
#header #menuBtn a{
	display: block;
	height: 100%;
	text-decoration: none;
}
#header #menuBtn span{
	display: block;
	width: 22px;
	height: 2px;
	margin:0 auto;
	border-radius: 10px;
	transition: all .4s;
	position: absolute;
	left: 0;
	right: 0;
}
#header #menuBtn span:nth-of-type(1){
	top: 18px;
}
#header #menuBtn span:nth-of-type(2){
	top: 25px;
}
#header #menuBtn span:nth-of-type(3){
	top: 32px;
}
#header #menuBtn span:nth-of-type(4){
	width: 100%;
	height: 20px;
	font-size: 1.0rem;
	line-height:1em;
	border-radius: none;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-align: center;
	top:39px;
}
.navOpen #header #menuBtn span:nth-of-type(1){
	top: 24px;
	transform: rotate(315deg);
}
.navOpen #header #menuBtn span:nth-of-type(2){
	opacity: 0;
}
.navOpen #header #menuBtn span:nth-of-type(3){
	top: 24px;
	transform: rotate(-315deg);
}


/*-------------------------------
	Display：541px →
-------------------------------*/
@media screen and (min-width: 541px){
	#header .headerInnerWrap {
		padding: 0 30px;
	}
}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){
	#header{
		height:92px;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		background:#fff;
		z-index: 9995;
	}
	#header .headerInnerWrap {
		padding: 0 30px;
		overflow: hidden;
	}
	#header .siteLogo{
		width: 170px;
		height: 90px;
		float: left;
	}
	#header .siteLogo a{
		display: block;
		padding-top: 25px;
	}
	#header .siteLogo a:hover{
		opacity: 0.6;
	}
	#header .siteLogo{
		display: block;
		width: 140px;
		height: 90px;
		float: left;
	}
	#header #gNav {
		display:block;
		width: 75%;
		overflow:hidden;
		float: right;
	}
	#header #gNav ul {
    		display: -webkit-flex;
    		display: flex;
    		-webkit-justify-content: flex-start;
    		justify-content: flex-start;
		width: 100%;
	}
	#header #gNav ul li {
    		-webkit-flex-grow: 1;
    		flex-grow: 1;
		padding:0 3px;
	}
	#header #gNav ul li a {
		display: block;
		width:100%;
		padding:38px 0 32px;
		font-size:1.2rem;
		line-height:20px;
		font-weight: 700;
		letter-spacing:0.05em;
		text-align:center;
		color:#000000;
		text-decoration:none;
		position:relative;
	}
	#header #gNav ul li.navContact a{
		color:#000000;
		background-color: #EDF6FF;
		font-size: 12px;
		padding:30px 0 0px;
		height: 100%;
	}
	#header #gNav ul li.navContact a img{
		display: block;
		width: 25px;
		margin: 0 auto;
	}
	#header #gNav ul li a:hover {
		color:var(--color-primary);
	}
	#header #gNav ul li.navContact a:hover{ 
		/* background: #FFF1EB; */
	}
	#header #gNav ul li a::before {
		content: '';
		display: none;
		width:100%;
		height:4px;
		background:var(--color-primary);
		position:absolute;
		top:0;
	}
	#page-home #header #gNav ul li:nth-child(1) a::before {
		display: block;
	}
	#page-about #header #gNav ul li:nth-child(2) a::before {
		display: block;
	}
	#page-car #header #gNav ul li:nth-child(3) a::before {
		display: block;
	}
/*
	#page-store #header #gNav ul li:nth-child(4) a::before {
		display: block;
	}
*/
	#page-guide #header #gNav ul li:nth-child(5) a::before {
		display: block;
	}
	#page-faq #header #gNav ul li:nth-child(6) a::before {
		display: block;
	}
	#header #menuBtn{
		display:none;
	}
}
/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){
	#header .siteLogo{
		width: 170px;
	}
	#header #gNav ul li a {
		font-size:1.6rem;
		line-height:20px;
	}
	#header #gNav ul li.navContact a{
		font-size: 14px;
		padding:24px 0 0px;
		width: 150px;
	}
	#header #gNav ul li.navContact a img{
		width: 34px;
		margin-bottom: 5px;
	}
}

/* -------------------------------------------------
  spNav
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#spNav {
	width:100%;
	height:100%;
	padding:30px 0;
	background:rgba(255,255,255,0.95);
	position:fixed !important;
	position:absolute;
	top:0px;
	right:0px;
	bottom:0px;
	left:0px;
	z-index:8000;
	display:none;
	box-sizing:border-box;
}
#spNav ul {
	width:100%;
	position:absolute;
	top:60px;
	overflow:hidden;
}
#spNav li{
	float:left;
}
#spNav li:nth-child(odd){
	width:50%;
	border-top:1px solid var(--color-border);
}
#spNav li:nth-child(even){
	width:50%;
	border-right:1px solid var(--color-border);
	border-top:1px solid var(--color-border);
}
#spNav li:nth-child(1),
#spNav li:nth-child(10){
	width:100%;
}
#spNav li a{
	display:block;
	width:100%;
	height:100%;
	padding:15px 0;
	font-weight:700;
	letter-spacing:0.05em;
	color:#0A0E1F;
	text-align:center;
	text-decoration:none;
}
#spNav li:nth-child(1) a,
#spNav li:nth-child(2) a,
#spNav li:nth-child(3) a{
	font-size:1.4rem;
	font-weight:400;
}
#spNav li:nth-child(4) a,
#spNav li:nth-child(5) a,
#spNav li:nth-child(6) a,
#spNav li:nth-child(7) a,
#spNav li:nth-child(8) a,
#spNav li:nth-child(9) a{
	padding-top:55px;
}
#spNav li:nth-child(4) a{
	content: '';
	background:url(/1cars/common/img/icon/point.svg) no-repeat 50% 12px;
	background-size: 28px auto;
}
#spNav li:nth-child(5) a{
	content: '';
	background:url(/1cars/common/img/icon/car.svg) no-repeat 50% 20px;
	background-size:61px auto;
}

#spNav li:nth-child(6) a{
	content: '';
	background:url(/1cars/common/img/icon/shop.svg) no-repeat 50% 11px;
	background-size:54px auto;
}

#spNav li:nth-child(7) a{
	content: '';
	background:url(/1cars/common/img/icon/guide.svg) no-repeat 50% 10px;
	background-size:42px auto;
}
#spNav li:nth-child(8) a{
	content: '';
	background:url(/1cars/common/img/icon/faq.svg) no-repeat 50% 12px;
	background-size:43px auto;
}
#spNav li:nth-child(9) a{
	content: '';
	background:url(/1cars/common/img/icon/contact.svg) no-repeat 50% 10px;
	background-size:38px auto;
	border-bottom:1px solid var(--color-border);
}
#spNav li:nth-child(10){
	font-size: 18px;
}
#spNav li:nth-child(10) a{
	content: '';
	background:url(/1cars/common/img/icon/home.svg) no-repeat left 28% center;
	background-size:39px auto;
	border-bottom:1px solid var(--color-border);
	padding: 25px 0;
}

/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){

}


/* -------------------------------------------------
  pNav
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#pNav {
	padding:5px 20px;
	background:#F8F8F8;
}
#pNav ol {
	display:block;
	width:100%;
	max-width:960px;
	margin:0 auto;
	padding:0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}
#pNav ol li {
	display:block;
	position:relative;
}
#pNav ol li:first-child {
	padding-left:0;
}
#pNav ol li::before {
	content: '';
	display:block;
	width:1px;
	height:18px;
	margin:auto 0;
	background:var(--color-border);
	position:absolute;
	top:0;
	bottom:0;
	right:-2px;
	transform: rotate(18deg);
}
#pNav ol li:last-child::before {
	display:none;
}
#pNav ol li.breadcrumb__item {
	padding:10px 14px;
}
#pNav ol li a{
	display:block;
	padding:0;
	color:#0A0E1F;
	text-decoration:none;
}
#pNav ol li span{
	display:block;
	padding:3px 15px;
	font-size:1.2rem;
	line-height:18px;
}
#pNav ol li a span.home{
	padding:3px 15px 3px 25px;
	background:url(/1cars/common/img/icon/home.svg) no-repeat 0% 50%;
	background-size:16px auto;
}
/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (max-width: 959px){

	#pNav {
		overflow-x: auto;
		word-break: keep-all;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
}

/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){
	#pNav {
		padding:0 35ox;
	}
	#pNav ol {
		max-width:960px;
	}
	#pNav ol li span{
		font-size:1.4rem;
		line-height:20px;
	}
	#pNav ol li a span.home{
		background:url(/1cars/common/img/icon/home.svg) no-repeat 0% 50%;
		background-size:18px auto;
	}
}



/* -------------------------------------------------
  contact
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#secContactBlock {
	width: 100%;
	padding:55px 20px 40px;
	background-color: #FFF1EB;
}
#secContactBlock .secContactHead {
	text-align: center;
}
#secContactBlock .secContactHead h2{
	margin-bottom:20px;
	font-size:3.2rem;
	line-height:1em;
	letter-spacing:0.1em;
	font-weight:700;
}
#secContactBlock .secContactHead h2 span{
	display:block;
	margin-bottom:5px;
	font-size:1.8rem;
	line-height:1em;
	letter-spacing:0.1em;
}



/* -------------------------------------------------
  footer
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#footer {
	width: 100%;
	padding:45px 0 120px;
	background-color: #ffffff;
	transition:padding 0.5s ease;
}
#footer .siteLogo{
	width: 170px;
	margin:0 auto;
}
#footer #fNav {
	display:none;
}
#footer #snsNav {
	width:120px;
	margin:35px auto 25px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#footer #snsNav li{
	width:34px;
	height:34px;
}
#footer #snsNav li a{
	display:block;
	width:34px;
	height:34px;
	border-radius:34px;
	background-color:#8F919F;
	background-repeat:no-repeat;
	background-position:50% 50%;
}
#footer #snsNav li a:hover{
	background-color:var(--color-primary);
}
#footer #snsNav li a.facebook{
	background-image:url(/common/img/icon/facebook.svg);
	background-size:10px auto;
}
#footer #snsNav li a.twitter{
	background-image:url(/common/img/icon/twitter.svg);
	background-size:20px auto;
}
#footer #snsNav li a.line{
	background-image:url(/common/img/icon/line.svg);
	background-size:20px auto;
}

#footerBottom .inner{
	width:100%;
	max-width:1000px;
	margin:0 auto;
	padding:40px 20px 20px;
	transition:padding 0.5s ease;
}
#footerBottom .companyLogo {
	width:132px;
	margin:0 auto;
}
#footerBottom #cNav {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-pack: wrap;
	flex-wrap: wrap;
}
#footerBottom #cNav li {
	padding:0 10px;
}
#footerBottom #cNav li a{
	display:block;
	padding:18px 0 0;
	font-size:1.4rem;
	color:#0A0E1F;
	text-decoration:none;
}
#footerBottom #cNav li a:hover{
	opacity:0.6;
}
#footerBottom #cNav li a.blank{
	padding-right:18px;
	background:url(/1cars/common/img/icon/link_blank.png) no-repeat 100% 28px;
	background-size:12px auto;
}
#footer .copyright {
	display:block;
	width:100%;
	font-size:1.0rem;
	text-align:center;
}

/*-------------------------------
	Display：←959px
-------------------------------*/
@media screen and (max-width: 959px){
	#footerBottom #cNav {
		width:90%;
		max-width:460px;
		margin:0 auto;
	}
}

/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){

	#footer {
		padding:80px 0 120px;
	}
	#footer .siteLogo:hover{
		opacity:0.6;
		transition:all 0.5s ease;
	}
	#footer #fNav {
		width:100%;
		max-width:740px;
		margin:25px auto 0;
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
	}
	#footer #fNav li a {
		display: block;
		width:100%;
		padding:25px 0;
		line-height:20px;
		font-weight: 700;
		letter-spacing:0.1em;
		text-align:center;
		color:#000000;
		text-decoration:none;
		position:relative;
	}
	#footer #fNav li a:hover {
		color:var(--color-primary);
	}
	#footer #fNav li a::before {
		content: '';
		display:block;
		width:100%;
		height:2px;
		background:var(--color-secondary);
		position:absolute;
		bottom:0;
	}
	#page-home #footer #fNav li:nth-child(1) a::before {
		background:var(--color-primary);
	}
	#page-about #footer #fNav li:nth-child(2) a::before {
		background:var(--color-primary);
	}
	#page-car #footer #fNav li:nth-child(3) a::before {
		background:var(--color-primary);
	}
	#page-guide #footer #fNav li:nth-child(4) a::before {
		background:var(--color-primary);
	}
	#page-faq #footer #fNav li:nth-child(5) a::before {
		background:var(--color-primary);
	}
	#page-store #footer #fNav li:nth-child(6) a::before {
		background:var(--color-primary);
	}
	#footer #snsNav {
		margin:80px auto 55px;
	}
	#footerBottom .inner{
		padding:45px 20px 0;
		overflow:hidden;
	}
	#footerBottom .companyLogo {
		width:132px;
		margin:0;
		float:left;
	}
	#footerBottom #cNav {
		width:735px;
		max-width:auto!important;
		margin:0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		float:right;
	}
	#footer .copyright {
		width:100%;
		max-width:1000px;
		margin:0 auto;
		padding:0 20px;
		text-align:left;
	}
}



/* -------------------------------------------------
  contentsTab
------------------------------------------------- */
/*-------------------------------
	Display：common
-------------------------------*/

#contentsTab {
	width:100%;
	background:url(/1cars/common/img/parts/tab_line.gif) repeat-x 50% 100% ;
	background-size:3px 3px;
}
#contentsTab ul {
	width:90%;
	max-width:740px;
	margin:0 auto;
	overflow:hidden;
}
#contentsTab ul li {
	width:49%;
	padding:22px 0 15px;
	text-align:center;
	line-height:40px;
	letter-spacing:0;
	border:3px solid var(--color-border);
	border-bottom:none;
	background-color:#ffffff;
	border-radius:10px 10px 0 0;
	float:left;
	cursor:pointer;
	transition:background-color 0.5s ease;
}
#contentsTab ul li:hover {
	background:var(--color-tertiary);
}
#contentsTab ul li:last-child {
	float:right;
}
#contentsTab ul li.current {
	padding:22px 0 17px;
	border:3px solid var(--color-primary);
	border-bottom:1px solid #ffffff;
	cursor:default;
}
#contentsTab ul li.current:hover {
	background-color:#ffffff;
}

#contentsTab ul li em{
	display:inline-block;
	font-weight:1.8rem;
	font-weight:700;
}

/*-------------------------------
	Display：←767px
-------------------------------*/
@media screen and (max-width: 767px){

	#contentsTab ul li{
		padding:36px 0 0;
		font-size:1.4rem;
	}
	#contentsTab ul li.current {
		padding:36px 0 4px;
	}
	#contentsTab ul li:nth-child(1){
		background-image:url(/common/img/icon/pc.svg);
		background-repeat:no-repeat;
		background-position:50% 18px ;
		background-size:36px auto;		
	}
	#contentsTab ul li:nth-child(2){
		background-image:url(/common/img/icon/shop.svg);
		background-repeat:no-repeat;
		background-position:50% 18px ;
		background-size:36px auto;
	}

}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){

	#contentsTab ul li:nth-child(1) em{
		padding-left:65px;
		background:url(/1cars/common/img/icon/pc.svg) no-repeat 0% 50% ;
		background-size:52px auto;
	}
	#contentsTab ul li:nth-child(2) em{
		padding-left:75px;
		background:url(/1cars/common/img/icon/shop.svg) no-repeat 0% 50% ;
		background-size:60px auto;
	}

}



/* -------------------------------------------------
  carList
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/

.carlistWrap {
	width:100%;
	padding:15px 0;
	overflow:hidden;
}
.carlistWrap li{
	width:47.5%;
	margin:5px 1.25%;
	text-align:center;
	border-radius:10px;
	border:1px solid var(--color-border);
	display: inline-block;
	vertical-align: top;
}
.carlistWrap li a{
	display:block;
	padding:20px 0 15px;
	color:#0A0E1F;
	text-decoration:none;
}
.carlistWrap li .carlistTtl{
	font-size:1.4rem;
	line-height:1.5em;
	font-weight:700;
	letter-spacing:0;
}
.carlistWrap li .carlistTtl span{
	display:block;
	font-size:1.2rem;
	line-height:1em;
	font-weight:400;
}
.carlistWrap li figure {
	display: block;
	height: 40%;
}
.carlistWrap li .carImg{
	width: 75%;
	margin:5px 0;
}
.carlistWrap li .listItemHead{
	overflow: hidden;
}
/* .carlistWrap li.list-alphard .carImg{
	width: 80%;
	max-width: 80%;
	margin-top: -8px;
}
.carlistWrap li.list-sienta .carImg{
	width: 105%;
	max-width: 110%;
	margin-top: -8px;
} */

.carlistWrap li .FixedAmount{
	width:70%;
	max-width:175px;
	margin:0 auto;
	font-size:1.0rem;
	line-height:20px;
	text-align:center;
	color:#ffffff;
}
.carlistWrap li .priceBox {
	text-align: center;
	margin: 5px 0 2px;
	position:relative;
	z-index:2;
}
/* ハリアー値段非表示の場合は有効化する */
/* .carlistWrap li.list-harrier .priceBox{
	display: none;
} */
.carlistWrap li .priceBox .priceNoTax {
	display: inline-block;
	vertical-align: top;
	font-size: 3.4rem;
	line-height:1em;
	letter-spacing: 0;
	color: #0A0E1F;
	font-weight: 700;
	font-family: 'Lato', sans-serif;
}
.carlistWrap li .priceBox div {
	display: inline-block;
	margin:-3px 0 0 -2px;
	vertical-align: top;
	color: #0A0E1F;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-align: left;
}
.carlistWrap li .priceBox div .tax {
	font-size: 0.6rem;
	line-height: 1em;
}
.carlistWrap li .priceBox div .yen {
	font-size: 1.3rem;
	line-height: 1em;
}
.carlistWrap li .gradeTxt {
	font-size: 1.0rem;
	line-height: 1.3;
	padding: 5px;
}
.carlistWrap li .toDetail {
	display:none;
}

/*-------------------------------
	Display：←320px
-------------------------------*/
@media screen and (max-width: 320px){
	.carlistWrap li .priceBox .priceNoTax {
		font-size: 2.8rem;
	}
	.carlistWrap li .priceBox div {
		margin:-5px 0 0;
	}
	.carlistWrap li .priceBox div .tax {
		font-size: 0.6rem;
	}
	.carlistWrap li .priceBox div .yen {
		font-size: 1.2rem;
	}
}

/*-------------------------------
	Display：←959px
-------------------------------*/
@media screen and (max-width: 959px){
	.carlistWrap li.listPrado h3 {
		font-size: 15px;
		letter-spacing: -1px;
		padding-bottom: 2px;
	}
}
@media print, screen and (min-width: 768px){
	/* .carlistWrap li figure {
		height: 170px;
	} */
	/* .carlistWrap li.list-alphard .carImg{
		margin-top: -18px;
	}
	.carlistWrap li.list-sienta .carImg{
		margin-top: -18px;
		width: 100%;
	} */
}

/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){
	.carlistWrap {
		width:100%;
		max-width:1080px;
		margin:0 auto;
		padding:10px 0 0;
		position:relative;
		overflow:hidden;
	}
	.carlistWrap li{
		width:30.83%;
		margin:30px 1.25% 0;
		padding:30px 0 0;
	}
	.carlistWrap li a{
		padding:30px 0 0;
		transition:all 0.5s ease;
	}
	.carlistWrap li a:hover{
		opacity:0.6;
	}
	.carlistWrap li a .listItemHead{
		transition: all 0.5s ease;
	}
	.carlistWrap li a:hover .listItemHead{
		transform: scale(1.1,1.1);
	}
	.carlistWrap li .carlistTtl{
		font-size:2.1rem;
		line-height:1.5em;
	}
	.carlistWrap li.list-prado .carlistTtl{
		letter-spacing:-0.05em;
	}
	.carlistWrap li .carlistTtl span{
		font-size:1.7rem;
		line-height:1em;
	}
	.carlistWrap li .carImg{
		margin:15px 0;
	}
	/* .carlistWrap li.list-alphard .carImg{
		margin-top: -12px;
	}
	.carlistWrap li.list-sienta .carImg{
		margin-top: -12px;
		width: 105%;
	} */
	.carlistWrap li .FixedAmount{
		width:100%;
		font-size:1.5rem;
		line-height:28px;
	}
	.carlistWrap li .priceBox .priceNoTax {
		font-size: 4.5rem;
	}
	.carlistWrap li .priceBox div {
		margin:1px 0 0;
	}
	.carlistWrap li .priceBox div .tax {
		font-size: 1.0rem;
	}
	.carlistWrap li .priceBox div .yen {
		font-size: 2.0rem;
	}
	.carlistWrap li .gradeTxt {
		font-size: 1.7rem;
	}
	.carlistWrap li .toDetail {
		display:block;
		margin-top:18px;
		font-size:1.8rem;
		line-height:62px;
		font-weight:700;
		border-top:1px  solid var(--color-border);
		background:url(/1cars/common/img/icon/right-arrow_bl.svg) no-repeat right 20px  top 50%;
		background-size:7px auto;
	}
}


/* -------------------------------------------------
  faqList
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/

.faqList {
	width:100%;
	max-width:960px;
	margin:25px auto ;
}
.faqList li{
	border-left:1px solid var(--color-border);
	border-right:1px solid var(--color-border);
	border-bottom:1px solid var(--color-border);
}
.faqList li:first-child{
	border-top:1px solid var(--color-border);
}
.faqList li dl dt{
	padding:18px 40px 18px 55px;
	font-size:1.6rem;
	font-weight:700;
	position:relative;
	cursor:pointer;
	transition:all 0.5s ease;
}
.faqList li dl dt .icon {
	display:block;
	width:30px;
	height:30px;
	margin:auto 0;
	font-size:1.4rem;
	line-height:28px;
	text-align:center;
	color:#ffffff;
	background:var(--color-primary);
	border-radius:30px;
	position:absolute;
	top:0;
	bottom:0;
	left:15px;
}
.faqList li dl dt .plus{
	display:block;
	width:12px;
	height:12px;
	margin:auto 0;
	position:absolute;
	top:0;
	bottom:0;
	right:15px
}
.faqList li dl dt .plus::before{
	content: '';
	display:block;
	width:12px;
	height:2px;
	margin:auto;
	background:#0A0E1F;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	transition:all 0.5s ease;
}
.faqList li dl dt .plus::after{
	content: '';
	display:none;
	width:2px;
	height:12px;
	margin:auto;
	background:#0A0E1F;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	transition:all 0.5s ease;
}
.faqList li dl.close dt .plus::after{
	display:block;
}
.faqList li dl.close dt .plus::before{
	transform: rotate(180deg);
}
.faqList li dl dd{
	display:none;
	padding:15px 12px 15px 65px;
	font-size:1.4rem;
	border-top:1px solid var(--color-border);
	position:relative;
}
.faqList li dl dd .icon {
	display:block;
	width:30px;
	height:30px;
	margin:auto 0;
	font-size:1.4rem;
	line-height:28px;
	font-weight:700;
	text-align:center;
	color:#ffffff;
	background:#0A0E1F;
	border-radius:30px;
	position:absolute;
	top:0;
	bottom:0;
	left:25px;
}

/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){
	.faqList {
		margin:50px auto ;
	}
	.faqList li dl dt{
		padding:28px 80px;
		font-size:1.8rem;
	}
	.faqList li dl dt:hover{
		background:var(--color-secondary);
	}
	.faqList li dl dt .icon {
		width:40px;
		height:40px;
		font-size:1.8rem;
		line-height:38px;
		border-radius:40px;
		left:30px;
	}
	.faqList li dl dt .plus{
		width:23px;
		height:23px;
		right:30px
	}
	.faqList li dl dt .plus::before{
		width:23px;
		height:2px;
	}
	.faqList li dl dt .plus::after{
		width:2px;
		height:23px;
	}
	.faqList li dl dd{
		padding:25px 30px 25px 100px;
		font-size:1.6rem;
		position:relative;
	}
	.faqList li dl dd .icon {
		width:40px;
		height:40px;
		font-size:1.8rem;
		line-height:38px;
		border-radius:40px;
		left:50px;
	}
}



/* -------------------------------------------------
  point
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#contents_point .inner {
	width:100%;
	padding:50px 20px 0;
}
#contents_point .contentsTTL {
	margin-bottom:20px;
}
#contents_point .pointList {
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
#contents_point ul {
	position: relative;
	margin: -60px 0 50px;
	top: 70px;
}
#contents_point ul .box {
	width:100%;
	margin-top:15px;
	padding:25px 20px 25px 40px;
	text-align:left;
	background:#ffffff;
	border:1px solid #DEDAC8;
	border-radius:10px;
	position:relative;
}
#contents_point ul .box::after {
	content:"";
	display:block;
	width:60px;
	height:60px;
	background:url(/1cars/common/img/parts/corner.svg) no-repeat 0% 0%;
	background-size:60px auto;
	position: absolute;
	top:-2px;
	left:-2px;
	z-index:2;
}
#contents_point ul .box::before {
	content:"";
	display:block;
	position: absolute;
	top:4px;
	left:8px;
	z-index:3;
}
#contents_point ul .box.point1::before {
	background:url(/1cars/common/img/parts/point1.svg) no-repeat 50% 50%;
	width:20px;
	height:30px;
	background-size:20px auto;
}
#contents_point ul .box.point2::before {
	background:url(/1cars/common/img/parts/point2.svg) no-repeat 50% 50%;
	width:20px;
	height:30px;
	background-size:20px auto;
}
#contents_point ul .box.point3::before {
	background:url(/1cars/common/img/parts/point3.svg) no-repeat 50% 50%;
	width:20px;
	height:30px;
	background-size:20px auto;
}
#contents_point ul .box .ttl-s {
	margin-bottom:8px;
	font-size:1.8rem;
	line-height:1.5em;
	font-weight:700;
}
#contents_point ul .box p {
	font-size:1.4rem;
}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){
	#contents_point .inner {
		padding:50px 30px 0;
	}
	#contents_point ul {
		position: relative;
		margin: -65px 0 65px;
		top: 75px;
	}
	#contents_point ul .box {
		width:31%;
		padding:60px 15px 40px;
		text-align:center;
	}
	#contents_point ul .box::after {
		width:105px;
		height:105px;
		background-size:105px auto;
		top:-5px;
		left:-5px;
	}
	#contents_point ul .box::before {
		content:"";
		display:block;
		width:30px;
		height:38px;
		background-size:28px auto;
		position: absolute;
		top:14px;
		left:14px;
		z-index:3;
	}
	#contents_point ul .box.point1::before {
		background:url(/1cars/common/img/parts/point1.svg) no-repeat 50% 50%;
		width:30px;
		height:38px;
		background-size:28px auto;
	}
	#contents_point ul .box.point2::before {
		background:url(/1cars/common/img/parts/point2.svg) no-repeat 50% 50%;
		width:30px;
		height:38px;
		background-size:28px auto;
	}
	#contents_point ul .box.point3::before {
		background:url(/1cars/common/img/parts/point3.svg) no-repeat 50% 50%;
		width:30px;
		height:38px;
		background-size:28px auto;
	}
	#contents_point ul .box .ttl-s {
		margin-bottom:15px;
		font-size:2.4rem;
	}
}


/* -------------------------------------------------
  flow
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#flow {
	padding:0 0 50px;
}
#flow .ttl-s {
	font-size:2.4rem;
	font-weight:700;
	text-align:center;
}
#flow .cateTxt{
	width:110px;
	margin:20px auto;
	padding:15px 0 0;
	border-top:1px solid #0A0E1F;
	position:relative;
}
#flow .cateTxt span{
	display:block;
	width:70px;
	margin:0 auto;
	padding:0 5px;
	font-size: 1.6rem;
	line-height:16px;
	color: #0A0E1F;
	font-weight: 700;
	font-family: 'Lato', sans-serif;
	text-align:center;
	background:#ffffff;
	position:absolute;
	top:-8px;
	left:0;
	right:0;
}
#flow .flowList {
	width:100%;
	max-width:960px;
	margin:0 auto;
}
#flow .flowList li {
	position:relative;
}
#flow .flowList li:before {
	content:"";
	display:block;
	width:32px;
	height:32px;
	background:#0A0E1F;
	font-family: 'Lato', sans-serif;
	font-size:1.6rem;
	line-height:32px;
	text-align:center;
	color:#ffffff;
	border-radius:32px;
	position: absolute;
	z-index:3;
}
#flow .flowList li:nth-child(1):before {
	content:"1";
}
#flow .flowList li:nth-child(2):before {
	content:"2";
}
#flow .flowList li:nth-child(3):before {
	content:"3";
}
#flow .flowList li:nth-child(4):before {
	content:"4";
}
#flow .flowList li:after {
	content:"";
	display:block;
	background:var(--color-primary);
	position: absolute;
	z-index:2;
}
#flow .flowList li .stepTTL {
	padding:90px 0 15px;
	font-size:1.8rem;
	font-weight:700;
	text-align:center;
	position:relative;
}
#flow .flowList li .stepTTL::before {
	content:"";
	width:80px;
	height:50px;
	margin:0 auto;
	display:block;
	position:absolute;
	top:35px;
	left:0;
	right:0;
}
#flow .flowList li:nth-child(1) .stepTTL::before {
	background:url(/1cars/common/img/icon/smartphone.svg) no-repeat 50% 0% ;
	background-size:26px auto;
}
#flow .flowList li:nth-child(2) .stepTTL::before {
	background:url(/1cars/common/img/icon/hand.svg) no-repeat 50% 0%;
	background-size:53px auto;
}
#flow .flowList li:nth-child(3) .stepTTL::before {
	background:url(/1cars/common/img/icon/delivery.svg) no-repeat 50% 0%;
	background-size:60px auto;
}
#flow .flowList li:nth-child(4) .stepTTL::before {
	background:url(/1cars/common/img/icon/support.svg) no-repeat 50% 0%;
	background-size:38px auto;
}
#flow .flowList li .stepTTL::after {
	content:"";
	display:block;
	width:36px;
	height:1px;
	margin:0 auto;
	background:var(--color-primary);
	position:absolute;
	bottom:0;
	left:0;
	right:0;
}
#flow .flowList li .txt {
	margin:0 auto;
	font-size:1.4rem;
}

/*-------------------------------
	Display：767px →
-------------------------------*/
@media screen and (max-width: 767px){

	#flow .flowList {
		margin-top:-20px;
	}
	#flow .flowList li {
		width:90%;
		max-width:480px;
		margin:0 auto;
	}
	#flow .flowList li:before {
		margin:auto 0;
		top:30%;
		left:0;
	}
	#flow .flowList li:after {
		width:2px;
		top:0;
		left:16px;
	}
	#flow .flowList li:nth-child(1):after{
		height:70%;
		top:30%;
	}
	#flow .flowList li:nth-child(2):after,
	#flow .flowList li:nth-child(3):after{
		height:100%;
	}
	#flow .flowList li:nth-child(4):after{
		height:30%;
		bottom:30%;
	}
	#flow .flowList li .stepTTL {
		padding-top:80px;
		margin-bottom:15px;
	}
	#flow .flowList li .txt {
		width:75%;
	}
}

/*-------------------------------
	Display：← 768px
-------------------------------*/
@media print, screen and (min-width: 768px){

	#flow .flowList {
		padding:20px 20px 0;
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	#flow .flowList li {
		width:25%;
	}
	#flow .flowList li:before {
		margin:0 auto;
		top:-16px;
		left:0;
		right:0;
	}
	#flow .flowList li:after {
		height:2px;
		top:-1px;
	}
	#flow .flowList li:nth-child(1):after {
		width:50%;
		right:0;
	}
	#flow .flowList li:nth-child(2):after,
	#flow .flowList li:nth-child(3):after {
		width:100%;
	}
	#flow .flowList li:nth-child(4):after {
		width:50%;
		left:0;
	}
	#flow .flowList li .stepTTL {
		margin:20px 0 25px;
	}
	#flow .flowList li .txt {
		width:80%;
	}
}


/* -------------------------------------------------
  contents
------------------------------------------------- */
#contents .contentsTop .inner {
	padding:30px 15px;
}

/*-------------------------------
	Display：←320px
-------------------------------*/
@media screen and (max-width: 320px){
	#contents .contentsTop .inner {
		padding:30px 10px;
	}
}

/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){
	#contents .contentsTop .inner {
		padding:60px 20px;
	}
}



/* -------------------------------------------------
  pageNav
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
.pageNav {
	margin:40px 0 70px;
	border-radius:10px;
}
.pageNav li a{
	display:block;
	padding:12px 20px;
	font-size:16px;
	line-height:1.2em;
	color:#0A0E1F;
	font-weight:700;
	text-decoration:none;
	text-align:left;
	position:relative;
	transition:all 0.5s ease;
}
.pageNav li a::after{
	content: '';
	display:block;
	transform: rotate(90deg);
	position:absolute;
	transition:all 0.5s ease;
}


/*-------------------------------
	Display：← 960px 
-------------------------------*/
@media screen and (max-width: 959px){

	.pageNav {
		width:95%;
		max-width:960px;
		margin:0 auto 50px;
	}
	.pageNav li {
		width:100%;
		text-align:left;
	}
	.pageNav li:first-child {
		border-top:none;
	}
	.pageNav li a::after{
		width:20px;
		height:20px;
		margin:auto 0;
		background:url(/1cars/common/img/icon/right-arrow_bl.svg) no-repeat 50% 50%;
		background-size:7px auto;
		top:0;
		bottom:0;
		right:20px;
	}
	.pageNav li a {
		border-bottom:1px solid var(--color-border);
		border-left:1px solid var(--color-border);
		border-right:1px solid var(--color-border);
	}
	.pageNav li:first-child a {
		border-top:1px solid var(--color-border);
		border-radius:10px 10px 0 0;
	}
	.pageNav li:last-child a {
		border-radius:0 0 10px 10px;
	}
}

/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){

	.pageNav li {
		width:33.33%;
	}
	.pageNav li a {
		padding:20px 0 30px;
		font-size:16px;
		line-height:1.2em;
		text-align:center;
		border-left:1px solid var(--color-border);
		border-bottom:1px solid var(--color-border);
	}
	.pageNav li a:hover{
		background-color:var(--color-secondary);
	}
	.pageNav li a::after{
		width:20px;
		height:20px;
		margin:0 auto;
		background:url(/1cars/common/img/icon/right-arrow_bl.svg) no-repeat 50% 50%;
		background-size:18px auto;
		bottom:6px;
		left:0;
		right:0;
	}
	.pageNav li a:hover::after{
		bottom:3px;
	}
	.pageNav li:nth-child(-n+3) a {
		border-top:1px solid var(--color-border);
	}
	.pageNav li:nth-child(3n) a {
		border-right:1px solid var(--color-border);
	}
	.pageNav li:nth-child(1) a {
		border-radius:10px 0 0 0;
	}
	.pageNav li:nth-child(3) a {
		border-radius:0 10px 0 0;
	}
	.pageNav li:nth-last-child(1) a {
		border-radius:0 0 10px 0;
	}
	.pageNav li:nth-last-child(3) a {
		border-radius:0 0 0 10px;
	}
}




/* -------------------------------------------------
  parts
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
.pageTTL {
	margin:0 0 20px;
	font-size:2.4rem;
	line-height:1.6em;
	font-weight:700;
	letter-spacing:0.05em;
	text-align:center;
}
.sTTL {
	font-size:2.0rem;
	font-weight:700;
	letter-spacing:0.05em;
	text-align:center;
}
.ttl-kazari {
	display:block;
	text-align:center;
}
.ttl-kazari span {
	display:inline-block;
	padding:0 40px;
	font-size:1.8rem;
	font-weight:700;
	letter-spacing:0.1em;
	text-align:center;
	position:relative;
}
.ttl-kazariWH span {
	color: #fff;
}
.ttl-kazariBL span {
	color:  var(--color-primary);
}
.ttl-kazari span.s {
	font-size:1.8rem;
}
.ttl-kazari span::before,
.ttl-kazari span::after{
	content: '';
	display:block;
	width:20px;
	height:15px;
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:17px auto;
	margin:auto 0;
	position:absolute;
	top:0;
	bottom:0;
}
.ttl-kazariWH span::before,
.ttl-kazariWH span::after{
	background-image:url(/1cars/common/img/icon/ttl_kazari_wh.svg);
}
.ttl-kazariBL span::before,
.ttl-kazariBL span::after{
	background-image:url(/1cars/common/img/icon/ttl_kazari_bl.svg);
}
.ttl-kazari span::before{
	left:0;
}
.ttl-kazari span::after{
	right:0;
	transform: scale(-1, 1);
}
.ttl-kazari.siteCTxt span::before,
.ttl-kazari.siteCTxt span::after{
	background-image:url(/1cars/common/img/icon/ttl_kazari_ore.svg);
	background-size:17px auto;
}

.w1000{
	width:100%;
	max-width:1000px;
	margin:0 auto;
}

.btnL{
	display:block;
	width: 90%;
	max-width:320px;
	margin:0 auto;
	line-height: 66px;
	border-radius: 66px;
	font-size:1.9rem;
	font-weight:900;
	letter-spacing:0.1em;
	text-align: center;
	text-decoration:none;
	color:#0A0E1F;
	border: 2px solid var(--color-primary);
	background: #ffffff;
	position:relative;
}
.btnL::after{
	content: '';
	display:block;
	width:13px;
	height:25px;
	margin:auto 0;
	background:url(/1cars/common/img/icon/right-arrow_blk.svg) no-repeat 55% 50%;
	background-size:13px auto;
	position:absolute;
	top:0;
	bottom:0;
	right:28px;
}
.btnL.store::before{
	content: '';
	display:block;
	width:34px;
	height:23px;
	margin:auto 0;
	background:url(/1cars/common/img/icon/shop.svg) no-repeat 0% 50%;
	background-size:34px auto;
	position:absolute;
	top:0;
	bottom:0;
	left:28px;
}
.btnL:hover{
	letter-spacing:0.15em;
	color:#ffffff;
	background: var(--color-primary);
}
.btnL:hover::after{
	background:url(/1cars/common/img/icon/right-arrow_wht.svg) no-repeat 55% 50%;
	background-size:13px auto;
}
.btnL2{
	background-color: var(--color-primary);
	color: #fff;
	max-width: 340px;
}
.btnL2::after{
	background:url(/1cars/common/img/icon/right-arrow-circle_wh.svg) no-repeat 55% 50%;
	width: 34px;
  height: 34px;
	right: 20px;
}
.btnL2:hover{
	color:var(--color-primary);
	background: #fff;
}
.btnL2:hover::after{
	background:url(/1cars/common/img/icon/right-arrow-circle_bl.svg) no-repeat 55% 50%;
}

.btnM{
	display:block;
	width: 100%;
	max-width:340px;
	margin:0 auto;
	line-height: 54px;
	border-radius: 60px;
	font-size:1.6rem;
	font-weight:700;
	letter-spacing:0.1em;
	text-align: center;
	text-decoration:none;
	color:#0A0E1F;
	border: 2px solid var(--color-primary);
	background: #ffffff;
	position:relative;
}
.btnM::after{
	content: '';
	display:block;
	width:25px;
	height:25px;
	margin:auto 0;
	border:1px solid #ffffff;
	background:url(/1cars/common/img/icon/right-arrow_wht.svg) no-repeat 55% 50% var(--color-primary);
	background-size:10px auto;
	border-radius:25px;
	position:absolute;
	top:0;
	bottom:0;
	right:20px;
}
.btnM:hover{
	letter-spacing:0.15em;
	background: var(--color-secondary);
}
.btnM:hover::after{
	background-color:var(--color-primary);
}



.btnContact{
	display:block;
	width: 100%;
	max-width:550px;
	margin:30px auto 0;
	line-height: 80px;
	border-radius: 80px;
	font-size:2.0rem;
	font-weight:900;
	letter-spacing:0.1em;
	text-align: center;
	text-decoration:none;
	color:#ffffff;
	border: 2px solid var(--color-primary);
	background: var(--color-primary);
	position:relative;
}
.btnContact::after{
	content: '';
	display:block;
	width:25px;
	height:25px;
	margin:auto 0;
	border:1px solid #ffffff;
	background:url(/1cars/common/img/icon/right-arrow_wht.svg) no-repeat 55% 50%;
	background-size:10px auto;
	border-radius:25px;
	position:absolute;
	top:0;
	bottom:0;
	right:20px;
}
.btnContact:hover{
	letter-spacing:0.15em;
	color:var(--color-primary);
	background: #ffffff;
}
.btnContact:hover::after{
	background-color:var(--color-primary);
}

.btnContact2{
	display:block;
	width: 90%;
	max-width:220px;
	margin:0 auto;
	line-height: 36px;
	border-radius: 36px;
	font-size:1.8rem;
	font-weight:700;
	letter-spacing:0.1em;
	text-align: center;
	text-decoration:none;
	color:#ffffff;
	/* border: 2px solid var(--color-primary);
	background: var(--color-primary); */
	border: 2px solid var(--color-primary);
	background: var(--color-primary);
	position:relative;
}
.btnContact2::after{
	content: '';
	display:block;
	width:18px;
	height:18px;
	margin:auto 0;
	/* border:1px solid var(--color-primary); */
	border:1px solid var(--color-primary);
	background:url(/1cars/common/img/icon/right-arrow_blk.svg) no-repeat 55% 50% #ffffff;
	background-size:7px auto;
	border-radius:18px;
	position:absolute;
	top:0;
	bottom:0;
	right:10px;
}

.btnContact2.L{
	max-width:270px;
	line-height: 52px;
	border-radius: 52px;
	font-size:2.0rem;
	font-weight:900;
}
.btnContact2.L::after{
	width:25px;
	height:25px;
	border-radius:25px;
	right:20px;
}
.btnContact2.L:hover{
	letter-spacing:0.15em;
	/* color:var(--color-primary); */
	color:var(--color-primary);
	background: #ffffff;
}

.colorPickBtnOuter{
	padding-top: 20px;
}
.colorPickBtnOuter .btnContact2.L{
	font-size: 14px;
}

.textBox {
	padding:20px 15px;
	border-radius:10px;
	border:1px solid var(--color-border);
	position:relative;
}
.textBox .midashi{
	width:180px;
	margin:0 auto;
	font-weight:700;
	text-align:center;
	background:#ffffff;
	position:absolute;
	top:-1em;
	left:0;
	right:0;	
}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){

	.btnM{
		max-width:250px;
		line-height: 54px;
		border-radius: 60px;
		font-size:1.6rem;
	}
	.btnM::after{
		right:15px;
	}
}

/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){
	.pageTTL {
		font-size:3.0rem;
		letter-spacing:0.1em;
	}
	.sTTL {
		font-size:2.4rem;
		letter-spacing:0.1em;
	}
	.ttl-kazari span {
		padding:0 60px;
		font-size:3.0rem;
	}
	.ttl-kazari span.s {
		padding:0 60px;
		font-size:2.4rem;
	}
	.ttl-kazari span::before,
	.ttl-kazari span::after,
	.ttl-kazari.siteCTxt span::before,
	.ttl-kazari.siteCTxt span::after{
		width:30px;
		height:30px;
		background-size:29px auto;
	}
	.btnL{
		width: 100%;
		max-width:410px;
	}
	.btnL2{
		max-width: 520px;
	}
	
	.btnM{
		max-width:340px;
		line-height: 64px;
		border-radius: 70px;
		font-size:1.8rem;
	}
	
	.btnContact{
		line-height: 80px;
		border-radius: 80px;
		font-size:2.5rem;
	}
	.btnContact::after{
		width:34px;
		height:34px;
		background:url(/1cars/common/img/icon/right-arrow_wht.svg) no-repeat 55% 50%;
		background-size:15px auto;
		border-radius:34px;
		right:28px;
	}
	.btnContact2.L{
		max-width:440px;
		border-radius: 70px;
		line-height: 70px;
		font-size:2.4rem;
		font-weight:900;
	}
	.btnContact2.L::after{
		width:25px;
		height:25px;
		border-radius:25px;
		right:20px;
	}
	.textBox {
		padding:30px 20px;
	}
	.colorPickBtnOuter .btnContact2.L{
		font-size:2.2rem;
	}
	
	
}




/* -------------------------------------------------
  service-appeal
------------------------------------------------- */
.service-appeal {
	max-width:960px;
	margin:0 auto;
	padding:20px;
	background:var(--color-secondary);
	position:relative;
}
.service-appeal.v1 {
	width:90%;
}
.service-appeal.v2 {
	width:100%;
}
.service-appeal.v2 {
	padding:10px;
}
.service-appeal.v2 .catchCopy{
	color: var(--color-primary);
	font-weight: 900;
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
}
.service-appeal.v2 .catchCopy dt span{
	display: none;
}
.service-appeal.v2 .catchCopy dd{
	color: #fff;
	background: #0A0E1F;
	padding: 0 5px;
	margin-left: 3px;
}
.service-appeal.v2 .appealList li{
	height:64px;
}
.service-appeal.v2 .appealList li .ttl span{
	display:none;
}
.service-appeal.v2 .appealList li .ttl{
	padding-bottom:5px;
	font-size:1.0rem;
}
.service-appeal.v2 .appealList li .pointTxt{
	font-size:2.0rem;
	line-height:32px;
}
.service-appeal.v2 .appealList li .pointTxt .number{
	font-size:2.8rem;
}
.service-appeal.v2 .appealList li .pointTxt .uni{
	height:32px;
	font-size:1.2rem;
}
.service-appeal.v2 .appealList li .pointTxt .smallTxt{
	display:none;
}

.service-appeal.arrowUp::before {
	content:'';
	display:block;
	width: 0;
	height: 0;
	margin:0 auto;
	border-left:10px solid transparent;
	border-right:10px solid transparent;
	border-bottom:12px solid var(--color-secondary);
	position:absolute;
	top:-12px;
	left:0;
	right:0;
	z-index:1;
	transition:all 0.5s ease;
}
.service-appeal.arrowDown::before {
	content:'';
	display:block;
	width: 0;
	height: 0;
	margin:0 auto;
	border-left:10px solid transparent;
	border-right:10px solid transparent;
	border-top:12px solid var(--color-secondary);
	position:absolute;
	bottom:-12px;
	left:0;
	right:0;
	z-index:1;
	transition:all 0.5s ease;
}

.service-appeal .catchCopy{
	text-align:center;
}

.appealList{
	text-align:center;
}
.appealList li{
	width:19%;
	height:90px;
	padding:10px 6px;
	background:#FFFFFF;
}
.appealList li .ttl{
	padding-bottom:5px;
	font-size:1.2rem;
	font-weight:700;
	line-height:1em;
	border-bottom:1px solid #D3D3D3;
}
.appealList li .pointTxt{
	font-size:3.6rem;
	font-weight:700;
	color:var(--color-primary);
	line-height:52px;
}
.appealList li .pointTxt .number{
	display:inline-block;
	font-size:5.2rem;
	font-family: 'Lato', sans-serif;
}
.appealList li .pointTxt .uni{
	display:inline-block;
	height:52px;
	font-size:2.4rem;
	position:relative;
}
.appealList li .pointTxt .smallTxt{
	display:block;
	width:100%;
	text-align:center;
	font-size:0.6rem;
	line-height:1em;
	letter-spacing:0;
	position:absolute;
	top:3px;
}
_:-ms-lang(x), .appealList li .pointTxt .smallTxt {
	font-size:1.0rem;
}


/*-------------------------------
	Display：←320px
-------------------------------*/
@media print, screen and (max-width: 320px){
	.service-appeal {
		width:92.5%;
	}
}

/*-------------------------------
	Display：←959px 
-------------------------------*/
@media screen and (max-width: 959px){
	.service-appeal .catchCopy{
		width:100%;
	}
	.service-appeal.v1 {
		width:90%;
	}
	.service-appeal.v1 .appealList li{
		height:90px;
	}
	.service-appeal.v1 .appealList li:nth-of-type(1),
	.service-appeal.v1 .appealList li:nth-of-type(2),
	.service-appeal.v1 .appealList li:nth-of-type(3){
		width:31.83%;
		margin-bottom:6px;
	}
	.service-appeal.v1 .appealList li:nth-of-type(4),
	.service-appeal.v1 .appealList li:nth-of-type(5){
		width:49%;
	}
	
}
/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){
	.service-appeal .catchCopy{
		width:40%;
		padding-top:12px;
		float:left;
	}
	.service-appeal.v2 {
		padding: 20px;
	}
	.service-appeal.v2 .catchCopy{
		display: block;
		margin-bottom: 0px;
		text-align: center;
	}
	.service-appeal.v2 .catchCopy dt{
		font-size: 19px;
		margin-bottom: 6px;
	}
	.service-appeal.v2 .catchCopy dt span{
		display: inline;
	}
	.service-appeal.v2 .catchCopy dd{
		padding: 8px 0 12px;
		font-size: 32px;
		width: 312px;
		margin: 0 auto;
	}

	.service-appeal .appealList{
		width:59%;
		float:right;
	}
	.service-appeal.v2 .appealList li{
		height: 90px;
	}
	.service-appeal.v2 .appealList li .ttl{
		padding-bottom: 5px;
    font-size: 1.2rem;
	}
	.service-appeal.v2 .appealList li .pointTxt{
		font-size: 3.6rem;
    line-height: 52px;
	}
	.service-appeal.v2 .appealList li .pointTxt .number{
		font-size: 5.2rem;
	}
	.service-appeal.v2 .appealList li .pointTxt .uni{
		height: 52px;
    font-size: 2.4rem;
	}
	.service-appeal.v2 .appealList li .pointTxt .smallTxt{
		display: block;
		font-size: 10px;
	}
	.service-appeal.v2 .appealList li .ttl span{
		display:inline;
	}
}



/* -------------------------------------------------
  banner
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
.supportBanner {
	width:100%;
	margin:0 auto;
	background:var(--color-primary);
	text-align:center;
}
.supportBanner img {
	width:100%;
}

.supportBannerWide {
	width:100%;
	background:var(--color-primary);
	text-align:center;
}


/*-------------------------------
	Display：←559px
-------------------------------*/
@media screen and (max-width: 559px){
	.supportBanner {
		padding:30px 0;
	}
	.supportBanner img {
		width:100%;
	}
	.supportBannerWide img {
		width:100%;
		margin:0 auto;
	}
	
	
}

/*-------------------------------
	Display：560px →
-------------------------------*/
@media print, screen and (min-width: 560px){
	.supportBanner {
		width:95%;
		margin:0 auto 60px;
		border-radius:10px;
	}
	.supportBannerWide img {
		max-width:960px;
		width:100%;
	}
	.supportBanner {
		width:95%;
		max-width:960px;
		margin:0 auto 60px;
		border-radius:10px;
	}
	

}

/* -------------------------------------------------
  uchimura_carlife
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#uchimura_carlife {
	background:#efefef;
}
#uchimura_carlife .inner {
	width:100%;
	max-width:960px;
	margin:0 auto;
	padding:25px 20px 15px 260px;
	background:#efefef;
	position:relative;
}
#uchimura_carlife .uchimura_photo {
	width:190px;
	height:205px;
	margin:0;
	padding:0;
	position:absolute;
	bottom:0;
	left:20px;
	overflow: hidden;
}
#uchimura_carlife .uchimura_photo img{
	width:100%;
	vertical-align: bottom;
}
#uchimura_carlife .fukidashi {
	padding:20px;
	font-size:1.4rem;
	line-height:1.6em;
	text-align:center;
	background:#ffffff;
	border-radius:10px;
	position:relative;
}
#uchimura_carlife .fukidashi::after {
	content: '';
	width:28px;
	height:20px;
	display:block;
	border-top: 10px solid transparent;
	border-right: 28px solid #ffffff;
	border-bottom: 10px solid transparent;
	position:absolute;
}
#uchimura_carlife .fukidashi .catchcopy{
	margin-bottom:5px;
	font-size:2.4rem;
	line-height:1.3em;
	font-weight:700;
	color:#f37b45;
}
#uchimura_carlife .fukidashi .catchcopy span{
	display:inline-block;
}
#uchimura_carlife .profile {
	clear:both;
}
#uchimura_carlife .profile .logo{
	width:240px;
	height:34px;
	padding:5px 10px 0;
	text-align:right;
	background:#f47b46;
}
#uchimura_carlife .profile .logo img{
	width:148px;
}
#uchimura_carlife .profile .nameBox{
	height:34px;
	padding:0 15px;
	line-height:34px;
}
#uchimura_carlife .profile .nameBox span{
	display:inline-block;
	margin-left:10px;
	font-size:1.6rem;
}
#uchimura_carlife .profile .nameBox .post{
	margin-left:20px;
	font-size:2.4rem;
	font-weight:900;
}
#uchimura_carlife .profile .nameBox .name{
	font-size:2.4rem;
	font-weight:700;
}

/*-------------------------------
	Display：←350px
-------------------------------*/
@media print, screen and (max-width: 350px){
	#uchimura_carlife .profile .nameBox .post{
		display:block;
	}
}

/*-------------------------------
	Display：←559px
-------------------------------*/
@media print, screen and (max-width: 559px){

	#uchimura_carlife .inner {
		padding:25px 20px 60px;
	}
	#uchimura_carlife .uchimura_photo {
		width:160px;
		height:180px;
		position:absolute;
		bottom:0;
		left:-20px;
		overflow:hidden;
	}
	#uchimura_carlife .fukidashi {
		padding:18px;
		font-size:1.4rem;
		line-height:1.6em;
	}
	#uchimura_carlife .fukidashi::after {
		margin:0 auto;
		border-top: 10px solid transparent;
		border-right: 20px solid #ffffff;
		border-bottom: 10px solid transparent;
		transform: skewY(-50deg);
		left:0;
		right:0;
		bottom:-16px;
	}
	#uchimura_carlife .fukidashi .catchcopy{
		font-size:2.0rem;
		line-height:1.3em;
	}
	#uchimura_carlife .profile {
		margin-top:15px;
		margin-left:0px;
	}
	#uchimura_carlife .profile .logo{
		width:85%;
		height:34px;
		margin:30px 0 0 15%;
		padding:7px 15px 0;
	}
	#uchimura_carlife .profile .logo img{
		width:100px;
	}
	#uchimura_carlife .profile .nameBox{
		text-align:right;
		padding:10px;
	}
	#uchimura_carlife .profile .nameBox span{
		margin-left:5px;
		font-size:1.4rem;
	}
	#uchimura_carlife .profile .nameBox .post{
		font-size:2.0rem;
		line-height:1.3em;
	}
	#uchimura_carlife .profile .nameBox .name{
		font-size:2.0rem;
		line-height:1.3em;
	}
}

/*-------------------------------
	Display：560px →
-------------------------------*/
@media print, screen and (min-width: 560px){

	#uchimura_carlife .inner {
		padding:25px 25px 15px 190px;
	}
	#uchimura_carlife .uchimura_photo {
		left:0px;
	}
	#uchimura_carlife .fukidashi {
		padding:25px;
		font-size:1.6rem;
		line-height:1.6em;
	}
	#uchimura_carlife .fukidashi::after {
		margin:auto 0;
		transform: skewY(-30deg);
		left:-20px;
		top:0;
		bottom:0;
	}
	#uchimura_carlife .fukidashi .catchcopy{
		font-size:2.8rem;
		line-height:1.3em;
	}
	#uchimura_carlife .profile {
		margin-top:15px;
		margin-left:-60px;
	}
	#uchimura_carlife .profile .logo{
		width:180px;
		height:34px;
		padding:7px 10px 0;
		float:left;
	}
	#uchimura_carlife .profile .logo img{
		width:100px;
	}
	#uchimura_carlife .profile .nameBox span{
		margin-left:5px;
		font-size:1.4rem;
	}
	#uchimura_carlife .profile .nameBox .post{
		margin-left:15px;
		font-size:1.8rem;
	}
	#uchimura_carlife .profile .nameBox .name{
		font-size:1.8rem;
	}
}


/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){

	#uchimura_carlife .inner {
		padding:25px 30px 15px 260px;
	}
	#uchimura_carlife .uchimura_photo {
		left:70px;
	}
	#uchimura_carlife .fukidashi {
		padding:30px;
		font-size:1.8rem;
		line-height:1.6em;
	}
	#uchimura_carlife .fukidashi .catchcopy{
		font-size:3.2rem;
		line-height:1.3em;
	}
	#uchimura_carlife .profile .logo{
		width:240px;
		height:34px;
		padding:5px 10px 0;
		float:left;
	}
	#uchimura_carlife .profile .logo img{
		width:148px;
	}
	#uchimura_carlife .profile .nameBox span{
		margin-left:10px;
		font-size:1.6rem;
	}
	#uchimura_carlife .profile .nameBox .post{
		margin-left:20px;
		font-size:2.4rem;
	}
	#uchimura_carlife .profile .nameBox .name{
		font-size:2.4rem;
	}
	
}


/* -------------------------------------------------
  contents_security
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#contents_security {
	margin-top:30px;
	position:relative;
}

#contents_security .fukidashiTxt {
	width:100%;
	max-width:380px;
	margin:0 0 10px;
	padding:0;
	font-size:1.8rem;
	line-height:45px;
	font-weight:700;
	color:#ffffff;
	text-align:center;
	background:var(--color-primary);
	position:relative;
}
#contents_security .fukidashiTxt::after {
	content: "";
	display: block;
	width: 12px;
	height: 8px;
	margin:0 auto;
	padding:0;
	border-top: 8px solid var(--color-primary);
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	position:absolute;
	bottom:-8;
	left:0;
	right:0;
	box-sizing:border-box;
}
#contents_security .midashi {
	margin-bottom:15px;
	font-weight:700;
}
#contents_security .midashi {
	font-size:3.8rem;
	line-height:1.5em;
	font-weight:700;
}

#contents_security .imageBox ul{
	overflow:hidden;
}
#contents_security .imageBox ul li{
	width:25%;
	float:left;
}
#contents_security .imageBox ul li img{
	width:100%;
	max-width:110px;
	margin:0 auto;
}


/*-------------------------------
	Display：←767px
-------------------------------*/
@media print, screen and (max-width: 767px){

	#contents_security .inner {
		padding:0px 20px ;
	}
	#contents_security .dataBox {
		width:100%;
	}
	#contents_security .fukidashiTxt {
		max-width:280px;
		margin:0 auto 10px;
		font-size:1.5rem;
		line-height:38px;
	}
	#contents_security .midashi {
		font-size:3.2rem;
		line-height:1.5em;
		text-align:center;
	}
	#contents_security .imageBox {
		width:100%;
		margin-top:10px;
	}
	#contents_security .imageBox ul li{
		padding:5px 0;
	}
}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){

	#contents_security .inner {
		padding:0px 20px;
		max-width: 1000px;
		margin: 0 auto;
	}
	#contents_security .securityContents{
		display: flex;
		justify-content: space-between;
	}
	#contents_security .dataBox {
		width:45%;
		max-width:380px;
	}
	#contents_security .fukidashiTxt {
		max-width:380px;
		font-size:1.8rem;
		line-height:45px;
	}
	#contents_security .midashi {
		font-size:3.4rem;
		line-height:1.5em;
	}
	#contents_security .imageBox {
		width:50%;
	}
	#contents_security .imageBox ul li{
		padding:10px 0;
	}
}


/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){

	#contents_security .midashi {
		font-size:4rem;
		line-height:1.5em;
	}

	#contents_security .inner {
		padding-top: 20px;
	}
}


/* -------------------------------------------------
  contents_support
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#contents_support .inner {
	width:100%;
	max-width:1000px;
	margin:0 auto;
}
#contents_support .shopContents{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#contents_support .shopNumber {
	margin-bottom:5px;
	font-weight:700;
	color:var(--color-primary);
}
#contents_support .shopNumber sup{
	font-size:1.2rem;
	line-height:1em;
	color:#111111;
	vertical-align: top;
	position: relative;
	top: 6px;
	left:2px;
}
#contents_support .shopNumber img {
	width:120px;
	height:auto;
	margin-right:15px;
}
#contents_support .midashi {
	margin-bottom:3px;
	font-weight:700;
}


/*-------------------------------
	Display：←767px
-------------------------------*/
@media print, screen and (max-width: 559px){

	#contents_support .inner {
		padding:45px 0 45px 20px;
		overflow:hidden;
	}
	#contents_support .dataBox {
		width:75%;
		max-width:380px;
	}
	#contents_support .dataBox .txt {
		width:70%;
	}
	#contents_support .shopNumber {
		font-size:2.4rem;
		line-height:1em;
	}
	#contents_support .shopNumber img {
		width:80px;
		margin-right:5px;
		height:auto;
	}
	#contents_support .midashi {
		margin-bottom:0px;
		font-size:3.4rem;
		line-height:1.5em;
	}
	#contents_support .coutionTxt {
		font-size:12px;
	}
	#contents_support .imageBox {
		width:20%;
	}
	#contents_support .imageBox img {
		width:310px;
		max-width:310px;
		height:218px;
		position:relative;
		top:65px;
		right:100px;
	}

	#contents_support .toShopBtn{
		padding: 0 0 30px;
	}

}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 560px){

	#contents_support .inner {
		padding:60px 20px 0;
	}
	#contents_support .dataBox {
		width:45%;
		max-width:380px;
	}
	#contents_support .shopNumber {
		font-size:3.0rem;
		line-height:1em;
	}
	#contents_support .shopNumber img {
		width:100px;
		height:auto;
	}
	#contents_support .midashi {
		font-size:3.4rem;
		line-height:1.5em;
	}
	#contents_support .imageBox {
		width:50%;
	}
	#contents_support .imageBox img {
		margin-top:-20px;
		width:100%;
		height:auto;
	}
}

/*-------------------------------
	Display：960px →
-------------------------------*/
@media print, screen and (min-width: 960px){

	#contents_support .inner{
		padding-top: 20px;
	}
	#contents_support .shopContents{
		margin-top: 30px;
	}
	#contents_support .shopNumber {
		font-size:3.6rem;
		line-height:1em;
	}
	#contents_support .shopNumber img {
		width:120px;
		height:auto;
	}
	#contents_support .midashi {
		font-size:4rem;
		line-height:1.5em;
	}
	#contents_support .imageBox img {
		margin-top:-20px;
	}
}



/* -------------------------------------------------
  person-suitable-for-carleasing
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/

#person-suitable-for-carleasing {
	width:90%;
	margin:0 auto 45px;
	background:#FFF1EB;
	border-radius:10px;
	position:relative;
}
#person-suitable-for-carleasing .inner {
	padding:15px;
	position:relative;
}
#person-suitable-for-carleasing .boxTTL {
	margin:0 auto;
	text-align:center;
	color:#ffffff;
	background:#0a0e1f;
	position:absolute;
	left:0;
	right:0;
}
#person-suitable-for-carleasing .leadTxt {
	margin-bottom:25px;
	font-size:1.6rem;
	line-height:1.8em;
	font-weight:700;
	text-align:center;
}

#person-suitable-for-carleasing .detailList {
	width:100%;
	margin:0 auto 40px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#person-suitable-for-carleasing .detailList > li{
	width:100%;
	padding:15px;
	background:#ffffff;
	border-radius:10px;
	border:1px solid #DEDAC8;
	position:relative;
}
#person-suitable-for-carleasing .detailList > li .midashi{
	margin-bottom:15px;
	font-size:2.0rem;
	line-height:1.5em;
	font-weight:700;
	text-align:center;
}
#person-suitable-for-carleasing .detailList > li:first-child .midashi{
	color:#f27b4d;
}
#person-suitable-for-carleasing .detailList > li:last-child .midashi{
	color:#35859a;
}
#person-suitable-for-carleasing .detailList > li li {
	padding:5px 0 5px 1.5em;
	position:relative;
}
#person-suitable-for-carleasing .detailList > li li::before {
	content: '';
	display:block;
	width:15px;
	height:15px;
	margin:auto 0;
	background:#fbd4b6;
	border:2px solid #f5964f;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	z-index:1;
}
#person-suitable-for-carleasing .detailList > li:first-child li:before {
	background:#fbd4b6;
	border:2px solid #f5964f;
}
#person-suitable-for-carleasing .detailList > li:last-child li::before {
	background:#b8dee6;
	border:2px solid #35859a;
}


/*-------------------------------
	Display：←767px
-------------------------------*/
@media print, screen and (max-width: 767px){
	#person-suitable-for-carleasing .inner{
		padding:30px 15px;
	}
	#person-suitable-for-carleasing .boxTTL {
		width:300px;
		height:32px;
		font-size:1.6rem;
		line-height:30px;
		border-radius:30px;
		top:-16px;
	}
	#person-suitable-for-carleasing .detailList {
  		-ms-flex-wrap: wrap;
  		flex-wrap: wrap;
		margin-bottom:25px;
	}
	#person-suitable-for-carleasing .detailList > li{
		padding:20px;
		margin-bottom:20px;
	}
	#person-suitable-for-carleasing .detailList > li:last-child{
		margin-bottom:0;
	}
	#person-suitable-for-carleasing .detailList > li .midashi{
		margin-bottom:10px;
		font-size:1.8rem;
	}
	
}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){
	#person-suitable-for-carleasing {
		width:95%;
		max-width:1200px;
		margin:0 auto 90px;
	}
	#person-suitable-for-carleasing .inner{
		padding:50px;
	}
	#person-suitable-for-carleasing .boxTTL {
		width:380px;
		height:42px;
		font-size:2rem;
		line-height:40px;
		border-radius:42px;
		top:-21px;
	}
	#person-suitable-for-carleasing .leadTxt {
		margin-bottom:30px;
		font-size:1.8rem;
	}
	#person-suitable-for-carleasing .detailList {
		width:95%;
		max-width:960px;
	}
	#person-suitable-for-carleasing .detailList > li{
		padding:35px;
		width:48.5%;
	}
	#person-suitable-for-carleasing .detailList > li .midashi{
		margin-bottom:15px;
		font-size:2.0rem;
	}
	
}




/* -------------------------------------------------
  #campaign
------------------------------------------------- */

/*-------------------------------
	Display：common
-------------------------------*/
#camp_uchimura {
	margin-top:80px;
	background:#efefef;
}
#page-about #camp_uchimura,
#page-faq #camp_uchimura {
	margin-top:0;
}

#camp_uchimura .inner {
	width:95%;
	max-width:960px;
	margin:0 auto;
	padding:0 0 50px;
	background:#efefef;
	position:relative;
}
#camp_uchimura .imageBox {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-pack: wrap;
	flex-wrap: wrap;
}
#camp_uchimura .imageBox .gift{
	width:55%;
	padding-left:3%;
}
#camp_uchimura .imageBox .photo{
	width:42%;
}
#camp_uchimura .imageBox .gift img{
	width:100%;
	max-width:491px;
	vertical-align: bottom;
}
#camp_uchimura .imageBox .photo img{
	width:100%;
	max-width:395px;
	vertical-align: bottom;
}

#campaign {
	margin-top:80px;
	background:#efefef;
}
#campaign .inner {
	width:95%;
	max-width:960px;
	margin:0 auto;
	padding:40px 0 ;
	background:#efefef;
	position:relative;
}
#campaign .imageBox img{
	width:100%;
	vertical-align:bottom;
}
.camp_detail {
	background:#ffffff;
	border-radius:0 0 15px 15px;
	position:relative;
}
.camp_detail .midashi{
	width:200px;
	margin:0 auto;
	font-size:1.6rem;
	line-height:30px;
	font-weight:700;
	text-align:center;
	color:#ffffff;
	background:#e6774d;
	border-radius:30px;
	position:absolute;
	top:-15px;
	left:0;
	right:0;
}
.camp_detail .catchcopy {
	margin-bottom:15px;
	font-size:2.4rem;
	line-height:1.3em;
	font-weight:700;
	color:#e6774d;
	text-align:center;
}
.camp_detail .txt {
	padding:0 10px;
}
.camp_detail .dataList {
	margin:25px 0;
}
.camp_detail .dataList dt {
	font-weight:700;
	clear: both;
	float: left;
}
.camp_detail .dataList dd {
	border-top:1px solid #dedede
}
.camp_detail .dataList dd:last-child {
	border-bottom:1px solid #dedede
}
.camp_detail .dataList dd .presentList {
	margin-top:10px;
}
.camp_detail .dataList dd .presentList li {
	padding:5px 0 5px 28px;
	position:relative;
}
.camp_detail .dataList dd .presentList li .mark {
	display:block;
	width:22px;
	height:22px;
	font-size:1.2rem;
	line-height:22px;
	text-align:center;
	letter-spacing:0;
	color:#ffffff;
	background:#e6774d;
	border-radius:22px;
	position:absolute;
	top:6px;
	left:0;
}

/*-------------------------------
	Display：←320px
-------------------------------*/
@media print, screen and (max-width: 320px){

	.camp_detail .catchcopy {
		font-size:2.0rem;
		line-height:1.3em;
	}

}

@media print, screen and (max-width: 540px){

	#campaign .imageBox .imgSP{
		display:block;
	}
	#campaign .imageBox .imgPC{
		display:none;
	}
}
@media print, screen and (min-width: 541px){
	#campaign .imageBox .imgSP{
		display:none;
	}
	#campaign .imageBox .imgPC{
		display:block;
	}

}

/*-------------------------------
	Display：←767px
-------------------------------*/
@media print, screen and (max-width: 767px){

	#camp_uchimura .imageBox .gift{
		width:100%;
		text-align:center;
	}
	#camp_uchimura .imageBox .gift img{
		width:95%;
		margin:-30px auto 50px;
	}
	#camp_uchimura .imageBox .photo{
		width:100%;
		margin-top:-50px;
		text-align:center;
	}
	#camp_uchimura .imageBox .photo img{
		width:90%;
		margin:20px auto 0;
	}
	.camp_detail {
		padding:30px 20px 20px;
	}
	.camp_detail .txt {
		font-size:0.86em;
	}
	.camp_detail .dataList dt {
		width:100%;
		padding:15px 0 10px;
	}
	.camp_detail .dataList dd {
		width:100%;
		padding:15px 10px;
		font-size:0.86em;
	}
	.camp_detail .dataList dd .presentList li {
		font-size:1.4rem;
	}
}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 767px){

	#camp_uchimura .imageBox{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	#camp_uchimura .imageBox .gift{
		width:55%;
		padding-left:3%;
	}
	#camp_uchimura .imageBox .photo{
		width:42%;
	}
	
	#camp_uchimura .imageBox .gift img{
		margin-top:-50px;
	}
	#camp_uchimura .imageBox .photo img{
		margin-top:-30px;
	}
	.camp_detail {
		padding:40px 50px;
	}
	.camp_detail .midashi{
		width:230px;
		font-size:2.0rem;
		line-height:34px;
		border-radius:34px;
		top:-17px;
	}
	.camp_detail .catchcopy {
		margin-bottom:20px;
	}
	.camp_detail .dataList dt {
		width:200px;
		padding:15px 0 15px 10px;
	}
	.camp_detail .dataList dd {
		padding:15px 15px 15px 200px;
	}
	.camp_detail .txt{
		text-align: center;
	}
}

/* -------------------------------------------------

  noridoki-free Bnr 

------------------------------------------------- */
.nrdkFreeBnr a .imgPc{
	display: none;
}
.nrdkFreeBnr{
	padding: 0 20px 0;
	margin-bottom: 40px;
}
@media print, screen and (min-width: 768px){
	.nrdkFreeBnr a .imgSp{
		display: none;
	}
	.nrdkFreeBnr a .imgPc{
		display: block;
	}
}
@media print, screen and (min-width: 960px){
	.nrdkFreeBnr{
		max-width: 960px;
		padding: 0;
		margin:0 auto 40px;
	}
	.nrdkFreeBnr:hover{
		opacity: 0.6;
		transition: all .4s;
	}
}

/* -------------------------------------------------

  secSupport

------------------------------------------------- */
.secSupport .supportNum{
	position: relative;
	margin-bottom: 20px;
}
.secSupport .supportNum::after{
	position: absolute;
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	background: #0A0E1F;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	z-index: -1;
}
.secSupport .supportNum span{
	font-weight: 900;
	font-family: 'Lato';
	color: #fff;
	border-radius: 100%;
	background: #0A0E1F;
	font-size: 21px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}


/* -------------------------------------------------

  tasucutter3

------------------------------------------------- */

#tasucutter3 {
	width:100%;
	max-width:1000px;
	margin:-40px auto 0;
	padding:0 20px;
}
#tasucutter3 .fukidashi{
	display:inline-block;
	position:relative;
}
#tasucutter3 .fukidashi::after {
	content: '';
	display:block;
	width:98px;
	height:98px;
	margin:0 auto;
	background-image:url(/1cars/common/img/tasucutter3/icon_q.svg);
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:100% auto;
	position:absolute;
	top:-60px;
	left:0;
	right:0;
	z-index:10;
}

#tasucutter3 .fukidashi .txt{
	font-weight:700;
	position:relative;
	z-index:3;
}
#tasucutter3 .fukidashi .bg1,
#tasucutter3 .fukidashi .bg2{
	display:block;
	width:100%;
	height:100%;
	border:3px solid #0A0E1F;
	border-radius:13px;
	position:absolute;
}
#tasucutter3 .fukidashi .bg1{
	background:#fff0eb;
	top:0;
	left:0;
	z-index:2;
}
#tasucutter3 .fukidashi .bg2{
	background:#0A0E1F;
	bottom:-4px;
	right:-3px;
	z-index:1;
}
#tasucutter3 .fukidashi .bg1::before,
#tasucutter3 .fukidashi .bg1::after,
#tasucutter3 .fukidashi .bg2::after {
	content: '';
	display:block;
	width: 0;
	height: 0;
	border-style: solid;
	position:absolute;
}
#tasucutter3 .fukidashi .bg1::before {
	z-index:2;
}
#tasucutter3 .fukidashi .bg1::after,
#tasucutter3 .fukidashi .bg2::after {
	z-index:1;
}
#tasucutter3 .tasucutterHead{
	padding: 30px 0 15px;
}
#tasucutter3 .tasucutterHead .ttl{
	font-size: 32px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 15px;
}
#tasucutter3 .tasucutterHead .ttl img{
	margin-top: 10px;
	max-width: 305px;
}

#tasucutter3 .serviceNamePc {
	padding:10px 5px 0;
}
#tasucutter3 .serviceNamePc .txt{
	font-size:2.3rem;
	line-height:1.3em;
	font-weight:900;
}
#tasucutter3 .serviceNamePc .serviceName{
	width:100%;
	max-width:540px;
	margin-top:5px;
}
#tasucutter3 .serviceNamePc .serviceName img{
	width:100%;
	height:auto;
	vertical-align: bottom;
}
#tasucutter3 .hoshoIconPc img {
	width:100%;
	height:auto;
	vertical-align: bottom;
}

#tasucutter3 .flex-between{
	background:var(--color-tertiary);
	border-radius:10px;
}
#tasucutter3 .hoshoDetail {
	position:relative;
}
#tasucutter3 .hoshoDetail .inBox{
	padding:0 0 20px;
}
#tasucutter3 .hoshoDetail .catchcopySp {
	padding:15px 0;
	font-size:1.5rem;
	line-height:1.5em;
	font-weight:700;
	text-align:center;
}
#tasucutter3 .hoshoDetail .catchcopy {
	width:90%;
	max-width:302px;
	margin:0 auto;
	padding:18px 0;
}
#tasucutter3 .hoshoDetail .catchcopy img {
	width:100%;
	height:auto;
	vertical-align: bottom;
}
#tasucutter3 .hoshoDetail .hoshoIconSp img {
	width:100%;
	height:auto;
	vertical-align: bottom;
}
#tasucutter3 .hoshoDetail .hoshoList {
	padding:0 20px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
#tasucutter3 .hoshoDetail .hoshoList li {
	border-radius:10px;
	overflow:hidden;
	background:#ffffff;
}
#tasucutter3 .hoshoDetail .hoshoList li figure {
	margin:0;
	padding:0;
}
#tasucutter3 .hoshoDetail .hoshoList li figure img{
	width:100%;
	height:auto;
	vertical-align: bottom;
}
#tasucutter3 .hoshoDetail .hoshoList li .price{
	padding:4px 6px;
	background:var(--color-primary);
	text-align:center;
}
#tasucutter3 .hoshoDetail .hoshoList li .price img{
	width:100%;
	max-width:200px;
	height:auto;
	margin:0 auto;
	vertical-align: bottom;
}
#tasucutter3 .hoshoDetail .hoshoList li .name{
	padding:8px 5px;
	font-size:1.6rem;
	line-height:2.8em;
	text-align:center;
	font-weight:700;
}
#tasucutter3 .hoshoDetail .hoshoList li .name.l2{
	line-height:1.4em;
}
#tasucutter3 .cautionBoxPc {
	display:none;
	padding:30px 0;
	font-size:1.1rem;
	line-height:1.8em;
	color:#666666;
}

@media print, screen and (max-width: 767px){
	#tasucutter3 .fukidashi {
		width:100%;
		padding:25px 20px 25px 100px;
		margin-bottom:15px;
	}
	#tasucutter3 .fukidashi::after {
		width:76px;
		height:76px;
		margin:auto 0;
		top:0;
		bottom:0;
		left:13px;
		border-radius:78px;
	}
	#tasucutter3 .fukidashi .txt{
		font-size:1.5rem;
		line-height:1.6em;
	}
	#tasucutter3 .fukidashi .bg1,
	#tasucutter3 .fukidashi .bg2{
		width:100%;
		border-radius:80px;
	}
	#tasucutter3 .fukidashi .bg1::before {
		margin:0 auto;
		border-width: 16px 8px 0 8px;
		border-color: #fff0eb transparent transparent transparent;
		bottom:-15px;
		left:0;
		right:0;
	}
	#tasucutter3 .fukidashi .bg1::after,
	#tasucutter3 .fukidashi .bg2::after {
		margin:0 auto;
		border-width: 19px 11px 0 11px;
		border-color: #0A0E1F transparent transparent transparent;
		bottom:-19px;
		left:0;
		right:0;
	}
	#tasucutter3 .serviceNamePc,
	#tasucutter3 .hoshoIconPc {
		display:none;
	}
	
	#tasucutter3 .hoshoDetail {
		width:100%;
	}
	#tasucutter3 .hoshoDetail .hoshoList li {
		width:48%;
		margin:5px 0;
	}
	#tasucutter3 .hoshoDetail .betailBtn{
		width:90%;
		max-width:300px;
		margin-top:15px;
	}
	
}

@media print, screen and (min-width: 767px){

	#tasucutter3 .fukidashi {
		width:30%;
		padding:42px 22px 15px;
	}
	#tasucutter3 .fukidashi::after {
		width:98px;
		height:98px;
		margin:0 auto;
		border:3px solid #0A0E1F;
		top:-60px;
		left:0;
		right:0;
		border-radius:98px;
	}
	
	#tasucutter3 .fukidashi .txt {
		font-size:1.8rem;
		line-height:1.6em;
	}
	#tasucutter3 .fukidashi .bg1,
	#tasucutter3 .fukidashi .bg2{
		border-radius:18px;
	}
	#tasucutter3 .fukidashi .bg1::before {
		border-width: 8px 0 8px 16px;
		border-color: transparent transparent transparent #fff0eb;
		top:18px;
		right:-15px;
	}
	#tasucutter3 .fukidashi .bg1::after {
		border-width: 11px 0 11px 19px;
		border-color: transparent transparent transparent #0A0E1F;
		top:15px;
		right:-19px;
	}
	#tasucutter3 .fukidashi .bg2::after {
		border-width: 11px 0 11px 19px;
		border-color: transparent transparent transparent #0A0E1F;
		top:15px;
		right:-19px;
	}
	
	#tasucutter3 .serviceNamePc {
		width:65%;
	}

	#tasucutter3 .flex-between{
		padding:0 20px;
	}

	#tasucutter3 .hoshoIconPc {
		width:30%;
		margin-top:25px;
	}
	#tasucutter3 .hoshoDetail {
		width:68%;
		margin-top:25px;
	}
	#tasucutter3 .catchcopySp,
	#tasucutter3 .hoshoIconSp {
		display:none;
	}
	#tasucutter3 .hoshoDetail .hoshoList li {
		width:23.5%;
	}
	#tasucutter3 .cautionBoxPc {
		display:block;
	}
	#tasucutter3 .hoshoDetail .hoshoList li .name{
		font-size:1.4rem;
		line-height:2.8em;
	}
	#tasucutter3 .hoshoDetail .betailBtn{
		position:absolute;
		bottom:15px;
		right:0;
	}
}

@media print, screen and (min-width: 960px){
	
	#tasucutter3 .tasucutterHead{
		padding-top: 65px;
	}
	.secSupport .supportNum span{
		width: 48px;
		height: 48px;
		font-size: 28px;
	}
	#tasucutter3 .tasucutterHead .ttl{
		font-size: 42px;
		letter-spacing: 2.5px;
	}
	#tasucutter3 .tasucutterHead .ttl img{
		width: 440px;
		max-width: 100%;
		margin-left: 5px;
	}

	#tasucutter3 .flex-between{
		padding:10px 35px;
	}
	
	#tasucutter3 .hoshoDetail .hoshoList li .name{
		font-size:1.6rem;
		line-height:2.8em;
	}
}

/* -------------------------------------

サポートエリア

--------------------------------------*/
.secSupport .secSupportHead{
	padding-bottom: 30px;
	text-align: center;
}
.secSupport .secSupportHead p{
	position: relative;
	text-align: center;
	margin-bottom: 16px;
}
.secSupport .secSupportHead p::before{
	content: "";
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	top: 23px;
	left: 0;
	background: #0A0E1F;
	z-index: -1;
}
.secSupport .secSupportHead p img{
	width: 200px;
}
.secSupport .secSupportHead .ttlWrap{
	position: relative;
}
.secSupport .secSupportHead .ttlWrap img{
	width: 120px;
	position: absolute;
	top: -17px;
	right:50%;
	margin-right: -86px;
}
.secSupport .secSupportHead .ttlWrap h2{
	color: var(--color-primary);
	font-weight: 700;
	font-size: 32px;
}
.secSupport .secSupportHead .ttlWrap h2 span{
	font-size: 90px;
	font-weight: 900;
  font-family: 'Lato', sans-serif;
}
@media print, screen and (min-width: 960px){
	.secSupport .secSupportHead{
		margin-top: -30px;
		padding-bottom: 40px;
	}
	.secSupport .secSupportHead p{
		margin-bottom: 30px;
	}
	.secSupport .secSupportHead p::before{
		height: 3px;
		top: 35px;
	}
	.secSupport .secSupportHead p img{
		width: 305px;
	}
	.secSupport .secSupportHead .ttlWrap h2{
		font-size:42px;
	}
	.secSupport .secSupportHead .ttlWrap h2 span{
		font-size: 140px;
	}
	.secSupport .secSupportHead .ttlWrap img{
		width: 170px;
		top: -24px;
		margin-right: -130px;
	}
}


/* -------------------------------------------------

  flex

------------------------------------------------- */
.flex-wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
.flex-between {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  gap: 7px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex-between-wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
.between-center{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.between-center-wrap{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}


/* -------------------------------------------------
  pagetop
------------------------------------------------- */

#pagetop {
	width:36px;
	height:36px;
	background:#0a0e1f;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
	position:fixed;
	right:10px;
	bottom:-100px;
	z-index:9991;
	transition:all 0.5s ease;
	border-radius:36px;
}
#pagetop.view {
	bottom:78px;
}
#pagetop::after {
	content: '';
	margin:auto;
	width: 10px;
	height: 10px;
	border-left: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position:absolute;
	top:45%;
	left:0;
	right:0;
}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){

	#pagetop {
		width:48px;
		height:48px;
		right:15px;
		border-radius:48px;
	}
	#pagetop::after {
		width: 12px;
		height: 12px;
		border-left: 2px solid #ffffff;
		border-top: 2px solid #ffffff;
		top:48%;
	}
	#pagetop.view {
		bottom:15px;
	}
	
}

/* ------------------------------------

NORIDOKIってどうなのバナー

------------------------------------*/
.worryBnr{
	padding-bottom: 20px;
}
.worryBnr a{
	display: block;
	height: 100%;
	width: 90%;
	margin: 0 auto;
}
.worryBnr .imgPc{
	display: none;
}
@media print, screen and (min-width: 768px){
	.worryBnr a{
		width: 400px;
	}
}
@media print, screen and (min-width: 960px){
	.worryBnr{
		padding-bottom: 0px;
		margin-top: 40px;
		padding-top: 0px;
	}
	#page-home .worryBnr,
	#page-about .worryBnr{
		margin-bottom: 0;
	}
	.worryBnr a{
		width:934px;
	}
	.worryBnr a:hover{
		opacity: 0.6;
	}
	.worryBnr .imgPc{
		display: block;
	}
	.worryBnr .imgSp{
		display: none;
	}
}


/*-----------------------------------------------------------------

	column

-----------------------------------------------------------------*/

#column{
	background: #fff0eb;
	margin-top: 40px;
}
#column .inner {
	position:relative;
	padding: 40px 0;
	border-bottom: 1px solid var(--color-primary);
}
#column .fukidashiBox {
	width: 200px;
	margin: 0 auto 5px;
	padding: 2px;
	font-size: 1.15em;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	background: #171717;
	position: relative;
}
#column .fukidashiBox::after {
	display: block;
	content: '';
	margin: 0 auto;
	width: 0;
	height: 0;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-top: 10px solid #171717;
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	transition: all 0.5s ease;
}
#column .headLine {
	font-size: 1.86em;
	line-height: 1.5;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	transition: all 0.5s ease;
}
#column .headLine .subTTL{
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	color: var(--color-primary);
	display: block;
	padding: 10px 0 0;
	letter-spacing: 1.8px;
}
#column .magazineLogo {
	width:180px;
	height:32px;
	margin:25px auto 15px;
}
/* #column .scWrap{
	position: relative;
	overflow: auto;
} */
#column .columnList {
	width:100%;
	margin:20px 0 5px;
	padding:0 20px;
}
#column .scroll-hint .columnList{
	width:920px;
}
#column .columnList li {
	width:100%;
	background:#ffffff;
	border-radius:8px;
	position:relative;
	overflow:hidden;
	margin-right: 2%;
	vertical-align: top;
	display: inline-block;
}
#column .scroll-hint .columnList li{
	width:32%;
}
#column .columnList li:last-child{
	margin-right: 0;
}
#column .columnList li .in{
	padding:20px 25px 100px;
}
#column .columnList li .columnimg{
	overflow:hidden;
}
#column .columnList li .columnimg img{
	vertical-align:bottom;
	transition: all 0.5s ease;
}
#column .columnList li .columnimg:hover img{
	transform: scale(1.1, 1.1);
	opacity:0.6;
}
#column .columnList li .category{
	font-size:1.4rem;
	color:#3C3C3C;
}
#column .columnList li .subHeading{
	padding:3px 0;
	font-size:1.8rem;
	line-height:1.6;
	font-weight:700;
}
#column .columnList li .subHeading a{
	padding:3px 0;
	color:#171717;
	text-decoration:none;
	transition: all 0.5s ease;
}
#column .columnList li .subHeading a:hover{
	opacity:0.6;
}

#column .columnList li .tag{
	font-size:1.2rem;
	line-height:1.8;
}
#column .columnList li .tag a{
	display:inline-block;
	margin-right:1em;
	text-decoration:none;
}
#column .columnList li .editor {
	padding:20px 25px 20px 80px;
	font-size:1.2rem;
	line-height:1.5;
	position:absolute;
	bottom:0;
	left:0;
}
#column .columnList li .editor figure{
	width:46px;
	height:46px;
	border-radius:100%;
	position:absolute;
	top:22px;
	left:25px;
}
#column .columnList li .editor .date{
	color:#626262;
}
#column .columnList li .editor .name{
	font-weight:700;
	color:#3C3C3C;
}
#column .btn.w400 {
	max-width: 400px;
}
#column .btn {
	display: block;
	width: 85%;
	padding: 0 15px;
	margin: 0 auto;
	font-size: 1.4em;
	line-height: 48px;
	font-weight: 700;
	color: var(--color-primary);
	text-align: center;
	text-decoration: none;
	background: #ffffff;
	border: 2px solid var(--color-primary);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	transition: all 0.5s ease;
}
#column .btn::after {
	display: block;
	content: '';
	margin: auto;
	width: 10px;
	height: 10px;
	-webkit-transform: rotate(
45deg);
	transform: rotate(
45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5%;
	border-top: 2px solid var(--color-primary);
	border-right: 2px solid var(--color-primary);
	transition: all 0.5s ease;
}

/*----------------------------------------------------------
	Display：920px →（ pc ）
----------------------------------------------------------*/

@media screen and (min-width:920px) {
	#column{
		margin-top: 80px;
	}
	#column .inner {
		position:relative;
		padding: 60px 0 ;
		border-bottom: 1px solid var(--color-primary);
	}
	#column .fukidashiBox {
    width: 250px;
    margin: 0 auto 10px;
    padding: 5px;
	}
	#column .magazineLogo {
		width:220px;
		height:39px;
		margin:0;
		position:absolute;
		top:60px;
		right:5%;
	}
	#column .scroll-hint .columnList,
	#column .columnList{
		width:90%;
	}
	#column .columnList {
		max-width:1400px;
		margin:30px auto 20px;
		padding:0;
		text-align: center;
	}
	#column .scroll-hint .columnList li,
	#column .columnList li{
		width:32%;
	}
	#column .columnList li{
		text-align: left;
	}
	#column .columnList li .in{
		padding:25px 30px 100px;
	}
	#column .columnList li .editor {
		padding:25px 30px 25px 80px;
	}
	#column .btn {
    line-height: 58px;
		margin-top: 20px;
	}
	#column .headLine .subTTL{
		font-size: 18px;
	}
}

/* -------------------------------------

The Final　バナー

--------------------------------------*/
body .uchimuraYT{
	padding-bottom: 20px;
}
.bnrThefinal .bnrPc{
	display: none;
}
.bnrThefinal {
	padding:10px ;
}
#page-home .bnrThefinal {
	padding:10px 30px 30px;
}
.bnrThefinal a{
	display: block;
	height: 100%;
}
.bnrThefinal a:hover{
	opacity: 0.4;
}
@media screen and (min-width: 768px){
	.bnrThefinal .bnrSp{
		display: none;
	}
	.bnrThefinal .bnrPc{
		display: block;
	}
}
@media screen and (min-width: 960px){
	.bnrThefinal {
		padding:30px 0px 0;
		width: 960px;
		margin: 0 auto;
	}
	#page-home .bnrThefinal {
		padding:20px 0px 30px;
	}
}

/* ダイナースバナー */
.dcBnr{
	padding: 25px 25px 0;
	/* ダイナース非対応の場合はこれを活性化 */
	/* display: none; */
}
.dcBnr a{
	display: block;
	height: 100%;
}
@media print, screen and (max-width: 320px){
	.dcBnr{
		padding: 25px 20px 0;
	}
}
@media print, screen and (min-width: 768px){
	.dcBnr{
		width: 90%;
		margin: 0 auto;
		padding: 25px 20px 0;
	}
}
@media print, screen and (min-width: 960px){
	.dcBnr{
		width: 960px;
		padding: 25px 15px 0;
	}
	.dcBnr a:hover{
		opacity: 0.6;
	}
}


/* -------------------------------------

Car　バナー

--------------------------------------*/
#pickupCarlist{
	margin: 20px 0;
}
#pickupCarlist h2 .subTTL{
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 14px;
	text-align: center;
	color: var(--color-primary);
	display: block;
	padding-bottom: 6px;
}
.carBnr {
	overflow-x: scroll;
	width:100%;
	padding:0;
	padding-bottom:10px;
	margin:0 auto;
	max-width: 1220px;
}
#page-car .carBnr{
	margin-top: 20px;
	max-width: 1000px;
}
.carBnr ul{
	width:1000px;
	padding:0 15px;
}
.carBnr ul li {
	width:19%;
	max-width:290px;
}
.carBnr ul li a{
	display: block;
	height: 100%;
	transition: all .8s ease 0s;
}
.carBnr ul li a:hover{
	opacity:0.6;
	transform:scale(1.05,1.05);
}
.carBnr ul li a img{
	border-radius: 6px;
	vertical-align: top;
}
.camBnr{
	padding: 0 30px 0;
	margin: 0 0 40px;
}

/*-------------------------------
	Display：768px →
-------------------------------*/
@media print, screen and (min-width: 768px){
	#pickupCarlist {
    margin-bottom: 40px;
	}
	.carBnr {
		max-width: 1280px;
		padding:0 30px;
		overflow: hidden;
	}
	.carBnr ul{
		width: 100%;
		max-width:1220px;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}
	.carBnr ul li {
		max-width:390px;
		width: 30%;
	}
	.camBnr {
		/* 秋キャンの横長バナーでは記述なし */
		padding: 0 46px;
		margin: 0 0 40px;
	}
}
@media print, screen and (min-width: 960px){
	.carBnr ul{
		padding: 0;
		padding: 10px 0;
	}
	#pickupCarlist {
		margin: 40px 0 80px;
}
	#pickupCarlist h2 .subTTL{
		font-size: 18px;
	}
	.camBnr{
		max-width: 900px;
		padding: 0;
		margin: -44px auto 30px;
		transition:all 0.6s ease;
	}
	/* .camBnr{ ※秋キャンの横長
		margin:-60px auto 70px;
		transition:all 0.6s ease;
	} */
	.camBnr:hover{
    opacity: 0.5;
    transform: scale(1.02);
  }
}

/* -------------------------------------

特選車一覧_Car　バナー

--------------------------------------*/
#page-carlist #pickupCarlist h2{
	display: none;
}
@media print, screen and (min-width: 768px){
	#page-carlist #pickupCarlist{
		margin: 20px 0 0;
	}
	#page-carlist .camBnr{
		margin: 20px auto 0;
		padding: 0 44px 0;
	}
}
@media print, screen and (min-width: 960px){
	#page-carlist .camBnr{
		padding: 0 30px 0;
	}
}

/* -------------------------------------

年数注釈

--------------------------------------*/
.notes2year{
	font-size: 10px;
	line-height: 1;
	display: block;
	padding-top: 15px;
}


/* -------------------------------------

フッター問い合わせ　LINEあり

--------------------------------------*/
.secContactBlockWrap{
  margin-top: 20px;
}
.secContactBlock{
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 32%;
  margin-right: 2%;
}
.secContactBlock:last-child{
  margin-right: 0;
}
.secContactPc{
  display: none;
}
.secContactSp a{
  display: block;
  height: 100%;
  padding: 25px 0 20px;
  text-decoration: none;
  color: #222;
  font-weight: bold;
  font-size: 16px;
}
.secContactSp a img{
  display: block;
  width: 52px;
  margin: 0 auto 15px;
}
p.secContactSp{
  font-size: 12px;
  color: #4B4B4B;
  text-align: center;
  padding-top: 20px;
}
@media print, screen and (min-width: 960px){

  .secContactBlockWrap{
    margin-top: 30px;
  }
  .secContactBlock{
    width: 300px;
    margin-right: 30px;
  }
  .secContactSp{
    display: none;
  }
  .secContactPc{
    display: block;
    padding: 20px 20px 0;
    height: 160px;
  }
  .secContactPc h3{
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 0;
		text-align: left;
  }
  .secContactPc h3 span{
    padding-top: 6px;
    display: inline-block;
  }
  .secContactPc h3 img{
    margin-right: 15px;
    vertical-align: top;
    display: inline-block;
    width: 37px;
  }
  .blockForm .secContactPc a{
    display: block;
    width: 205px;
    line-height: 40px;
    background: var(--color-primary);
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    margin:26px auto 0;
    text-decoration: none;
  }
  .secContactPc a:hover{
    opacity: 0.5;
    transform: scale(1.04);
  }
  .blockLine .secContactPc{
    padding: 20px 20px 15px;
  }
	.blockLine .secContactPc a{
		display: block;
		height: 100%;
		color: #4B4B4B;
		text-decoration: none;
	}
  .blockLine .secContactPc div{
    overflow: hidden;
  }
  .blockLine .secContactPc div p.txt{
    font-size: 10px;
    color: #4B4B4B;
    width: 100%;
    padding-top: 5px;
    line-height: 1.4;
  }
	.blockLine .secContactPc div .linebtn{
		width: 205px;
    line-height: 40px;
    background: #57b536;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    margin: 10px auto 0;
		height:40px;
		padding: 0;
	}
  .blockLine .secContactPc div img{
    float: right;
    width: 65px;
  }
  .blockTel .secContactPc div{
    color: #4B4B4B;
    margin-top: 20px;
  }
  .blockTel .secContactPc div span{
    display: block;
    font-weight: bold;
    font-family: 'Lato';
    font-size: 26px;
    letter-spacing: 2px;
    color: #7A7CB2;
    margin-bottom: 8px;
  }
}

/* -------------------------------------

フッター固定 問合せ。車種一覧

--------------------------------------*/
.ftFixBtn{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9990;
	width: 100%;
	box-shadow: 0px -1px 15px rgba(0,0,0,0.3);
	text-align: center;
	padding: 10px;
	background-color: rgba(0,0,0,0.4);
	/* background-color: #FFF1EB; */
}
#page-carlist .ftFixBtn{
	display: none;
}

.ftFixBtn a{
	line-height: 60px;
	display: block;
	text-align: center;
	text-decoration: none;
	background-color: #fff;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
	/* background: var(--color-primary);
	color: #fff; */
	background-repeat: no-repeat;
	background-position: left 15px top 17px;
	background-image: url(/1cars/car/img/carlistimg.png);
	background-size: 90px auto;
	letter-spacing: 2px;
	font-weight: 700;
	font-size: 18px;
	padding-left: 30px;
	border-radius: 6px;
	position: relative;
}
.ftFixBtn a::after{
	display: block;
	content: '';
	margin: auto;
	width: 8px;
	height: 8px;
	-webkit-transform: rotate( 45deg);
	transform: rotate( 45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 7%;
	border-top: 1px solid var(--color-primary);
	border-right: 1px solid var(--color-primary);
	transition: all 0.5s ease;
}

@media print, screen and (min-width: 960px){
	.ftFixBtn{
		padding: 20px 0;
	}
	.ftFixBtn a{
		width: 600px;
		margin: 0 auto;
		line-height: 70px;
		padding-left: 0;
		letter-spacing: 3px;
		background-position: left 20px top 15px;
		background-size: 180px auto;
	}
	.ftFixBtn a::after{
		width: 10px;
		height: 10px;
		right: 5%;
	}
	.ftFixBtn a:hover{
		background-color: var(--color-primary);
		color: #fff;
	}
	.ftFixBtn a:hover::after{
		border-top: 1px solid #Fff;
		border-right: 1px solid #Fff;
	}
}

/* -------------------------------------

フッター 問合せ

--------------------------------------*/
.footContact{
	background: var(--color-secondary);
	padding: 30px 0px;
}
.footContact .textC{
	margin-bottom: 20px;
}
.footContact .contentsTTL {
	margin:0 0 20px;
	font-size:3.2rem;
	font-weight:700;
	letter-spacing:0.05em;
	text-align:center;
	line-height: 1.2;
}
.footContact .subTTL{
	font-size:14px;
	text-align:center;
	color: var(--color-primary);
	display: block;
	padding-bottom: 6px;
	border: none;
}
@media print, screen and (min-width: 768px){
	.footContact{
		padding: 60px 0px 40px;
	}
	.footContact .textC{
		margin-bottom: 40px;
	}
	.footContact .textC br{
		display: none;
	}
}
@media print, screen and (min-width: 960px){
	.footContact .contentsTTL {
		margin:0 0 25px;
		font-size:3.6rem;
	}
	.footContact .subTTL{
		font-size:18px;
		padding-bottom: 14px;
	}
}
