@charset "utf-8";

.contents_spec{
	border-top: 1px solid #DEDEDE;
	position: relative;
	margin-top: 40px;
}
.contents_spec::after{
	position: absolute;
	content: "";
	display: block;
	background: var(--color-primary);
	width: 200px;
	height: 10px;
	right: 0;
	left: 0;
	top: -5px;
	margin: auto;
}
@media print, screen and (min-width: 960px) {
	.contents_spec{
		margin-top: 60px;
	}
	.contents_spec::after{
		width: 210px;
		height: 12px;
		top: -6px;
	}
}

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

序文 

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

.secCharacteristics{
	padding: 30px;
}
.secCharacteristics h2{
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	letter-spacing: 2px;
}
.secCharacteristics h2 span{
	font-size: 16px;
	display: block;
	padding-bottom: 4px;
}
.secCharacteristics img{
	margin: 0 auto;
	width: 80%;
	display: block;
}
.secCharacteristics .txt{
	height:115px;
	overflow: hidden;
	position: relative;
	transition: all .4s;
	padding-bottom: 10px;
}
.secCharacteristics .txt::after{
	position: absolute;
	content: "";
	display: block;
	height: 55px;
	width: 100%;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	transition: all .4s;
	opacity: 1;
	visibility: visible;
}
.secCharacteristics .txt.open{
	height: auto;
}
.secCharacteristics .txt.open::after{
	opacity: 0;
	visibility: hidden;
}
.secCharacteristics .btn{
	position: relative;
	width: 80%;
	margin: 0 auto;
	height: 50px;
	border: 1px solid var(--color-primary);
	border-radius: 10px;
	font-size: 16px;
}
.secCharacteristics .btn::before{
	position: absolute;
	content:"";
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	width: 6px;
	height: 6px;
	border-top: 1px solid var(--color-primary);
	border-right: 1px solid var(--color-primary);
	transition: all .4s;
	/* transform:rotate(-45deg); */
	transform:rotate(135deg);
}
.secCharacteristics .btn::after{
	content: "続きを読む";
	display: block;
	width: 100%;
	text-align: center;
	line-height: 50px;
	font-size: 16px;
	transition: all .4s;
}
.secCharacteristics .btn.open::before{
	transform:rotate(-45deg); 
}
.secCharacteristics .btn.open::after{
	content: "閉じる";
}
@media print, screen and (max-width: 320px){
	.secCharacteristics{
		padding: 30px 20px;
	}
}
@media print, screen and (min-width: 768px){
	.secCharacteristics h2 span{
		font-size: 24px;
		display: inline-block;
		padding-bottom: 0px;
	}
	.secCharacteristics .inner{
		overflow: hidden;
		height: auto;
	}
	.secCharacteristics img{
		float: left;
		width: 320px;
		margin-right: 0;
		margin-top: 60px;
	}
	.secCharacteristics .txt{
		float: left;
		box-sizing: border-box;
		height:auto;
		overflow: visible;
		width: calc(100% - 320px);
		padding-left: 40px;
		padding-top: 60px;
	}
	.secCharacteristics .txt p{
		line-height: 1.7;
	}
	.secCharacteristics .txt::after,
	.secCharacteristics .btn{
		display: none;
	}
}
@media print, screen and (min-width: 960px) {
	.secCharacteristics{
		width: 960px;
		margin: 0 auto;
		padding: 60px 0;
	}
	.secCharacteristics h2 ,
	.secCharacteristics h2 span{
		font-size: 31px;
		font-weight: 900;
		letter-spacing: 3px;
	}
	.secCharacteristics h2 span{
		padding-right: 12px;
	}
	.secCharacteristics .txt p{
		line-height: 1.8;
	}
}

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

各ブロック 共通

---------------------------------------- */
.specInBox{
	border-top: 3px solid #0A0E1F;
	padding: 30px;
}
.specInBox h3{
	text-align: center;
	font-weight: bold;
	font-size: 21px;
	letter-spacing: 1px;
	padding-bottom: 15px;
	border-bottom: 1px solid #DEDEDE;
	margin-bottom: 20px;
}
.specInBox h3 span{
	display: block;
	font-size: 14px;
	font-weight: normal;
}
@media print, screen and (max-width: 320px){
	.specInBox{
		padding: 30px 20px;
	}
}
@media print, screen and (min-width: 768px){
	.specInBox h3{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
}
@media print, screen and (min-width: 960px) {
	.specInBox{
		padding: 30px 0 60px;
		width: 960px;
		margin: 0 auto;
	}
	.specInBox h3{
		font-size: 29px;
		font-weight: 900;
	}
	.specInBox h3 span{
		font-size: 18px;
		padding-bottom: 8px;
	}
}

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

スペックテーブル

---------------------------------------- */
.secSpectable table{
	width: 100%;
}
.secSpectable table th,
.secSpectable table td{
	display: block;
	padding: 12px;
	text-align: center;
}
.secSpectable table th{
	background: #F2F2F2;
	border: 1px solid #DEDEDE;
}
.secSpectable table td{
	border-left: 1px solid #DEDEDE;
	border-right: 1px solid #DEDEDE;
}
.secSpectable table tr:last-child td:last-child{
	border-bottom: 1px solid #DEDEDE;
}
@media print, screen and (min-width: 768px){
	.secSpectable table th,
	.secSpectable table td{
		display: table-cell;
		text-align: left;
	}
	.secSpectable table td{
		border-top: 1px solid #DEDEDE;
	}
	.secSpectable table tr:last-child td{
		border-bottom: 1px solid #DEDEDE;
	}
}
@media print, screen and (min-width: 960px) {
	.secSpectable table th,
	.secSpectable table td{
		padding:13px 16px;
	}
}

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

ご利用シーン

---------------------------------------- */
.secScene ul{
	letter-spacing: -1rem;
	font-size: 0;
	overflow: hidden;
	text-align: center;
}
.secScene ul li{
	letter-spacing: 1px;
	font-size: 12px;
	width: calc((100% - 20px) / 3);
	vertical-align: top;
	float: left;
	margin-right: 10px;
	font-weight: bold;
	line-height: 1.4;
}
.secScene ul li:last-child{
	margin-right: 0;
}
.secScene ul li img{
	margin-bottom: 5px;
}
@media print, screen and (min-width: 768px){
	.secScene ul li{
		width: calc((100% - 40px) / 3);
		margin-right: 20px;
	}
	.secScene ul li figcaption br{
		display: none;
	}
}
@media print, screen and (min-width: 960px){
	.secScene ul{
		width: 650px;
		margin: 0 auto;
	}
	.secScene ul li{
		width: 200px;
		margin-right: 25px;
		font-size: 17px;
	}
	.secScene ul li img{
		margin-bottom: 8px;
	}
}

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

外観・内装

---------------------------------------- */
.secVisual li{
	border-bottom: 1px solid #DEDEDE;
	padding: 20px 0;
}
.secVisual li h4{
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 15px;
	position: relative;
	padding-top: 30px;
}
.secVisual li img{
	width: 45%;
	max-width: 150px;
	float: right;
	margin-left: 10px;
}
.secVisual li p{
	font-size: 14px;
}
.secVisual li h4::before,
.secVisual li h4::after{
	position: absolute;
	display: block;
	font-weight: bold;
	font-size: 14px;
	color: #fff;
	line-height: 22px;
	text-align: center;
	top: 0;
}
.secVisual li h4::before{
	font-family: 'Lato', sans-serif;
	background: var(--color-primary);
	width: 96px;
	left: 0;
}
.secVisual li h4::after{
	width: 46px;
	background: #0A0E1F;
	left: 96px;
}
.secVisual li.exterior h4::before{
	content: "EXTERIOR";
}
.secVisual li.exterior h4::after{
	content: "外観";
}
.secVisual li.interior h4::before{
	content: "INTERIOR";
}
.secVisual li.interior h4::after{
	content: "内装";
}
@media print, screen and (min-width: 768px){
	.secVisual li{
		position: relative;
		padding: 30px 0;
		padding-left: 330px;
	}
	.secVisual li img{
		width: 300px;
		max-width: 300px;
		float: none;
		margin-left: 0px;
		position: absolute;
		left: 0;
		top: 30px;
	}
}
@media print, screen and (min-width: 960px){
	.secVisual li{
		padding-left: 350px;	
		min-height: 240px;
	}
	.secVisual li h4{
		font-size: 24px;
		padding-top: 35px;
	}
}

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

安全性能

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

/* ----------------------------------------
安全性能 イントロ
---------------------------------------- */
.aboutSafety h4{
	margin: 0 auto;
	text-align: center;
	background: #0A0E1F;
	font-weight: bold;
	color: #fff;
	font-size: 18px;
	padding: 14px 0;
	border-radius: 10px 10px 0 0;
}
.aboutSafety h4 span{
	display: block;
	font-size: 14px;
}
.aboutSafety .txt{
	background: #F2F2F2;
	padding:25px 30px;
	font-size: 14px;
	line-height: 1.9;
	border-radius:  0 0 10px 10px;
}
@media print, screen and (min-width: 768px){
	.aboutSafety{
		text-align: center;
	}
	.aboutSafety h4{
		border-radius: 200px;
		display: inline-block;
		padding: 14px 30px;
	}
	.aboutSafety h4 span{
		display: inline-block;
		font-size: 18px;
	}
	.aboutSafety .txt{
		border-radius: 10px;
		margin-top: -24px;
		padding:40px 60px;
		text-align: left;
	}
}
@media print, screen and (min-width: 960px){
	.aboutSafety h4{
		letter-spacing: 3px;
	}
	.aboutSafety .txt{
		font-size: 16px;
		line-height: 2;
		padding:50px 80px 40px;
	}
}
/* ----------------------------------------
安全性能 リスト
---------------------------------------- */
.safetyList{
	padding: 40px 0 0;
}
.safetyList li{
	margin-bottom: 30px;
}
.safetyList li h4{
	font-weight: bold;
	position: relative;
	font-size: 18px;
	padding-top: 30px;
}
.safetyList li h4::before,
.safetyList li h4::after{
	position: absolute;
	display: block;
	font-weight: bold;
	color: #fff;
	line-height: 22px;
	text-align: center;
	top: 0;
}
.safetyList li h4::before{
	content: "SAFETY";
	font-family: 'Lato', sans-serif;
	background: var(--color-primary);
	width: 80px;
	left: 0;
	font-size: 14px;
}
.safetyList li h4::after{
	content: "安全性能";
	width: 70px;
	background: #0A0E1F;
	left: 80px;
	font-size: 13px;
}
.safetyList li h4 span{
	display: block;
	font-weight: normal;
	font-size: 10px;
}
.safetyList li .inner{
	padding-top: 15px;
}
.safetyList li img{
	float: left;
	width: 100px;
	margin-right: 15px;
	margin-bottom: 5px;
}
.safetyList li p{
	font-size: 14px;
}
@media print, screen and (min-width: 768px){
	.safetyList li{
		position: relative;
	}
	.safetyList li h4{
		padding-left: 120px;
	}
	.safetyList li h4::before{
		left: 120px;
	}
	.safetyList li h4::after{
		left: 200px;
	}
	.safetyList li img{
		margin: 0;
		position: absolute;
		top: 0;
		left: 0;
	}
}
@media print, screen and (min-width: 960px){
	.safetyList{
		overflow: hidden;
	}
	.safetyList li{
		float: left;
		width: calc((100% - 40px) / 2);
		margin-right: 40px;
	}
	.safetyList li:nth-child(2n){
		margin-right: 0;
	}
	.safetyList li h4{
		padding-left: 170px;
		min-height: 105px;
	}
	.safetyList li h4::before{
		left: 170px;
	}
	.safetyList li h4::after{
		left: 250px;
	}
	.safetyList li img{
		width: 150px;
	}
}
