@charset "utf-8";

/*============

inflator.css

=============*/
.mainttl {
  height: 48rem;
}
/* ----------

lineup-list

---------- */

/* lineup-list */
.lineup-list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}

.lineup-list > li {
	width: calc(100%/3 - 1.6rem);
	margin-top: 4rem;
}

.lineup-list__img {
	background-color: #f6f6f6;
}

.lineup-list__img img {
	width: 100%;
}

.lineup-list__ttl {
	font-size: max(2.2rem, 20px);
	font-weight: bold;
	margin-top: 2.4rem;
}

.lineup-list__txt {
    margin-top: 0.8rem;
}

/* ----------

method-list

---------- */

.method-list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}

.method-list li {
	width: calc(100%/2 - 1.6rem);
	margin-top: 4rem;
	background-color: #f6f6f6;
	padding: 0 3.2rem 3.2rem;
}

.method-list__img {
	text-align: center;
}

.method-list__img img {
	width: 100%;
	max-width: 36rem;
}

.method-list__ttl {
	font-size: max(2.2rem, 20px);
	font-weight: bold;
}

/* ----------

choice

---------- */

.choice {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 3.2rem 3.2rem;
	margin-top: 4rem;
	background-color: #fff;
	align-items: flex-start;
}

.choice .img {
	width: calc(100%/2 - 1.6rem);
}

.choice .cont {
	width: calc(100%/2 - 1.6rem);
}

.choice .txt {
	position: relative;
	padding-left: 1.2rem;
	margin-top: 3.2rem;
}

.choice .txt::before {
	content: "";
	background-image: linear-gradient(to right, #545454, #545454 4rem);
	background-size: 0.8rem 0.8rem;
	background-position: left center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
}

/* mv_list */
#mv_list {
	height: 14rem;
}

#mv_list li {
	display: none;
}

#mv_list li.mytoggle {
	display: block;
}

#mv_list li.mytoggle h4 {
	font-size: max(2.2rem, 20px);
	margin-top: 2.4rem;
	font-weight: bold;
}

#mv_list .basetoggle {
	display: block;
	visibility: hidden;
}

#mv_list .mytoggle ~ .basetoggle {
	display: none;
}

#mv_list p {
	margin-top: 0.8rem;
}

#mv_list p:lang(en) {
	height: 4rem;
}

#mv_list p:lang(de) {
	height: 5rem;
}

#airbag img {
	width: 100%;
}

/* car-list */
.car-list {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}

.car-list li {
	width: calc(100%/3 - 0.4rem);
	margin-top: 0.6rem;
	text-align: center;
	font-size: max(1.4rem, 12px);
	color: #fff;
	line-height: 1.4;
}

.car-list li:not(:nth-of-type(3n+1)) {
    margin-left: 0.6rem;
}

.car-list li em {
	white-space: nowrap;
	font-weight: normal;
	display: inline-block;
}

.car-list li a {
	background-color: #005aaa;
	display: block;
	padding: 1.6rem 0;
	overflow: hidden;
	position: relative;
	z-index: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.car-list li a::before,
.car-list li a::after {
	background-color: #eaf6fd;
	content: "";
	position: absolute;
	z-index: -1;
}

.car-list li a::after {
	width: 0;
	height: 100%;
	left: 0;
	top: 0;
	transform: skew(-50deg);
	transition-duration: 0.8s;
	transform-origin: top left;
	box-sizing: border-box; /* IE11 */
	border: 0px solid #eaf6fd; /* IE11 */
}

.car-list li a:hover {
	color: #005aaa;
}

.car-list li a:hover::after {
	width: 300%;
	border: 1px solid #eaf6fd; /* IE11 */
}

/*-------------

order-list

--------------*/

.order-list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}

.order-list > li {
	width: calc(100%/4 - 1.2rem);
	margin-top: 2.4rem;
}

.order-list > li .item img {
	width: 100%;
}

/*============

media queries

=============*/

/*-------------

タブレット

--------------*/

@media (max-width: 959px) {
	/* lineup */
	.lineup-list > li {
		width: calc(100%/2 - 1.2rem);
	}

	/* choice */
	.choice .img {
		width: 100%;
	}

	.choice .cont {
		width: 100%;
	}

	.choice .txt::before {
		content: "";
		background-image: linear-gradient(to right, #545454, #545454 4rem);
		background-size: 0.8rem 0.8rem;
		background-position: left center;
		background-repeat: no-repeat;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		pointer-events: none;
	}
	/* mv_list */
	#mv_list li {
		display: none;
	}

	#mv_list li.mytoggle {
		/* display: block; */
	}

	#mv_list .basetoggle {
		display: block;
		visibility: hidden;
	}

	#mv_list .mytoggle ~ .basetoggle {
		display: none;
	}

	#mv_list p {
		margin-top: 5px;
		height: 3rem;
	}

	#mv_list p:lang(en) {
		height: 5rem;
	}

	#mv_list p:lang(de) {
		height: 7rem;
	}

	#airbag {
		text-align: center;
	}

	#airbag img {
		max-width: 48rem;
	}

	/* car-list */
	.car-list li:nth-child(3n) {
		margin-right: 0;
	}

	.car-list li a::before,
	.car-list li a::after {
		content: none;
	}

	.car-list li a:hover {
		color: #fff;
	}

	.car-list li {
	    width: calc(100%/4 - 0.3rem);
	}

	.car-list li:not(:nth-of-type(3n+1)) {
		margin-left: 0;
	}

	.car-list li:not(:nth-of-type(4n+1)) {
		margin-left: 0.4rem;
	}

	/* order */
	.order-list > li {
		width: calc(100%/2 - 1.2rem);
	}
}

/*-------------

スマホ

--------------*/

@media (max-width: 519px) {
	.lineup-list > li {
		width: 100%;
	}

	.method-list li {
		width: 100%;
	}

	#airbag img {
		max-width: none;
	}

	/* order */
	.order-list > li {
		width: 100%;
	}
}
