

/*============================
共通
============================*/
/*タイトル１*/
.top_title_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.top_title_box .top_title01 {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 0.30rem;
	font-weight: 600;
}

@media screen and (max-width: 599px) {
	.top_title_box .top_title01 {
		font-size: 0.22rem;
	}
}


.top_title_box .top_title01 .sub_title {
	font-size: 0.16rem;
	font-weight: 600;
	color: #888888;
	padding-left: 0.1rem;
}

@media screen and (max-width: 599px) {
	.top_title_box .top_title01 .sub_title {
		font-size: 0.12rem;
		display: block;
		padding-left: 0;
		margin-top: 0.05rem;
	}
}

/*タイトル２*/
.top_title_box .top_title02 {
	font-size: 0.22rem;
	font-weight: 600;
	line-height: 1.27;
}

@media screen and (max-width: 599px) {
	.top_title_box .top_title02 {
		font-size: 0.17rem;
	}
}




/*============================
MV
============================*/
#top_mv {
	width: 100%;
/*	height: calc(100vh - 0.90rem);*/
	height: 6.30rem;
	position: relative;
	opacity: 0;
}
@media only screen and (min-device-width: 768px) and (orientation:portrait) {
	#top_mv {
		max-height: 6.50rem;
		position: relative;
		opacity: 0;
	}
}
@media screen and (max-width: 599px) {
	#top_mv {
		height: 122.66vw;
	}
}

#top_mv.view {
	-webkit-animation: fadein 2s 0s ease forwards, right .7s 0s ease forwards;
	animation: fadein 2s 0s ease forwards, right .7s 0s ease forwards;
}

@-webkit-keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes right {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes left {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-webkit-keyframes left {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes left {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}


#top_mv.view .back_wrap  {
	opacity: 0;
	animation: left 1s .8s ease forwards;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -12%;
	z-index: 1;
}
@media screen and (max-width: 599px) {
	#top_mv.view .back_wrap  {
		width: 100%;
		height: 1.65rem;
		top: auto;
		bottom: 0;
		left: 0;
		background: #00428e
	}
}

#top_mv.view .back {
	width: 100%;
	height: 100%;
	background: #00428e;
	transform: skew(14deg, 0);
	z-index: 1;
	overflow: hidden;
}

@media screen and (max-width: 599px) {
	#top_mv.view .back {
		height: 115%;
		transform: skew(0, 7deg);
		position: absolute;
		top: -0.5rem;
	}
}



#top_mv.view .back::before {
	content: '';
	width: 70%;
	height: 100%;
	background: #35569b;
	transform: skew(56deg, -26deg);
	position: absolute;
	top: -31%;
	right: 51%;
	z-index: 1;
	animation: slide-skew 4s 1.3s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
	opacity: 0;
}

@keyframes slide-skew {
	0% {
		transform: translate(-0, -0);
		opacity: 0;
	}

	100% {
		transform: translate(100, 100);
	}

	20%,
	100% {
		opacity: 1;
	}
}


#top_mv .slide_wrap {
	width: 70%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	overflow: hidden;
	z-index: 0;
}

@media screen and (max-width: 599px) {
	#top_mv .slide_wrap {
		width: 100%;
		height: 60%;
		position: static;
	}
}


#top_mv .slide_mv .item {
	width: 100%;
/*	height: calc(100vh - 0.90rem);*/
	height: 6.30rem;
}
@media only screen and (min-device-width: 768px) and (orientation:portrait) {
	#top_mv .slide_mv .item {
		max-height: 6.50rem;
	}
}

@media screen and (max-width: 599px) {
	#top_mv .slide_mv .item {
		width: 100%;
		height: 60%;
	}
}


#top_mv .slide_mv .slick-slide .item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
	transform: scale(1.0);
	transition: all 7.5s ease-out;
}

/*
#top_mv .slide_mv .item img {
	transform-origin: center top;
	transform: scale(1.0);
	transition: 8s;
}
*/

#top_mv .slide_mv .slick-slide.slide-animation .item img {
	transform: scale(1.1);
}
/*
#top_mv .slide_mv .slide-animation {
	animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.1);
	}
}
*/

/*slick*/
#top_mv .slide_mv .slick-dots {
	bottom: 0.20rem;
	text-align: right;
	right: 0.33rem;
}
@media screen and (max-width: 599px) {
	#top_mv .slide_mv .slick-dots li button:before {
		content: none;
	}
}


#top_mv .slide_mv .slick-dots li button:before {
	font-size: 0.15rem;
	opacity: 1;
	color: #ffffff;
}

#top_mv .slide_mv .slick-dots li.slick-active button:before {
	color: #00428e;
}

#top_mv .text_wrap {
	position: absolute;
	top: calc(100% / 4.256);
	left: 5%;
	z-index: 2;
}

@media screen and (max-width: 599px) {
	#top_mv .text_wrap {
		position: absolute;
		top: auto;
		left: 0.20rem;
		bottom: 0.30rem;
	}
}


#top_mv .text_wrap .title {
	margin-bottom: 0.3rem;
	animation: slideIn .6s ease 2.3s forwards;
	opacity: 0;
}

@media screen and (max-width: 599px) {
	#top_mv .text_wrap .title {
		max-width: 2.2rem;
	}
}

@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateY(0.5rem);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

#top_mv .text_wrap .text {
	color: #fff;
	font-size: 0.23rem;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.05em;
	animation: slideIn .6s ease 2.8s forwards;
	opacity: 0;
}

@media screen and (max-width: 599px) {
	#top_mv .text_wrap .text {
		color: #fff;
		font-size: 0.16rem;
	}

}


/*スクロール*/
/*スクロールダウン全体の場所*/
#top_mv .scrolldown {
	position: absolute;
	left: 50%;
	bottom: 10px;
	/*全体の高さ*/
	height: 50px;
	z-index: 3;
}
@media screen and (max-width: 599px) {
	#top_mv .scrolldown {
		left: auto;
		right: 0.05rem;
		bottom: 0;
	}
}


/*Scrollテキストの描写*/
#top_mv .scrolldown span {
	position: absolute;
	left: -0.26rem;
	top: -0.15rem;
	color: #eee;
	font-size: 0.13rem;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
	#top_mv .scrolldown span {
		top: -0.5rem;
		left: -2px;
		position: relative;
		z-index: 100;
	}
	
	#top_mv .scrolldown span img {
		width: 50%;
	}
}


/* 線の描写 */
#top_mv .scrolldown::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 0.30rem;
	background: #eee;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}


@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}

	30% {
		height: 30px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}


/*============================
フリー入力
============================*/
#top_free {
	padding-top: 0.78rem;
}
@media screen and (max-width: 599px) {
	#top_free {
		padding-top: 0;
		padding-bottom: 0.40rem;
		margin-top:0.25rem;
	}
}

#top_free .top_free_box {
	display: flex;
	flex-wrap: wrap;
	background: #f5f5f5;
	box-sizing: border-box;
	padding: 0.50rem;
}
@media screen and (max-width: 599px) {
	#top_free .top_free_box {
		padding: 0.20rem;
	}
}

#top_free .top_free_box .title {
	font-size: 0.22rem;
	font-weight: 600;
	line-height: 1.27;
	padding-top: 0.08rem;
}
@media screen and (max-width: 599px) {
	#top_free .top_free_box .title {
		text-align: center;
		width: 100%;
		margin-bottom: 0.20rem;
	}
}

#top_free .top_free_box .list {
	padding-left: 0.60rem;
}
@media screen and (max-width: 599px) {
	#top_free .top_free_box .list {
		width: 100%;
		padding-left: 0;
	}
}


#top_free .top_free_box .list .item {
	padding-bottom: 0.05rem;
}

#top_free .top_free_box .list .item a{
	text-decoration: none;
	font-size: 0.16rem;
	color: #000;
	line-height: 1.75;
}
@media screen and (max-width: 599px) {
	#top_free .top_free_box .list .item a{
		font-size: 0.14rem;
		width: 100%;
		padding-left: 0;
	}
}

/*============================
ピックアップ
============================*/
#top_pick {
	padding-top: 0.78rem;
	padding-bottom: 0.82rem;
}
@media screen and (max-width: 599px) {
	#top_pick {
		padding-top: 0;
		padding-bottom: 0.40rem;
/*		margin-top: -0.52rem;*/
	}
}


/*タイトル*/
#top_pick .top_title_box {
	padding-bottom: 0.21rem;
}

#top_pick .top_pick_wrap {
	display: flex;
	flex-wrap: wrap;
}

/*最初の記事*/
#top_pick .top_pick_wrap .first {
	max-width: 6.6rem;
	width: 100%;
}
@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .first {
		margin-bottom: 0.20rem;
	}
}


#top_pick .top_pick_wrap .first a {
	display: block;
	text-decoration: none;
	color: #000;
}

#top_pick .top_pick_wrap .first a:hover {
	opacity: 0.7;
}

#top_pick .top_pick_wrap .first a .ph_wrap {
	width: 100%;
	height: 3.70rem;
	overflow: hidden;
}

@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .first a .ph_wrap {
		height: 1.90rem;
	}
}


#top_pick .top_pick_wrap .first a .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}

#top_pick .top_pick_wrap .first a:hover .ph_wrap img {
	transform: scale(1.04);
}

#top_pick .top_pick_wrap .first a .title {
	font-size: 0.22rem;
	font-weight: 600;
	padding: 0.24rem 0 0.14rem;
}

@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .first a .title {
		font-size: 0.18rem;
		line-height: 1.4444;
		padding: 0.10rem 0;
	}
}


#top_pick .top_pick_wrap .first a p {
	font-size: 0.16rem;
	font-weight: 300;
	line-height: 1.75;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .first a p {
		font-size: 0.14rem;
		word-wrap: break-word;
	}
}


/*２個め以降*/
#top_pick .top_pick_wrap .second {
	max-width: calc(100% - 6.6rem);
	width: 100%;
	box-sizing: border-box;
	padding-left: 0.4rem;
}

@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .second {
		max-width: 100%;
		padding-left: 0;
	}
}


#top_pick .top_pick_wrap .second .second_cont {
	margin-bottom: 0.25rem;
}
@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .second .second_cont {
		margin-bottom: 0.20rem;
	}
}


#top_pick .top_pick_wrap .second .second_cont:last-child {
	margin-bottom: 0;
}

#top_pick .top_pick_wrap .second a {
	display: block;
	text-decoration: none;
	color: #000;
}

#top_pick .top_pick_wrap .second a:hover {
	opacity: 0.7;
}

#top_pick .top_pick_wrap .second a .second_cont_box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

#top_pick .top_pick_wrap .second a .second_cont_box .ph_wrap {
	width: 1.80rem;
	height: 1.00rem;
	overflow: hidden;
}

@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .second a .second_cont_box .ph_wrap {
		width: 40%;
		height: 0.75rem;
	}
}


#top_pick .top_pick_wrap .second a .second_cont_box .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}

#top_pick .top_pick_wrap .second a:hover .second_cont_box .ph_wrap img {
	transform: scale(1.04);
}


#top_pick .top_pick_wrap .second a .second_cont_box .text_box {
	width: calc(100% - 1.80rem);
	box-sizing: border-box;
	padding-left: 0.20rem;
}

@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .second a .second_cont_box .text_box {
		width: 60%;
		box-sizing: border-box;
		padding-left: 0.20rem;
	}
}


#top_pick .top_pick_wrap .second a .second_cont_box .text_box .title {
	font-size: 0.16rem;
	font-weight: 600;
	line-height: 1.75;
	margin-bottom: 0.05rem;
}

@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .second a .second_cont_box .text_box .title {
		font-size: 0.15rem;
		line-height: 1.4;
		margin-bottom: 0
	}
}


#top_pick .top_pick_wrap .second a .second_cont_box .text_box p {
	font-size: 0.15rem;
	font-weight: 300;
	line-height: 1.6;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media screen and (max-width: 599px) {
	#top_pick .top_pick_wrap .second a .second_cont_box .text_box p {
		font-size: 0.13rem;
	}
}



/*============================
ニュース
============================*/
#top_news {
	background: #f6f6f6;
	padding-top: 0.67rem;
	padding-bottom: 0.60rem;
}
@media screen and (max-width: 599px) {
	#top_news {
		padding-top: 0.35rem;
		padding-bottom: 0.60rem;
	}

}

#top_news .top_title_box {
	padding-bottom: 0.21rem;
}
@media screen and (max-width: 599px) {
	#top_news .top_title_box {
		padding-bottom: 0.15rem;
	}
}


#top_news .news_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


#top_news .news_wrap .mynetz {
	width: calc(50% - 0.20rem);
}

@media screen and (max-width: 599px) {
	#top_news .news_wrap .mynetz {
		width: 100%;
		margin-bottom: 0.35rem;
	}
}


#top_news .news_wrap .carinfo {
	width: calc(50% - 0.20rem);
}

@media screen and (max-width: 599px) {
	#top_news .news_wrap .carinfo {
		width: 100%;
	}

}


#top_news .news_wrap .news_cont {
	background: #fff;
	padding: 0.05rem 0.20rem;
}

#top_news .news_wrap .list .detail:nth-child(2) {
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
}


#top_news .news_wrap .list .detail a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-decoration: none;
	color: #000;
	padding: 0.20rem 0;
}

#top_news .news_wrap .list .detail a:hover {
	opacity: 0.7;
}

#top_news .news_wrap .list .detail a .news_date {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 0.15rem;
	padding-right: 0.18rem;
}

@media screen and (max-width: 599px) {
	#top_news .news_wrap .list .detail a .news_date {
		font-size: 0.14rem;
		width: 100%;
		margin-bottom: 0.05rem;
	}
}


#top_news .news_wrap .list .detail a .title {
	font-size: 0.15rem;
	font-weight: 300;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/*============================
もっとクルマにできること
============================*/
#top_motto {
	padding-top: 0.98rem;
	padding-bottom: 1.0rem;
}
@media screen and (max-width: 599px) {
	#top_motto {
		padding-top: 0.56rem;
		padding-bottom: 0.37rem;
	}
}


#top_motto .top_motto_wrap a {
	text-decoration: none;
	color: #000;
	display: block;
	width: 100%;
	height: 4.20rem;
/*
	background: url(../img/top/top_motto_img.jpg) no-repeat center center;
	background-size: cover;
*/
	position: relative;
}

@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap a {
		width: 100%;
		height: auto;
	}
}


#top_motto .top_motto_wrap a:hover {
	opacity: 0.7;
}

#top_motto .top_motto_wrap .top_motto_cont {
	width: 100%;
	height: 4.00rem;
	display: flex;
	background-color: #DBD9D0;
	background-image: url(../img/top/top_motto_back.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left;
}
@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont {
		width: 100%;
		height: auto;
		flex-flow: column-reverse;
		background-size: contain;
		background-position: left top 3rem;
	}
}

#top_motto .top_motto_wrap .top_motto_cont .text_wrap {
	width: 40%;
	box-sizing: border-box;
	padding-top: 0.6rem;
	padding-left: 0.50rem;
}
@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont .text_wrap {
		width: 100%;
		padding: 0 0.15rem 0.3rem 0.15rem;
	}
}

#top_motto .top_motto_wrap .top_motto_cont .text_wrap .title {
	font-size: 0.30rem;
	font-weight: 600;
	margin-bottom: 0.30rem;
	line-height: 1.5;
}
@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont .text_wrap .title {
		font-size: 0.25rem;
		margin-bottom: 0.20rem;
		line-height: 1.5;
	}
}

#top_motto .top_motto_wrap .top_motto_cont .text_wrap .text {
	font-size: 0.16rem;
	line-height: 1.75;
	margin-bottom: 0.3rem;
}
@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont .text_wrap .text {
		font-size: 0.14rem;
		margin-bottom: 0.3rem;
	}
}

@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont .text_wrap .btn_incont_wrap {
		text-align: right;
	}
}

#top_motto .top_motto_wrap .top_motto_cont .ph_wrap {
	width: 60%;
	height: 4.00rem;
}
@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont .ph_wrap {
		width: 100%;
		height: auto;
	}
}

#top_motto .top_motto_wrap .top_motto_cont .ph_wrap img {
	width: 100%;
	height: 4.00rem;
	object-fit: cover;
}
@media screen and (max-width: 599px) {
}

/*
#top_motto .top_motto_wrap .top_motto_cont {
	display: flex;
	flex-wrap: wrap;
	padding-top: 0.58rem;
	padding: 0.58rem 0 0 0.48rem;
}

@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont {
		padding-top: 0.58rem;
		padding: 0.30rem 0;
	}
}

#top_motto .top_motto_wrap .top_motto_cont .logo {
	width: 0.75rem;
}

@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont .logo {
		position: absolute;
		width: 0.46rem;
		top: 0.30rem;
		right: 0.25rem;
	}

}


#top_motto .top_motto_wrap .top_motto_cont .text_wrap {
	padding-left: 0.25rem;
}

#top_motto .top_motto_wrap .top_motto_cont .text_wrap .title {
	font-size: 0.28rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 0.14rem;
}

@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont .text_wrap .title {
		font-size: 0.20rem;
		line-height: 1.4;
	}

}


#top_motto .top_motto_wrap .top_motto_cont .text_wrap .text {
	font-size: 0.18rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	line-height: 1.667;
	margin-bottom: 0.30rem;
}

@media screen and (max-width: 599px) {
	#top_motto .top_motto_wrap .top_motto_cont .text_wrap .text {
		font-size: 0.14rem;
		line-height: 1.71;
		margin-bottom: 0.25rem;
	}

}

#top_motto .top_motto_wrap .top_motto_cont .text_wrap .btn_incont_circle:before {
	background: #b2cb40;
}
*/

/*バナー*/
#top_motto .bnr {
	margin-top: 0.40rem;
}

@media screen and (max-width: 599px) {
	#top_motto .bnr {
		margin-top: 0.25rem;
	}
}


#top_motto .bnr .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.50rem 0.30rem;

}
@media screen and (max-width: 599px) {
	#top_motto .bnr .list {
		gap: 0;
	}
}

/* #top_motto .bnr .list .detail  {
	width: 33%;
}
@media screen and (max-width: 599px) {
	#top_motto .bnr .list .detail  {
		width: 100%;
	}
	} */

#top_motto .bnr .list .detail a {
	max-width: 3.73rem;
	width: 100%;
	text-decoration: none;
	color: #000;
	display: block;
	/* margin: 0 0.20rem; */
}

@media screen and (max-width: 599px) {
	#top_motto .bnr .list .detail a {
		max-width: 100%;
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: center;
		margin: 0 0 0.25rem 0;
	}
}


#top_motto .bnr .list .detail a:hover {
	opacity: 0.7;
}

#top_motto .bnr .list .detail a .ph_wrap {
	width: 100%;
	height: 2.10rem;
	overflow: hidden;
}

@media screen and (max-width: 599px) {
	#top_motto .bnr .list .detail a .ph_wrap {
		width: 40%;
		height: auto;
	}
}

#top_motto .bnr .list .detail a .ph_wrap img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}

#top_motto .bnr .list .detail a:hover .ph_wrap img {
	transform: scale(1.04);
}


@media screen and (max-width: 599px) {
	#top_motto .bnr .list .detail .text_wrap {
		box-sizing: border-box;
		padding-left: 0.15rem;
		width: 60%;
	}
}


#top_motto .bnr .list .detail .title {
	font-size: 0.18rem;
	font-weight: 600;
	margin-top: 0.23rem;
	margin-bottom: 0.12rem;
	letter-spacing: 0.1em;
	position: relative;
}

@media screen and (max-width: 599px) {
	#top_motto .bnr .list .detail .title {
		font-size: 0.15rem;
		font-weight: 600;
		line-height: 1.4;
		margin-top: 0;
		margin-bottom: 0.05rem;
	}

}

/* ターゲットブランク */
#top_motto .bnr .list .detail.t_tlank .title::after {
	content: '';
    display: inline-block;
    position: relative;
    width: 0.12rem;
    height: 0.10rem;
    background-image: url(../common/img/icon_newwin_blue.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 0.04rem;
}

#top_motto .bnr .list .detail .text {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.867;
}

@media screen and (max-width: 599px) {
	#top_motto .bnr .list .detail .text {
		font-size: 13px;
		line-height: 1.53;
	}
}

/*ボタン*/
#top_motto .btn_incont::after{
	background-image: url(../img/icon_arrow_circle.svg);
}


/*============================
新車ラインナップ
============================*/
#top_lineup {
	padding-bottom: 0.65rem;
}
@media screen and (max-width: 599px) {
	#top_lineup {
		padding-bottom: 0.55em;
	}
}

#top_lineup .tab_wrap {
	margin-top: 0.30rem;
	margin-bottom: 0.38rem;
	width: 100%;
}
@media screen and (max-width: 599px) {
	#top_lineup .tab_wrap {
		margin-top: 0.42rem;
		margin-bottom: 0.38rem;
	}

}


#top_lineup .tab_wrap .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
/*
@media screen and (max-width: 599px) {
	#top_lineup .tab_wrap .list {
		overflow-x: scroll;
		white-space: nowrap;
		width: 100%;
	}
}
*/
@media screen and (max-width: 599px) {
	#top_lineup .tab_wrap {
		margin-left: -0.20rem;
		width: calc(100% + 0.40rem);
		overflow: hidden;
		overflow-x: auto;  /* 横スクロールの指定 */
		white-space: nowrap;
		overflow-scrolling: touch;  /* スクロールを滑らかにする */
		-webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */
	}
	#top_lineup .tab_wrap .list {
		width: 8.00rem;
		margin-left: 0.20rem;
	}
}

#top_lineup .tab_wrap .list .detail {
	width: calc(100% / 9);
	/* width: calc(100% / 7); */
	text-align: center;
	cursor: pointer;
}
/*
@media screen and (max-width: 599px) {
	#top_lineup .tab_wrap .list .detail {
		width: 26%;
	}
}
*/


#top_lineup .tab_wrap .list .detail a {
	display: block;
	text-align: center;
	font-size: 0.15rem;
	font-weight: 300;
	letter-spacing: 0.10em;
	border-bottom: 1px solid #dddddd;
	padding-bottom: 0.15rem;
	text-decoration: none;
}


#top_lineup .tab_wrap .list .detail a:hover {
	color: #00428e;
	font-weight: 600;
}


#top_lineup .tab_wrap .list .detail.active a {
	color: #00428e;
	font-weight: 600;
	/*	border-bottom: 2px solid #00428e;*/
}

/*
#top_lineup .tab_wrap .list .detail.active a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: #00428e;
}
*/

#top_lineup .tab_wrap .list .underline {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: calc(100% / 9);
	height: 2px;
	background: #00428e;
	transition: all .3s ease-in-out;
}


#top_lineup .tab_wrap .list .detail:nth-child(1).active ~ .underline {
	left: 0;
}

#top_lineup .tab_wrap .list .detail:nth-child(2).active ~ .underline {
	left: 11.111%;
}

#top_lineup .tab_wrap .list .detail:nth-child(3).active ~ .underline {
	left: 22.222%;
}

#top_lineup .tab_wrap .list .detail:nth-child(4).active ~ .underline {
	left: 33.333%;
}

#top_lineup .tab_wrap .list .detail:nth-child(5).active ~ .underline {
	left: 44.444%;
}

#top_lineup .tab_wrap .list .detail:nth-child(6).active ~ .underline {
	left: 55.555%;
}

#top_lineup .tab_wrap .list .detail:nth-child(7).active ~ .underline {
	left: 66.666%;
}

#top_lineup .tab_wrap .list .detail:nth-child(8).active ~ .underline {
	left: 77.777%;
}

#top_lineup .tab_wrap .list .detail:nth-child(9).active ~ .underline {
	left: 88.888%;
}



/*コンテンツ*/
#top_lineup .top_lineup_cont .list {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
	#top_lineup .top_lineup_cont .list {
		display: block;
		width: auto;
		flex-wrap: nowrap;
		white-space: nowrap;
	}
}

#top_lineup .top_lineup_cont .list .detail {
	width: 20%;
	margin-bottom: 0.30rem;
}

@media screen and (max-width: 599px) {
	#top_lineup .top_lineup_cont .list .detail {
		width: 1.50rem;
		display: inline-block;
		vertical-align: text-top;
	}
}

#top_lineup .top_lineup_cont .tab_cont {
	display: none;
}

@media screen and (max-width: 599px) {
	#top_lineup .top_lineup_cont .tab_cont {
		margin-left: -0.20rem;
		padding-left: 0.20rem;
		width: calc(100% + 0.40rem);
		overflow-x: auto;  /* 横スクロールの指定 */
		white-space: nowrap;  /* 横スクロールの指定 */
		overflow-scrolling: touch;  /* スクロールを滑らかにする */
		-webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */
	}
}

#top_lineup .top_lineup_cont .tab_cont.active {
	display: block;
}

#top_lineup .top_lineup_cont .list .detail a {
	text-decoration: none;
	display: block;
}

#top_lineup .top_lineup_cont .list .detail a:hover {
	opacity: 0.7;
}

/*画像*/
#top_lineup .top_lineup_cont .list .detail a .ph_wrap {
	max-width: 2.25rem;
	width: 100%;
	height: 1.50rem;
	margin: 0 auto;
	margin-bottom: 0.11rem;
}

@media screen and (max-width: 599px) {
	#top_lineup .top_lineup_cont .list .detail a .ph_wrap {
		height: 0.865rem;
	}
}

#top_lineup .top_lineup_cont .list .detail a .ph_wrap img {
	height: 100%;
}

/*車種*/
#top_lineup .top_lineup_cont .list .detail a .car_name {
	font-size: 0.16rem;
	font-weight: 600;
	padding-bottom: 0.14rem;
	color: #000;
}

@media screen and (max-width: 599px) {
	#top_lineup .top_lineup_cont .list .detail a .car_name {
		font-size: 0.14rem;
		padding-bottom: 0.10rem;
		white-space: initial;
	}
}

/* 新しいウィンドウで開く */
#top_lineup .top_lineup_cont .list .detail a.new_win .car_name span::after {
	content: "";
    display: inline-block;
    width: 0.15rem;
    height: 0.12rem;
    background-image: url(../common/img/icon_newwin_blue.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    margin: 0 0.03rem;
}

@media screen and (max-width: 599px) {
	#top_lineup .top_lineup_cont .list .detail a.new_win .car_name span::after {
		width: 0.10rem;
		height: 0.11rem;
	}
}

/*料金*/
#top_lineup .top_lineup_cont .list .detail a .price {
	font-size: 0.14rem;
	font-weight: 300;
	color: #666666;
}

@media screen and (max-width: 599px) {
	#top_lineup .top_lineup_cont .list .detail a .price {
		font-size: 0.115rem;
	}
}

/*注意書き*/
#top_lineup .note {
	font-size: 0.12rem;
	line-height: 1.4;
	display: block;
}
@media screen and (max-width: 599px) {
	#top_lineup .note {
		font-size: 0.10rem;
		margin: 0.20rem 0;
	}
}

/*============================
リンク
============================*/
#top_bottom_link {}

#top_bottom_link .list {
	display: flex;
	flex-wrap: wrap;
}

#top_bottom_link .list .detail:nth-child(2) {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	box-sizing: border-box;
}
@media screen and (max-width: 599px) {
	#top_bottom_link .list .detail:nth-child(2) {
		border-left: none;
		border-right: none;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
}


#top_bottom_link .list .detail a {
	text-decoration: none;
	display: block;
}
@media screen and (max-width: 599px) {
	#top_bottom_link .list .detail a {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
}

#top_bottom_link .list .detail a:hover{
	opacity: 0.7;
}


#top_bottom_link .list .detail {
	width: calc(100% / 3);
	background: #00428e;
	text-align: center;
	padding-top: 0.43rem;
	padding-bottom: 0.36rem;
	box-sizing: border-box;
}
@media screen and (max-width: 599px) {
	#top_bottom_link .list .detail {
		width: 100%;
		padding-top: 0.20rem;
		padding-bottom: 0.20rem;
		box-sizing: border-box;
	}
}


#top_bottom_link .list .detail .ph_wrap {
	width: 0.80rem;
	height: 0.80rem;
	margin: 0 auto;
	background: #35569b;
	padding: 0.05rem;
	border-radius: 50%;
	margin-bottom: 0.20rem;
	box-sizing: border-box;
}
@media screen and (max-width: 599px) {
	#top_bottom_link .list .detail .ph_wrap {
		width: 0.60rem;
		height: 0.60rem;
		margin-left: 0.20rem;
		margin-bottom: 0;
	}
}


#top_bottom_link .list .detail .text {
	display: block;
	color: #fff;
	font-size: 0.20rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 0.25rem;
	box-sizing: border-box;
}
@media screen and (max-width: 599px) {
	#top_bottom_link .list .detail .text {
		font-size: 0.16rem;
		margin-bottom: 0;
		width: calc(100% - 0.90rem);
		text-align: left;
		padding-left: 0.13rem;
	}
}


/*ボタン*/
#top_bottom_link .list .detail .btn_incont_circle:before {
	background: #fff;
}

#top_bottom_link .list .detail .btn_incont:after {
	background-image: url(../img/icon_arrow_circle_clear.svg);
}


#top_bottom_link .list .detail .btn_incont_text {
	color: #fff;
}


#top_bottom_link .list .detail .btn_incont_circle:after {
	color: #00428e;
}

/*ボタンSP*/
#top_bottom_link .list .detail .btn_incont_wrap.sp_only {
	position: absolute;
	right: 0.20rem;
}

/*============================
販売店・展示車を探す
============================*/
#top_search {
	padding: 0.99rem 0;
	box-sizing: border-box;
}
@media screen and (max-width: 599px) {
	#top_search {
		padding: 0.50rem 0;
	}

	#top_search .in {
		padding: 0;
	}
}


@media screen and (max-width: 599px) {
	#top_search .top_title_box{
/*		margin: 0 -0.20rem;*/
	}

	#top_search .top_title_box .top_title01{
		padding-left: 0.20rem;
		padding-bottom: 0.17rem;
	}
}

#top_search  .map_wrapper {
	position: relative;
}

#top_search  .map_wrapper .map_cont {
	width: calc(50% + 6.00rem);
	height: 6.00rem;
	margin-top: 0.29rem;
	margin: 0.29rem 0 0 auto;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 599px) {
	#top_search  .map_wrapper .map_cont {
		width: 100%;
		height: 3.25rem;
		margin: auto;
	}
}

#top_search  .map_wrapper .map_cont img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#top_search  .map_wrapper .map_choice {
	border-top: 3px solid #00428e;
	position: absolute;
	top: 0.30rem;
	right:calc(50% + 2.5rem);
	z-index: 2;
	background: #fff;
	box-sizing: border-box;
	padding: 0.10rem 0.2rem 0.20rem ;
	box-shadow: 3px 7px 5px 0px rgba(0,0,0,0.21);

}
@media screen and (max-width: 599px) {
	#top_search  .map_wrapper .map_choice {
		width: 100%;
/*		height: 1.5rem;*/
		position: static;;
		padding: 0;
	}
}


/* 現在地で探すボタン */
#top_search  .map_wrapper .map_choice .btn_location {
	width: 100%;
	margin: 0.2rem 0;
}

@media screen and (max-width: 599px) {
	#top_search  .map_wrapper .map_choice .btn_location {
		margin: 0.15rem 0;
	}
}

#top_search  .map_wrapper .map_choice .btn_location a {
	max-width: 2.60rem;
	width: 100%;
	background: #00428e;
	color: #fff;
	text-decoration: none;
	display: block;
	margin-left: 0.15rem;
	text-align: center;
	padding: 0.15rem 0;
	box-sizing: border-box;
	border-radius: 0.05rem;
	font-size: 0.16rem;
	font-weight: 600;
}

@media screen and (max-width: 599px) {
	#top_search  .map_wrapper .map_choice .btn_location a {
		margin: auto;
		font-size: 0.14rem;
		padding: 0.14rem 0 0.14rem;

	}
}


#top_search  .map_wrapper .map_choice .btn_location a:hover {
	opacity: 0.7;
}

#top_search  .map_wrapper .map_choice .btn_location a span::after {
	content: "";
	display: inline-block;
	width: 0.20rem;
	height: 0.20rem;
	background-image: url(../img/icon_location.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	top:0.03rem;
	margin-left: 0.10rem;
}

@media screen and (max-width: 599px) {
	#top_search  .map_wrapper .map_choice .btn_location a span::after {
		width: 0.13rem;
		height: 0.13rem;
		top:0.015rem;
		margin-left: 0.04rem;
	}
}

/*
#top_search  .map_wrapper .map_choice .btn_location a i {
	vertical-align: middle;
	display: inline-block;
	padding-left: 0.10rem;
}
*/

/*チェックリスト*/
#top_search  .map_wrapper .map_choice .list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding-left: 0.1rem;
}


#top_search  .map_wrapper .map_choice .list .item {
	font-size: 0.16rem;
	padding-bottom: 0.10rem;
	padding-left: 0.15rem;
}
@media screen and (max-width: 599px) {
	#top_search  .map_wrapper .map_choice .list .item {
		font-size: 0.12rem;
		padding-bottom: 0.17rem;
		padding-left: 0.02rem;
		display: inline-block;
	}

	#top_search  .map_wrapper .map_choice .list .item:last-child {
		padding-bottom: 0;
	}
}



#top_search  .map_wrapper .map_choice .list .item input[type=checkbox] {
	display: none;
}
#top_search  .map_wrapper .map_choice .list .item .checkbox01 {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 0.05rem 0.30rem;
	position: relative;
	width: auto;
}
@media screen and (max-width: 599px) {
	#top_search  .map_wrapper .map_choice .list .item .checkbox01 {
		padding: 0 0.30rem;
	}
}

#top_search  .map_wrapper .map_choice .list .item .checkbox01::before {
	background: #fff;
	border: 1px solid #cccccc;
	content: '';
	display: block;
	height: 0.16rem;
	left: 0.05rem;
	margin-top: -0.08rem;
	position: absolute;
	top: 50%;
	width: 0.16rem;
}

#top_search  .map_wrapper .map_choice .list .item .checkbox01::after {
	border-right: 3px solid #00428e;
	border-bottom: 3px solid #00428e;
	content: '';
	display: block;
	height: 0.09rem;
	left: 0.10rem;
	margin-top: -0.07rem;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: rotate(45deg);
	width: 0.05rem;
}

#top_search  .map_wrapper .map_choice .list .item input[type=checkbox]:checked + .checkbox01::after {
	opacity: 1;
}

/*
#top_search .map {
	width: calc(50% + 6.00rem);
	height: 6.00rem;
	margin-top: 0.29rem;
	margin: 0.29rem 0 0 auto;
}
@media screen and (max-width: 599px) {
	#top_search .map {
		width: 100%;
		height: 3.75rem;
		margin-top: 0;
		margin-left: 0;
	}
}


#top_search .map iframe {
	width: 100%;
	height: 100%;
}
*/
