@charset "UTF-8";
/* ============================================
   スライドドア特集ページ（feature-slide）
   作法: coding-rules/style_guide.md 準拠
   ・色は直値／クラスは最小限（要素セレクタで辿る）
   ・SPはファイル末尾に max-width:1079px で一括
   ・シェル（renew_common.css）は変更しない
============================================ */

/* 共通 *******************/
/*このページの基本文字*/
#container * {
	font-family: 'Noto Sans JP', "Yu Gothic", "Meiryo", sans-serif;
}
#container 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;
	position: relative;
}
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.top_floating_gv_menu > div > ol > li > ol {
	display: none;
}




/* 追従メニュー *******************/
/*場所を確保する箱（追従時に本文が飛ばないように）*/
div.floating_menu_area {
	height: 60px;
	position: relative;
}
div.top_floating_menu {
	width: 100%;
	height: 60px;
	padding: 10px 0;
	background-color: #ff7a50;
	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.28;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-align: center;
	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;
}




/* 見出しまわり共通 *******************/
/*英字ラベル＋大見出し＋下線の3点セット*/
#container div.mds_area {
	padding: 79px 20px 0;
	text-align: center;
}
#container div.mds_area p.eisu {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.15em;
	color: #ff7a50;
}
#container div.mds_area h2.mds {
	margin-top: 20px;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: 0.05em;
	color: #0f172a;
}
#container div.mds_area h2.mds span {
	color: #ff7a50;
}
/*見出し下の飾り線*/
#container div.mds_area h2.mds::after {
	content: '';
	width: 60px;
	height: 4px;
	display: block;
	background-color: #ff7a50;
	margin: 19px auto 0;
}
/*見出し下のリード文*/
#container div.mds_area p.lead {
	margin-top: 31px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #64748b;
}




/* CTA（来店予約ボタン） *******************/
/*帯（#ffd2a5の角丸）に載るCVブロック*/
div.cv {
	text-align: center;
}
div.cv > p {
	font-size: 0;
	line-height: 1;
}
div.cv > p img {
	width: 325px;
}
/*グラデーションのCVボタン（hoverで影を解除）*/
div.cv > a {
	width: 480px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #ff6b81 0%, #ff7a50 100%);
	border: 2px solid #ffffff;
	border-radius: 40px;
	margin: 10px auto 0;
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #ffffff;
	position: relative;
	filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, .16));
	transition: filter 0.3s ease;
}
div.cv > a:hover {
	filter: brightness(1.15);
}
/*左のカレンダーアイコン*/
div.cv > a::before {
	content: '\f274';
	margin-right: 14px;
	font-size: 28px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
/*右の丸まった矢印*/
div.cv > a::after {
	content: '\f054';
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	font-size: 16px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}




/* FV *******************/
section.top_visual {
	height: 600px;
	background: url(../images/feature-slide/fv_pc.png) no-repeat center center;
	background-size: cover;
}
section.top_visual > div.wrapper {
	height: 100%;
	padding: 40px 40px 0 0;
}
/*タイトル画像は右寄せ*/
section.top_visual div.fv_mds {
	width: 648px;
	margin-left: auto;
	font-size: 0;
	text-align: center;
}
section.top_visual div.cv {
	width: 648px;
	margin: 54px 0 0 auto;
}




/* こんな迷いはありませんか？ *******************/
section.worries {
	background-color: #fff3e6;
	padding-bottom: 40px;
}
section.worries > ul {
	display: flex;
	justify-content: space-between;
	margin-top: 51px;
}
section.worries > ul > li {
	width: 356px;
	background-color: #ffffff;
	border-radius: 18px;
	padding: 40px 30px 34px;
}
/*写真とその左上に重なる装飾アイコン*/
section.worries div.pic {
	position: relative;
}
section.worries div.pic img {
	width: 100%;
	border-radius: 12px;
}
section.worries div.pic img.deco {
	width: auto;
	border-radius: 0;
	position: absolute;
	top: -10px;
	left: -10px;
}
section.worries > ul > li:nth-of-type(1) div.pic img.deco {
	width: 57px;
	top: -10px;
	left: 0;
}
section.worries > ul > li:nth-of-type(2) div.pic img.deco {
	width: 82px;
	top: -20px;
	left: -10px;
}
section.worries > ul > li:nth-of-type(3) div.pic img.deco {
	width: 64px;
	top: -20px;
	left: -10px;
}
section.worries h3 {
	margin-top: 20px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	color: #0f172a;
}
section.worries h3 span {
	color: #2aacbd;
}
section.worries > ul > li > p {
	margin-top: 20px;
	font-size: 15.2px;
	font-weight: 400;
	line-height: 1.6;
	color: #0f172a;
}




/* その迷い、ポケットカーズで（帯＋CTA） *******************/
section.solution {
	background-color: #fff3e6;
	padding-top: 20px;
	padding-bottom: 60px;
	position: relative;
}
/*家族イラストの帯（.bpc/.bsp が display:block のため margin で中央に置く）*/
section.solution div.solution_pic {
	font-size: 0;
	text-align: center;
}
section.solution div.solution_pic img {
	width: 1140px;
	margin: 0 auto;
}
/*帯に重ねる見出し*/
section.solution div.solution_mds {
	width: 100%;
	padding: 0 20px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
section.solution.solution-2 div.solution_mds {
	top: 40px;
}
section.solution div.solution_mds > p {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #0f172a;
}
section.solution div.solution_mds > h2 {
	margin-top: 10px;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.84;
	letter-spacing: 0.05em;
	color: #0f172a;
}
section.solution div.solution_mds > h2 span {
	font-size: 30px;
	color: #ff7a50;
}
/*CTAを載せる角丸帯（帯画像の直下に置く）*/
section.solution div.cv {
	max-width: 1140px;
	background-color: #ffd2a5;
	border-radius: 18px;
	margin: 0 auto;
	padding: 30px 20px 40px;
}




/* スライドドアのメリットと気になる点 *******************/
section.merit {
	background-color: #ffffff;
	padding-bottom: 80px;
}
section.merit ul.merit_list {
	display: flex;
	justify-content: space-between;
	margin-top: 55px;
}
section.merit ul.merit_list > li {
	width: 550px;
	background-color: #f8fafc;
	border-radius: 18px;
	padding: 50px 60px 40px;
	position: relative;
}
/*カード上端に半分かかるタグ*/
section.merit ul.merit_list p.tag {
	width: 154px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
	margin-top: 0;
}
section.merit ul.merit_list p.tag::before {
	margin-right: 6px;
	font-size: 18px;
	font-weight: 500;
	font-family: "Font Awesome 6 Free";
}
section.merit ul.merit_list > li:nth-of-type(1) {
	border: 2px solid #ff6b81;
}
section.merit ul.merit_list > li:nth-of-type(1) p.tag {
	background-color: #ff6b81;
}
section.merit ul.merit_list > li:nth-of-type(1) p.tag::before {
	content: '\f35b';
}
section.merit ul.merit_list > li:nth-of-type(2) {
	border: 2px solid #0d9488;
}
section.merit ul.merit_list > li:nth-of-type(2) p.tag {
	background-color: #0d9488;
}
section.merit ul.merit_list > li:nth-of-type(2) p.tag::before {
	content: '\f358';
}
section.merit ul.merit_list h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #0f172a;
	text-align: center;
}
section.merit ul.merit_list > li > p {
	margin-top: 18px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #64748b;
}

/*納得の理由（大枠） *******************/
section.merit div.reason {
	background: linear-gradient(180deg, #ffffff 0%, #fff3e6 100%);
	border: 2px solid #ff7a50;
	border-radius: 18px;
	margin-top: 52px;
	padding: 52px 60px 40px;
	position: relative;
}
/*枠上端に載る「ご安心ください！」*/
section.merit div.reason p.tag {
	width: 200px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #ff7a50;
}
section.merit div.reason p.tag::before {
	content: '\e574';
	margin-right: 8px;
	font-size: 18px;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
}
section.merit div.reason > h3 {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #0f172a;
	text-align: center;
}
section.merit div.reason > h3 span {
	color: #ff7a50;
}
section.merit div.reason div.reason_body {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
section.merit div.reason div.pic {
	width: 448px;
	font-size: 0;
}
section.merit div.reason div.pic img {
	width: 100%;
	border-radius: 12px;
}
section.merit div.reason dl {
	width: 530px;
}
section.merit div.reason dt {
	padding-left: 20px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #0f172a;
	position: relative;
}
section.merit div.reason dt span {
	color: #ff7a50;
}
section.merit div.reason dt::before {
	content: '\f00c';
	position: absolute;
	top: 2px;
	left: 0;
	font-size: 15px;
	font-weight: 900;
	color: #ff7a50;
	font-family: "Font Awesome 5 Free";
}
section.merit div.reason dd {
	margin-top: 7px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: #0f172a;
}
section.merit div.reason dd + dt {
	margin-top: 30px;
}
/*締めの白箱*/
section.merit div.reason p.note {
	background-color: #ffffff;
	border-radius: 8px;
	margin: 40px -10px 0;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8;
	color: #0f172a;
	text-align: center;
}
section.merit div.reason p.note span {
	color: #ff7a50;
}




/* 手動・片側電動・両側電動の違い *******************/
section.type {
	background-color: #f1f5f9;
	padding-bottom: 80px;
}
section.type > ul {
	display: flex;
	justify-content: space-between;
	margin-top: 66px;
}
section.type > ul > li {
	width: 356px;
}
/*カード上のマイクロコピー（色はカードごと）*/
section.type p.copy {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
}
section.type li.type-1 p.copy {
	color: #ff7a50;
}
section.type li.type-2 p.copy {
	color: #ff6b81;
}
section.type li.type-3 p.copy {
	color: #0d9488;
}
section.type div.type_box {
	min-height: 513px;
	background-color: #ffffff;
	border-radius: 18px;
	margin-top: 10px;
	padding: 30px 26px 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
/*アイコン＋タイトル＋対象バッジ*/
section.type div.type_head {
	padding-left: 67px;
	position: relative;
}
section.type div.type_head div.icon {
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
section.type div.type_head div.icon img {
	width: 100%;
}
section.type div.type_head h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.05em;
	color: #0f172a;
}
section.type div.type_head p.tag {
	display: inline-block;
	border-radius: 6px;
	margin-top: 4px;
	padding: 3px 10px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	color: #ffffff;
}
section.type dl {
	margin-top: 22px;
}
section.type dt {
	padding-left: 20px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	position: relative;
}
section.type dt::before {
	position: absolute;
	top: 2px;
	left: 0;
	font-size: 14px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
section.type dt.mrt::before {
	content: '\f058';
}
section.type dt.ntc::before {
	content: '\f06a';
}
section.type dt.rcm::before {
	content: '\f118';
}
section.type dd {
	margin-top: 5px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #64748b;
}
section.type dd + dt {
	margin-top: 20px;
}
/*搭載グレード例*/
section.type p.grade {
	background-color: #f8fafc;
	margin-top: 20px;
	padding: 10px 10px 10px 20px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.6;
	color: #0f172a;
}
section.type p.grade b {
	font-weight: 700;
}
/*カードごとの色分け*/
section.type li.type-1 div.type_head div.icon {
	background-color: #ffece2;
}
section.type li.type-1 div.type_head p.tag {
	background-color: #ff7a50;
}
section.type li.type-1 dt {
	color: #ff7a50;
}
section.type li.type-1 p.grade {
	border-left: 4px solid #ff7a50;
}
section.type li.type-2 div.type_head div.icon {
	background-color: #ffe4e9;
}
section.type li.type-2 div.type_head p.tag {
	background-color: #ff6b81;
}
section.type li.type-2 dt {
	color: #ff6b81;
}
section.type li.type-2 p.grade {
	border-left: 4px solid #ff6b81;
}
section.type li.type-3 div.type_head div.icon {
	background-color: #d9f2ef;
}
section.type li.type-3 div.type_head p.tag {
	background-color: #0d9488;
}
section.type li.type-3 dt {
	color: #0d9488;
}
section.type li.type-3 p.grade {
	border-left: 4px solid #0d9488;
}




/* 生活シーン別に見るスライドドアの快適ポイント *******************/
section.scene {
	background-color: #fff3e6;
}
section.scene > ul {
	display: flex;
	justify-content: space-between;
	margin-top: 55px;
}
section.scene > ul > li {
	width: 356px;
	background-color: #ffffff;
	border-radius: 18px;
	padding: 30px 30px 34px;
}
section.scene div.pic {
	font-size: 0;
}
section.scene div.pic img {
	width: 100%;
	border-radius: 12px;
}
section.scene h3 {
	margin-top: 20px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	color: #0f172a;
}
section.scene h3 span {
	color: #ff7a50;
}
section.scene > ul > li > p {
	margin-top: 20px;
	font-size: 15.2px;
	font-weight: 400;
	line-height: 1.6;
	color: #0f172a;
}




/* 買う前に知ってほしい後悔ポイントも正直に *******************/
section.honest {
	background-color: #ffffff;
	padding-bottom: 80px;
}
section.honest div.honest_box {
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	margin-top: 34px;
	padding: 40px 60px 40px;
}
section.honest div.honest_box > h3 {
	padding-bottom: 40px;
	border-bottom: 1px solid #e2e8f0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #0f172a;
	text-align: center;
}
/*左列＝1・3項目、右列＝2・4項目（dt/ddの並び順にかかわらず列を固定する）*/
section.honest dl {
	display: grid;
	grid-template-columns: 480px 480px;
	justify-content: space-between;
	padding-top: 41px;
}
section.honest dt:nth-of-type(1) {
	grid-area: 1 / 1;
}
section.honest dd:nth-of-type(1) {
	grid-area: 2 / 1;
}
section.honest dt:nth-of-type(2) {
	grid-area: 1 / 2;
}
section.honest dd:nth-of-type(2) {
	grid-area: 2 / 2;
}
section.honest dt:nth-of-type(3) {
	grid-area: 3 / 1;
}
section.honest dd:nth-of-type(3) {
	grid-area: 4 / 1;
}
section.honest dt:nth-of-type(4) {
	grid-area: 3 / 2;
}
section.honest dd:nth-of-type(4) {
	grid-area: 4 / 2;
}
section.honest dt {
	width: 480px;
	padding-left: 24px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #0F172A;
	position: relative;
}
section.honest dt::before {
	content: '\f058';
	position: absolute;
	top: 2px;
	left: 0;
	font-size: 16px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	color: #0d9488;
}
section.honest dd {
	width: 480px;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #64748b;
}
/*3つ目のdt（左列2段目）の上余白*/
section.honest dt:nth-of-type(3),
section.honest dt:nth-of-type(4) {
	margin-top: 34px;
}
/*アドバイザーの白箱*/
section.honest div.advisor {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 8px;
	margin-top: 39px;
	padding: 0;
	overflow: hidden;
}
section.honest div.advisor div.pic {
	width: 240px;
	font-size: 0;
	flex-shrink: 0;
	line-height: 1;
}
section.honest div.advisor div.pic img {
	width: 100%;
}
section.honest div.advisor > p {
	padding: 20px 0 20px 60px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	color: #0f172a;
}
section.honest div.advisor > p span {
	color: #ff7a50;
}




/* 子育て家族にうれしい！安全・快適機能のすべて *******************/
section.safety {
	background-color: #fff3e6;
	padding-bottom: 80px;
}
section.safety > div.wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 74px;
}
section.safety div.safety_pic {
	width: 554px;
	font-size: 0;
	flex-shrink: 0;
}
section.safety div.safety_pic img {
	width: 100%;
}
section.safety > div.wrapper > ul {
	width: 554px;
}
section.safety > div.wrapper > ul > li {
	background-color: #ffffff;
	border-radius: 18px;
	padding: 20px 30px 20px 30px;
}
section.safety > div.wrapper > ul > li + li {
	margin-top: 20px;
}
section.safety > div.wrapper > ul h3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #0f172a;
}
/*機能アイコン*/
section.safety > div.wrapper > ul > li h3::before {
	width: 28px;
	display: inline-block;
	background-color: #FF7A50;
	padding: 6px 0;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 900;
	color: #ffffff;
	text-align: center;
	line-height: 1;
	font-family: "Font Awesome 6 Free";
	margin-right: 10px;
}
section.safety li.fnc-1 h3::before {
	content: '\e59d';
}
section.safety li.fnc-2 h3::before {
	content: '\f54b';
}
section.safety li.fnc-3 h3::before {
	content: '\f023';
}
section.safety li.fnc-4 h3::before {
	content: '\f084';
}
section.safety > div.wrapper > ul p {
	margin-top: 13px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #64748b;
}




/* 人気のスライドドア軽自動車 徹底比較 *******************/
section.hikaku {
	background-color: #f9fafc;
	padding-top: 60px;
	padding-bottom: 80px;
}
section.hikaku > div.wrapper {
	margin-top: 40px;
}
/*左右にスクロールできます*/
section.hikaku p.memo {
	font-size: 13px;
	font-weight: 400;
	color: #333;
	margin-top: 2px;
	margin-bottom: 2px;
}
/*表の下の注記*/
section.hikaku p.note {
	width: 100%;
	max-width: 1140px;
	margin: 42px auto 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #64748b;
}
section.hikaku div.cv {
	margin-top: 40px;
}




/*比較表*/
/*表の外枠（全体幅1140px。PCはスクロールなしの全部表示・SPのみ縦横スクロール＋行列固定）*/
section.hikaku div.hikaku_frame {
	width: 100%;
	max-width: 1140px;
	margin: 40px auto 0;
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
	position: relative;
	z-index: 1
}
section.hikaku div.wrapper {
	width: 100%;
	max-width: 1140px;
	/* margin: 40px auto 0; */
	background-color: #fff;
	/* border-radius: 12px; */
	overflow-x: auto;
	/* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
}
/*collapseだと固定セルの罫線が置き去りになるためseparateで組む*/
section.hikaku table {
	width: 100%;
	min-width: 900px;
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
}
/*見出し行（タイトルは折り返さない・上に固定・列間に区切り線）*/
section.hikaku th {
	padding: 20px;
	background-color: #0f172a;
	border-right: 1px solid #334155;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	vertical-align: middle;
	white-space: nowrap;
	position: sticky;
	top: 0;
	z-index: 2;
}
/*左上の角セル（上下左右どちらのスクロールでも動かないため最前面）*/
section.hikaku thead th:first-of-type {
	width: 115px;
	left: 0;
	z-index: 3;
}
/*見出し内の補足文*/
section.hikaku thead th span {
	font-size: 12px;
	color: #64748b;
}
section.hikaku td {
	padding: 20px;
	border-right: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	font-size: 15px;
	vertical-align: middle;
}
/*「安全・基本装備」の内容*/
section.hikaku td:nth-of-type(4) {
	text-align: center;
}
/*右端の列は外枠と重なるため区切り線なし*/
section.hikaku th:last-of-type,
section.hikaku td:last-of-type {
	border-right: none;
}
/*車種セル（車種名→タグ→写真→在庫ボタンの縦積み・左に固定）*/
section.hikaku tbody td:first-of-type {
	padding: 14px 15px;
	position: sticky;
	left: 0;
	z-index: 1;
	background-color: #fff;
}
/*メーカー＋車種名（横並びのまま折り返さない）*/
section.hikaku tbody td:first-of-type strong {
	display: block;
	white-space: nowrap;
}
/*No.1タグの置き場*/
section.hikaku tbody td:first-of-type span {
	display: inline-block;
	margin-top: 6px;
}
/*外観写真の枠（支給写真が白背景のため枠も白・containで切れなく収める）*/
section.hikaku tbody td:first-of-type div {
	width: 120px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	background-color: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
section.hikaku tbody td:first-of-type div img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}
/*在庫一覧ボタン（リンク先は仮の#）*/
section.hikaku tbody td:first-of-type a {
	/* width: fit-content; */
	display: block;
	margin-top: 10px;
	padding: 8px 28px 8px 14px;
	background-color: #2563eb;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	transition: opacity 0.3s ease;
}
/*ボタン右端の山括弧*/
section.hikaku tbody td:first-of-type a::after {
	content: '';
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
}
section.hikaku tbody td:first-of-type a:hover {
	opacity: 0.8;
}
/*強調行（固定セルにも同じ背景を敷く。hoverが優先されるようhoverより先に書く）*/
section.hikaku tbody tr.highlight_row,
section.hikaku tbody tr.highlight_row td:first-of-type {
	background-color: #fdfefe;
}
section.hikaku tbody tr:hover,
section.hikaku tbody tr:hover td:first-of-type {
	background-color: #f1f5f9;
}
/*車名下のNo.1タグ（-1=青 / -2=橙）*/
section.hikaku td span.car_tag-1,
section.hikaku td span.car_tag-2 {
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
}
section.hikaku td span.car_tag-1 {
	background-color: #2563eb;
}
section.hikaku td span.car_tag-2 {
	background-color: #f97316;
}
/*装備バッジ（-1=緑:標準 / -2=橙:グレード条件付き）*/
section.hikaku td span.badge-1,
section.hikaku td span.badge-2 {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
}
section.hikaku td span.badge-1 {
	background-color: #dcfce7;
	color: #15803d;
}
section.hikaku td span.badge-2 {
	background-color: #ffedd5;
	color: #c2410c;
}
/*安全・基本装備セル（装備アイコンは一定サイズの画像で統一）*/
section.hikaku tbody td:nth-of-type(4) img {
	width: 56px;
	height: 56px;
	margin-right: 4px;
	vertical-align: middle;
}
/*装備の補足注記*/
section.hikaku tbody td:nth-of-type(4) p {
	margin: 6px 0 0;
	font-size: 11px;
	color: #64748b;
}




/* スライドドア目玉車 *******************/
section.medama {
	background-color: #ffd2a5;
	padding-top: 60px;
	padding-bottom: 80px;
}
/*この節だけ見出しまわりが赤（#container付きの共通指定に勝たせる）*/
#container section.medama div.mds_area h2.mds::after {
	background-color: #e60014;
}
#container section.medama div.mds_area p.eisu {
	color: #e60014;
}
/*イベント帯と日付*/
section.medama div.medama_head {
	max-width: 860px;
	margin: 50px auto 0;
	font-size: 0;
	text-align: center;
}
section.medama div.medama_head img {
	width: 100%;
}
section.medama div.medama_head p {
	background-color: #ffffff;
	padding: 8px 10px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #e60014;
}
section.medama div.medama_head p span {
	font-size: 40px;
	vertical-align: text-bottom;
}

/*目玉車一覧*/
section.medama ul {
	width: 95%;
	max-width: 1080px;
	margin: 40px auto 16px;
	display: flex;
	flex-wrap: wrap;
	
}
section.medama ul li {
	width: 246px;
	/* width: calc((100% - 96px) / 4); */
	margin-bottom: 24px;
}
section.medama ul li:not(:nth-of-type(4n)) {
	/* margin-right: 32px; */
	margin-right: calc((100% - 984px) / 3);
}
section.medama 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.medama 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.medama ul li a > img {
	width: 100%;
	height: auto;
	border-radius: 6px 6px 0 0;
}
/*車画像*/
section.medama ul li a div.img_wrap {
	overflow: hidden;
	position: relative;
}
section.medama ul li a div.img_wrap > img {
	width: auto;
	height: 184px;
	transition-duration: 0.5s;
}
/*SOLD OUT*/
section.medama ul li a div.img_wrap > img.sold {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/* 中古/ちょい/未使用車・駆動方式画像 */
section.medama ul li a div.img_wrap > .ctgy {
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 145px;
	display: flex;
	justify-content: space-between;
}
section.medama ul li a div.img_wrap > .ctgy img {
	width: 70px;
	height: auto;
}
section.medama ul li a:hover div.img_wrap > .ctgy img {
	opacity: 1;
}
/*hover*/
section.medama ul li a:hover {
	filter: none;
	transform: translate3d(0, 1px, 0);
}
section.medama ul li a:hover::after {
	display: block;
}
section.medama ul li a:hover div.img_wrap > img {
	/* opacity: 0.7; */
	transform: scale(1.1);
	transition-duration: 0.5s;
}
/*NEW*/
section.medama 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.medama ul li a div.car_name {
	width: 100%;
	padding: 10px 10px;
	background-color: #FFF;
	text-align: center;
}
section.medama ul li a div.car_name p {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
section.medama ul li a div.car_name p:nth-of-type(1) {
	font-size: 20px;
	font-weight: 600;
	color: #000000;
}
section.medama ul li a div.car_name p:nth-of-type(2) {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
}
section.medama ul li a div.car_name p:nth-of-type(3) {
	font-size: 16px;
	font-weight: 500;
	color: #7E7E7E;
}
/*価格部分*/
section.medama ul li a div.car_price {
	width: 100%;
	/* height: 146px; */
	background-color: #FEF2E6;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
section.medama 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.medama 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.medama ul li a div.car_price .total span:last-of-type {
	width: 32px;
	font-size: 16px;
	font-weight: 900;
	color: #000;
}
section.medama ul li a div.car_price .total span:last-of-type small {
	display: block;
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
}
/*内訳*/
section.medama ul li a div.car_price p {
	font-size: 14px;
	font-weight: 500;
	color: #6F6F6F;
	text-align: center;
}
/*ローンご利用時*/
section.medama ul li a div.car_price .loan {
	text-align: center;
	margin-top: 5px;
}
section.medama ul li a div.car_price .loan span {
	width: auto;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	line-height: 1;
}
section.medama ul li a div.car_price .loan p {
	font-size: 16px;
	font-weight: bold;
	color: #E60014;
	line-height: 1;
}
/*車両情報部分*/
section.medama ul li a div.car_data {
	width: 100%;
	background-color: #FFF;
	padding: 10px 10px 12px;
}
/*ローン未表示の余白調整*/
section.medama ul li a div.car_data.pad {
	padding-bottom: 52px;
}
section.medama ul li a div.car_data dl {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/* margin-bottom: 10px; */
}
section.medama 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.medama ul li a div.car_data dl dd {
	width: calc(50% - 35px);
	font-size: 14px;
	font-weight: 500;
	color: #444444;
}
section.medama ul li a div.car_data dl dt:nth-of-type(1),
section.medama ul li a div.car_data dl dd:nth-of-type(1),
section.medama ul li a div.car_data dl dt:nth-of-type(2),
section.medama ul li a div.car_data dl dd:nth-of-type(2) {
	margin-bottom: 5px;
}

/* 中古/ちょい/未使用車・駆動方式画像
section.medama ul li a div.car_data div {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
section.medama ul li a div.car_data div img {
	width: 106px;
	height: auto;
}
*/
/*hover消し*/
section.medama ul li a:hover div.car_data div img {
	opacity: 1;
}
/*店舗名*/
section.medama 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.medama > 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.medama p.note {
	width: 95%;
	max-width: 1080px;
	margin: 8px auto 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6;
	color: #707070;
}






/* 車種から探す *******************/
section.model {
	background-color: #fff3e6;
	padding-bottom: 80px;
}
/*4列×2段（165px枠＋左右15pxで1列195px）*/
section.model > div.wrapper > ul {
	max-width: 780px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 55px auto 0;
}
section.model > div.wrapper > ul > li {
	width: 165px;
	margin: 0 15px 20px;
}
section.model > div.wrapper > ul > li > a {
	display: block;
	background-color: #ffffff;
	border: 1px solid #ff7a50;
	border-radius: 12px;
	padding: 10px 10px 8px;
	text-align: center;
	transition: opacity 0.3s ease;
	filter: drop-shadow(0px 3px 0px #FF7A50);
}
/*hover*/
section.model > div.wrapper > ul > li > a:hover {
	filter: none;
	transform: translate3d(0, 3px, 0);
}
section.model > div.wrapper > ul > li > a:hover {
	opacity: 0.8;
}
section.model > div.wrapper > ul img {
	width: 124px;
	margin: 0 auto;
}
section.model > div.wrapper > ul span {
	display: block;
	margin-top: 6px;
	padding-right: 14px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #0f172a;
	position: relative;
}
section.model > div.wrapper > ul span::after {
	content: '\f054';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	font-size: 13px;
	font-weight: 900;
	color: #ff7a50;
	font-family: "Font Awesome 5 Free";
}
/*吹き出しつきの注記*/
section.model p.note {
	max-width: 860px;
	background-color: #ffffff;
	border-radius: 6px;
	margin: 23px auto 0;
	padding: 20px 40px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	color: #0f172a;
	position: relative;
}
section.model p.note span {
	font-weight: 700;
	color: #FF6B81;
}
section.model p.note::after {
	content: '';
	width: 0;
	height: 0;
	border-top: 10px solid #ffffff;
	border-right: 9px solid transparent;
	border-left: 9px solid transparent;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
/*お問い合わせ（白地・グラデ枠のボタン）*/
section.model div.cv {
	margin-top: 39px;
}
section.model div.cv > p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #0f172a;
}
/*白地＋グラデーションの枠線*/
section.model div.cv > a {
	background-color: #ffffff;
	background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #ff6b81 0%, #ff7a50 100%);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	border: 3px solid transparent;
	color: #ff6b81;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
}
section.model div.cv > a:hover {
	filter: none;
	opacity: 0.8;
}
section.model div.cv > a::before {
	content: '\f0e0';
	font-size: 26px;
}
section.model div.cv > a::after {
	color: #ff7a50;
}




/* よくある質問 *******************/
section.faq {
	background-color: #f9fafc;
	padding-bottom: 80px;
}
section.faq dl {
	max-width: 860px;
	margin-top: 55px;
}
/*質問（開閉ボタン）*/
section.faq dt {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 14px 60px 14px 49px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #0f172a;
	cursor: pointer;
	position: relative;
}
section.faq dt + dt,
section.faq dd + dt {
	margin-top: 20px;
}
section.faq dt::before {
	content: 'Q.';
	position: absolute;
	top: 15px;
	left: 22px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.15em;
	color: #ff7a50;
	font-family: Arial, sans-serif;
}
section.faq dt::after {
	content: '\f078';
	position: absolute;
	top: 17px;
	right: 24px;
	font-size: 16px;
	font-weight: 900;
	color: #ff7a50;
	font-family: "Font Awesome 5 Free";
	transition: transform 0.3s ease;
}
section.faq dt.is-open::after {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}
/*回答*/
section.faq dd {
	display: none;
	background-color: #ffffff;
	border-right: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	border-left: 1px solid #e2e8f0;
	border-radius: 0 0 12px 12px;
	margin-top: -12px;
	padding: 22px 22px 22px 22px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #64748b;
}
section.faq dd::before {
	content: '';
	width: calc(100% - 42px);
	height: 2px;
	display: block;
	background-color: #f8fafc;
	margin: -22px 0 22px;
}






/* フッター調整用 *******************/
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;
}
div.top_floating_menu.is-active {
	top: 0;
}
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: 700;
}




/* 見出しまわり共通 *******************/
#container div.mds_area {
	padding-top: 62px;
}
#container div.mds_area h2.mds {
	margin-top: 13px;
	font-size: min(6.4vw, 24px);
	line-height: 1.67;
}
#container div.mds_area h2.mds::after {
	margin-top: 14px;
}
#container div.mds_area p.lead {
	max-width: 600px;
	margin: 20px auto 0;
	text-align: left;
}




/* CTA（来店予約ボタン） *******************/
div.cv > p img {
	width: min(65vw, 244px);
}
div.cv > a {
	width: 100%;
	max-width: 335px;
	height: 60px;
	border-radius: 30px;
	margin-top: 8px;
	font-size: min(5vw, 19px);
}
div.cv > a::before {
	margin-right: 10px;
	font-size: 22px;
}
div.cv > a::after {
	width: 26px;
	height: 26px;
	right: 12px;
	font-size: 13px;
}




/* FV *******************/
section.top_visual {
	height: 500px;
	background-image: url(../images/feature-slide/Firefly.png);
}
section.top_visual > div.wrapper {
	padding: 21px 10px 0;
	position: relative;
}
section.top_visual div.fv_mds {
	width: 100%;
	margin-left: 0;
}
section.top_visual div.cv {
	width: calc(100% - 20px);
	position: absolute;
	bottom: 30px;

	margin: 0 auto 0;
}




/* こんな迷いはありませんか？ *******************/
section.worries {
	padding-bottom: 30px;
}
section.worries > ul {
	display: block;
	max-width: 600px;
	margin-top: 53px;
	padding: 0 20px;
}
section.worries > ul > li {
	width: 100%;
	padding: 42px 30px 30px;
}
section.worries > ul > li + li {
	margin-top: 30px;
}
section.worries > ul > li:nth-of-type(1) div.pic img.deco {
	top: -20px;
	left: -10px;
}
section.worries h3 {
	margin-top: 20px;
}
section.worries > ul > li > p {
	margin-top: 20px;
}
/*2つ目のマーク*/
section.worries > ul > li:nth-of-type(2) div.pic img.deco {
	left: unset;
	right: -10px;
}




/* その迷い、ポケットカーズで（帯＋CTA） *******************/
section.solution {
	padding-top: 0;
	padding-bottom: 0;
}
section.solution div.solution_pic img {
	width: 100%;
	max-width: 600px !important;
}
/*SPは見出しと帯画像が重ならず、上下に並ぶ*/
section.solution div.solution_mds {
	padding: 20px 20px 21px;
	position: static;
}
section.solution div.solution_mds > p {
	font-size: min(5.4vw, 20px);
	line-height: 1.45;
}
section.solution div.solution_mds > h2 {
	margin-top: 4px;
	font-size: min(5.4vw, 20px);
	line-height: 1.8;
}
section.solution div.solution_mds > h2 span {
	font-size: min(6vw, 26px);
}
section.solution div.cv {
	border-radius: 0;
	margin-top: 0;
	padding: 30px 20px 50px;
}




/* スライドドアのメリットと気になる点 *******************/
section.merit {
	padding-bottom: 50px;
}
section.merit ul.merit_list {
	max-width: 600px;
	display: block;
	margin: 48px auto 0;
	padding: 0 20px;
}
section.merit ul.merit_list > li {
	width: 100%;
	padding: 35px 30px 30px;
}
section.merit ul.merit_list > li + li {
	margin-top: 53px;
}
section.merit ul.merit_list p.tag {
	width: 126px;
	height: 26px;
	font-size: 14px;
}
section.merit ul.merit_list h3 {
	font-size: min(5vw, 20px);
}
section.merit ul.merit_list > li > p {
	font-size: 15px;
	line-height: 1.6;
}
/*納得の理由*/
section.merit div.reason {
	width: calc(100% - 40px);
	max-width: 600px;
	margin: 50px auto 0;
	padding: 40px 25px 30px;
}
section.merit div.reason p.tag {
	width: 160px;
	font-size: 14px;
}
section.merit div.reason > h3 {
	font-size: min(5vw, 20px);
	line-height: 1.6;
}
section.merit div.reason div.reason_body {
	display: block;
	margin-top: 21px;
}
section.merit div.reason div.pic {
	width: 100%;
}
section.merit div.reason dl {
	width: 100%;
	margin-top: 30px;
}
section.merit div.reason dd + dt {
	margin-top: 27px;
}
section.merit div.reason p.note {
	margin: 30px -5px 0;
	padding: 20px 15px;
	line-height: 1.63;
	text-align: left;
}




/* 手動・片側電動・両側電動の違い *******************/
section.type {
	padding-bottom: 50px;
}
section.type > ul {
	max-width: 600px;
	display: block;
	margin-top: 42px;
	padding: 0 20px;
}
section.type > ul > li {
	width: 100%;
}
section.type > ul > li + li {
	margin-top: 40px;
}
section.type div.type_box {
	min-height: unset;
	padding: 30px;
}
section.type dl {
	margin-top: 20px;
}
section.type p.grade {
	margin-top: 18px;
}




/* 生活シーン別に見るスライドドアの快適ポイント *******************/
section.scene {
	padding-bottom: 30px;
}
section.scene > ul {
	max-width: 600px;
	display: block;
	margin-top: 54px;
	padding: 0 20px;
}
section.scene > ul > li {
	width: 100%;
	padding: 30px 30px 34px;
}
section.scene > ul > li + li {
	margin-top: 30px;
}




/* 買う前に知ってほしい後悔ポイントも正直に *******************/
section.honest {
	padding-bottom: 50px;
}
section.honest div.wrapper {
	width: 90%;
	max-width: 600px;
}
section.honest div.honest_box {
	margin: 32px 0 0;
	padding: 42px 26px 30px;
}
section.honest div.honest_box > h3 {
	padding-bottom: 32px;
	font-size: 20px;
}
/*SPは1列に戻す（PCのグリッド指定を解除）*/
section.honest dl {
	display: block;
	padding-top: 31px;
}
section.honest dt,
section.honest dd {
	width: 100%;
}
section.honest dt:nth-of-type(1),
section.honest dt:nth-of-type(2),
section.honest dt:nth-of-type(3),
section.honest dt:nth-of-type(4),
section.honest dd:nth-of-type(1),
section.honest dd:nth-of-type(2),
section.honest dd:nth-of-type(3),
section.honest dd:nth-of-type(4) {
	grid-area: auto;
}
section.honest dt {
	font-size: 14px;
}
section.honest dt:nth-of-type(2),
section.honest dt:nth-of-type(3),
section.honest dt:nth-of-type(4) {
	margin-top: 30px;
}
/*SPは文章が上・写真が下*/
section.honest div.advisor {
	display: flex;
	flex-direction: column-reverse;
	margin-top: 32px;
	padding: 20px 0 0;
}
section.honest div.advisor div.pic {
	width: 100%;
}
section.honest div.advisor > p {
	padding: 0 20px 20px;
	font-size: 16px;
	line-height: 1.63;
}




/* 子育て家族にうれしい！安全・快適機能のすべて *******************/
section.safety {
	padding-bottom: 50px;
}
section.safety > div.wrapper {
	width: 90%;
	max-width: 600px;
	display: block;
	margin-top: 32px;
	/* padding: 0 20px; */
}
section.safety div.safety_pic {
	width: 100%;
}
section.safety > div.wrapper > ul {
	width: 100%;
	margin-top: 40px;
}
section.safety > div.wrapper > ul > li {
	padding: 28px 26px 25px 26px;
}
section.safety > div.wrapper > ul h3 {
	min-height: 50px;
	display: flex;
	align-items: center;
}
section.safety > div.wrapper > ul > li h3::before {
	width: 50px;
	height: 50px;
	font-size: 24px;
    padding: 12px 0;
}
section.safety > div.wrapper > ul p {
	padding-left: 58px;
	margin-top: 0;
}






/* 人気のスライドドア軽自動車 徹底比較 *******************/
section.hikaku {
	padding: 0 15px 50px;
}
section.hikaku > div.mds_area {
	margin-bottom: 50px;
}

/*SPは縦横スクロール＋行列固定で閲覧*/
section.hikaku div.hikaku_frame {
	margin-top: 0;
}
section.hikaku div.wrapper {
	/*max-height: 660px;*/
	overflow: auto;
}
/*列幅を固定値で釘打ちする（autoだと余り幅が配られ145pxを超えるため）*/
section.hikaku table {
	table-layout: fixed;
}
/*幅にpaddingを含めて数えるようにする（合計900px＝min-widthと一致）*/
section.hikaku th,
section.hikaku td {
	box-sizing: border-box;
}
/*車種セルは幅145px（320px画面のほぼ45%）に詰める*/
section.hikaku th {
	padding: 14px 12px;
}
section.hikaku thead th:nth-of-type(1) {
	width: 145px;
}
section.hikaku thead th:nth-of-type(2) {
	width: 175px;
}
section.hikaku thead th:nth-of-type(3) {
	width: 195px;
}
section.hikaku thead th:nth-of-type(4) {
	width: 240px;
}
section.hikaku thead th:nth-of-type(5) {
	width: 145px;
}
section.hikaku td {
	padding: 14px 12px;
}
section.hikaku tbody td:first-of-type {
	padding: 10px;
}
section.hikaku tbody td:first-of-type strong {
	font-size: 13px;
}
/*写真枠はセル幅いっぱいに縮める*/
section.hikaku tbody td:first-of-type div {
	width: 100%;
	height: 70px;
}
section.hikaku tbody td:first-of-type a {
	padding: 7px 22px 7px 10px;
	font-size: 11px;
}

section.hikaku p.note {
	margin-top: 30px;
}





/* スライドドア目玉車 *******************/
section.medama {
	padding-top: 0;
	padding-bottom: 50px;
}
section.medama > div.wrapper {
	padding: 0 15px;
}
section.medama div.medama_head {
	margin-top: 55px;
}
section.medama div.medama_head p {
	width: 100%;
	max-width: unset;
	padding: 5px 10px;
	font-size: min(4.3vw, 16px);
	text-align: center;
}
section.medama div.medama_head p span {
	font-size: 24px;
}

/**一覧**/
/**３列**/
section.medama ul {
	width: 100%;
	max-width: 802px;
}
section.medama ul li {
	margin-right: 0;
}
section.medama ul li:not(:nth-of-type(4n)) {
	margin-right: 0;
}
section.medama ul li:not(:nth-of-type(3n)) {
	margin-right: 32px;
}

/**２列**/
@media screen and (max-width: 859px) {
	/*目玉車一覧*/
	section.medama ul {
		max-width: 499px;
	}
	section.medama ul li {
		margin-right: 0;
		margin-bottom: 20px;
		width: calc((100% - 7px) / 2);
		max-width: 246px;
	}
	section.medama ul li:not(:nth-of-type(3n)) {
		margin-right: 0;
	}
	section.medama ul li:not(:nth-of-type(2n)) {
		margin-right: 7px;
	}
	section.medama ul li a {
		filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, .2));
	}
	/*車画像*/
	section.medama ul li a div.img_wrap > img {
		height: min(34vw, 184px);
	}
	/* 中古/ちょい/未使用車・駆動方式画像 */
	section.medama ul li a div.img_wrap > .ctgy {
		min-width: 105px;
	}
	section.medama ul li a div.img_wrap > .ctgy img {
		width: 48%;
		min-width: 50px;
		height: auto;
	}
	/*NEW*/
	section.medama ul li a div.img_wrap.new::after {
		font-size: 12px;
		padding: 0 3px;
	}
	/*車名情報部分*/
	section.medama ul li a div.car_name {
		padding: 5px 8px;
	}
	section.medama ul li a div.car_name p:nth-of-type(1) {
		font-size: 14px;
	}
	section.medama ul li a div.car_name p:nth-of-type(2) {
		font-size: 12px;
	}
	section.medama ul li a div.car_name p:nth-of-type(3) {
		font-size: min(3vw, 12px);
	}
	/*価格部分*/
	section.medama ul li a div.car_price {
		/* height: 125px; */
		/* min-height: 125px; */
		padding-top: 5px;
		padding-bottom: 5px;
	}
	section.medama ul li a div.car_price .total {
		height: 31px;
		font-size: min(3vw, 12px);
	}
	section.medama ul li a div.car_price .total span.eisu {
		font-size: min(8vw, 28px);
		padding: 0 5px;
	}
	section.medama ul li a div.car_price .total span:last-of-type {
		width: max-content;
		font-size: min(3vw, 12px);
	}
	section.medama ul li a div.car_price .total span:last-of-type small {
		font-size: 80%;
	}
	/*内訳*/
	section.medama ul li a div.car_price p {
		font-size: min(3vw, 12px);
	}
	/*ローンご利用時*/
	section.medama ul li a div.car_price .loan {
		margin-top: 0px;
	}
	section.medama ul li a div.car_price .loan span {
		font-size: min(2.67vw,14px);
	}
	section.medama ul li a div.car_price .loan p {
		font-size: min(3.2vw,16px);
	}
	/*車両情報部分*/
	section.medama ul li a div.car_data {
		padding: 10px 10px 8px;
	}
	/*ローン未表示の余白調整*/
	section.medama ul li a div.car_data.pad {
		padding-bottom: 41px;
	}
	section.medama ul li a div.car_data dl dt {
		width: max-content;
		height: 14px;
		font-size: min(2.5vw, 12px);
		padding: 0 2px;
	}
	section.medama ul li a div.car_data dl dd {
		width: calc(50% - 32px);
		font-size: min(3vw, 12px);
		line-height: 14px;
	}
	/* 中古/ちょい/未使用車・駆動方式画像
	section.medama ul li a div.car_data div img {
		width: 48%;
		max-width: 106px;
	}
	*/
	/*店舗名*/
	section.medama ul li a > p {
		height: 20px;
		font-size: min(3vw, 12px);
	}
	/*一覧下注意書き*/
	section.medama > 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.medama ul li a div.car_data {
		padding: 10px 5px 8px;
	}

	section.medama ul li a div.car_data dl dd:nth-of-type(1),
	section.medama ul li a div.car_data dl dd:nth-of-type(2) {
		width: calc(100% - 28px);
	}
	section.medama ul li a div.car_data dl dd:nth-of-type(3),
	section.medama ul li a div.car_data dl dd:nth-of-type(4) {
		width: calc(50% - 28px);
	}


}/* (max-width: 349px)*/




/* 車種から探す *******************/
section.model {
	padding-bottom: 50px;
}
section.model > div.wrapper {
	max-width: 600px;
	padding: 0 20px;
}
/*SPは「画像＋車名」を横並びにした60pxの枠（2列×4段）*/
section.model > div.wrapper > ul {
	max-width: none;
	justify-content: space-between;
	margin-top: 40px;
}
section.model > div.wrapper > ul > li {
	width: calc(50% - 8px);
	margin: 0 0 20px;
}
section.model > div.wrapper > ul > li > a {
	height: 60px;
	display: flex;
	align-items: center;
	padding: 0 10px;
}
section.model > div.wrapper > ul img {
	width: min(15vw, 56px);
	margin: 0;
	flex-shrink: 0;
}
section.model > div.wrapper > ul span {
	flex: 1;
	margin-top: 0;
	padding: 0 13px 0 2px;
	font-size: min(3.73vw, 14px);
	letter-spacing: -0.04em;
	line-height: 1.4;
	text-align: left;
}
section.model p.note {
	margin-top: 30px;
	padding: 20px 25px;
	line-height: 1.6;
	text-align: left;
}
section.model div.cv {
	margin-top: 30px;
}
section.model div.cv > p {
	font-size: min(4.3vw, 16px);
}




/* よくある質問 *******************/
section.faq {
	padding-bottom: 50px;
}
section.faq dl {
	margin-top: 55px;
	padding: 0 20px;
}
section.faq dt {
	padding: 16px 40px 16px 49px;
	font-size: 14px;
	line-height: 1.6;
}
section.faq dt::before {
	top: 17px;
	left: 22px;
}
section.faq dt::after {
	top: 19px;
	right: 18px;
}
section.faq dd {
	padding: 22px 20px;
	font-size: 14px;
}
section.faq dd::before {
	width: calc(100% - 38px);
	margin: -22px 0 22px;
}




/* フッター調整用 *******************/
/*SP追従フッターバー（シェル側）に本文が隠れないように逃がす*/
#container section.faq {
	padding-bottom: 40px;
}


/* フッター調整用 *******************/
footer p.copy {
    padding-bottom: 70px !important;
}





}
