


/**********TOPお知らせ部分**********/
dl.top_news {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	line-height: 1;
	overflow: hidden;
}
dl.top_news dt {
	background-color: #FFF346;
	padding: 5px 5px;
	border-radius: 6px;
	margin: 15px 20px 15px 0;
	float: left;
}
dl.top_news dd {
	font-size: 16px;
	line-height: 24px;
	margin: 15px 0;
}




/*トップビジュアル*/
div#mv {
	height: 626px;
	background-image: url(../images/top/top_pc.jpg);
	background-color: #261d28;
	background-size: auto 626px;
	background-position: center top;
	background-repeat: no-repeat;
	font-family: 'Noto Serif JP', sans-serif;
}
div#mv > ul {
	max-width: 1200px;
	margin: 0 auto 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 100px;
}
div#mv > ul li {
	width: 48%;
	text-align: center;
	margin-bottom: 16px;
}
div#mv > ul > li:nth-of-type(1) {
	background-image: url(../images/top/top_pc2.png);
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
	padding: 20px;
}
div#mv > ul li:last-of-type > img {
	width: 100%;
	height: auto;
	margin-top: 60px;
}
div#mv > ul li > p {
	font-size: min(10vw,86px);
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1;
	margin-bottom: 10px;
}
div#mv > ul li > p span {
	font-size: 44px;
	color: #DFBD8F;
}
div#mv > ul li > p span:first-of-type {
	margin-right: 5px;
}
div#mv > ul li > p span:nth-of-type(2) {
	margin-left: 5px;
}
div#mv > ul li > p span:last-of-type {
	display: inline-block;
	width: 50px;
	line-height: 80px;
	vertical-align: bottom;
	position: relative;
}
div#mv > ul li > p span b {
	font-size: 15px;
	line-height: 1;
	position: absolute;
	bottom: 3px;
	right: 3px;
}
/*新車のミニバンが買える*/
div#mv > ul li div.txt {
	font-size: 36px;
	color: #FFFFFF;
	margin-bottom: 30px;
}
div#mv > ul li div.txt span {
	font-size: 30px;
}
div#mv > ul li ol {
	display: flex;
	width: 100%;
	/*background-color: rgba(38, 28, 39, 0.8);*/
	position: relative;
	padding: 30px 0 20px 0;
}
div#mv > ul li ol li {
	font-size: 26px;
	font-weight: bold;
	color: #DFBD8F;
	line-height: 1.3;
	text-align: center;
}
div#mv > ul li ol span {
	font-size: 38px;
	color: #FFFFFF;
}
div#mv > ul li ol span b {
	font-size: 22px;
}
div#mv > ul li ol li img {
	max-width: 486px;
	height: auto;
	position: absolute;
	top: -23px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
div#mv > ul li ol li:nth-of-type(2) {
	border-right: 2px solid #DFBD8F;
	border-left: 2px solid #DFBD8F;
}
 
/* ビューポート幅 768px 超～ 1280px 未満に有効 */
/* @media (768px < width < 1087px) { */
@media (min-width: 768px) and (max-width: 1280px) {	
	div#mv > ul li > p {
		/* font-size: 86px; */
		font-size: calc((100vw - 768px) * 29 / 512 + 55px);
		/* line-height: 55px; */
	}
	div#mv > ul li > p span {
		/* font-size: 44px; */
		font-size: calc((100vw - 768px) * 26 / 512 + 18px);
	}
	div#mv > ul li > p span:last-of-type {
		/* line-height: 80px; */
		line-height: calc((100vw - 768px) * 26 / 512 + 54px);
	}
	div#mv > ul li ol li img {
		/* top: -23px; */
		top: calc((100vw - 768px) * 12 / 512 + -35px);
	}
    div#mv > ul li div.txt {
		/* font-size: 36px; */
        font-size: calc((100vw - 768px) * 12 / 512 + 24px);
    }
	div#mv > ul li div.txt span {
		/* font-size: 30px; */
        font-size: calc((100vw - 768px) * 12 / 512 + 18px);
    }
	div#mv > ul li ol {
		/* padding: 30px 0 20px 0; */
		padding-top: calc((100vw - 768px) * 30 / 512 + 0px);
		padding-bottom: calc((100vw - 768px) * 20 / 512 + 0px);
	}
	div#mv > ul li ol li {
		/* font-size: 26px; */
		font-size: calc((100vw - 768px) * 10 / 512 + 16px);
	}
	div#mv > ul li ol span {
		/* font-size: 38px; */
		font-size: calc((100vw - 768px) * 10 / 512 + 28px);
	}
}


/*********** プラン一例部分 **********/
section.plan_exp {
	background-color: #E5E5E5;
	padding-top: 50px;
	padding-bottom: 100px;
}
section.plan_exp > div {
	width: 1010px;
	margin: 0 auto;
}
section.plan_exp h3 {
	height: 96px;
	font-size: 38px;
	font-weight: 600;
	color: #172236;
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	padding-left: 115px;
}
section.plan_exp h3::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url(../images/top/example_pc.png);
	content: '';
	display: inline-block;
	width: 96px;
	height: 96px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
section.plan_exp h3 span {
	font-size: 24px;
	display: block;
}
section.plan_exp ul {
	display: flex;
	justify-content: space-between;
}
/*左側*/
section.plan_exp ul li:nth-of-type(1) {
	width: 453px;
}
section.plan_exp ul li:nth-of-type(1) > img {
	width: 376px;
	height: auto;
	display: block;
	margin: 0 auto 12px;
}
section.plan_exp ul li:nth-of-type(1) > div {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
section.plan_exp ul li:nth-of-type(1) > div > img:nth-of-type(1) {
	width: 102px;
	height: max-content;
	margin-top: 5px;
}
section.plan_exp ul li:nth-of-type(1) > div > p {
	font-family: Arial,sans-serif;
	font-size: 84px;
	font-weight: 600;
	color: #172236;
	line-height: 1;
}
section.plan_exp ul li:nth-of-type(1) > div > img:nth-of-type(3) {
	width: 69px;
	height: max-content;
	margin-top: 15px;
}
section.plan_exp ul li:nth-of-type(1) > p {
	width: 100%;
	font-size: 22px;
	font-weight: 600;
	color: #172236;
	line-height: 1;
	text-align: center;
	background-color: #fff;
	border-radius: 3px;
	padding: 11px 0;
}
section.plan_exp ul li:nth-of-type(1) > p span {
	font-size: 15px;
}

/*右側*/
section.plan_exp ul li:nth-of-type(2) {
	width: 480px;
}
section.plan_exp ul li:nth-of-type(2) dl {
	width: 100%;
	display: flex;
}
section.plan_exp ul li:nth-of-type(2) dl:nth-of-type(1) {
	margin-bottom: 30px;
}
section.plan_exp ul li:nth-of-type(2) dl dt {
	width: 182px;
	height: 66px;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	line-height: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #172236;
}
section.plan_exp ul li:nth-of-type(2) dl dd {
	width: calc(100% - 182px);
	height: 66px;
	font-size: 25px;
	font-weight: 600;
	color: #172236;
	line-height: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	outline: 1px solid #172236;
	outline-offset: -1px;
}
section.plan_exp ul li:nth-of-type(2) > p {
	font-size: 14px;
	font-weight: 500;
	color: #172236;
	margin-top: 3px;
	margin-bottom: 10px;
}
section.plan_exp ul li:nth-of-type(2) > div {
	width: 100%;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	background-color: #172236;
	padding: 15px 0;
}
section.plan_exp ul li:nth-of-type(2) > div span {
	color: #DFBD8F;
}
/*リンクボタン群*/
section.plan_exp > div > div {
	width: 405px;
	margin: 90px auto 0;
}
section.plan_exp > div > div a {
	width: 100%;
	display: block;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
	text-align: center;
	background-color: #172236;
	padding: 22px 0;
	border-radius: 33px;
	border: 2px solid #fff;
	position: relative;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .4));
}
section.plan_exp > div > div a::after {
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	content: '\f054';
	font-size: 16px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
section.plan_exp > div > div a:nth-of-type(1) {
	margin-bottom: 30px;
}
/*１つめのボタン*/
section.plan_exp > div > div a:nth-of-type(1):hover {
	color: #172236;
	background-color: #fff;
	border: 2px solid #172236;
}
/*２つめのボタン*/
section.plan_exp > div > div a:nth-of-type(2) {
	color: #172236;
	background-color: #fff;
	border: 2px solid #172236;
}
section.plan_exp > div > div a:nth-of-type(2):hover {
	color: #fff;
	background-color: #172236;
	border: 2px solid #fff;
}

.ppc {
	display: block;
}
.psp {
	display: none;
}

@media screen and (max-width: 1009px) {

	.ppc {
		display: none !important;
	}
	.psp {
		display: block !important;
	}

	section.plan_exp {
		padding-top: 20px;
		padding-bottom: 50px;
	}
	section.plan_exp > div {
		width: 90%;
		max-width: 600px;
	}
	section.plan_exp h3 {
		font-size: 24px;
		padding-left: 75px;
	}
	section.plan_exp h3::before {
		width: 60px;
		height: 60px;
		background-image: url(../images/top/example_sp.png);
	}
	section.plan_exp h3 span {
		font-size: 16px;
	}
	section.plan_exp ul {
		flex-wrap: wrap;
	}
	/*左側*/
	section.plan_exp ul li:nth-of-type(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	section.plan_exp ul li:nth-of-type(1) > img {
		width: 80%;
		max-width: 376px;
		margin: 0 auto 16px;
	}
	section.plan_exp ul li:nth-of-type(1) > div {
		width: 100%;
		max-width: 360px;
		margin: 0 auto 15px;
	}
	section.plan_exp ul li:nth-of-type(1) > div > img:nth-of-type(2) {
		width: 68px;
		height: 46px !important;
		margin: 0;
	}
	section.plan_exp ul li:nth-of-type(1) > div > p {
		font-size: min(14vw,60px);
		height: 46px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	section.plan_exp ul li:nth-of-type(1) > div > img:nth-of-type(4) {
		width: 57px;
		height: 47px !important;
		margin: 0;
	}
	section.plan_exp ul li:nth-of-type(1) > p {
		width: 100%;
		max-width: 370px;
		margin: 0 auto;
		font-size: 16px;
		padding: 8px 0;
	}
	/*右側*/
	section.plan_exp ul li:nth-of-type(2) {
		width: 100%;
	}
	section.plan_exp ul li:nth-of-type(2) dl:nth-of-type(1) {
		margin-bottom: 20px;
	}
	section.plan_exp ul li:nth-of-type(2) dl dt {
		font-size: 16px;
		width: 110px;
		height: 45px;
	}
	section.plan_exp ul li:nth-of-type(2) dl dd {
		font-size: 18px;
		width: calc(100% - 110px);
		height: 45px;
	}
	section.plan_exp ul li:nth-of-type(2) > p {
		font-size: 13px;
		margin-bottom: 5px;
	}
	section.plan_exp ul li:nth-of-type(2) > div {
		line-height: 1.4;
		margin-top: 10px;
	}
	section.plan_exp ul li:nth-of-type(2) > div b {
		display: inline-block;
	}
	/*リンクボタン群*/
	section.plan_exp > div > div {
		width: 90%;
		margin: 40px auto 0;
	}
	section.plan_exp > div > div a {
		font-size: 18px;
	}
	section.plan_exp > div > div a::after {
		right: 25px;
	}
	section.plan_exp > div > div a:nth-of-type(1) {
		margin-bottom: 20px;
	}
}





div.pc {
	display: block;
}
div.sp {
	display: none;
}
@media screen and (max-width: 990px) {
	div.pc {
		display: none;
	}
	div.sp {
		display: block;
	}
}







/********** TOPビジュアル下ページ内リンクボタン群 **********/
.top_links {
	background-color: #E5E5E5;
	padding-top: 50px;
	padding-bottom: 50px;
}
.search_home {
	width: 100%;
	position: static;
}
/*クルマを探す*/
.search_home p.tt {
	padding: 18px 0;
	text-align: center;
	color: #dfbd8f;
	font-size: 24px;
}
.search_home p.tt::before {
	background-image: url(../images/top/icon_lens.png);
	content: '';
	display: inline-block;
	width: 27px;
	height: 27px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
/*ボタン群*/
.search_home .inner {
	width: 90%;
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 40px;
}
.search_home ul {
	justify-content: space-between;
}
.search_home ul > li {
	flex: 0 1 31%;
}
.search_home ul > li a {
	height: auto;
	background-color: #fff;
	padding: 0;
}
.search_home ul > li a img {
	width: 100%;
	max-width: unset !important;
	height: auto;
	margin: 0;
}
/*リンクボタン群*/
ul.link_btns {
	width: 90%;
	max-width: 850px;
	margin: 30px auto 0;
	display: flex;
	justify-content: space-between;
}
ul.link_btns li {
	width: 48%;
	font-size: 33px;
}
ul.link_btns li a {
	width: 100%;
	display: block;
	font-size: 22px;
	font-weight: 600;
	color: #172236;
	text-align: center;
	background-color: #fff;
	padding: 10px 0;
	border: 2px solid #172236;
	border-radius: 33px;
	-webkit-transition: unset;
	transition: unset;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .4));
	position: relative;
}
ul.link_btns li a::after {
	position: absolute;
	top: 42%;
	right: 10%;
	display: inline-block;
	content: "";
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 3px solid #172236;
	border-right: 3px solid #172236;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*hover*/
ul.link_btns li:nth-of-type(1) a:hover {
	background-color: #172236;
	color: #fff;
	border: 2px solid #fff;
	font-weight: 600;
	opacity: 1.0;
	filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, .4));
}
ul.link_btns li:nth-of-type(1) a:hover::after {
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}
/*来店予約・お問い合わせ*/
ul.link_btns li:nth-of-type(2) a {
	background-color: #CC0000;
	color: #fff;
	border: 2px solid #EEEEEE;
}
ul.link_btns li:nth-of-type(2) a::after {
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}
/*hover*/
ul.link_btns li:nth-of-type(2) a:hover {
	background-color: #fff;
	color: #CC0000;
	border: 2px solid #CC0000;
	font-weight: 600;
	opacity: 1.0;
	filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, .4));
}
ul.link_btns li:nth-of-type(2) a:hover::after {
	border-top: 3px solid #CC0000;
	border-right: 3px solid #CC0000;
}





.bpc {
	display: block;
}
.bsp {
	display: none !important;
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 768px) {
*{}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.bpc {
	display: none !important;
}
.bsp {
	display: block !important;
}





/**********TOPお知らせ部分**********/
dl.top_news {
	width: 90%;
	max-width: 1200px;
}
dl.top_news dt {
	white-space: nowrap;
	width: max-content;
	height: 100%;
	margin: 10px 20px 10px 0;
}
dl.top_news dd {
	padding-left: 82px;
	margin: 10px 0;
}




/*トップビジュアル*/
div#mv {
	position: relative;
	height: 144vw;
	max-height: 800px;
	background-image: url(../images/top/top_sp.jpg);
	background-size: 100% auto;
}
div#mv > ul {
	width: 100%;
	padding-top: 10px;
}
div#mv > ul li {
	width: 100%;
}
div#mv > ul > li:nth-of-type(1) {
	background-image: unset;
	position: absolute;
	bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
div#mv > ul li:last-of-type > img {
	width: 90%;
}
div#mv > ul li > p span {
	font-size: min(7vw,44px);
}
div#mv > ul li > p span:last-of-type {
	line-height: 2;
}
div#mv > ul li > img {
	width: 90%;
}

/*新車のミニバンが買える*/
div#mv > ul li div.sp > ol {
	margin-bottom: 25px;
}
div#mv > ul li div.txt {
	font-size: min(5vw,36px);
	margin-bottom: 20px;
}
div#mv > ul li div.txt span {
	font-size: min(5vw,30px);
}
div#mv > ul li ol {
	padding: 20px 0 0px 0;
}
div#mv > ul li ol li {
	font-size: min(5vw,16px);
}
div#mv > ul li ol span {
	font-size: 28px;
}








/********** TOPビジュアル下ページ内リンクボタン群 **********/
.top_links {
	padding-top: 30px;
	padding-bottom: 30px;
}
/*クルマを探す*/
.search_home p.tt {
	font-size: 18px;
	padding: 15px 0;
}
.search_home p.tt::before {
	width: 20px;
	height: 20px;
}
/*ボタン群*/
.search_home .inner {
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 20px;
}
ul.link_btns {
	flex-wrap: wrap;
	max-width: 400px;
	margin: 25px auto 0;
}
ul.link_btns li {
	width: 100%;
}
ul.link_btns li:nth-of-type(1) {
	margin-bottom: 30px;
}
ul.link_btns li a {
	font-size: 18px;
	padding: 14px 0;
}







/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
