@charset "UTF-8";
/* ============================================
   4WD特集ページ（feature-4wd）
   作法: coding-rules/style_guide.md 準拠
   ・色は直値／クラスは最小限（要素セレクタで辿る）
   ・SPはファイル末尾に max-width:1079px で一括
   ・シェル（renew_common.css）は変更しない
============================================ */

/* 共通 *******************/
/*このページの基本文字*/
#container * {
	font-family: 'Noto Sans JP', "Yu Gothic", "Meiryo", sans-serif;
}
#container main img {
	max-width: 100%;
	height: auto;
}
/*英数字（価格など）*/
#container .eisu {
	font-family: Arial, sans-serif;
}
/*内側幅はシェルの .wrapper（max-width:1140px）をそのまま使う。
  ここでID付きの上書きを置くと各セクションの個別指定に勝ってしまうため置かない*/




/* 追従グローバルメニュー（PCのみ・スクロール時） *******************/
div.top_floating_gv_menu {
	display: none;
	width: 100%;
	height: 80px;
	padding: 10px 0;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	left: 0;
}
div.top_floating_gv_menu.is-active {
	display: block;
	position: fixed;
	top: 0;
	z-index: 9;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
div.top_floating_gv_menu > div {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}
div.top_floating_gv_menu > div > a img {
	width: min(17vw, 240px);
	height: auto;
	float: left;
	margin-top: 20px;
	margin-left: 10px;
}
div.top_floating_gv_menu > div > ol {
	width: 864px;
	display: flex;
	justify-content: space-between;
	float: right;
	margin-top: 7px;
}
div.top_floating_gv_menu > div > ol > li {
	width: 16.6667%;
	border-left: 1px solid #fae9bb;
	text-align: center;
}
div.top_floating_gv_menu > div > ol > li:last-of-type {
	border-right: 1px solid #fae9bb;
}
div.top_floating_gv_menu > div > ol > li > a {
	display: block;
	padding: 15px 0;
	font-size: 16px;
	font-weight: 700;
	color: #6a6661;
}
div.top_floating_gv_menu > div > ol > li > a:hover {
	background-color: #fefbf9;
	color: #ed6103;
}
/*サブメニュー用下矢印*/
div.top_floating_gv_menu > div > ol > li:nth-of-type(1) > a::after,
div.top_floating_gv_menu > div > ol > li:nth-of-type(4) > a::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	content: '\f078';
	color: #FFA500;
	font-size: 10px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}




/* 追従メニュー *******************/
/*場所を確保する箱（追従時に本文が飛ばないように）*/
div.floating_menu_area {
	height: 60px;
	position: relative;
}
div.top_floating_menu {
	width: 100%;
	height: 60px;
	padding: 10px 0;
	background-color: #dd6a2b;
	position: absolute;
	top: 0;
	left: 0;
}
div.top_floating_menu.is-active {
	position: fixed;
	top: 80px;
	z-index: 8;
}
div.top_floating_menu > ul {
	width: 100%;
	max-width: 1140px;
	display: flex;
	margin: 0 auto;
}
div.top_floating_menu > ul > li {
	width: 33.3333%;
	height: 40px;
	border-right: 1px solid #ffffff;
}
div.top_floating_menu > ul > li:first-of-type {
	border-left: 1px solid #ffffff;
}
div.top_floating_menu > ul > li > a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #ffffff;
	position: relative;
}
/*hoverで下線が伸びる*/
div.top_floating_menu > ul > li > a::after {
	content: '';
	width: 100%;
	height: 4px;
	background-color: #ffffff;
	position: absolute;
	left: 0;
	bottom: -8px;
	transform: scale(0, 1);
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform-origin: left top;
}
div.top_floating_menu > ul > li > a:hover::after {
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transition: transform 0.3s;
}




/* 見出しフレーム共通（帯つき） *******************/
/*上下2色の帯。フレームが13px（2行見出しは17px）上にはみ出す*/
#container div.mds_band {
	max-width: 1140px;
	height: 60px;
	margin: 0 auto;
	position: relative;
}
#container div.mds_band h2.mds {
	width: 510px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.03em;
	text-align: center;
	position: absolute;
	top: -13px;
	left: 0;
	right: 0;
	margin: auto;
	padding-bottom: 12px;
	z-index: 1;
}
/*帯の上余白（設計の節間アキ）*/
#container div.mds_band-2 {
	margin-top: 33px;
}
#container div.mds_band-4 {
	margin-top: 70px;
}
#container div.mds_band-3 h2.mds,
#container div.mds_band-4 h2.mds {
	height: 117px;
	/* top: -17px; */
	top: -40px;
	font-size: 34px;
	line-height: 1.24;
}
/*メリット・デメリット：青→赤／緑フレーム*/
#container div.mds_band-1 {
	background: linear-gradient(to bottom, #006eb8 0, #006eb8 50%, #e72628 50%, #e72628 100%);
}
#container div.mds_band-1 h2.mds {
	background-image: url(../images/feature-4wd/frame_green_pc.png);
	color: #ffffff;
}
/*4WDの種類：赤→緑／青フレーム*/
#container div.mds_band-2 {
	background: linear-gradient(to bottom, #e72628 0, #e72628 50%, #56b767 50%, #56b767 100%);
}
#container div.mds_band-2 h2.mds {
	background-image: url(../images/feature-4wd/frame_blue_pc.png);
	color: #ffffff;
}
/*人気車比較：緑→青／黒フレーム*/
#container div.mds_band-3 {
	background: linear-gradient(to bottom, #56b767 0, #56b767 50%, #006eb8 50%, #006eb8 100%);
}
#container div.mds_band-3 h2.mds {
	background-image: url(../images/feature-4wd/frame_black_pc.png);
	color: #222222;
}
/*FAQ：赤→青／黒フレーム*/
#container div.mds_band-4 {
	background: linear-gradient(to bottom, #e72628 0, #e72628 50%, #006eb8 50%, #006eb8 100%);
}
#container div.mds_band-4 h2.mds {
	background-image: url(../images/feature-4wd/frame_black_pc.png);
	color: #222222;
}




/* FV *******************/
section.top_visual {
	background-color: #e2efff;
	text-align: center;
	font-size: 0;
}
section.top_visual img {
	width: 1140px;
	margin: 0 auto;
}




/* CTA帯 *******************/
div.cv {
	padding: 60px 0;
	text-align: center;
}
div.cv > p {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.03em;
	color: #e72628;
}
/*立体影つきCVボタン（hoverで影を解除）*/
div.cv > a {
	width: 698px;
	display: block;
	margin: 0 auto;
	font-size: 0;
	filter: drop-shadow(0px 4px 0px rgba(0, 0, 0, .75));
}
div.cv > a:hover {
	filter: drop-shadow(0px 0px 0px #fff) brightness(1.1);
	transform: translate3d(0, 6px, 0);
}
div.cv > a img {
	width: 100%;
}
/*比較表セクションと地続きの帯（背景を引き継ぐ）*/
div.cv-2 {
	padding: 30px 0 50px;
}
div.cv-3 {
	background-color: #ebebeb;
	padding: 40px 0 60px;
}
div.cv-4 {
	padding: 58px 0 50px;
}




/* イントロ（4WDを選ぶお客様が増えています） *******************/
section.intro > div {
	width: 980px;
	max-width: 100%;
	height: 400px;
	margin: 0 auto;
	background: url(../images/feature-4wd/background_sky_pc.jpg) no-repeat center center;
	background-size: cover;
	padding-top: 54px;
}
/*白フチの吹き出し（中は透明）*/
section.intro h2.mds {
	width: 585px;
	height: 62px;
	display: flex;
	/* align-items: center; */
	justify-content: center;
	margin: 0 auto;
	padding-left: 84px;
	background: url(../images/feature-4wd/frame_white_pc.png) no-repeat center top;
	background-size: contain;
	position: relative;
}
section.intro h2.mds img {
	width: 84px;
	position: absolute;
	top: -46px;
	left: 27px;
}
section.intro h2.mds span {
	font-size: 22px;
	font-weight: 700;
	line-height: 2.0;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-shadow: 0px 3px 4px rgba(0, 0, 0, .25);
}
section.intro p {
	width: 740px;
	margin: -5px auto 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 2.17;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-align: center;
	text-shadow: 0px 3px 4px rgba(0, 0, 0, .25);
}




/* こんなお悩みありませんか？ *******************/
section.trouble {
	padding: 40px 0 39px;
}
section.trouble h2.mds {
	width: 481px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background: url(../images/feature-4wd/frame_gray_pc.png) no-repeat center top;
	background-size: contain;
	padding-bottom: 12px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: #222222;
}
section.trouble ul {
	width: 100%;
	max-width: 980px;
	display: flex;
	justify-content: space-between;
	margin: 40px auto 0;
}
section.trouble ul li {
	width: 300px;
	min-height: 217px;
	padding: 30px 15px 0;
	position: relative;
}
section.trouble ul li h3 + p {
	margin-top: 4px;
}
section.trouble ul li:nth-of-type(1) {
	background-color: #d54b4c;
}
section.trouble ul li:nth-of-type(2) {
	background-color: #66aa72;
}
section.trouble ul li:nth-of-type(3) {
	background-color: #377faf;
}
/*背面の連番（白20%）*/
section.trouble ul li::before {
	content: '';
	width: 60px;
	height: 49px;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
	/* opacity: 0.2; */
	position: absolute;
	top: 10px;
	left: 15px;
}
section.trouble ul li:nth-of-type(1)::before {
	background-image: url(../images/feature-4wd/01.png);
}
section.trouble ul li:nth-of-type(2)::before {
	width: 75px;
	background-image: url(../images/feature-4wd/02.png);
}
section.trouble ul li:nth-of-type(3)::before {
	width: 74px;
	background-image: url(../images/feature-4wd/03.png);
}
/*右上の汗アイコン*/
section.trouble ul li::after {
	content: '';
	width: 28px;
	height: 29px;
	background: url(../images/feature-4wd/sweat.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 10px;
	right: -2px;
}
section.trouble ul li h3 {
	min-height: 53px;
	display: flex;
	align-items: center;
	/* justify-content: center; */
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: #ffffff;
	/* text-align: center; */
	position: relative;
}
section.trouble ul li p {
	min-height: 100px;
	background-color: rgba(255, 255, 255, .2);
	margin-top: 4px;
	padding: 10px 13px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.02em;
	color: #ffffff;
}




/* ソリューション *******************/
section.solution {
	height: 254px;
	background: url(../images/feature-4wd/solution_pc.png) no-repeat center top;
	background-size: 914px auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 27px;
}
section.solution h2.mds {
	width: 480px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.47;
	letter-spacing: 0.03em;
	color: #222222;
	text-align: center;
}
section.solution h2.mds span {
	color: #E72628;
}




/* 4WDのメリット・デメリット *******************/
a#merit {
    display: block;
    padding-top: 20px;
    margin-top: -20px;
}
div.merit_body {
	max-width: 1140px;
	margin: 0 auto;
	background-color: #56b767;
	padding: 47px 0 71px;
	position: relative;
}
div.merit_body p.lead {
	font-size: 20px;
	font-weight: 600;
	line-height: 2.25;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-align: center;
}
div.merit_body div.wrapper > div {
	width: 750px;
	background-color: #ffffff;
	margin: 24px auto 0;
	padding-bottom: 18px;
}
div.merit_body div.wrapper > div:nth-of-type(2) {
	margin-top: 30px;
}
div.merit_body div.wrapper > div h3 {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
}
div.merit_body div.wrapper > div:nth-of-type(1) h3 {
	background-color: #e72628;
}
div.merit_body div.wrapper > div:nth-of-type(2) h3 {
	background-color: #006eb8;
}
div.merit_body div.wrapper > div h3 img {
	width: 230px;
}
div.merit_body div.wrapper > div:nth-of-type(2) h3 img {
	width: 311px;
}
div.merit_body div.wrapper > div h4 {
	margin-top: 20px;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.36;
	letter-spacing: 0.03em;
	text-align: center;
}
div.merit_body div.wrapper > div:nth-of-type(1) h4 {
	color: #e72628;
}
div.merit_body div.wrapper > div:nth-of-type(2) h4 {
	color: #006eb8;
}
div.merit_body div.wrapper > div p {
	width: 670px;
	margin: 20px auto 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.02em;
	color: #222222;
}
/*下向き三角（次セクションへの導線）*/
div.merit_body img.sankaku {
	width: 156px;
	margin: 0 auto;
	display: block;
}




/* ご安心ください！（納得の理由） *******************/
section.anshin {
	margin-top: -19px;
	padding: 19px 0 15px;
	text-align: center;
	position: relative;
}
/*緑帯と白地の境目にまたがるバッジ*/
section.anshin h2.mds {
	width: 100%;
	font-size: 0;
	position: absolute;
	top: -29px;
	left: 0;
	z-index: 1;
}
section.anshin h2.mds img {
	width: 492px;
	margin: 0 auto;
}
section.anshin > div {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding-top: 60px;
	position: relative;
}
section.anshin h3 {
	font-size: 20px;
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.03em;
	color: #e72628;
}
section.anshin ul {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	text-align: left;
}
section.anshin ul li {
	width: 405px;
}
section.anshin ul li h4 {
	/* min-height: 54px; */
	padding-left: 34px;
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.03em;
	color: #222222;
	position: relative;
	margin-bottom: 35px;
}
section.anshin ul li h4 span {
	color: #E72628;
}
section.anshin ul li:nth-of-type(2) h4 {
	color: #222222;
}
section.anshin ul li h4 img {
	width: 26px;
	position: absolute;
	top: 2px;
	left: 0;
}
section.anshin ul li p {
	margin-top: 15px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.02em;
	color: #222222;
}
/*2列の間の仕切り（縦線＋4WDアイコン）*/
section.anshin > div::before {
	content: '';
	width: 2px;
	height: 185px;
	border-left: 2px solid #E72628;
	opacity: 0.5;
	position: absolute;
	top: 125px;
	left: 50%;
	margin-left: -1px;
}
section.anshin img.sen {
	width: 50px;
	background-color: #ffffff;
	padding: 6px 0;
	/* opacity: 0.5; */
	position: absolute;
	top: 180px;
	left: 50%;
	margin-left: -25px;
}




/* 4WDの種類と違いとは？ *******************/
div.drive_type_body {
	max-width: 1140px;
	margin: 0 auto;
	background-color: #006eb8;
	padding: 47px 0 60px;
}
div.drive_type_body p.lead {
	font-size: 20px;
	font-weight: 600;
	line-height: 2.25;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-align: center;
}
div.drive_type_body div.wrapper {
	max-width: 760px;
	display: flex;
	justify-content: space-between;
	margin-top: 24px;
}
div.drive_type_body div.wrapper > div {
	width: 350px;
	background-color: #ffffff;
	padding-bottom: 24px;
}
div.drive_type_body div.wrapper > div h3 {
	height: 60px;
	display: flex;
	align-items: center;
	padding-left: 15px;
	font-size: 0;
}
div.drive_type_body div.wrapper > div:nth-of-type(1) h3 img {
	width: 224px;
}
div.drive_type_body div.wrapper > div:nth-of-type(2) h3 img {
	width: 256px;
}
div.drive_type_body div.wrapper > div img.photo {
	width: 350px;
	height: 200px;
	object-fit: cover;
	display: block;
}
div.drive_type_body div.wrapper > div h4 {
	width: max-content;
	margin: 20px 0 0 20px;
	padding: 2px 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
}
div.drive_type_body div.wrapper > div:nth-of-type(1) h4 {
	background-color: #e72628;
	color: #ffffff;
}
div.drive_type_body div.wrapper > div:nth-of-type(2) h4 {
	background-color: #56b767;
	color: #ffffff;
}
div.drive_type_body div.wrapper > div > p {
	width: 310px;
	margin: 10px auto 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.02em;
	color: #222222;
}
div.drive_type_body div.wrapper > div > p:first-of-type {
	min-height: 140px;
}
/*掲載車種例*/
div.drive_type_body div.wrapper > div > p.rei {
	width: 320px;
	margin-top: 20px;
	letter-spacing: 0;
}
div.drive_type_body p.rei span {
	width: 96px;
	display: block;
	border: 2px solid #222222;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
	text-align: center;
}




/* 「寒冷地仕様」の嬉しい装備 *******************/
section.equipment {
	padding: 40px 0 70px;
	text-align: center;
}
section.equipment p.copy {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.03em;
	color: #e72628;
}
section.equipment h2.mds {
	width: 514px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background: url("../images/feature-4wd/frame_ yellow_pc.png") no-repeat center top;
	background-size: contain;
	padding-bottom: 12px;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: #222222;
}
section.equipment h2.mds span {
	color: #E72628;
}
section.equipment p.lead {
	margin-top: 30px;
	font-size: 20px;
	line-height: 2.25;
	font-weight: 700;
	line-height: 2.25;
	letter-spacing: 0.05em;
	color: #222222;
}
section.equipment ul {
	display: flex;
	justify-content: space-between;
	margin-top: 46px;
}
section.equipment ul li {
	width: 363px;
	min-height: 186px;
	padding: 23px 36px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	position: relative;
}
section.equipment ul li:nth-of-type(1) {
	background-image: url(../images/feature-4wd/equipment_blue.png);
}
section.equipment ul li:nth-of-type(2) {
	background-image: url(../images/feature-4wd/equipment_red.png);
}
section.equipment ul li:nth-of-type(3) {
	background-image: url(../images/feature-4wd/equipment_green.png);
}
/*背面の装備アイコン（12%）*/
section.equipment ul li::before {
	content: '';
	height: 60px;
	top: 23px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	/* opacity: 0.12; */
	position: absolute;
	top: 16px;
	left: 0;
	right: 0;
	margin: auto;
}
section.equipment ul li:nth-of-type(1)::before {
	width: 54px;
	background-image: url(../images/feature-4wd/equipment_blue_icon.png);
}
section.equipment ul li:nth-of-type(2)::before {
	width: 127px;
	background-image: url(../images/feature-4wd/equipment_red_icon.png);
}
section.equipment ul li:nth-of-type(3)::before {
	width: 214px;
	background-image: url(../images/feature-4wd/equipment_green_icon.png);
}
section.equipment ul li h3 {
	font-size: 21px;
	font-weight: 900;
	line-height: 1.43;
	letter-spacing: 0.02em;
	position: relative;
}
section.equipment ul li:nth-of-type(1) h3 {
	color: #0c66a3;
}
section.equipment ul li:nth-of-type(2) h3 {
	color: #e72628;
}
section.equipment ul li:nth-of-type(3) h3 {
	color: #498153;
}
section.equipment ul li h3 img {
	display: block;
	margin: 0 auto;
}
section.equipment ul li:nth-of-type(1) h3 img {
	width: 119px;
}
section.equipment ul li:nth-of-type(2) h3 img {
	width: 93px;
}
section.equipment ul li:nth-of-type(3) h3 img {
	width: 132px;
}
section.equipment ul li p {
	margin-top: 21px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.02em;
	color: #222222;
	position: relative;
}




/* 人気の4WD軽自動車 徹底比較 *******************/
a#hikaku {
    display: block;
    padding-top: 30px;
    margin-top: -30px;
}
section.hikaku {
	background-color: #ebebeb;
	padding-top: 17px;
	position: relative;
}
/*フレームがはみ出す17px分は白地に戻す*/
section.hikaku::before {
	content: '';
	width: 100%;
	height: 17px;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	left: 0;
}
#container section.hikaku div.mds_band {
	margin-top: 0;
}
#container section.hikaku div.mds_band-3 h2.mds {
	/* top: -40px; */
}

div.hikaku_body {
	padding: 43px 0 0;
}
div.hikaku_body table {
	width: 100%;
	background-color: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	color: #0f172a;
	text-align: left;
}
div.hikaku_body th {
	background-color: #f9ffb4;
	padding: 22px 16px;
	font-size: 15px;
	font-weight: 700;
	color: #222222;
	vertical-align: middle;
}
div.hikaku_body th span {
	display: block;
	font-size: 12px;
	font-weight: 500;
}
div.hikaku_body td {
	border-top: 1px solid #e2e8f0;
	padding: 16px;
	vertical-align: middle;
}
div.hikaku_body td:nth-of-type(1) {
	width: 150px;
	padding: 16px 12px;
}
div.hikaku_body td:nth-of-type(1) img {
	width: 120px;
	display: block;
}
div.hikaku_body td:nth-of-type(2) {
	width: 165px;
	border-top: none;
	border-bottom: 1px solid #e2e8f0;
}
div.hikaku_body tr:last-of-type td:nth-of-type(2) {
	border-bottom: none;
}
div.hikaku_body td:nth-of-type(2) b {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
}
div.hikaku_body td:nth-of-type(3) {
	width: auto;
}
div.hikaku_body td:nth-of-type(4) {
	width: auto;
}
/*
div.hikaku_body td:nth-of-type(6) {
	width: 105px;
}
div.hikaku_body td:nth-of-type(7) {
	width: 190px;
}
*/
/*人気No.1・注目度No.1バッジ*/
div.hikaku_body span.tag-1,
div.hikaku_body span.tag-2 {
	display: inline-block;
	border-radius: 4px;
	margin-top: 8px;
	padding: 4px 10px;
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
}
div.hikaku_body span.tag-1 {
	background-color: #2563eb;
}
div.hikaku_body span.tag-2 {
	background-color: #f97316;
}
/*最低地上高のピル*/
div.hikaku_body span.mm-1,
div.hikaku_body span.mm-2 {
	display: inline-block;
	border-radius: 4px;
	padding: 5px 12px;
	font-size: 15px;
	font-weight: 700;
}
div.hikaku_body span.mm-1 {
	background-color: #dcfce7;
	color: #15803d;
}
div.hikaku_body span.mm-2 {
	background-color: #e0f2fe;
	color: #0369a1;
}
div.hikaku_body td small {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #15803d;
}
/*スライドドア「あり（電動）」*/
div.hikaku_body span.door-1 {
	display: inline-block;
	background-color: #ffedd5;
	border-radius: 4px;
	padding: 8px 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #c2410c;
	text-align: center;
}
div.hikaku_body p.note {
	margin-top: 40px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: #222222;
	text-align: center;
}




/* 在庫車両一覧 *******************/
section.zaiko {
	padding: 40px 0 0;
	text-align: center;
}
section.zaiko h2.mds {
	width: 514px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background: url("../images/feature-4wd/frame_ yellow_pc.png") no-repeat center top;
	background-size: contain;
	padding-bottom: 12px;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: #222222;
}

section.zaiko ul {
	width: 95%;
	max-width: 1080px;
	margin: 50px auto 16px;
	display: flex;
	flex-wrap: wrap;
	
}
section.zaiko ul li {
	width: 246px;
	/* width: calc((100% - 96px) / 4); */
	margin-bottom: 24px;
}
section.zaiko ul li:not(:nth-of-type(4n)) {
	/* margin-right: 32px; */
	margin-right: calc((100% - 984px) / 3);
}
section.zaiko ul li a {
	display: block;
	border: 2px solid #F73D0B;
	border-radius: 6px;
	filter: drop-shadow(0px 4px 0px rgba(0, 0, 0, .2));
	position: relative;
}
section.zaiko ul li a::after {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.1);
}
/*初夏の大商談会*/
section.zaiko ul li a > img {
	width: 100%;
	height: auto;
	border-radius: 6px 6px 0 0;
}
/*車画像*/
section.zaiko ul li a div.img_wrap {
	overflow: hidden;
	position: relative;
}
section.zaiko ul li a div.img_wrap > img {
	width: auto;
	height: 184px;
	transition-duration: 0.5s;
}
/*SOLD OUT*/
section.zaiko ul li a div.img_wrap > img.sold {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/* 中古/ちょい/未使用車・駆動方式画像 */
section.zaiko ul li a div.img_wrap > .ctgy {
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 145px;
	display: flex;
	justify-content: space-between;
}
section.zaiko ul li a div.img_wrap > .ctgy img {
	width: 70px;
	height: auto;
}
section.zaiko ul li a:hover div.img_wrap > .ctgy img {
	opacity: 1;
}
/*hover*/
section.zaiko ul li a:hover {
	filter: none;
	transform: translate3d(0, 1px, 0);
}
section.zaiko ul li a:hover::after {
	display: block;
}
section.zaiko ul li a:hover div.img_wrap > img {
	/* opacity: 0.7; */
	transform: scale(1.1);
	transition-duration: 0.5s;
}
/*NEW*/
section.zaiko ul li a div.img_wrap.new::after {
	content: "new";
	text-transform: uppercase;
	color: #162F45;
	font-size: 14px;
	font-weight: 700;
	padding: 0 5px;
	background: #FFEE00;
	top: 0;
	left: 0;
	position: absolute;
}
/*車名情報部分*/
section.zaiko ul li a div.car_name {
	width: 100%;
	padding: 10px 10px;
	background-color: #FFF;
	text-align: center;
}
section.zaiko ul li a div.car_name p {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
section.zaiko ul li a div.car_name p:nth-of-type(1) {
	font-size: 20px;
	font-weight: 600;
	color: #000000;
}
section.zaiko ul li a div.car_name p:nth-of-type(2) {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
}
section.zaiko ul li a div.car_name p:nth-of-type(3) {
	font-size: 16px;
	font-weight: 500;
	color: #7E7E7E;
}
/*価格部分*/
section.zaiko ul li a div.car_price {
	width: 100%;
	/* height: 146px; */
	background-color: #FEF2E6;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
section.zaiko ul li a div.car_price .total {
	height: 42px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
	color: #E60014;
}
section.zaiko ul li a div.car_price .total span.eisu {
	font-size: 38px;
	font-weight: 600;
	font-style: italic;
	color: #E60014;
	line-height: 42px;
	padding: 0 10px;
}
section.zaiko ul li a div.car_price .total span:last-of-type {
	width: 32px;
	font-size: 16px;
	font-weight: 900;
	color: #000;
}
section.zaiko ul li a div.car_price .total span:last-of-type small {
	display: block;
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
}
/*内訳*/
section.zaiko ul li a div.car_price p {
	font-size: 14px;
	font-weight: 500;
	color: #6F6F6F;
	text-align: center;
}
/*ローンご利用時*/
section.zaiko ul li a div.car_price .loan {
	text-align: center;
	margin-top: 5px;
}
section.zaiko ul li a div.car_price .loan span {
	width: auto;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	line-height: 1;
}
section.zaiko ul li a div.car_price .loan p {
	font-size: 16px;
	font-weight: bold;
	color: #E60014;
	line-height: 1;
}
/*車両情報部分*/
section.zaiko ul li a div.car_data {
	width: 100%;
	background-color: #FFF;
	padding: 10px 10px 12px;
}
/*ローン未表示の余白調整*/
section.zaiko ul li a div.car_data.pad {
	padding-bottom: 52px;
}
section.zaiko ul li a div.car_data dl {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/* margin-bottom: 10px; */
}
section.zaiko ul li a div.car_data dl dt {
	width: 29px;
	height: 21px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #EBE9E4;
	font-size: 12px;
	font-weight: 500;
	color: #444444;
}
section.zaiko ul li a div.car_data dl dd {
	width: calc(50% - 35px);
	font-size: 14px;
	font-weight: 500;
	color: #444444;
}
section.zaiko ul li a div.car_data dl dt:nth-of-type(1),
section.zaiko ul li a div.car_data dl dd:nth-of-type(1),
section.zaiko ul li a div.car_data dl dt:nth-of-type(2),
section.zaiko ul li a div.car_data dl dd:nth-of-type(2) {
	margin-bottom: 5px;
}

/*hover消し*/
section.zaiko ul li a:hover div.car_data div img {
	opacity: 1;
}
/*店舗名*/
section.zaiko ul li a > p {
	width: 100%;
	height: 26px;
	background-color: #F7F6F1;
	border-radius: 0 0 6px 6px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: #7E7E7E;
}
/*一覧下注意書き*/
section.zaiko > div > div > p {
	font-size: 14px;
	font-weight: 500;
	color: #707070;
	line-height: 1.4;
	text-align: center;
	padding-left: 16px;
	text-indent: -16px;
	/*margin-top: 16px;*/
}







/* よくある質問 *******************/
section.faq {
	padding-bottom: 80px;
}
section.faq dl {
	max-width: 860px;
	margin-top: 37px;
}
/*質問（開閉ボタン）*/
section.faq dt {
	background-color: #56b767;
	border: 1px solid #ced1d9;
	border-radius: 4px;
	padding: 17px 50px 17px 45px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.03em;
	color: #ffffff;
	cursor: pointer;
	position: relative;
}
section.faq dt + dt,
section.faq dd + dt {
	margin-top: 20px;
}
section.faq dt::before {
	content: '';
	width: 18px;
	height: 15px;
	background: url(../images/feature-4wd/q.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 20px;
	left: 17px;
}
section.faq dt::after {
	content: '';
	width: 16px;
	height: 10px;
	background: url(../images/feature-4wd/down.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 24px;
	right: 30px;
}
section.faq dt.is-open::after {
	background-image: url(../images/feature-4wd/up.png);
}
/*回答*/
section.faq dd {
	display: none;
	background-color: #f9fafb;
	border: 1px solid #ced1d9;
	border-radius: 0 0 4px 4px;
	border-top: none;
	padding: 15px 45px 20px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #6b7280;
	position: relative;
}
section.faq dd::before {
	content: '';
	width: 18px;
	height: 13px;
	background: url(../images/feature-4wd/a.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 22px;
	left: 17px;
}




/* SP追従フッターバー *******************/
div.sp_float_cv {
	display: none;
}




/* フッター調整用 *******************/
footer p.copy {
	padding-bottom: 10px !important;
}






@media screen and (max-width: 1079px) {
*{}
*{}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/







/* 共通 *******************/
/*ヘッダー追従禁止*/
#container {
	padding-top: 0;
}
header {
	position: static;
}




/* 追従グローバルメニュー（PCのみ） *******************/
div.top_floating_gv_menu,
div.top_floating_gv_menu.is-active {
	display: none;
}




/* 追従メニュー *******************/
div.floating_menu_area {
	height: 40px;
}
div.top_floating_menu {
	height: 40px;
	padding: 0;
}
/*SPは固定ヘッダー（61px）の下に貼りつく*/
div.top_floating_menu.is-active {
	top: 0;
	z-index: 8;
}
div.top_floating_menu > ul > li:first-of-type {
	border-left: none;
}
div.top_floating_menu > ul > li:last-of-type {
	border-right: none;
}
div.top_floating_menu > ul > li > a {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.28;
	text-align: center;
}
div.top_floating_menu > ul > li > a::after {
	display: none;
}




/* 見出しフレーム共通（帯つき） *******************/
#container div.mds_band {
	max-width: none;
}
#container div.mds_band-1 {
	/* margin-top: 13px; */
}
#container div.mds_band-2 {
	margin-top: 23px;
}
#container div.mds_band-4 {
	margin-top: 0;
}
#container div.mds_band h2.mds {
	width: 353px;
	max-width: 94%;
	height: 90px;
	font-size: min(6.4vw, 24px);
	padding-bottom: 14px;
}
#container div.mds_band-3 h2.mds,
#container div.mds_band-4 h2.mds {
	height: 116px;
}
#container div.mds_band-1 h2.mds {
	background-image: url(../images/feature-4wd/frame_green_sp.png);
}
#container div.mds_band-2 h2.mds {
	background-image: url(../images/feature-4wd/frame_blue_sp.png);
}
#container div.mds_band-3 h2.mds,
#container div.mds_band-4 h2.mds {
	background-image: url(../images/feature-4wd/frame_black_sp.png);
}




/* FV *******************/
section.top_visual {
	background-color: transparent;
}
section.top_visual img {
	width: 100%;
}




/* CTA帯 *******************/
div.cv {
	padding: 30px 0;
}
div.cv > a {
	width: 325px;
	max-width: 87%;
	filter: drop-shadow(0px 2px 0px rgba(0, 0, 0, .75));
}
div.cv-2 {
	padding: 30px 0 50px;
}
div.cv-3 {
	padding: 45px 0;
}
div.cv-4 {
	padding: 20px 0 80px;
}




/* イントロ *******************/
section.intro > div {
	width: 100%;
	height: auto;
	min-height: 530px;
	background-image: url(../images/feature-4wd/background_sky_sp.jpg);
	background-position: bottom;
	padding: 46px 0 20px;
}
section.intro h2.mds {
	width: 355px;
	max-width: 95%;
	height: auto;
	min-height: 118px;
	align-items: flex-start;
	justify-content: flex-start;
	background-image: url(../images/feature-4wd/frame_white_sp.png);
	background-size: 100% 100%;
	padding: 17px 8px 20px min(28vw, 110px);
}
section.intro h2.mds img {
	width: 128px;
	top: -36px;
	left: 6px;
}
section.intro h2.mds span {
	font-size: min(5.6vw, 21px);
	line-height: 1.72;
	text-shadow: 0px 3px 4px rgba(0, 0, 0, 1.0);
	position: relative;
}
section.intro p {
	width: 320px;
	max-width: 90%;
	margin-top: 5px;
	font-size: min(4.27vw, 16px);
	line-height: 2.5;
}




/* こんなお悩みありませんか？ *******************/
section.trouble {
	padding: 40px 0 20px;
}
section.trouble h2.mds {
	width: 355px;
	max-width: 95%;
	font-size: min(6.4vw, 24px);
	background-image: url(../images/feature-4wd/frame_gray_sp.png);
	padding-bottom: 16px;
}
section.trouble ul {
	max-width: 600px;
	display: block;
	margin-top: 10px;
	padding: 0 13px;
}
section.trouble ul li {
	width: 100%;
	min-height: 174px;
	margin-bottom: 20px;
	padding: 26px 15px 0;
}
section.trouble ul li:last-of-type {
	margin-bottom: 0;
}
section.trouble ul li h3 {
	min-height: 29px;
	font-size: min(5.34vw, 20px);
	justify-content: center;
}
section.trouble ul li p {
	min-height: 100px;
	margin-top: 4px;
}




/* ソリューション *******************/
section.solution {
	height: auto;
	/* min-height: 376px; */
	min-height: min(100vw, 600px);
	background-image: url(../images/feature-4wd/solution_sp.png);
	background-size: min(100%, 600px) auto;
	align-items: flex-start;
	padding-top: min(4vw, 27px);
}
section.solution h2.mds {
	/* width: 340px; */
	max-width: 92%;
	margin-top: 0;
	font-size: min(6.4vw, 34px);
	line-height: 1.6;
}




/* 4WDのメリット・デメリット *******************/
div.merit_body {
	padding: 26px 0 38px;
}
div.merit_body p.lead {
	font-size: min(4.8vw, 18px);
	line-height: 2.22;
}
div.merit_body div.wrapper > div {
	width: 350px;
	max-width: 94%;
	margin-top: 14px;
	padding-bottom: 20px;
}
div.merit_body div.wrapper > div:nth-of-type(2) {
	margin-top: 20px;
}
div.merit_body div.wrapper > div h3 {
	height: 60px;
    justify-content: left;
    padding: 0 20px;
}
div.merit_body div.wrapper > div h3 img {
	width: 192px;
}
div.merit_body div.wrapper > div:nth-of-type(2) h3 img {
	width: 259px;
}
div.merit_body div.wrapper > div h4 {
	margin-top: 18px;
	padding: 0 20px;
	font-size: min(5.34vw, 20px);
	line-height: 1.5;
	text-align: left;
}
div.merit_body div.wrapper > div p {
	width: 310px;
	max-width: 89%;
	margin-top: 18px;
}
div.merit_body img.sankaku {
	width: 119px;
	margin-top: 0;
}




/* ご安心ください！ *******************/
section.anshin {
	padding: 19px 0 15px;
}
section.anshin h2.mds {
	top: -10px;
}
section.anshin h2.mds img {
	width: 310px;
}
section.anshin > div {
	max-width: 600px;
	background-color: #ffffff;
	padding: 53px 28px 0;
}
section.anshin h3 {
	text-align: left;
}
section.anshin ul {
	display: block;
	margin-top: 14px;
}
section.anshin ul li {
	width: 100%;
}
/*SPは2項目目の上に横向きの仕切り（線＋4WDアイコン）*/
section.anshin ul li:nth-of-type(2) {
	margin-top: 20px;
	padding-top: 80px;
	position: relative;
}
section.anshin ul li:nth-of-type(2)::before {
	content: '';
	width: 100%;
	border-top: 2px solid #e72628;
	opacity: 0.5;
	position: absolute;
	top: 29px;
	left: 0;
}
section.anshin ul li:nth-of-type(2)::after {
	content: '';
	width: 50px;
	height: 60px;
	background: #ffffff url(../images/feature-4wd/4wd_icon.png) no-repeat center center;
	background-size: 50px auto;
	/* opacity: 0.5; */
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -25px;
}
section.anshin ul li h4 {
	padding-left: 34px;
	margin-bottom: 0;
}
/*SPは横向きの仕切り（線＋アイコン）*/
/*PC用の縦仕切りはSPでは使わない*/
section.anshin > div::before {
	display: none;
}
section.anshin img.sen {
	display: none;
}




/* 4WDの種類と違いとは？ *******************/
div.drive_type_body {
	padding: 27px 0 40px;
}
div.drive_type_body p.lead {
	font-size: min(4.8vw, 18px);
	line-height: 2.22;
	padding: 0 5%;
}
div.drive_type_body div.wrapper {
	display: block;
	margin-top: 14px;
}
div.drive_type_body div.wrapper > div {
	width: 350px;
	max-width: 94%;
	margin: 0 auto 20px;
	padding-bottom: 20px;
}
div.drive_type_body div.wrapper > div:last-of-type {
	margin-bottom: 0;
}
div.drive_type_body div.wrapper > div img.photo {
	width: 100%;
}
div.drive_type_body div.wrapper > div > p {
	width: 310px;
	max-width: 89%;
}
div.drive_type_body div.wrapper > div > p.rei {
	max-width: 92%;
}




/* 「寒冷地仕様」の嬉しい装備 *******************/
section.equipment {
	padding: 40px 0 60px;
}
section.equipment h2.mds {
	width: 355px;
	max-width: 95%;
	font-size: min(6.4vw, 24px);
	background-image: url("../images/feature-4wd/frame_ yellow_sp.png");
	padding-bottom: 14px;
}
section.equipment p.lead {
	margin-top: 10px;
	padding: 0 32px;
	font-size: min(4.8vw, 18px);
	line-height: 2.22;
}
section.equipment ul {
	max-width: 600px;
	display: block;
	margin-top: 28px;
	padding: 0 6px;
}
section.equipment ul li {
	width: 100%;
	min-height: 164px;
	margin-bottom: 20px;
	padding: 29px 30px 20px;
	background-size: 97% 100%;
	background-position: left center;
}
section.equipment ul li:nth-of-type(2) {
	background-position: right center;
}
section.equipment ul li::before {
	top: 29px;
}
section.equipment ul li:last-of-type {
	margin-bottom: 0;
}
section.equipment ul li p {
	margin-top: 21px;
}




/* 人気の4WD軽自動車 徹底比較 *******************/
div.hikaku_body {
	padding: 54px 0 0;
}
/*左右にスクロールできます*/
div.hikaku_body p.memo {
	padding: 0 13px;
	font-size: 13px;
	font-weight: 400;
	color: #333;
	margin-top: 2px;
	margin-bottom: 4px;
}
div.hikaku_body div.scroll + p.memo {
	padding: 0;
}
div.hikaku_body div.wrapper {
	padding: 0 13px;
}
/*SPは表を横スクロール*/
div.hikaku_body div.scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
div.hikaku_body table {
	width: 100%;
	min-width: 950px;
	font-size: 14px;
}
div.hikaku_body th {
	padding: 14px 12px;
	font-size: 14px;
}
div.hikaku_body td {
	padding: 12px;
}
div.hikaku_body td:nth-of-type(1) {
	width: 135px;
}
div.hikaku_body td:nth-of-type(1) img {
	width: 110px;
}
div.hikaku_body td:nth-of-type(2) {
	width: 170px;
}
div.hikaku_body td:nth-of-type(2) b {
	font-size: 16px;
}
div.hikaku_body p.note {
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.5;
	text-align: left;
}




/* 在庫車両一覧 *******************/
section.zaiko {
	padding-top: 30px;
}
section.zaiko h2.mds {
	width: 355px;
	max-width: 95%;
	font-size: min(6.4vw, 24px);
	background-image: url("../images/feature-4wd/frame_ yellow_sp.png");
	padding-bottom: 14px;
}

/**３列**/
/**一覧**/
section.zaiko ul {
	max-width: 802px;
	margin-top: 30px;
}
section.zaiko ul li {
	margin-right: 0;
}
section.zaiko ul li:not(:nth-of-type(4n)) {
	margin-right: 0;
}
section.zaiko ul li:not(:nth-of-type(3n)) {
	margin-right: 32px;
}
/* } */


/**２列**/
@media screen and (max-width: 859px) {

	/**一覧**/
	section.zaiko ul {
		max-width: 499px;
	}
	section.zaiko ul li {
		margin-right: 0;
		margin-bottom: 20px;
		width: calc((100% - 7px) / 2);
		max-width: 246px;
	}
	section.zaiko ul li:not(:nth-of-type(3n)) {
		margin-right: 0;
	}
	section.zaiko ul li:not(:nth-of-type(2n)) {
		margin-right: 7px;
	}
	section.zaiko ul li a {
		filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, .2));
	}
	/*車画像*/
	section.zaiko ul li a div.img_wrap > img {
		height: min(34vw, 184px);
	}
	/* 中古/ちょい/未使用車・駆動方式画像 */
	section.zaiko ul li a div.img_wrap > .ctgy {
		min-width: 105px;
	}
	section.zaiko ul li a div.img_wrap > .ctgy img {
		width: 48%;
		min-width: 50px;
		height: auto;
	}
	/*NEW*/
	section.zaiko ul li a div.img_wrap.new::after {
		font-size: 12px;
		padding: 0 3px;
	}
	/*車名情報部分*/
	section.zaiko ul li a div.car_name {
		padding: 5px 8px;
	}
	section.zaiko ul li a div.car_name p:nth-of-type(1) {
		font-size: 14px;
	}
	section.zaiko ul li a div.car_name p:nth-of-type(2) {
		font-size: 12px;
	}
	section.zaiko ul li a div.car_name p:nth-of-type(3) {
		font-size: min(3vw, 12px);
	}
	/*価格部分*/
	section.zaiko ul li a div.car_price {
		/* height: 125px; */
		/* min-height: 125px; */
		padding-top: 5px;
		padding-bottom: 5px;
	}
	section.zaiko ul li a div.car_price .total {
		height: 31px;
		font-size: min(3vw, 12px);
	}
	section.zaiko ul li a div.car_price .total span.eisu {
		font-size: min(8vw, 28px);
		padding: 0 5px;
	}
	section.zaiko ul li a div.car_price .total span:last-of-type {
		width: max-content;
		font-size: min(3vw, 12px);
	}
	section.zaiko ul li a div.car_price .total span:last-of-type small {
		font-size: 80%;
	}
	/*内訳*/
	section.zaiko ul li a div.car_price p {
		font-size: min(3vw, 12px);
	}
	/*ローンご利用時*/
	section.zaiko ul li a div.car_price .loan {
		margin-top: 0px;
	}
	section.zaiko ul li a div.car_price .loan span {
		font-size: min(2.67vw,14px);
	}
	section.zaiko ul li a div.car_price .loan p {
		font-size: min(3.2vw,16px);
	}
	/*車両情報部分*/
	section.zaiko ul li a div.car_data {
		padding: 10px 10px 8px;
	}
	/*ローン未表示の余白調整*/
	section.zaiko ul li a div.car_data.pad {
		padding-bottom: 41px;
	}
	section.zaiko ul li a div.car_data dl dt {
		width: max-content;
		height: 14px;
		font-size: min(2.5vw, 12px);
		padding: 0 2px;
	}
	section.zaiko ul li a div.car_data dl dd {
		width: calc(50% - 32px);
		font-size: min(3vw, 12px);
		line-height: 14px;
	}
	/* 中古/ちょい/未使用車・駆動方式画像
	section.new_carlist_2 ul li a div.car_data div img {
		width: 48%;
		max-width: 106px;
	}
	*/
	/*店舗名*/
	section.zaiko ul li a > p {
		height: 20px;
		font-size: min(3vw, 12px);
	}
	/*一覧下注意書き*/
	section.zaiko > div > div > p {
		width: 90%;
		max-width: max-content;
		margin: 0 auto 0;
		font-size: 13px;
		text-align: left;
	}

}/* (max-width: 849px)*/


/**320px~**/
@media screen and (max-width: 449px) {

	section.zaiko ul li a div.car_data {
		padding: 10px 5px 8px;
	}

	section.zaiko ul li a div.car_data dl dd:nth-of-type(1),
	section.zaiko ul li a div.car_data dl dd:nth-of-type(2) {
		width: calc(100% - 28px);
	}
	section.zaiko ul li a div.car_data dl dd:nth-of-type(3),
	section.zaiko ul li a div.car_data dl dd:nth-of-type(4) {
		width: calc(50% - 28px);
	}


}/* (max-width: 349px)*/




/* よくある質問 *******************/
section.faq {
	padding-bottom: 40px;
}
section.faq dl {
	max-width: 600px;
	margin-top: 49px;
	padding: 0 12px;
}
section.faq dt {
	padding: 15px 30px 15px 40px;
	font-size: 14px;
	line-height: 1.6;
}
section.faq dt + dt,
section.faq dd + dt {
	margin-top: 15px;
}
section.faq dt::before {
	top: 18px;
	left: 15px;
}
section.faq dt::after {
	top: 20px;
	right: 12px;
}
section.faq dd {
	padding: 15px 15px 20px 40px;
	font-size: 14px;
	line-height: 1.6;
}
section.faq dd::before {
	top: 20px;
	left: 15px;
}




/* SP追従フッターバー *******************/
div.sp_float_cv {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9;
	opacity: 0.0;
	visibility: hidden;
	transition: 0.4s;
}
div.sp_float_cv.is-active {
	opacity: 1.0;
	visibility: visible;
}
div.sp_float_cv a {
	display: block;
	font-size: 0;
	filter: drop-shadow(0px 2px 0px rgba(0, 0, 0, .75));
	transition: filter 0.3s ease;
}
div.sp_float_cv a:hover {
	filter: none;
}
div.sp_float_cv a img {
	width: 309px;
	max-width: 84vw;
}
/*シェル既存のSP追従フッターは本ページでは非表示（新バーと重なるため）*/
div.sp_footer {
	display: none !important;
}



/* フッター調整用 *******************/
footer p.copy {
	padding-bottom: 80px !important;
}





}
