



/* 共通 *******************/
/*白ボタン*/
a.w_btn {
    width: 400px;
    display: block;
    margin: 60px auto 0;
    font-size: 24px;
    font-weight: 500;
    color: #E60011;
    text-align: center;
    position: relative;
    background-color: #fff;
    padding: 23px 0;
    border: 1px solid #E60011;
    border-radius: 8px;
    filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, .2));
}
a.w_btn::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: '\f054';
    font-size: 20px;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
}
/*hover*/
a.w_btn:hover {
	filter: drop-shadow(0px 0px 0px #fff) brightness(1.1);
	transform: translate3d(0, 6px, 0);
}








/* TOPビジュアル *******************/
section.top_visual {
	background-color: #F0F0F0;
	margin-bottom: 22px;
}
section.top_visual ul.top_slider {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}
section.top_visual ul.top_slider div.slick-list {
	overflow: hidden;
}
section.top_visual ul.top_slider li.slick-slide {
	width: 100%;
	max-width: 1280px;
}
section.top_visual ul.top_slider li.slick-slide img {
	width: 100%;
	height: auto;
}
section.top_visual ul.top_slider li.slick-slide img:nth-of-type(2) {
	display: none;
}
@media screen and (max-width: 749px) {
	section.top_visual ul.top_slider li.slick-slide img:nth-of-type(1) {
		display: none;
	}
	section.top_visual ul.top_slider li.slick-slide img:nth-of-type(2) {
		display: block;
	}
}
ul.top_slider li a:hover {
	opacity: 0.8;
}
.slider-dots {
	position: absolute;
	bottom: -22px;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	list-style: none;
}
.slider-dots li {
	display: inline-block;
	width: calc(100% / 6 - 10px); /* プログレスバーの横幅 */
	margin: 0 2px;
}
.slider-dots button {
	position: relative;
	width: 100%;
	height: 4px;
	border: 0;
	background-color: #ccc;
	font-size: 0;
}	
.slider-dots button::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	width: 0%;
	height: 100%;
}
.slick-active button:after {
	background-color: #000;
	animation: progress 6.0s linear forwards;
}
@keyframes progress {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}










/* サービス内容 *******************/
/*タブ切り替え全体のスタイル*/
div.tabs {
	padding-bottom: 60px;
	position: relative;
	 margin-top: 145px; 
}
/*タブのスタイル*/
label.tab_item {
	width: 460px;
	border-radius: 5px 5px 0 0;
	background-color: #fff;
	cursor: pointer;
	height: 60px;
	line-height: 60px;
	text-align: center;
	display: block;
	float: left;
	transition: all 0.2s ease;
	position: absolute;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
	display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
	display: none;
	padding: 40px 30px 50px;
	clear: both;
	overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#insp:checked ~ #insp_content,
#oil:checked ~ #oil_content {
	display: block;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/*選択されているタブのスタイルを変える*/
/*車検*/
.tabs input#insp + .tab_item {
	font-size: 20px;
	font-weight: 500;
	color: #222;
	background-color: #FFE3E5;
	top: -60px;
	left: 60px;
}
.tabs input#insp + .tab_item span {
	font-size: 22px;
}
/*横の▲*/
.tabs input#insp + .tab_item::after {
	content: "";
	position: absolute;
	right: -30px;
	top : 3px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: transparent transparent transparent #FFE3E5;
	border-width: 57px 0 0px 30px;
	transition: all 0.2s ease;
}
/*hover*/
.tabs input#insp + .tab_item:hover {
	color: #fff;
	background-color: #E60011;
}
.tabs input#insp + .tab_item:hover::after {
	border-color: transparent transparent transparent #E60011;
}
.tabs input#insp:checked + .tab_item {
	height: 70px;
	line-height: 70px;
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	background-color: #E60011;
	top: -68px;
}
/*横の▲*/
.tabs input#insp:checked + .tab_item::after {
	border-color: transparent transparent transparent #E60011;
	border-width: 67px 0 0px 30px;
	z-index: 1;
}
/*オイル交換*/
.tabs input#oil + .tab_item {
	font-size: 20px;
	font-weight: 500;
	color: #222;
	background-color: #DCE5F4;
	top: -60px;
	right: 60px;
}
/*横の▲*/
.tabs input#oil + .tab_item::after {
	content: "";
	position: absolute;
	left: -30px;
	top : 3px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: transparent #DCE5F4 transparent transparent;
	border-width: 57px  30px 0px 0;
	transition: all 0.2s ease;
}
/*hover*/
.tabs input#oil + .tab_item:hover {
	color: #fff;
	background-color: #1A4FB3;
}
.tabs input#oil + .tab_item:hover::after {
	border-color: transparent #1A4FB3 transparent transparent;
}
.tabs input#oil:checked + .tab_item {
	height: 70px;
	line-height: 70px;
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	background-color: #1A4FB3;
	top: -68px;
}
/*横の▲*/
.tabs input#oil:checked + .tab_item::after {
	border-color: transparent #1A4FB3 transparent transparent;
	border-width: 67px  30px 0px 0;
	z-index: 1;
}
/*タブの内容(車検)*/
div#insp_content {
	border-top: 4px solid #E60011;
	background-color: #FCE8EA;
}

/*CVボタン群*/
div.tab_content > ul {
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
div.tab_content > ul li {
	width: 480px;
}

/*WEB車検予約ボタン*/
div.tab_content ul.cvbtn li:nth-of-type(1) a {
	width: 100%;
	display: block;
	background-color: #E60011;
	border-radius: 8px;
	padding: 22px 0 23px 120px;
	filter: drop-shadow(0px 6px 0px #A40F19);
	margin-bottom: 20px;
}
div.tab_content ul.cvbtn li:nth-of-type(1) a span {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 5px;
}
div.tab_content ul.cvbtn li:nth-of-type(1) a p {
	font-size: 31px;
	font-weight: 500;
	color: #FFF100;
	position: relative;
}
div.tab_content ul.cvbtn li:nth-of-type(1) a p::before {
	position: absolute;
	top: -14px;
	left: -60px;
	background-image: url(../images/common/icon_calendar.svg);
	content: '';
	display: inline-block;
	width: 45px;
	height: 43px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: bottom;
}
div.tab_content ul.cvbtn li:nth-of-type(1) a p b {
	font-weight: 500;
	color: #fff;
}
/*車検無料見積お申込み*/
div.tab_content ul.cvbtn li:nth-of-type(2) a {
	width: 100%;
	display: block;
	background-color: #1A4FB3;
	border-radius: 8px;
	padding: 33px 0 33px;
	position: relative;
	filter: drop-shadow(0px 6px 0px #123B87);
	font-size: 31px;
	font-weight: 500;
	color: #fff;
	text-align: center;
}
div.tab_content ul.cvbtn li:nth-of-type(2) a b {
	color: #FFF100;
	font-weight: 500;
}
/*hover*/
div.tab_content ul.cvbtn li a:hover {
	filter: drop-shadow(0px 0px 0px #fff) brightness(1.1);
	transform: translate3d(0, 6px, 0);
}

/*お電話でのお見積もり・ご相談はこちら*/
div.tab_content > h3 {
	font-size: 24px;
	font-weight: 600;
	color: #E60011;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}

/*電話番号ボタン*/
div.tab_content ul.telbtn li a {
	width: 100%;
	display: block;
	background-color: #fff;
	border: 1px solid #CCCCCC;
	border-radius: 8px;
	padding: 11px 0px 11px 120px;
	filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, .2));
}
/*hover*/
div.tab_content ul.telbtn li a:hover {
	filter: drop-shadow(0px 0px 0px #fff) brightness(1.1);
	transform: translate3d(0, 6px, 0);
}

div.tab_content ul.telbtn li a span {
	width: 155px;
	height: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #E60011;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
	margin-bottom: 5px;
}
div.tab_content ul.telbtn li a b {
	display: inline-block;
	font-size: 40px;
	font-weight: bold;
	color: #222222;
	margin-bottom: 3px;
	position: relative;
}
div.tab_content ul.telbtn li a b::before {
	position: absolute;
	top: -30px;
	left: -95px;
	background-image: url(../images/common/free.png);
	content: '';
	display: inline-block;
	width: 70px;
	height: 70px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}

/*受付時間*/
div.tab_content > p {
	font-size: 14px;
	font-weight: 500;
	color: #222;
	text-align: center;
	margin-top: 16px;
}

/*４リンクボタン*/
div#insp_content ol {
	width: 1000px;
	margin: 15px auto 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 40px;
	border-top: 2px dotted #707070;
}
div#insp_content ol li {
	width: 235px;
}
div#insp_content ol li a {
	width: 100%;
	display: block;
	background-color: #fff;
	padding-top: 12px;
	border: 1px solid #E60011;
	border-radius: 4px;
	text-align: center;
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .4));
}
div#insp_content ol li a:hover {
	opacity: 0.8;
	filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 1.0));
	transform: translate3d(0, 3px, 0);
}
div#insp_content ol li a img {
	width: 64px;
	height: auto;
}
div#insp_content ol li a span {
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: #222222;
	margin-top: 5px;
	margin-bottom: 12px;
}
div#insp_content ol li a p {
	width: 100%;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	background-color: #E60011;
	padding: 6px 0;
}
div#insp_content ol li a p::after {
	content: '\f138';
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	margin-left: 10px;
}
/*タブの内容(オイル交換)*/
div#oil_content {
	border-top: 4px solid #1A4FB3;
	background-color: #E7EDF7;
	padding-bottom: 24px;
}
div#oil_content ol.oil_btns {
	width: 490px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div#oil_content ol.oil_btns li {
	width: 235px;
	margin-bottom: 24px;
}
div#oil_content ol.oil_btns li {
	width: 235px;
}
div#oil_content ol.oil_btns li a {
	width: 100%;
	display: block;
	background-color: #fff;
	padding-top: 12px;
	border: 1px solid #1A4FB3;
	border-radius: 4px;
	text-align: center;
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .4));
}
div#oil_content ol.oil_btns li a:hover {
	opacity: 0.8;
	filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 1.0));
	transform: translate3d(0, 3px, 0);
}
div#oil_content ol.oil_btns li a img {
	width: 64px;
	height: auto;
}
div#oil_content ol.oil_btns li a span {
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: #222222;
	margin-top: 5px;
	margin-bottom: 12px;
}
div#oil_content ol.oil_btns li a p {
	width: 100%;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	background-color: #1A4FB3;
	padding: 6px 0;
}
div#oil_content ol.oil_btns li a p::after {
	content: '\f138';
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	margin-left: 10px;
}
/*上記以外のお問い合わせボタン*/
div#oil_content ol.oil_btns + a {
	width: 480px;
	display: block;
	margin: 0 auto;
	font-size: 15px;
	font-weight: 500;
	color: #222222;
	text-align: center;
	background-color: #fff;
	padding: 17px 0;
	border: 1px solid #1A4FB3;
	border-radius: 4px;
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .4));
}
div#oil_content ol.oil_btns + a:hover {
	opacity: 0.8;
	filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 1.0));
	transform: translate3d(0, 3px, 0);
}
div#oil_content ol.oil_btns + a::before {
	background-image: url(../images/common/oth_contact.png);
	content: '';
	display: inline-block;
	width: 45px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}










/* TOPミニスライダー *******************/
/* スライド部分 */
section.top_bnr {
	width: 100%;
	max-width: 1020px;
	margin: 0px auto 40px;
}
section.top_bnr ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
section.top_bnr ul li img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
}
section.top_bnr ul li a:hover {
	opacity: 0.8;
}
ul.top_mini_slider .slick-slide {
	width: 320px;
	margin: 0 10px;
	padding-bottom: 10px;/*影の分*/
}
/*矢印*/
ul.top_mini_slider .slick-prev {
	left: -30px;
}
ul.top_mini_slider .slick-prev:before {
	content: '\f053';
	color: #CCCCCC;
	font-size: 28px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	opacity: 1;
}
ul.top_mini_slider .slick-prev:hover:before {
	color: #828282;
}
ul.top_mini_slider .slick-next {
	right: -30px;
}
ul.top_mini_slider .slick-next:before {
	content: '\f054';
	color: #CCCCCC;
	font-size: 28px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	opacity: 1;
}
ul.top_mini_slider .slick-next:hover:before {
	color: #828282;
}









/* 累計整備・修理実績180,000台以上 *******************/
section.service_img > div {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
section.service_img > div img {
	width: 100%;
	height: auto;
}
section.service_img > div img:nth-of-type(2) {
	display: none;
}
@media screen and (max-width: 600px) {
	section.service_img > div img:nth-of-type(1) {
		display: none;
	}
	section.service_img > div img:nth-of-type(2) {
		display: block;
	}
}









/* コバックなら車検が安い！ *******************/
section.price {
	padding-top: 140px;
	padding-bottom: 70px;
}
section.price > div:nth-of-type(1) {
	text-align: center;
}
section.price > div:nth-of-type(1) > img {
	width: 600px;
	height: auto;
	margin-top: 50px;
}
section.price > div:nth-of-type(1) > ul {
	display: flex;
	justify-content: space-between;
	margin-top: 36px;
}
section.price > div:nth-of-type(1) > ul li {
	width: 250px;
	background: linear-gradient(180deg, #FFE3E5 0px, #FFE3E5 91px, #fff 91px, #fff 100%);
}
section.price div.pic {
	padding: 15px 15px;
}
section.price div.pic dl {
	overflow: hidden;
}
section.price div.pic dl dt {
	font-size: 20px;
	font-weight: 500;
	color: #E60011;
	float: left;
}
section.price div.pic dl dd {
	font-size: 16px;
	font-weight: 400;
	color: #222222;
	float: right;
}
section.price div.pic img {
	width: 170px;
	height: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}
section.price div.pic p {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	background-color: #E60011;
	padding: 6px 0 0;
	position: relative;
	margin-bottom: 15px;
}
section.price div.pic p span {
	font-size: 18px;
	font-weight: bold;
}
section.price div.pic p::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: -12px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #E60011 transparent transparent transparent;
	border-width: 12px 110px 0 110px;
}
section.price div.price {
	background-color: #E60011;
	padding: 4px 0;
}
section.price div.price span {
	display: inline-block;
	font-size: 17px;
	font-weight: 400;
	color: #fff;
	line-height: 1.2;
}
section.price div.price span:nth-of-type(1) {
	width: 20px;
}
section.price div.price span:nth-of-type(2) {
	font-size: 44px;
	font-weight: bold;
	color: #FFF100;
	margin: 0 10px;
}
section.price > ol {
	width: 480px;
	margin: 46px auto 0;
}
section.price > ol li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 13px;
	font-weight: 300;
	color: #222222;
	line-height: 1.6;
}
section.price > ol li:before {
	display: inline;
	position: static;
	content: "※";
}












/* よくある質問 *******************/
section.faq {
	width: 1080px;
	margin: 80px auto 0;
	background: linear-gradient(180deg, #fff 0%, #fff 23px, #F4F5F9 23px, #F4F5F9 100%);
	border-radius: 8px;
	padding-bottom: 40px;
	margin-bottom: 70px;
}
section.faq > h2 {
	width: 100%;
    background-image: url(../images/top/faq_img_pc.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 40px;
}
/*料金に関するよくある質問*/
section.faq.ryokin > h2 {
    background-image: none;
    padding-bottom: 0;
	margin-bottom: 30px;
}

/*タイトルバー*/
section.faq > div {
	width: 960px;
	margin: 0 auto 15px;
	background-color: #fff;
}
section.faq > div p {
	font-size: 18px;
	font-weight: 500;
	color: #1F2537;
	line-height: 1.5;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 40px;
	position: relative;
	cursor: pointer;
	padding-left: 55px;
	text-indent: -40px;
}
/*hover*/
section.faq > div p:hover {
	color: #E60012;
}
section.faq > div p:hover::after {
	width: 22px;
	height: 22px;
}
section.faq > div p::before {
	background-image: url(../images/faq/q.png);
	content: '';
	display: inline-block;
	width: 20px;
	height: 27px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: text-top;
	margin-right: 15px;
	margin-left: 5px;;
}
section.faq > div p::after {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url(../images/faq/open.png);
	content: '';
	display: inline-block;
	width: 20px;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: text-top;
}
section.faq > div p.active::after {
	background-image: url(../images/faq/close.png);
}
section.faq > div div {
	font-size: 18px;
	font-weight: 400;
	color: #1F2537;
	line-height: 1.5;
	padding: 20px 50px;
	background: linear-gradient(0deg, #fff 0%, #fff 10px, #F4F5F9 10px, #F4F5F9 100%);
	margin-left: 10px;
	margin-right: 10px;
	position: relative;
	padding-left: 55px;
	text-indent: -28px;
}
section.faq > div div a {
	font-size: 16px;
	font-weight: 500;
	color: #0F5EB8;
	border-bottom: 1px solid #0F5EB8;
}
section.faq > div div::before {
	background-image: url(../images/faq/a.png);
	content: '';
	display: inline-block;
	width: 20px;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: 5px;
}













/* 選ばれる理由 *******************/
section.reason {
	margin-top: 140px;
	margin-bottom: 70px;
}
section.reason h2 {
	margin-bottom: 60px;
}
/*共通*/
section.reason > div > p {
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	padding: 12px 0;
	color: #1A4FB3;
	background-color: #E7EDF7;
}
section.reason > div > h3 {
	font-size: 32px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	padding: 14px 0;
	background-color: #1A4FB3;
}
section.reason > div > img {
	width: 100%;
	height: auto;
}
section.reason > div > div {
	background-color: #E7EDF7;
	padding: 0 40px 40px 40px;
	position: relative;
}
/*半円*/
section.reason > div > div::before {
	position: absolute;
	top: -30px;
	left: 0;
	content: '';
	display: inline-block;
	width: 100%;
	height: 30px;
	border-radius: 50% / 100% 100% 0 0;
	background: #E7EDF7;
}
section.reason > div > div ul {
	width: 100%;
    max-width: 840px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
section.reason > div > div ul li {
	width: 250px;
}
section.reason > div ul li img {
	width: 100%;
	height: auto;
}
section.reason > div ul li span {
	width: 100%;
	display: block;
	font-size: 20px;
	font-weight: 500;
	color: #FFF100;
	text-align: center;
	background-color: #1A4FB3;
	padding: 10px 0;
}
section.reason > div ul li p {
	font-size: 16px;
	font-weight: 400;
	color: #222222;
	line-height: 1.4;
	margin-top: 10px;
}
/* 安心の車検専門店のみ */
section.reason > div:nth-of-type(1) h4 {
	font-size: 32px;
	font-weight: 600;
	color: #1A4FB3;
	text-align: center;
	margin-bottom: 40px;
}
section.reason > div:nth-of-type(1) h4 span {
	display: block;;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}
section.reason > div:nth-of-type(1) h4 span {
	display: block;;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}
section.reason > div:nth-of-type(1) > div ul {
	width: 750px;
	flex-wrap: wrap;
}
section.reason > div:nth-of-type(1) > div ul li {
    width: 220px;
	margin-bottom: 32px;
}
/*お客様の声*/
section.reason > div.voice {
	padding-top: 80px;
	background-color: #E7EDF7;
	padding-bottom: 30px;
}
section.reason > div.voice > div {
	width: 90%;
	margin: 0 auto;
	padding: 40px 0 0;
}
section.reason > div.voice > div::before {
	content: unset;
}
section.reason > div.voice > div > p {
	font-size: 22px;
	font-weight: 600;
	color: #222222;
	text-align: center;
	margin-bottom: 20px;
}
section.reason > div.voice > div div {
	position: relative;
}
section.reason > div.voice > div div img {
	width: 100%;
	height: auto;
	max-width: 594px;
	margin: 0 auto;
}
section.reason > div.voice > div > div > p {
	font-size: 22px;
	font-weight: 500;
	color: #FFFFFF;
	position: absolute;
	top: 12px;
	left: 46%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
section.reason > div.voice > div ul {
	display: block;
}
section.reason > div.voice > div ul li {
	width: 100%;
	max-width: 740px;
	margin: 0 auto;
	padding: 22px 50px;
	border-radius: 5px;
	background-color: #FFFFFF;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 400;
	color: #222222;
	line-height: 1.75;
}
/*待合室完備*/
section.reason > div:last-of-type {
	margin-top: 70px;
}
section.reason > div:last-of-type > p {
	color: #E95207;
	background-color: #FFF0D8;
}
section.reason > div:last-of-type > h3 {
	background-color: #E95207;
}
section.reason > div:last-of-type > div {
	background-color: #FFF0D8;
	padding-top: 40px;
}
/*半円*/
section.reason > div:last-of-type > div::before {
	background: #FFF0D8;
}
section.reason > div:last-of-type ul li span {
	color: #fff;
	background-color: #E95207;
}











/* 車検以外も充実のサービス *******************/
section.total {
	padding-bottom: 40px;
}
section.total > div > p {
	font-size: 20px;
	font-weight: 500;
	color: #1F2537;
	text-align: center;
	margin-top: 46px;
	margin-bottom: 20px;
}
section.total > div > div {
	width: 750px;
	margin: 0 auto;
	font-size: 20px;
	font-weight: 500;
	color: #222222;
	line-height: 1.6;
	background-color: #FCE8EA;
	border-radius: 8px;
	padding: 20px 30px;
}
section.total > div > div span {
	color: #E60012;
	font-weight: 600;
}








/* コバックニュース *******************/
section.info {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #FFE3E5;
}
section.info > p {
	width: 690px;
	margin: 30px auto 60px;
	font-size: 18px;
	font-weight: 500;
	color: #222;
	line-height: 1.6;
}
section.info ul {
	width: 1080px;
	margin: 60px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
section.info ul li {
	width: 500px;
}
section.info ul li a {
	padding: 25px;
	background-color: #fff;
	filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
	display: block;
	margin-bottom: 40px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}
section.info ul li a::before {
	content: "";
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: transparent transparent #E60012 transparent;
	border-width: 0 0 40px 40px;
}
section.info ul li a::after {
	position: absolute;
	right: 5px;
	bottom: 5px;
	content: "\f061";
	font-size: 16px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	font-family: "Font Awesome 5 Free";
}
/*hover*/
section.info ul li a.btn:hover {
	filter: drop-shadow(0px 0px 0px #fff) !important;
	transform: translate3d(0, 6px, 0);
}
section.info ul li a:hover::before {
	border-color: transparent transparent #ccc transparent;
	transition: 0.2s;
}
/*画像*/
section.info ul li div.pic {
	width: 172px;
	height: 123px;
	text-align: center;
	float: left;
}
section.info ul li div.pic img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*オンマウスで画像白くするフィルタ*/
section.info ul li div.pic {
	position: relative;
}
section.info ul li div.pic::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 0;
}
section.info ul li a:hover div.pic::after {
	transition: 0.2s;
	opacity: 1;
}
/*テキスト部分*/
section.info ul li div.txt {
	width: calc(100% - 190px);
	height: 100%;
	min-height: 125px;
	float: right;
	position: relative;
}
section.info ul li div.txt p:nth-of-type(1) {
	font-size: 16px;
	font-weight: 500;
	color: #222;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
section.info ul li div.txt p:nth-of-type(2) {
	font-size: 16px;
	font-weight: 300;
	color: #222;
	position: absolute;
	bottom: -8px;
	left: 0px;
}









/* お知らせ *******************/
section.news {
	padding-top: 80px;
	padding-bottom: 120px;
}
section.news dl {
	overflow: hidden;
	margin-top: 40px;
	margin-bottom: 80px;
}
section.news dl a {
	display: block;
	border-top: 3px dotted #f5f5f5;
	color: #444;
	overflow: hidden;
	position: relative;
}
section.news dl a::after {
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	content: '\f054';
	color: rgba(244, 144, 158, 0.5);
	font-size: 20px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
section.news dl a:last-of-type {
	border-bottom: 3px dotted #f5f5f5;
}
section.news dl a:hover {
	color: #00bfff;
}
section.news dt {
	float: left;
	padding: 30px 0 30px 60px;
}
section.news dt span {
	font-size: 13px;
	font-weight: 300;
	background: #f4909e;
	color: #fff;
	border-radius: 3px;
	padding: 2px 4px;
	margin-right: 20px;
	margin-left: 10px;
}
section.news dt, section.news dd {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}
section.news dd {
	margin: 30px 0;
	padding-right: 95px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}










/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 1079px) {
*{}
*{}
*{}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/









/* 共通 *******************/
/*白ボタン*/
a.w_btn {
	width: 90%;
	max-width: 400px;
	font-size: 20px;
	padding: 19px 0;
	margin-top: 30px;
}






/* TOPビジュアル *******************/
/*プログレスバー*/
.slider-dots li {
	width: calc(100% / 4 - 10px);
}







/* サービス内容 *******************/
div.tabs {
	max-width: 750px;
	margin-top: 90px;
	padding-bottom: 40px;
}
/*タブのスタイル*/
label.tab_item {
	width: 44%;
	max-width: 460px;
	height: 50px;
	line-height: 50px;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
	padding: 30px 0 20px;
}
/*選択されているタブのスタイルを変える*/
/*車検*/
.tabs input#insp + .tab_item {
	left: 13px;
	font-size: min(4vw,16px);
	top: -50px;
}
/*横の▲*/
.tabs input#insp + .tab_item::after {
	border-width: 47px 0 0px 30px;
}
.tabs input#insp:checked + .tab_item {
	z-index: 1;
	font-size: min(4.5vw,18px);
	height: 50px;
	line-height: 50px;
	top: -48px;
}
/*横の▲*/
.tabs input#insp:checked + .tab_item::after {
	border-width: 47px 0 0px 30px;
}
/*オイル交換*/
.tabs input#oil + .tab_item {
	right: 13px;
	font-size: min(4vw,16px);
	top: -50px;
}
/*横の▲*/
.tabs input#oil + .tab_item::after {
	border-width: 47px  30px 0px 0;
}
.tabs input#oil:checked + .tab_item {
	z-index: 1;
	font-size: min(4.5vw,18px);
	height: 50px;
	line-height: 50px;
	top: -48px;
}
/*横の▲*/
.tabs input#oil:checked + .tab_item::after {
	border-width: 47px  30px 0px 0;
}

/*CVボタン群*/
div.tab_content > ul {
	flex-wrap: wrap;
	width: 90%;
	max-width: 400px;
}
div.tab_content > ul li {
	width: 100%;
}
/*WEB車検予約ボタン*/
div.tab_content ul.cvbtn li:nth-of-type(1) a {
	width: 100%;
	text-align: center;
	padding: 21px 0;
}
div.tab_content ul.cvbtn li:nth-of-type(1) a p {
	font-size: min(7vw,24px);
}
div.tab_content ul.cvbtn li:nth-of-type(1) a p::before {
	position: static;
	width: 26px;
	height: 24px;
	margin-right: 8px;
}

/*車検無料見積お申込み*/
div.tab_content ul.cvbtn li:nth-of-type(2) a {
	width: 100%;
	font-size: min(7vw, 24px);
	padding: 23px 0;
}

/*ここから予約で最大13,200円割引*/
div.tab_content > span {
	width: 90%;
	max-width: 400px;
	margin: 0 auto 16px;
	background-color: #FFE3E5;
	border: 1px solid #E60011;
	border-radius: 14px;
	font-size: min(4vw, 14px);
	font-weight: 600;
	color: #E60011;
	padding: 6px 0 6px min(24vw, 100px);
	position: relative;
}
div.tab_content > span::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url(../images/common/midasi_santa.png);
	content: '';
	display: inline-block;
	width: 85px;
	height: 50px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
div.tab_content > span::after {
	display: block;
	content: "";
	position: absolute;
	bottom: -6px;
	left: 120px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #E60011 transparent transparent transparent;
	border-width: 6px 4px 0 4px;
}

/*お電話でのお見積もり・ご相談はこちら*/
div.tab_content > h3 {
	font-size: 16px;
	margin-top: 30px;
}

/*電話番号ボタン*/
div.tab_content ul.telbtn li a {
	padding: 9px 0px 4px 85px;
}
div.tab_content ul.telbtn li a span {
	width: 116px;
	height: 24px;
	font-size: 14px;
	margin-left: 0;
}
div.tab_content ul.telbtn li a b {
	font-size: min(8vw,32px);
}
div.tab_content ul.telbtn li a b::before {
	width: 58px;
	height: 58px;
	left: -70px;
}

div.tab_content ul.telbtn li:nth-of-type(1) a {
	margin-bottom: 20px;
}

/*受付時間*/
div.tab_content > p {
	font-size: 12px;
	line-height: 1.6;
}

/*４リンクボタン*/
div#insp_content ol {
	width: 90%;
	flex-wrap: wrap;
	margin: 20px auto 0;
	padding-top: 20px;
}
div#insp_content ol li {
	width: 48%;
	margin-bottom: 10px;
}
div#insp_content ol li a span {
	font-size: min(4vw,15px);
}

/*タブの内容(オイル交換)*/
div#oil_content ol.oil_btns {
	width: 90%;
	max-width: 490px;
}
div#oil_content ol.oil_btns li {
	width: 49%;
}
div#oil_content ol.oil_btns + a {
	width: 90%;
	max-width: 490px;
}
div#oil_content ol.oil_btns li a p {
	font-size: min(3vw, 12px);
}
div#oil_content ol.oil_btns li a p::after {
	font-size: 10px;
	margin-left: 5px;
}









/* TOPミニスライダー *******************/
section.top_bnr {
	margin-bottom: 30px;
}
ul.top_mini_slider .slick-slide {
	margin: 0 6px;
}









/* コバックなら 車検が安い *******************/
section.price {
	padding-top: 90px;
	padding-bottom: 40px;
}
section.price h2 p {
	font-size: min(8vw, 30px);
}
section.price > div:nth-of-type(1) > img {
	width: 90%;
	max-width: 600px;
	margin-top: 35px;
}
section.price > div:nth-of-type(1) > ul {
	width: 95%;
	max-width: 750px;
	flex-wrap: wrap;
	margin-top: 20px;
}
section.price > div:nth-of-type(1) > ul li {
	width: 48%;
	margin-bottom: 20px;
}
section.price div.pic {
	padding: 10px 10px;
}
section.price div.pic img {
    width: min(30vw, 170px);
}
section.price div.pic dl dt {
	font-size: min(4vw,14px);
}
section.price div.pic dl dd {
	font-size: 12px;
}
section.price div.pic p {
	font-size: min(3vw,16px);
}
section.price div.pic p span {
	font-size: min(3vw,16px);
}
section.price div.pic p::before {
	border-width: 12px min(19vw,170px) 0;
}
section.price div.price span {
	font-size: 12px;
}
section.price div.price span:nth-of-type(2) {
	font-size: min(10vw,40px);
	margin: 0 5px;
}
section.price > ol {
	width: 90%;
	max-width: max-content;
	margin-top: 30px;
}
section.price > ol li {
	font-size: 12px;
}
section.price a.w_btn {
	margin-top: 0;
}







/* よくある質問 *******************/
section.faq {
	width: 100%;
	max-width: 750px;
	background: linear-gradient(180deg, #fff 0% 0%, #fff 16px, #F4F5F9 16px, #F4F5F9 100%);
	margin-top: 50px;
	margin-bottom: 50px;
}
section.faq h2 {
	background-image: url(../images/top/faq_img_sp.png);
	background-size: 100% auto;
	margin-bottom: 0;
}
/*料金に関するよくある質問*/
section.faq.ryokin > h2 {
    background-image: none;
	margin-bottom: 40px;
}
section.faq h2 p {
	font-size: min(8vw,30px);
	margin-top: 0px;
}
section.faq h2 b {
	display: inline-block;
}
/*タイトルバー*/
section.faq > div {
	width: 95%;
	margin-top: 0;
	margin-bottom: 20px;
}
section.faq > div p {
	font-size: 16px;
}
section.faq > div div {
	font-size: 15px;
	padding-right: 20px;
}








/* 選ばれる理由 *******************/
section.reason {
	margin-top: 100px;
	margin-bottom: 50px;
}
section.reason h2 {
	margin-bottom: 40px;
}
section.reason > div {
	max-width: 750px;
}
/*共通*/
section.reason > div > p {
	font-size: 16px;
}
section.reason > div > h3 {
	font-size: 28px;
}
section.reason > div > div {
	padding: 0 5% 20px;
}
section.reason > div:last-of-type > div {
	padding-top: 20px;
}
section.reason > div > div ul {
	flex-wrap: wrap;
}
section.reason > div div ul li {
	width: 100%;
	margin-bottom: 20px;
}
section.reason > div ul li span {
	font-size: 16px;
}
section.reason > div ul li p {
	font-size: 14px;
}
/*安心の車検専門店*/
section.reason > div:nth-of-type(1) h4 {
	font-size: 24px;
	margin-bottom: 20px;
}
section.reason > div:nth-of-type(1) h4 span {
	font-size: 16px;
}
section.reason > div:nth-of-type(1) > div ul {
	width: 100%;
}
section.reason > div:nth-of-type(1) > div ul li {
    width: 48%;
}
/*お客様の声*/
section.reason > div.voice {
	padding-top: 60px;
	padding-bottom: 5px;
}
section.reason > div.voice > div {
	padding: 35px 0 0;
}

section.reason > div.voice > div > p {
	font-size: 17px;
	line-height: 1.4;
	margin-bottom: 15px;
}
section.reason > div.voice > div div p:nth-of-type(1) {
	width: 100%;
	max-width: max-content;
	font-size: min(5vw,22px);
	top: min(2vw,18px);
	left: 50%;
}
section.reason > div.voice > div ul li {
	padding: 22px 16px;
	margin-bottom: 30px;
}
section.reason > div.voice a {
	width: 90%;
	max-width: 400px;
	font-size: 20px;
	padding: 19px 0;
}

/*待合室完備*/
section.reason > div:last-of-type {
	margin-top: 50px;
}
section.reason > div:last-of-type ul.pics {
    display: flex;
    justify-content: start;
    max-width: 400px;
}
section.reason > div:last-of-type ul.pics li {
    width: 48%;
}
section.reason > div:last-of-type ul.pics li:nth-of-type(odd) {
    margin-right: 4%;
}









/* 車検以外も充実のサービス *******************/
section.total {
	padding-bottom: 20px;
}
section.total h2 p {
	font-size: min(8vw, 30px);
}
section.total > div {
	width: 90%;
	max-width: 600px;
	margin: 0 auto;
}
section.total > div > p {
	font-size: 16px;
	line-height: 1.4;
	text-align: left;
}
section.total > div > div {
	width: 100%;
	padding: 15px 20px;
	font-size: 16px;
}








/* コバックニュース *******************/
section.info {
	padding-top: 60px;
	padding-bottom: 60px;
}
section.info h2.mds p {
	font-size: min(8vw, 30px);
}
section.info > p {
	width: 90%;
	max-width: 750px;
	font-size: 16px;
	margin: 20px auto 0;
}
section.info ul {
	width: 90%;
	max-width: 750px;
	margin-top: 30px;
	margin-bottom: 20px;
}
section.info ul li {
	width: 100%;
}
section.info ul li a {
	padding: 15px 15px;
	margin-bottom: 20px;
}
/*画像*/
section.info ul li div.pic {
	width: 120px;
	height: 80px;
}
section.info ul li div.txt {
	width: calc(100% - 130px);
	min-height: 85px;
}
section.info ul li div.txt p:nth-of-type(1) {
	font-size: 14px;
}
section.info ul li div.txt p:nth-of-type(2) {
	font-size: 14px;
	bottom: 0;
}









/* お知らせ *******************/
section.news {
	padding-top: 50px;
	padding-bottom: 120px;
}
section.news h2.mds p {
	font-size: min(8vw, 30px);
}
section.news > div {
	width: 90%;
	margin: 0 auto;
}
section.news dl {
	margin-bottom: 40px;
}
section.news dt {
	float: none;
	padding: 20px 0 0 20px;
}
section.news dt span {
	font-size: 12px;
}
section.news dt, section.list dd {
	font-size: 14px;
	line-height: 1.5;
}
section.news dd {
	margin: 10px 0;
	padding-left: 20px;
	padding-right: 45px;
}
section.news dl a:after {
	right: 20px;
}







/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/