






/************ 共通部分 ************/
/*見出し*/
section h2.mds {
	width: max-content;
	text-align: center;
	margin: 0 auto;
}
section h2.mds p {
	width: max-content;
	margin: 0 auto;
	font-size: 42px;
	font-weight: 900;
	color: #FC0011;
	line-height: 1.4;
	padding-bottom: 10px;
	border-bottom: 1px solid #FC0011;
}
section h2.mds span {
	display: block;
	font-size: 28px;
	font-weight: 900;
	color: #FC0011;
	padding-bottom: 10px;
}








/************ TOPビジュアル ************/
section.top_visual {
	width: 100%;
	background-color: #F9FAFB;
}
section.top_visual div img {
	width: 100%;
	height: auto;
}
section.top_visual div img:nth-of-type(2) {
	display: none;
}

@media screen and (max-width: 599px) {
	section.top_visual div img:nth-of-type(1) {
		display: none;
	}
	section.top_visual div img:nth-of-type(2) {
		display: block;
	}
}









/************ 実績 ************/
section.performance ul {
	width: 100%;
	max-width: 1160px;
	margin: 30px auto 50px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
/*左側*/
section.performance ul li:nth-of-type(1) {
	width: 35%;
	height: 124px;
	display: flex;
	justify-content: center;
	align-items: center;
}
section.performance ul li:nth-of-type(1) div {
	width: 100%;
	height: 90px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #B09C5D;
	padding-left: 14px;
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
	position: relative;
}
/*右側リボン*/
section.performance ul li:nth-of-type(1) div::after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: transparent #FFF transparent transparent;
	border-width: 45px 20px 45px 0;
}
section.performance ul li:nth-of-type(1) div p {
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 10px;
}

/*右側*/
section.performance ul li:nth-of-type(2) {
	width: calc(66% - 65px);
	height: 124px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
section.performance ul li:nth-of-type(2) img {
	width: 32%;
	height: auto;
}








/************ お知らせ ************/
section.info {
	padding-top: 100px;
	padding-bottom: 60px;
}
section.info h2 {
	width: 132px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  	margin: 0 auto;
	background-color: #FC0011;
	border-radius: 8px;
	font-size: 24px;
	font-weight: 900;
	color: #FFF;
	position: relative;
}
section.info h2::after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #FC0011 transparent transparent transparent;
	border-width: 7px 6px 0 6px;
}
section.info > div {
	width: 720px;
	margin: 20px auto 0;
}
section.info > div dl {
	width: 100%;
	min-height: 46px;
	display: flex;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid #818181;
}
section.info > div dl dt {
	width: 237px;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 24px;
	padding-left: 20px;
}
section.info > div dl dt::after {
	background-image: url(../images/info/syaken_logo_pc.png);
	content: '';
	display: inline-block;
	width: 74px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
	margin-left: 20px;
}
section.info > div dl dd {
	width: calc(100% - 257px);
	height: 100%;
	font-size: 18px;
	font-weight: 500;
	color: #000;
	line-height: 24px;
}
/*hover*/
section.info > div a:hover dl dt,
section.info > div a:hover dl dd {
	color: #FC0011;
	transform: translate3d(0, 1px, 0);
}

/*お知らせ一覧はこちらボタン*/
section.info > a {
	width: 300px;
	height: 50px;
	margin: 20px auto 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
	border: 1px solid #FC0011;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 500;
	color: #FC0011;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
}
section.info > a::after {
	content: '\f054';
	font-size: 17px;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	margin-left: 8px;
}
/*hover*/
section.info > a:hover {
	opacity: 0.7;
	filter: none;
	transform: translate3d(0, 1px, 0);
}







/************ 料金表 ************/
section.price {
	padding-top: 40px;
	padding-bottom: 100px;
}

section.price > p {
	font-size: 24px;
	font-weight: 500;
	color: #000;
	line-height: 1.6;
	text-align: center;
	margin-top: 60px;
	margin-bottom: 60px;
}

/*料金テーブル*/
section.price ul {
	width: 100%;
	max-width: 1046px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap:wrap-reverse;
}
section.price ul li {
	width: 302px;
	margin: 0 23px 43px;
}
section.price ul li.kei {
	order: 4;
}
section.price ul li.small {
	order: 5;
}
section.price ul li.medium {
	order: 1;
}
section.price ul li.large {
	order: 2;
}
section.price ul li.exlarge {
	order: 3;
}

section.price ul li > div {
	width: 100%;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
	background-color: #FFF;
	padding: 13px 13px;
	border-radius: 0 0 6px 6px;
}

section.price ul li > h3 {
	width: 100%;
	height: 74px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #2A4EAD;
	border-radius: 6px 6px 0 0;
	font-size: 24px;
	font-weight: bold;
	color: #FFF;
	padding-left: 13px;
	position: relative;
}
section.price ul li > h3 span {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #FFF;
	margin-top: 3px;
}
section.price ul li > h3::after {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	content: '';
	display: inline-block;
	width: 75px;
	height: 50px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
/*軽*/
section.price ul li.kei > h3::after {
	background-image: url(../images/menu/car_kei.png);
}
/*小型*/
section.price ul li.small > h3::after {
	background-image: url(../images/menu/car_s.png);
}
/*中型*/
section.price ul li.medium > h3::after {
	background-image: url(../images/menu/car_m.png);
}
/*大型*/
section.price ul li.large > h3::after {
	background-image: url(../images/menu/car_l.png);
}
/*特大*/
section.price ul li.exlarge > h3::after {
	background-image: url(../images/menu/car_el.png);
}

/*表*/
.pricing-table {
	width: 100%;
	display: grid;
	grid-template-columns: 90px 90px 90px;
	gap: 3px;
	background-color: #ffffff;
}
.cell {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	padding: 10px 0;
}
/* Headers */
.header-blue {
	width: 90px;
	height: 60px;
	background-color: #3f7fbf;
	color: #ffffff;
	font-weight: 500;
	border-radius: 6px 0 0 0;
	font-size: 14px;
	line-height: 1.3;
}
.header-red {
	width: 90px;
	height: 60px;
	background-color: #df3630;
	color: #ffffff;
	font-weight: 500;
	border-radius: 0 6px 0 0;
	font-size: 14px;
	line-height: 1.3;
}
.empty-cell {
	background-color: transparent;
}
/* Labels */
.label-cell {
	width: 90px;
	background-color: #f2f2f2;
	color: #333333;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.3;
}
.radius-tl {
	border-radius: 8px 0 0 0;
}
/* Values */
.value-blue {
	width: 90px;
	background-color: #edf3f9;
	color: #333333;
}
.value-blue .eisu {
	font-size: 18px;
}
.value-red {
	width: 90px;
	background-color: #fdf4ec;
	color: #333333;
}
.value-red .eisu {
	font-size: 18px;
}
.discount-text.label-cell {
	font-size: 15px;
}
/* Typography for values */
.unit {
	font-size: 14px;
	margin-left: 2px;
}
/* Discount text */
.discount-text {
	height: 60px;
	color: #FC0011;
}

/* Discount Row */
.discount-text.label-cell {
	font-size: 16px;
	font-weight: bold;
}
.discount-text.value-blue .eisu {
	font-size: 20px;
	font-weight: bold;
}
.discount-text.value-red .eisu {
	font-size: 20px;
	font-weight: bold;
}
.discount-text .unit {
	font-weight: bold;
}

/* Footer Row */
.footer-label {
	width: 90px;
	background-color: #FC0011;
	color: #FFF703;
	font-weight: bold;
	font-size: 15px;
	padding: 14px 0;
	line-height: 1.3;
}
.radius-bl {
	border-radius: 0 0 0 8px;
}
.footer-value {
	width: 90px;
	background-color: #FC0011;
	font-size: 22px;
	color: #FFF703;
	font-weight: bold;
	padding: 14px 0;
}
.radius-br {
	border-radius: 0 0 8px 0;
}
.unit-lg {
	font-size: 14px;
	font-weight: bold;
	margin-left: 2px;
}

/*詳しい料金表はこちら*/
section.price > a {
	width: 400px;
	height: 72px;
	margin: 40px auto 80px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
	border: 1px solid #FC0011;
	border-radius: 8px;
	font-size: 24px;
	font-weight: 500;
	color: #FC0011;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
}
section.price > a::after {
	content: '\f054';
	font-size: 20px;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	margin-left: 25px;
}
/*hover*/
section.price > a:hover {
	opacity: 0.7;
	filter: none;
	transform: translate3d(0, 1px, 0);
}

section.price > div.note {
	width: 1000px;
	margin: 0 auto;
}
section.price > div.note p {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	line-height: 1.6;
	padding-left: 1em;
	text-indent: -1em;
}
section.price > div.note p a {
	border-bottom: 1px solid #000;
}

/*SP用スライダー*/
.swiper-pagination {
	display: none;
}









/************ 他社との比較 ************/
section.compare {
	background-color: #FFFFF3;
	padding-top: 60px;
}

section.compare > p {
	font-size: 20px;
	font-weight: 500;
	color: #000;
	line-height: 1.6;
	text-align: center;
	margin-top: 60px;
	margin-bottom: 60px;
}
/*比較表*/
section.compare table {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
section.compare table tr th {
	width: 464px;
	vertical-align: middle;
}
section.compare table tr td {
	vertical-align: middle;
}
/*左側*/
/*見出し*/
section.compare table tr:nth-of-type(odd) th:nth-of-type(1) p {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 14px;
}
/*枠内*/
section.compare table tr:nth-of-type(2n) td:nth-of-type(1) {
	background-image: url(../images/top/compare_1_pc.png);
	background-size: cover;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
	line-height: 1.4;
}
section.compare table tr:nth-of-type(4) td:nth-of-type(1),
section.compare table tr:nth-of-type(6) td:nth-of-type(1) {
	font-size: 16px;
}
section.compare table tr:nth-of-type(2n) td:nth-of-type(1) p {
	width: max-content;
	margin: 0 auto;
}

/*右側*/
section.compare table tr:nth-of-type(odd) th:last-of-type p {
	width: max-content;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 500;
	color: #FFF703;
	margin-top: 20px;
	margin-bottom: 10px;
	background-color: #FF0215;
	padding: 4px 9px 6px 9px;
	border-radius: 8px;
}
section.compare table tr:nth-of-type(2n) td:last-of-type div {
	background-color: #fff;
	border: 2px solid #FF0215;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	color: #FF0215;
	line-height: 1.4;
	padding: 10px 40px;
}
section.compare table tr:nth-of-type(2n) td:last-of-type div b {
	display: inline;
	font-weight: bold;
	background: linear-gradient(transparent 5%, #FFF703 90%, transparent 100%);
}
/*※1日お預かり時のみ*/
section.compare table tr:nth-of-type(2n) td:last-of-type p {
	font-size: 14px;
	font-weight: 400;
	color: #FF0215;
	text-align: right;
	margin-top: 2px;
	margin-right: 16px;
}

/*隙間*/
section.compare table tr td.kara {
	width: 72px;
	position: relative;
}

/*矢印*/
section.compare table tr:nth-of-type(2n) td.kara::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	background-image: url(../images/top/compare_right.png);
	content: '';
	display: inline-block;
	width: 38px;
	height: 26px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
/*コバサンタ*/
section.compare > img {
	display: block;
	width: 472px;
	height: auto;
	margin: 64px auto 0;
}









/************ よくある質問 ************/
section.faq {
	padding-top: 60px;
	padding-bottom: 100px;
}
section.faq h2 {
	margin-bottom: 40px;
}
section.faq dl {
	width: 860px;
	margin: 0 auto 20px;
	border: 1px solid #CED1D9;
	border-radius: 4px;
}
section.faq dt {
	overflow: hidden;
	font-size: 16px;
	font-weight: 500;
	color: #222;
	line-height: 1.5;
	cursor: pointer;
	position: relative;
}
section.faq dt div {
	padding: 15px 95px 15px 45px;
}
section.faq dt::before {
	position: absolute;
	top: 18px;
	left: 16px;
	background-image: url(../images/faq/q_img.png);
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
section.faq dt img {
	width: 22px;
	height: auto;
	float: left;
}
section.faq dt:after {
	position: absolute;
	top: 40%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	content: "";
	vertical-align: middle;
	width: 10px;
	height: 10px;
	border-top: 2px solid #FC0011;
	border-right: 2px solid #FC0011;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
section.faq dt.active:after {
	top: 43%;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}
section.faq dt:hover {
	color: #FC0011;
	transform: translate3d(0, 1px, 0);
}
section.faq dd {
	overflow: hidden;
	display: none;
	position: relative;
}
section.faq dd::before {
	position: absolute;
	top: 18px;
	left: 16px;
	background-image: url(../images/faq/a_img.png);
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
section.faq dd > div {
	font-size: 16px;
	font-weight: 500;
	color: #6B7280;
	line-height: 1.6;
	min-height: 40px;
	background-color: #F9FAFB;
	padding: 15px 95px 15px 45px;
}

/*「よくある質問一覧」ボタン*/
section.faq > a {
	width: 300px;
	height: 50px;
	margin: 80px auto 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
	border: 1px solid #FC0011;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 500;
	color: #FC0011;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
	transform: translateZ(0);
}
section.faq > a::after {
	content: '\f054';
	font-size: 17px;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	margin-left: 8px;
}
/*hover*/
section.faq > a:hover {
	opacity: 0.7;
	filter: none;
	transform: translate3d(0, 1px, 0);
}










/************ 自動車の購入もとってもお得! ************/
section.buy {
	padding-top: 100px;
	padding-bottom: 100px;
}
section.buy ul {
	width: 90%;
	max-width: 1160px;
	margin: 60px auto 0;
	display: flex;
	justify-content: space-between;
}
section.buy ul li {
	width: 46%;
}
section.buy ul li a {
	display: block;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
}
/*hover*/
section.buy ul li a:hover {
	opacity: 0.8;
	filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, .1));
}

section.buy ul li img {
	width: 100%;
	height: auto;
}
section.buy ul li div {
	width: 100%;
	min-height: 169px;
	padding: 30px 30px 36px;
	background-color: #FFFFF3;
	font-size: 16px;
	font-weight: 400;
	color: #9B502F;
	line-height: 1.6;
	position: relative;
}
/*右下の▲*/
section.buy ul li div::after {
	content: "";
	position: absolute;
	right: 5px;
	bottom: 5px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-width: 0 0 30px 30px;
}
section.buy ul li:nth-of-type(1) div::after {
	border-color: transparent transparent #EA7846 transparent;
}
section.buy ul li:nth-of-type(2) div::after {
	border-color: transparent transparent #F5BD1F transparent;
}

/*SP用スライダー*/
.swiper-pagination2 {
	display: none;
}









/************ 選ばれる理由 ************/
section.reason {
	padding-top: 60px;
	background-color: #FFFFF3;
	padding-bottom: 70px;
}
section.reason ul {
	width: 860px;
	margin: 40px auto 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
section.reason ul li {
	width: 268px;
	margin-bottom: 30px;
}
section.reason ul li img {
	width: 100%;
	height: auto;
}
section.reason ul li h3 {
	width: 100%;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	color: #FFF;
	background-color: #DC000D;
}
section.reason ul li p {
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	color: #222;
	line-height: 1.4;
	margin-top: 10px;
}









/************ お客様の声 ************/
section.voice {
	padding-top: 60px;
}
section.voice > div {
	width: 860px;
	margin: 40px auto 0;
	background-color: #F9FAFB;
}
section.voice > div h3 {
	width: 100%;
	height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url(../images/top/Firefly_Gemini_Flash_pc.png);
	background-size: cover;
	background-position: center;
	font-size: 28px;
	font-weight: 900;
	color: #000;
}
section.voice > div h3 span {
	display: block;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}
section.voice > div > div {
	padding: 40px 30px 20px;
}
section.voice > div > div dl {
	width: 100%;
	background-color: #FFF;
	border: 1px solid #BABABA;
	border-radius: 4px;
	padding: 20px 30px;
	margin-bottom: 20px;
}
section.voice > div > div dl dt {
	font-size: 16px;
	font-weight: bold;
	color: #222;
	line-height: 1.4;
	border-bottom: 1px solid #BABABA;
	margin-bottom: 12px;
}
section.voice > div > div dl dt p {
	font-size: 13px;
	font-weight: 500;
	line-height: 14px;
	margin-top: 10px;
	margin-bottom: 14px;
}
section.voice > div > div dl dt p::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: bottom;
	margin-right: 10px;
}
section.voice > div > div dl dt p.m::before {
	background-image: url(../images/top/person_blue.svg);
}
section.voice > div > div dl dt p.w::before {
	background-image: url(../images/top/person_red.svg);
}
section.voice > div > div dl dd {
	font-size: 16px;
	font-weight: 500;
	color: #666666;
	line-height: 1.6;
}
section.voice > div > div > p:nth-of-type(1) {
	font-size: 16px;
	font-weight: 500;
	color: #000000;
	line-height: 1.6;
	margin-bottom: 40px;
}
section.voice > div > div > p:nth-of-type(2) {
	font-size: 14px;
	font-weight: 500;
	color: #000000;
	text-align: right;
}









/************ 車検の流れ ************/
section.flow {
	padding-top: 100px;
	padding-bottom: 100px;
}
section.flow ul {
	width: 720px;
	margin: 40px auto 0;
}
section.flow ul li {
	display: flex;
	justify-content: space-between;
	padding: 26px 10px 20px;
	border-bottom: 2px solid #FC0011;
	position: relative;
}
/*最終行*/
section.flow ul li:last-of-type {
	border-bottom: none
}
section.flow ul li:not(:last-of-type)::after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	bottom: -6px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #FC0011 transparent transparent transparent;
	border-width: 6px 4px 0 4px;
}
section.flow ul li > div {
	width: 505px;
}
section.flow ul li > div h3 {
	font-size: 20px;
	font-weight: bold;
	color: #222;
	margin-bottom: 10px;
}
section.flow ul li > div h3 span {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #FC0011;
	margin-bottom: 10px;
}
section.flow ul li > div h3 span b {
	font-size: 20px;
	font-weight: bold;
}
section.flow ul li > div p {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	line-height: 1.6;
}
section.flow ul li > img {
	width: 160px;
	height: 120px;
}











/************ 店内・設備のご紹介 ************/
section.facility {
	background-color: #EDF3FC;
	padding-top: 60px;
	padding-bottom: 60px;
}
section.facility > p {
	font-size: 20px;
	font-weight: 500;
	color: #000000;
	line-height: 1.6;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
}
/*見出し*/
section.facility h3 {
	width: 90%;
	max-width: 1160px;
	margin:  0 auto;
	text-align: center;
	position: relative;
}
section.facility h3:before {
    content: "";
    display: block;
    border-top: solid 1px #2A4EAD;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    z-index: 1;
}
section.facility h3 span {
    display: inline-block;
    background: #EDF3FC;
    padding: 0 20px;
	font-size: 24px;
	font-weight: bold;
	color: #2A4EAD;
	position: relative;
	z-index: 1;
}
/*「店内」*/
section.facility > ul {
	width: 90%;
	max-width: 1160px;
	margin:  25px auto 0;
	display: flex;
	justify-content: space-between;
}
section.facility > ul li {
	width: 23%;
}
section.facility > ul li img {
	width: 100%;
	height: auto;
}
section.facility > ul li div {
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
	background-color: #2A4EAD;
}
section.facility > ul li p {
	font-size: 16px;
	font-weight: 400;
	color: #222;
	line-height: 1.4;
	margin-top: 10px;
}
/*「店内」*/
section.facility > ul:nth-of-type(1) {
	margin-bottom: 60px;
}
/*「工場」*/
section.facility > ul:nth-of-type(2) {
	width: 43%;
	max-width: 564px;
}
section.facility > ul:nth-of-type(2) li {
	width: 47%;
}









/************ 店舗情報 ************/
section.shop {
	padding-top: 40px;
	padding-bottom: 120px;
}
section.shop > div {
	width: 860px;
	margin: 40px auto 0;
}
/*2店舗目*/
section.shop > div:nth-of-type(2) {
	margin-top: 80px;
}
section.shop > div h3 {
	width: 100%;
	height: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: bold;
	color: #000;
	background-color: #FFF7E6;
}
section.shop > div > div {
	background-color: #FFFFF3;
	padding: 25px 70px;
}
section.shop div.info {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
section.shop div.info > img {
	width: 336px;
}
section.shop div.info > dl {
	width: calc(100% - 365px);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
section.shop div.info > dl dt {
	width: 82px;
	height: auto;
	min-height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #FFF7E6;
	border: 1px solid #FFF7E6;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	text-align: center;
	line-height: 1.4;
	margin-bottom: 4px;
}
section.shop div.info > dl dd {
	width: calc(100% - 84px);
	height: auto;
	min-height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #FFF;
	border: 1px solid #FFF7E6;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 1.4;
	padding: 4px 8px;
	margin-bottom: 4px;
}
/*電話番号ボタン*/
section.shop a {
	display: block;
	width: 380px;
	height: 64px;
	margin: 25px auto 25px;
	background-color: #FFFFFF;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	font-size: 32px;
	font-weight: bold;
	color: #000;
	text-align: center;
	line-height: 40px;
	padding-top: 10px;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
	pointer-events: none;
}
section.shop a::before {
	background-image: url(../images/common/telfree_icon.png);
	content: '';
	display: inline-block;
	width: 40px;
	height: 40px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: text-bottom;
	margin-right: 14px;
}
/*map*/
section.shop div.map {
	width: 720px;
	height: 201px;
	border: 1px solid #707070;
}
section.shop div.map iframe {
	width: 100%;
	height: 100%;
}








/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 1079px) {
*{}
*{}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/








/************ 共通部分 ************/
/*見出し*/
section h2.mds {
	width: 90%;
	max-width: max-content;
}
section h2.mds p {
	width: auto;
	font-size: min(8vw, 32px);
}
section h2.mds span {
	font-size: min(4.5vw, 20px);
	text-align: center;
}







/************ 実績 ************/
section.performance ul {
	width: 90%;
	max-width: 600px;
	flex-wrap: wrap;
	margin: 16px auto 32px;
}
/*左側*/
section.performance ul li:nth-of-type(1) {
	width: 100%;
	height: 24px;
	margin-bottom: 16px;
}
section.performance ul li:nth-of-type(1) div {
	width: 100%;
	height: 24px;
	flex-direction: row;
	align-items: center;
	font-size: min(3vw, 12px);
}
/*左側リボン*/
section.performance ul li:nth-of-type(1) div::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: transparent transparent transparent #FFF;
	border-width: 12px 0 12px 5px;
}
/*右側リボン*/
section.performance ul li:nth-of-type(1) div::after {
	border-width: 12px 5px 12px 0;
}
section.performance ul li:nth-of-type(1) div p {
	display: inline;
	font-size: min(4vw, 16px);
	margin-bottom: 0;
	margin-right: 7px;
}

/*右側*/
section.performance ul li:nth-of-type(2) {
	width: 100%;
	height: auto;
}









/************ お知らせ ************/
section.info {
	padding-top: 40px;
	padding-bottom: 50px;
}
section.info h2 {
	width: 114px;
	height: 35px;
	font-size: 20px;
}
section.info > div {
	width: 90%;
	max-width: 720px;
}
section.info > div dl {
	display: block;
	padding-top: 11px;
	padding-bottom: 11px;
}
section.info > div dl dt {
	width: 100%;
	padding-left: 0;
	font-size: 12px;
	line-height: 17px;
	margin-bottom: 5px;
}
section.info > div dl dt::after {
	width: 36px;
	height: 17px;
	background-image: url(../images/info/syaken_logo_sp.png);
	margin-left: 8px;
}
section.info > div dl dd {
	width: 100%;
	font-size: 14px;
	line-height: 17px;
}

/*お知らせ一覧はこちらボタン*/
section.info > a {
	width: 70%;
	height: 45px;
	max-width: 300px;
	font-size: 16px;
	margin: 16px auto 0;
}
section.info > a::after {
	font-size: 11px;
}








/************ 料金表 ************/
section.price {
	padding-top: 20px;
	padding-bottom: 40px;
}

section.price > p {
	margin: 16px 5% 20px;
	font-size: 16px;
	text-align: left;
}

/*料金テーブル*/
section.price ul {
	width: 100%;
	max-width: unset;
	justify-content: unset;
	flex-wrap: unset;
}
section.price ul li {
	width: 90%;
	max-width: 302px;
	margin: 0;
}

section.price ul li.kei {
	order: unset;
}
section.price ul li.small {
	order: unset;
}
section.price ul li.medium {
	order: unset;
}
section.price ul li.large {
	order: unset;
}
section.price ul li.exlarge {
	order: unset;
}

section.price ul li > h3 {
	font-size: min(6vw, 24px);
}

/*表*/
.pricing-table {
	grid-template-columns: 33% 33% 33%;
}
/* Headers */
.header-blue {
	width: 100%;
	max-width: 90px;
	font-size: min(4vw, 14px);
}
.header-red {
	width: 100%;
	max-width: 90px;
	font-size: min(4vw, 14px);
}
/* Labels */
.label-cell {
	width: 100%;
	max-width: 90px;
	font-size: min(4vw, 14px);
}
/* Values */
.value-blue {
	width: 100%;
	max-width: 90px;
}
.value-blue .eisu {
	font-size: min(5vw, 18px);
}
.value-red {
	width: 100%;
	max-width: 90px;
}
.value-red .eisu {
	font-size: min(5vw, 18px);
}
.discount-text.value-blue .eisu {
	font-size: min(6vw, 22px);
}
.discount-text.value-red .eisu {
	font-size: min(6vw, 22px);
}

/* Footer Row */
.footer-label {
	width: 100%;
	max-width: 90px;
}
.footer-value {
	font-size: min(5vw, 22px);
	width: 100%;
	max-width: 90px;
}

/*詳しい料金表はこちら*/
section.price > a {
	width: 90%;
	max-width: 400px;
	height: 60px;
	font-size: 20px;
	margin: 30px auto 20px;
}
section.price > a::after {
	margin-left: 8px;
	font-size: 15px;
}

section.price > div.note {
	width: 90%;
	max-width: 1000px;
}
section.price > div.note p {
	font-size: 12px;
}

/*SP用スライダー*/
.slide {
	overflow: hidden;
	padding-left: 20px;
	position: relative;
	padding-bottom: 50px;
}
/* ページネーションのサイズと色 */
.swiper-pagination {
	display: block;
	background-origin: padding-box;
	padding: 10px 0;
	z-index: 1;
}
.swiper-pagination-bullet {
	height: 11px;
	width: 11px;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}
/*アクティブなページネーション*/
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #222222;
}
.swiper-slide {
	box-sizing: border-box;
}








/************ 他社との比較 ************/
section.compare > p {
	width: 90%;
	max-width: max-content;
	margin: 20px auto 20px;
	font-size: 16px;
	text-align: left;
}

/*比較表*/
section.compare table {
	width: calc(100% - 20px);
	max-width: 600px;
}
section.compare table tr th {
	width: 45%;
}
/*左側*/
/*見出し*/
section.compare table tr:nth-of-type(odd) th:nth-of-type(1) p {
	font-size: 14px;
	margin-top: 10px;
	margin-bottom: 4px;
}
/*枠内*/
section.compare table tr:nth-of-type(2n) td:nth-of-type(1) {
	background-image: url(../images/top/compare_1_sp.png);
	padding: 10px 10px;
	font-size: 14px;
}
section.compare table tr:nth-of-type(4) td:nth-of-type(1),
section.compare table tr:nth-of-type(6) td:nth-of-type(1) {
	font-size: 14px;
}
section.compare table tr:nth-of-type(2n) td:nth-of-type(1) p {
	width: 100%;
}

/*右側*/
section.compare table tr:nth-of-type(odd) th:last-of-type p {
	width: 90%;
	font-size: min(3vw, 14px);
	text-align: center;
	padding: 4px 0 6px;
	margin-top: 10px;
	margin-bottom: 4px;
}
section.compare table tr:nth-of-type(2n) td:last-of-type div {
	font-size: 14px;
	padding: 10px 10px;
}

/*隙間*/
section.compare table tr td.kara {
	width: 45px;
}

/*矢印*/
section.compare table tr:nth-of-type(2n) td.kara::after {
	width: 19px;
	height: 14px;
}

/*コバサンタ*/
section.compare > img {
	width: 100%;
	max-width: 400px;
	margin: 60px auto 0;
}










/************ よくある質問 ************/
section.faq {
	padding-top: 80px;
	padding-bottom: 60px;
}
section.faq h2 {
	margin-bottom: 20px;
}
section.faq dl {
	width: 90%;
	max-width: 860px;
	border-radius: 8px;
}
section.faq dt {
	font-size: 14px;
}
section.faq dt div {
	padding: 15px 45px 15px 45px;
}
section.faq dt::before {
	width: 17px;
	height: 17px;
}
section.faq dd::before {
	width: 17px;
	height: 17px;
}
section.faq dd > div {
	font-size: 14px;
	padding: 15px 45px 15px 45px;
}

/*「よくある質問一覧」ボタン*/
section.faq > a {
	width: 70%;
	height: 45px;
	max-width: 300px;
	font-size: 16px;
	margin: 40px auto 0;
}
section.faq > a::after {
	font-size: 11px;
}







/************ 自動車の購入もとってもお得! ************/
section.buy {
	padding-top: 60px;
	padding-bottom: 40px;
}
section.buy h2.mds p {
	font-size: min(6vw,32px);
}

section.buy ul {
	width: 100%;
	margin: 20px auto 0;
}
section.buy ul li {
	width: 300px;
}
section.buy ul li div {
	min-height: 195px;
	padding: 18px 25px 20px;
	font-size: 14px;
}
/*右下の▲*/
section.buy ul li div::after {
	border-width: 0 0 25px 25px;
}

/*SP用スライダー*/
.buy_slide {
	overflow: hidden;
	position: relative;
	padding-bottom: 50px;
}
/* ページネーションのサイズと色 */
.swiper-pagination2 {
	position: absolute;
	text-align: center;
	transition: .3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
	display: block;
	background-origin: padding-box;
	padding: 10px 0;
}
.swiper-pagination-bullet {
	height: 11px;
	width: 11px;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}
/*アクティブなページネーション*/
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #222222;
}
.swiper-slide {
	box-sizing: border-box;
}








/************ 選ばれる理由 ************/
section.reason {
	padding-bottom: 20px;
}
section.reason ul {
	width: 90%;
	max-width: 600px;
	margin: 20px auto 0;
}
section.reason ul li {
	width: 48%;
	margin-bottom: 20px;
}
section.reason ul li h3 {
	height: 32px;
	font-size: min(4vw, 16px);
}
section.reason ul li p {
	font-size: 14px;
}







/************ お客様の声 ************/
section.voice > div {
	width: calc(100% - 20px);
	max-width: 600px;
	margin: 20px auto 0;
}
section.voice > div h3 {
	background-image: url(../images/top/Firefly_Gemini_Flash_sp.png);
	font-size: 22px;
	line-height: 1.4;
	text-align: center;
}
section.voice > div h3 span {
	font-size: 14px;
}
section.voice > div > div {
	padding: 20px 9px 40px;
}
section.voice > div > div dl {
	padding: 24px 20px 20px;
}
section.voice > div > div dl dd {
	font-size: 14px;
}
section.voice > div > div > p:nth-of-type(1) {
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 20px;
	font-size: 14px;
}
section.voice > div > div > p:nth-of-type(2) {
	margin-left: 5%;
	margin-right: 5%;
	line-height: 1.6;
}









/************ 車検の流れ ************/
section.flow {
	padding-top: 60px;
	padding-bottom: 20px;
}
section.flow ul {
	width: 90%;
	max-width: 600px;
	margin: 20px auto 0;
}
section.flow ul li {
	padding: 23px 5px 15px;
	flex-wrap: wrap;
}
/*最終行*/
section.flow ul li > div {
	width: calc(100% - 130px);
}
section.flow ul li > div h3 {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 0;
}
section.flow ul li > img {
	width: 100px;
	height: 75px;
}
section.flow ul li > p {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	line-height: 1.6;
	margin-top: 15px;
}








/************ 店内・設備のご紹介 ************/
section.facility {
	padding-bottom: 20px;
}
section.facility > p {
	width: 90%;
	max-width: 600px;
	margin: 16px auto 20px;
	font-size: 16px;
	text-align: left;
}
/*見出し*/
section.facility h3 {
	width: 90%;
	max-width: 600px;
}
/*「店内」*/
section.facility > ul {
	width: 90%;
	max-width: 600px;
	flex-wrap: wrap;
	margin: 10px auto 0;
}
section.facility > ul li {
	width: 47%;
	margin-bottom: 20px;
}
section.facility > ul li div {
	font-size: 16px;
	height: 32px;
}
section.facility > ul li p {
	font-size: 14px;
}
/*「店内」*/
section.facility > ul:nth-of-type(1) {
	margin-bottom: 0;
}
/*「工場」*/
section.facility > ul:nth-of-type(2) {
	width: 90%;
	max-width: 600px;
}








/************ 店舗情報 ************/
section.shop {
	padding-bottom: 76px;
}
section.shop > div {
	width: calc(100% - 20px);
	max-width: 600px;
	margin: 20px auto 0;
}
/*2店舗目*/
section.shop > div:nth-of-type(2) {
	margin-top: 40px;
}
section.shop > div h3 {
	height: auto;
	background-color: transparent;
	margin-top: 16px;
	margin-bottom: 10px;
}
section.shop > div > div {
	padding: 20px 10px;
}
section.shop div.info {
	flex-wrap: wrap;
}
section.shop div.info > img {
	width: 100%;
}
section.shop div.info > dl {
	width: 100%;
	margin-bottom: 20px;
}
section.shop div.info > dl dt {
	width: 70px;
	font-size: 14px;
}
section.shop div.info > dl dd {
	width: calc(100% - 74px);
	font-size: 14px;
}
/*電話番号ボタン*/
section.shop a {
	width: 90%;
	max-width: 300px;
	height: 52px;
	font-size: 28px;
	padding-top: 5px;
	pointer-events: auto;
	margin: 16px auto 0;
}
section.shop a::before {
	vertical-align: top;
}
/*map*/
section.shop div.map {
	width: 100%;
	height: 170px;
}









/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
