/* 共通 -------------------*/
/*基本フォント指定*/
section * {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
/*Safari対策*/
a {
	font-family: 'Noto Sans JP', sans-serif;
}




/* ページ見出し -------------------*/
h2.title {
	background-color: #FB8C38;
	padding: 30px 0;
	font-size: 32px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
}
h2.title > div {
	font-size: 20px;
	font-weight: 600;
	color: #333333;
	text-align: center;
}
h2.title > div span {
	font-size: 22px;
	color: #F2002D;
	font-weight: 600;
}
h2.title > div span b {
	font-size: 36px;
	padding: 0 5px;
}





/* 検索エリア -------------------*/
section.newsearch_list {
	background-color: #FFF3D3;
	padding: 60px 0 50px;
}
section.newsearch_list > div {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
/* 見出し */
section.newsearch_list .search_title {
	width: 100%;
	margin: 0 auto 40px;
	position: relative;
	text-align: center;
}
section.newsearch_list .search_title::before {
	content: "";
	display: block;
	border-top: 2px solid #371E1E;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
}
section.newsearch_list .search_title span {
	display: inline-block;
	background: #FFF3D3;
	padding: 0 20px;
	position: relative;
	z-index: 2;
	font-size: 22px;
	font-weight: bold;
	color: #371E1E;
}
section.newsearch_list .search_title span::before {
	content: "\f002";
    color: #371E1E;
    font-size: 22px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    vertical-align: baseline;
	margin-right: 2px;
}

/* 車種リスト */
section.newsearch_list .car_type_list {
	width: 100%;
	max-width: 912px;
	margin: 0 auto 78px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
section.newsearch_list .car_type_list li {
	width: 120px;
}
section.newsearch_list .car_type_list li a {
	display: block;
	width: 100%;
	text-align: center;
	padding: 8px 15px;
	background-color: #FFFFFF;
	border: 1px solid #F39800;
	border-radius: 5px;
	filter: drop-shadow(0 3px 3px rgb(0 0 0 / .2));
}
section.newsearch_list .car_type_list li a img {
	width: 90px;
	height: auto;
}
/* 車種名 */
section.newsearch_list .car_type_list li p {
	font-size: 16px;
	font-weight: bold;
	color: #371E1E;
	text-align: center;
}
/* 価格リスト */
section.newsearch_list .price_list {
	width: 100%;
	max-width: 912px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
section.newsearch_list .price_list li {
	width: 142px;
}
section.newsearch_list .price_list li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70px;
	font-size: 20px;
	font-weight: bold;
	color: #371E1E;
	line-height: 1.2;
	background-color: #FFFFFF;
	border: 1px solid #F39800;
	border-radius: 5px;
	filter: drop-shadow(0 3px 3px rgb(0 0 0 / .2));
}
/* hover */
section.newsearch_list .car_type_list li a:hover,
section.newsearch_list .price_list li a:hover {
	filter: drop-shadow(0 0px 0px rgb(0 0 0 / .2)) brightness(1.02);
}





/* 掲載車両一覧 -------------------*/
section.new_carlist  {
	background-color: #F8F3F1;
	padding-bottom: 70px;
}
section.new_carlist ul {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
section.new_carlist li {
    width: 332px;
    padding: 20px 9px 30px;
	outline: 1px solid #DCDCDC;
	outline-offset: -1px;
    
    overflow: hidden;
	background-color: #FFF;

}
/* メーカー・車種名 */
section.new_carlist .card_name {
    margin-bottom: 12px;
    line-height: 1;
}
section.new_carlist .card_name > span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 5px;
}
section.new_carlist .card_name > p {
    font-size: 18px;
    font-weight: bold;
    color: #222222;
}
/* 各種タグ設定 */
section.new_carlist .tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}
section.new_carlist .tags span {
    font-size: 12px;
    font-weight: bold;
    color: #EA5532;
    padding: 1px 7px;
    border-radius: 2px;
    border: 1px solid;
    border-color: #EA5532;
}
/* 中古車 */
section.new_carlist .tags span.used {
    border-color: #2fb66a;
    color: #2fb66a;
}
/* チョイ乗り車 */
section.new_carlist .tags span.choi {
    border-color: #00B9E7;
    color: #00B9E7;
}
/* 駆動方式 */
section.new_carlist .tags span.wd2 {
    border-color: #F06BB6;
    color: #F06BB6;
}
section.new_carlist .tags span.wd4 {
    border-color: #856ACB;
    color: #856ACB;
}
/* 店舗名 */
section.new_carlist .tags span.shop {
    border-color: #F47D31;
    color: #F47D31;
}

section.new_carlist .card_body {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
section.new_carlist .pic {
    width: 170px;
}
section.new_carlist .pic > img {
    width: 100%;
    height: auto;
}

section.new_carlist .price_box {
    width: calc(100% - 179px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* 支払総額 */
section.new_carlist .price_box > p {
    font-size: 14px;
    font-weight: bold;
    color: #666666;
    text-align: center;
    background-color: #F3F5F7;
    border-radius: 12px;
    padding: 2px 0;
}
section.new_carlist .price_box > p span {
    font-size: 12px;
}
section.new_carlist .price_box > .total_price {
    font-size: 37px;
    color: #F2002D;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
section.new_carlist .price_box > .total_price span {
    font-size: 16px;
    font-weight: bold;
    margin-left: 2px;
}
/* 車両価格 + 諸費用 */
section.new_carlist .price_box > .prices dl {
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
}
section.new_carlist .price_box > .prices dl dt,
section.new_carlist .price_box > .prices dl dd {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
}

/* スペック */
section.new_carlist .specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
section.new_carlist .specs dl {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
section.new_carlist .specs dt {
	width: 42px;
	height: 20px;
	font-size: 12px;
	font-weight: 600;
	color: #666666;
	text-align: center;
	background-color: #F3F5F7;
}
section.new_carlist .specs dd {
	width: calc(100% - 48px);
	font-size: 12px;
	font-weight: 400;
	color: #666666;
	/* line-height: 24px; */
}
/* ローン支払 */
section.new_carlist .loan {
    font-size: 14px;
    color: #666666;
    text-align: center;
    padding: 2px 0;
    background-color: #F3F5F7;
    border-radius: 2px;
    margin-bottom: 20px;
}
section.new_carlist .loan .details {
    font-weight: bold;
    color: #1400FF;
    margin-left: 8px;
}
/* ボタン */
section.new_carlist .car_btn {
    display: flex;
    justify-content: space-between;
}
section.new_carlist .car_btn > a {
    display: block;
    width: 150px;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    padding: 13px 0;
    border-radius: 8px;
    filter: drop-shadow(0 3px 3px rgb(0 0 0 / .2));
}
section.new_carlist .car_btn > a.view {
    background: linear-gradient(to right, #F83D5C, #FD4B2F);
}
section.new_carlist .car_btn > a.reserve {
    background: linear-gradient(to right, #00DCE8, #0062FF);
}
/* hover */
section.new_carlist .car_btn > a:hover {
    opacity: 0.8;
    filter: drop-shadow(0 0px 0px rgb(0 0 0 / .2));
}






/* ページネーション -------------------*/
.pagenation {
	display: flex;
	justify-content: center;
	margin: 80px auto 0;
	line-height: 1.0;
	font-size:14px;
}
.pagenation span {
	display: block;
	margin: 0 39px;
	position:relative;
	float:left;
}
.pagenation span.prev a,
.pagenation span.next a {
	width:30px;
	height:30px;
	box-sizing:border-box;
	background:#fff;
	color:#888888;
	/* padding:7px 3px; */
	border: 1px solid #888888;
	text-decoration:none;
}
.pagenation span.prev a:hover,
.pagenation span.next a:hover {
	color:#fff;
	background:#888888;
	text-decoration:none;
}
.pagenation span.prev.current,
.pagenation span.next.current {
	display: none;
}
.pagenation span.prev.current:after,
.pagenation span.next.current:after,
.pagenation span.prev a:after,
.pagenation span.next a:after {
	display: none;
}
.pagenation span.current {
	box-sizing: border-box;
	display:block;
	float:left;
	color: #ffffff;
	padding: 10px 7px;
	background:#f39800;
	position: relative;
	margin: 0 39px;
}
.pagenation span a:after {
	display: block;
	background:#888;
	content: "";
	width: 102px;
	height: 3px;
	position: absolute;
	bottom: -9px;
	left: -40px;
}
.pagenation span a:hover:after {
	display: block;
	background: url(/images/pager_under_current.png)no-repeat;
	content: "";
	width: 102px;
	height: 23px;
	position: absolute;
	bottom: -24px;
	left: -40px;
}
.pagenation span.next a:hover:after,
.pagenation span.prev a:hover:after {
	display:none;
}
.pagenation span.scope_limit {
	color: #f39800;
	padding: 5px 0;
	text-decoration: none;
	background-color: unset;
    border: none;
}
.pagenation span a {
	box-sizing: border-box;
	display: inline-block;
	color:#f39800;
	padding: 10px 7px;
	background: #0071ca;
	position: relative;
	background: #ffffff;
}
.pagenation span a:hover {
	color:#ffffff;
	background: #f39800;
	text-decoration: none;
}

@media screen and (max-width: 736px) {
	body .pagenation span,
	.pagenation span.prev,
	.pagenation span.first,
	.pagenation span.current,
	.pagenation span.last,
	.pagenation span.next{
		display: inline-block;
		float: none;
		margin: 0 !important;
		padding: 10px;
	}
	.pagenation span a:hover:after {
		display: none;
	}
	.pagenation span.scope_limit{
		/*display: none;*/
		margin-left: -1.5vw !important;
	}
	.pagenation span.current::after{
		display: none;
	}
}
.pagenation span.current:after {
	background: none;
}
.pagenation span a:hover:after {
	background: none;
}
.pagenation span {
	font-size: 22px;
	font-weight: bold;
	color: #FB8C38;
	background-color: #fff;
	border: 1px solid #FB8C38;
	border-radius: 5px;
	text-align: center;
	width: 48px;
	height: 48px;
	margin-left: 10px;
	margin-right: 10px;
}
.pagenation span a {
	background-color: transparent;
	width: 100%;
	height: 100%;
	padding-left: 0;
	padding-right: 0;
}
.pagenation span.current {
	color: #fff;
	background-color: #FB8C38;
	margin-left: 10px;
	margin-right: 10px;
	padding-left: 0;
	padding-right: 0;
}
.pagenation span.prev,
.pagenation span.next {
	width: 112px;
	/* padding: 5px 0; */
}
.pagenation span.prev a,
.pagenation span.next a {
	background-color: transparent;
	color: transparent;
	border: none;
	width: 100%;
	height: 100%;
}
.pagenation span.prev a:hover,
.pagenation span.next a:hover {
	background-color: #FB8C38;
	color: transparent;
}
.pagenation span.prev,
.pagenation span.next {
	margin-top: 0 !important;
}
.pagenation span a:after {
	display: none;
}
.pagenation span.prev a::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	content: '前へ';
	color: #FB8C38;
}
.pagenation span.next a::before {
	display: block;
	height: 34px;
	content: '次へ';
	color: #FB8C38;
}
.pagenation span.prev a:hover::before,
.pagenation span.next a:hover::before {
	color: #fff;
}






/*新cvエリア（クルマ探しはプロにお任せください） -------------------*/
section.car_search_cv > div {
	width: 90%;
	max-width: 1140px;
	margin: 100px auto 100px;
	position: relative;
}
section.car_search_cv > div > img {
	display: block;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 422px;
	height: auto;
}
/*車探しはプロにご相談ください！*/
section.car_search_cv > div > h3 {
	width: 100%;
	background-color: #FB8C39;
	padding: 13px 0;
	border-radius: 12px 12px 0 0; 
	font-size: 32px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
}
section.car_search_cv > div > h3 span {
	font-size: 38px;
}
section.car_search_cv > div > h3 span::before {
	background-image: url(../images/car_search/car_icon.png);
	content: '';
	display: inline-block;
	width: 70px;
	height: 38px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
	margin-right: 8px;
}
section.car_search_cv > div > div {
	width: 100%;
	background-color: #FFF;
	padding: 30px 0 40px;
	border: 2px solid #FB8C39;
	border-radius: 0 0 12px 12px;
}
section.car_search_cv > div > div ul {
	width: 920px;
	margin: 0 auto 20px;
	height: 52px;
	background-color: #F2F2F2;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	padding:0 46px;
	position: relative;
}
section.car_search_cv > div > div ul::after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	bottom: -11px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #F2F2F2 transparent transparent transparent;
	border-width: 11px 10px 0 10px;
}
section.car_search_cv > div > div ul li {
	font-size: 16px;
	font-weight: 500;
	color: #333333;
}
section.car_search_cv > div > div ul li::before {
	background-image: url(../images/car_search/icon_worries.png);
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
	margin-right: 10px;
}

section.car_search_cv > div > div > div {
	width: 920px;
	margin: 0 auto 30px;
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-bottom: 30px;
}
section.car_search_cv > div > div > div::after {
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../images/car_search/line_pc.png);
	content: '';
	display: inline-block;
	width: 920px;
	height: 14px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
section.car_search_cv > div > div > div > img {
	width: 351px;
	height: 188px;
}
section.car_search_cv > div > div > div > div {
	width: calc(100% - 391px);
	height: 188px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
section.car_search_cv > div > div > div > div h4 {
	font-size: 24px;
	font-weight: 500;
	color: #ED6103;
	margin-bottom: 20px;
}
section.car_search_cv > div > div > div > div p {
	font-size: 18px;
	font-weight: 500;
	color: #000000;
	line-height: 1.6;
}
section.car_search_cv > div > div > div > div p span {
	color: #ED6103;
	font-weight: 600;
}
/*ご来店WEB予約する*/
section.car_search_cv > div > div > a {
	margin-top: 12px;
	position: relative;
}
section.car_search_cv > div > div > img {
	width: 320px;
	height: auto;
	display: block;
	margin: 0 auto;
}


/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 1080px) {
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/


/* ページ見出し -------------------*/
h2.title {
	font-size: min(7vw,22px);
	padding: 25px 0;
}
h2.title > div {
	font-size: 16px;
}
h2.title > div span {
	font-size: 18px;
}
h2.title > div span b {
	font-size: 30px;
}








/* 検索エリア -------------------*/
section.newsearch_list {
	padding: 30px 0 40px;
}
section.newsearch_list > div {
	width: 95%;
	max-width: 600px;
}
/* 見出し */
section.newsearch_list .search_title {
	width: 100%;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
}
section.newsearch_list .search_title span {
	font-size: 18px;
}
section.newsearch_list .search_title span::before {
	font-size: 18px;
}

/* 車種リスト */
section.newsearch_list .car_type_list {
	width: 100%;
	margin: 0 auto 35px;
	justify-content: center;
	gap: 8px;
}
section.newsearch_list .car_type_list li {
	width: 31%;
}
section.newsearch_list .car_type_list li a {
	width: 100%;
	padding: 8px 10px;
}
section.newsearch_list .car_type_list li a img {
	width: 100%;
	max-width: 80px;
	height: auto;
	margin: 0 auto;
}
/* 車種名 */
section.newsearch_list .car_type_list li p {
	font-size: min(3vw,14px);
}
/* 価格リスト */
section.newsearch_list .price_list {
	width: 100%;
	justify-content: center;
	gap: 8px;
}
section.newsearch_list .price_list li {
	width: 31%;
}
section.newsearch_list .price_list li a {
	font-size: min(5vw,16px);
	height: 66px;
}





/* 掲載車両一覧 -------------------*/
section.new_carlist li {
    width: 50%;
}






/* ページネーション -------------------*/
.pagenation {
	margin-top: 30px;
}
.pagenation span {
	font-size: 16px;
	width: 34px;
	height: 34px;
	line-height: 34px;
	padding: 0 !important;
}
div.pagenation span.page,
div.pagenation span.first,
div.pagenation span.last,
div.pagenation span.prev {
	margin-right: 1.5vw !important;
}
div.pagenation span.prev {
	margin-left: 0 !important;
}
div.pagenation span.next {
	margin-right: 0 !important;
}
.pagenation span.prev a,
.pagenation span.next a {
	width: 40px;
	height: 34px;
	white-space: nowrap;
	padding: 0;
}
.pagenation span a {
	padding: 0;
}
.pagenation span.current {
	width: 34px;
	height: 34px;
}
.pagenation span.prev,
.pagenation span.next {
	width: 40px;
}





/*新cvエリア（クルマ探しはプロにお任せください） -------------------*/
section.car_search_cv > div {
	margin: 80px auto 60px;
	max-width: 600px;
}
section.car_search_cv > div > img {
	width: 90%;
	max-width: 350px;
	top: -35px;
}
/*車探しはプロにご相談ください！*/
section.car_search_cv > div > h3 {
	font-size: 24px;
	padding: 9px 0;
}
section.car_search_cv > div > h3 span {
	font-size: 34px;
}
section.car_search_cv > div > div {
	padding: 22px 0 40px;
}
section.car_search_cv > div > div ul {
	width: 90%;
	height: auto;
	flex-wrap: wrap;
	padding: 16px 25px;
}
section.car_search_cv > div > div ul li {
	width: 100%;
	font-size: 15px;
	margin-top: 5px;
	margin-bottom: 5px;
}
section.car_search_cv > div > div ul li::before {
	width: 16px;
	height: 16px;
}

section.car_search_cv > div > div > div {
	width: 90%;
	flex-wrap: wrap;
	margin: 0 auto 23px;
}
section.car_search_cv > div > div > div::after {
	width: 100%;
	background-image: url(../images/car_search/line_sp.png);
}
section.car_search_cv > div > div > div > img {
	width: 100%;
	height: auto;
}
section.car_search_cv > div > div > div > div {
	width: 100%;
	height: auto;
	padding-bottom: 20px;
}
section.car_search_cv > div > div > div > div h4 {
	font-size: min(6vw,24px);

	font-weight: 500;
	color: #ED6103;
	margin-bottom: 20px;
}
section.car_search_cv > div > div > div > div p {
	font-size: 16px;
}
/*ご来店WEB予約する*/
section.car_search_cv > div > div > a {
	width: 90%;
	max-width: 320px;
	font-size: min(5vw,18px);
	padding: 12px 15px;
}
section.car_search_cv > div > div > a.btn:before {
	left: 26px;
}
section.car_search_cv > div > div > img {
	width: 90%;
	max-width: 320px;
}






/*フッター調整用 -------------------*/
footer p.copy {
	padding-bottom: 10px;
	font-size: 12px;
}
/*■■■■■■■■■■■■■■ sp1 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■ sp1 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/






/*■■■■■■■■■■■■■■ sp2 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 664px) {
*{}
/*■■■■■■■■■■■■■■ sp2 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/



/* 掲載車両一覧 -------------------*/
section.new_carlist {
    padding-bottom: 30px;
}
section.new_carlist li {
    width: 100%;
    padding: 20px 20px 30px;
}
section.new_carlist .pic {
    width: 48%;
    /* max-width: 170px; */
}
section.new_carlist .price_box {
    width: 48%;
    justify-content: flex-start;
}
/* 支払総額 */
section.new_carlist .price_box > .total_price {
    font-size: min(12vw,40px);
}
section.new_carlist .price_box > .total_price span {
    font-size: min(5vw,18px);
}
/* 車両価格 + 諸費用 */
section.new_carlist .price_box > .prices dl dt,
section.new_carlist .price_box > .prices dl dd {
    font-size: 14px;
}

/* ボタン */
section.new_carlist .car_btn > a {
    width: 48%;
    font-size: min(5vw,16px);
}


/*■■■■■■■■■■■■■■ sp2 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■ sp2 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/