@charset "utf-8";
/* ------------------------------
 上書きCSS
------------------------------ */
.contentsHome {
	padding-top: 0;
	z-index: 2;
}

.btn a {
	min-width: 190px;
}

/* ------------------------------
 メインビジュアル
------------------------------ */
.topMainImg {
	position: relative;	
}

/* -- スクロール動き -- */
.scrollBox {
	position: fixed;
	width: 20px;
	height: 155px;
	left: 50%;
	bottom: 0;
	margin-left: -10px;
	overflow: hidden;
	z-index: 1;
	transition: opacity .3s ease-in-out;
}
.scrollBox.is-hide {
	opacity: 0;
}

/* マウス */
.scrollBox .mouse {
	position: absolute;
	width: 20px;
	height: 32px;
	left: 50%;
	top: 0;
	margin-left: -10px;
	border: solid 2px #fff;
	border-radius: 10px;
}
.scrollBox .mouse a {
	display: block;
	height: 100%;
}
.scrollBox .mouse a:focus {
	outline: thin #333 dotted;
}
.scrollBox .mouse::before {
	content: "";
	width: 4px;
	height: 7px;
	position: absolute;
	left: 50%;
	top: 5px;
	margin-left: -2px;
	background: #fff;
	border-radius: 2px;
	animation: arrow 1s ease-in-out forwards infinite;
}
@-webkit-keyframes arrow {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, 5px, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@-moz-keyframes arrow {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, 5px, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@-ms-keyframes arrow {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, 5px, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrow {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, 5px, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

/* line */
.scrollBox .line {
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 2px;
	height: 108px;
	margin-left: -1px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%);
	background-size: 100% 200%;
	background-position: 0 -108px;
	animation: line-scroll 3s ease-in-out forwards infinite;
}
@-webkit-keyframes line-scroll {
	0% {
		background-position: 0 -108px;
	}
	80% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 108px;
	}
}
@-moz-keyframes line-scroll {
	0% {
		background-position: 0 -108px;
	}
	80% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 108px;
	}
}
@-ms-keyframes line-scroll {
	0% {
		background-position: 0 -108px;
	}
	80% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 108px;
	}
}
@keyframes line-scroll {
	0% {
		background-position: 0 -108px;
	}
	80% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 108px;
	}
}


/* -- メインビジュアルタイトル -- */
.topMainTitle {
	font-size: 3.4rem;
	font-weight: bold;
	letter-spacing: 0.3em;
	width: 100%;
	height: 120px;
	color: #fff;
	text-align: center;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	text-shadow: 0 0 4px rgba(0, 0, 0, .25);
	position: fixed;
	left: 0;
	right: 0;
	bottom: 50vh;
	margin-bottom: -80px;
	z-index: 1;
}
.topMainTitle p {
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.1em;
	font-size: 1.8rem;
	font-weight: 200;
}


.movie-container {
	position: fixed;
	width: 100%;
	left: 0;
	top: 45px;
	height: 100vh;
	z-index: 0;
	overflow: hidden;
}
.movie-container--dummy {
	position: relative;
	z-index: -1;
	height: 100vh;
}
.movieImg {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	z-index: 1;
	background-size: cover;
	background-position: 50% 50%;
}

.background-youtube {
	z-index: 2;
}

/* ------------------------------
 PC用
------------------------------ */
@media print, screen and (min-width: 768px) {
	.topMainBlock {
		width: 100%;
		height: auto;
		position: fixed;
		top: 0;
		z-index: 0;
	}
	
	.contentsHome {
		margin-top: 100vh;
	}
}
/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	/* -- メインビジュアルタイトル -- */
	.topMainTitle {
		font-size: 2.4rem;
	}
	.topMainTitle p {
		font-size: 1.2rem;
	}
}


/* ドットナビ  スライダーの場合 20190529
.topMainImg .slick-dots {
	bottom: 30px;
}
.topMainImg .slick-dots li {
	width: 40px;
	height: 5px;
	background: #fff;
}
.topMainImg .slick-dots li.slick-active {
	background: #337AC4;
}
.topMainImg .slick-dots li button {
	width: 40px;
	height: 5px;
	padding: 0;
}
.topMainImg .slick-dots li button::before {
	display: none;
}
 */
/* ------------------------------
 PC用 スライダーの場合 20190529

@media print, screen and (min-width: 768px) {
	.topMainBlock {
		width: 100%;
		height: auto;
		position: fixed;
		top: 0;
		z-index: 0;
	}
	
	.mainImg {
		width: 100%;
	}
	.mainImg .slideBox {
		margin-bottom: 0;
		overflow: hidden;
		height: 100vh;
		position: relative;
	}
	.mainImg .slideBox img {
		object-fit: cover;
		height: 100%;
		width: 100%;
	}
	.contentsHome {
		margin-top: 100vh;
	}
}
@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .mainImg .slideBox img {
		
		position: absolute;
		top: 50.1%;
		left: 50.1%;
		width: 100%;
		height: auto;
		min-width: 2000px;
		max-width: inherit;
		-webkit-transform: translate(-50.1%, -50.1%);
		-ms-transform: translate(-50.1%, -50.1%);
		transform: translate(-50.1%, -50.1%);
	}
}
------------------------------ */
/* ------------------------------
 スマホ用コード スライダーの場合 20190529

@media screen and (max-width: 767px) {
	
	.topMainTitle {
		font-size: 2.4rem;
	}
	.topMainTitle p {
		font-size: 1.2rem;
	}

	.mainImg .slideBox {
		margin-bottom: 0;
		overflow: hidden;
		height: 100vh;
		position: relative;
		z-index: 5;
	}
	.mainImg .slideBox img {
		object-fit: cover;
		height: 100%;
		width: 100%;
	}
	
}
@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .mainImg .slideBox img {
		position: absolute;
		top: 50.1%;
		left: 50.1%;
		width: 100%;
		height: auto;
		min-width: 2000px;
		max-width: inherit;
		-webkit-transform: translate(-50.1%, -50.1%);
		-ms-transform: translate(-50.1%, -50.1%);
		transform: translate(-50.1%, -50.1%);
	}
}
------------------------------ */
/* ------------------------------
 見出しブロック
------------------------------ */
.blackBlock {
	color: #fff;
	background-color: #000;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 80px;
	position: relative;
	overflow: hidden;
}
.blackBlock::before,
.blackBlock::after {
	content: "";
	width: 1015px;
	height: 641px;
	position: absolute;
	z-index: 0;
}
.blackBlock::before {
	background: url(https://www.yamaha.com.cn/yamahafinetech/shared/img/line_img02.png) no-repeat;
	top: -470px;
	right: 50%;
	margin-right: 160px;
}
.blackBlock::after {
	background: url(https://www.yamaha.com.cn/yamahafinetech/shared/img/line_img.png) no-repeat;
	bottom: -475px;
	left: 50%;
	margin-left: 160px;
}
.blackBlock .inBlock {
	text-align: center;
	position: relative;
	margin: 0;
}
/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	.blackBlock {
		height: 250px;
		padding: 25px 40px;
		margin-bottom: 40px;
	}
	.blackBlock::before {
		top: -573px;
		right: 2%;
		margin-right: 0;
	}
	.blackBlock::after {
		bottom: -573px;
		left: 2%;
		margin-left: 0;
	}
}

/* ------------------------------
 FA関連製品
------------------------------ */
.faBlock .productsBlock {
	display: flex;
	flex-flow: row wrap;
	margin-top: 100px;
	padding-bottom: 30px;
}
.faBlock .pdBox {
	width: 258px;
	margin-bottom: 100px;
}
.faBlock .pdBox a {
	color: #333;
	display: block;
}
.faBlock .pdBox a:focus,
.faBlock .pdBox a:hover{
	color: #337AC4;
}
.faBlock .imgBox {
	text-align: center;
}
.faBlock .textBox {
	text-align: center;
	margin-top: 20px;
}
.faBlock .textBox span {
	font-weight: bold;
	line-height: 1.4;
	display: inline-block;
	text-align: left;
	padding-right: 20px;
	position: relative;
}
.faBlock .textBox span::after {
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: 2rem;
	font-weight: normal;
	color: #337AC4;
	line-height: .7;
	height: 15px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.faBlock .textBox span small {
	font-weight: 1.2rem;
}
/* ------------------------------
 PC用限定CSS
------------------------------ */
@media print, screen and (min-width: 768px) {
	.faBlock .pdBox:not(:nth-child(4n)) {
		margin-right: 36px;
	}
}
/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	.faBlock .inBlock {
		padding: 0 5%;
	}
	.faBlock .productsBlock {
		margin-top: 45px;
		padding-bottom: 30px;
	}
	.faBlock .pdBox {
		width: 49%;
		margin-bottom: 30px;
	}
	.faBlock .pdBox:not(:nth-child(2n)) {
		margin-right: 2%;
	}
	.faBlock .textBox span {
		font-size: 1.3rem;
		padding-right: 15px;
	}
}



/* ------------------------------
 自動車用本杢内装部品
------------------------------ */
.carpartsBlock {
	height: 800px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(https://www.yamaha.com.cn/yamahafinetech/shared/img/carparts_bg.jpg) no-repeat center center / cover;
	margin-bottom: 80px;
}
.carpartsBlock .inBlock  {
	width: 580px;
	text-align: center;
	padding: 60px 100px 70px;
	background: #fff;
	margin: 0;
}
/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	.carpartsBlock {
		height: 500px;
		padding: 9%;
		background: url(https://www.yamaha.com.cn/yamahafinetech/shared/img/carparts_bg_sp.jpg) no-repeat center center / cover;
		margin-bottom: 40px;
	}
	.carpartsBlock .inBlock  {
		width: auto;
		text-align: center;
		padding: 55px 30px;
	}
}

/* ------------------------------
 お知らせ
------------------------------ */
/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	.infoBlock .inBlock {
		padding: 0 5%;
	}
}
