/**
 * @author sara
 * Copyright (c) 2020 sara Co., Ltd.
 * All rights reserved.
 */
 
/* リセット
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body , html {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
}
body{
	margin:0;
	padding:0;
	font-family: "Helvetica Neue",
	Arial,
	"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",
	Meiryo,
	sans-serif;
	overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li{margin:0;padding:0;}
ul{list-style: none}
.clearfix:after	{
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

img{
	max-width: 100%;
	height: auto;
	display:block;
}

a:link { color: #000;text-decoration: none; }
a:visited { color: #000;text-decoration: none; }
a:hover { color: #000; text-decoration: none;}
a:active { color: #000; text-decoration: none;}

input[type="checkbox"]{display: none}


/* common
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pc {
	display: block;
}
.sp {
	display: none;
}

.title_eng,
.title_eng_PLC,
.title_eng_PG,
.title_eng_Lu {
	font-family: "Josefin Sans";
	font-size: 8rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing:0.05em;
	text-align: center;
	padding: 100px 0 19px;
	box-sizing: border-box;
}
.title_jp {
	font-family: "Lato";
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing:0.05em;
	text-align: center;
}
.grey_back {
	background: #F4F4F4;
	padding-bottom: 100px;
}
hr {
	width: 1000px;
	height: 1px;
	text-align: center;
	background: black;
}

/*header*/
.header {
	width: 100%;
	height: 100px;
	display: flex;
	align-items:center;
	padding: 0 40px;
	justify-content: space-between;
	background: white;
	position: fixed;
	top: 0;
	z-index: 100;
}
.logoBox {
	display: flex;
	position: relative;
}
.hd_logo {
	width: 150px;
}
.tarkett_logo {
	width: 156px;
	/*margin-left: 27px;*/
	position: absolute;
	top: -3px;
	left: 170px;
}
.hd_text_a {
	width: 265px;
	/*margin-right: 50px;*/
	margin-right: 130px;
}
.hd_text_a2 {
	width: 185px;
	position: absolute;
	right: 450px;
}
.hd_text {
	width: 265px;
	height: 48px;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	color: white;
	background: #8AC38D;
	border-radius: 9999px;
	padding: 0 15px 0 20px;
	box-sizing: border-box;
	justify-content: space-between;
	/*margin-right: 50px;*/
}
.hd_text2 {
	height: 48px;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	color: white;
	background: #8AC38D;
	border-radius: 9999px;
	padding: 0 15px 0 20px;
	box-sizing: border-box;
	justify-content: space-between;
}
/*　ハンバーガーボタン　*/
.hamburger {
	display : block;
	position: absolute;
	z-index : 200;
	/*right : 40px;*/
	/*top   : 28px;*/
	right : 120px;
	top   : 28px;
	width : 30px;
	height: 30px;
	cursor: pointer;
	text-align: center;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 30px;
	height  : 2px ;
	left    : 6px;
	background : #555;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 10px;
}
.hamburger span:nth-child(2) {
	top: 20px;
}
.hamburger span:nth-child(3) {
	top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active {
	/*position: fixed;*/
}
.hamburger.active span {
	background: white;
}
.hamburger.active span:nth-child(1) {
	top : 16px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform   : rotate(-45deg);
	transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(45deg);
	-moz-transform   : rotate(45deg);
	transform        : rotate(45deg);
}
nav.globalMenu {
	position: fixed;
	z-index : 100;
	top  : 0;
	left : 0;
	transform: translateX(100%);
	transition: all 0.6s;
	width: 100%;
	height: 100%;
}
nav.globalMenu ul {
	background: #8AC38D;
	margin: 0 auto;
	padding: 90px 0 0 75px;
	width: 100%;
	height: 100%;
}
nav.globalMenu ul li {
	list-style-type: none;
	padding: 0;
	width: 1150px;
	font-family: "Lato";
	font-size: 2.6rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	margin: 14px auto;
}
nav.globalMenu ul li span {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.06em;
}
nav.globalMenu ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
nav.globalMenu ul li:hover{
	/*background :#ddd;*/
}
nav.globalMenu ul li a {
	color: white;
	text-decoration :none;
}
nav.globalMenu li hr {
	width: 650px;
	height: 1px;
	background: white;
	margin: 30px auto 30px 0;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenu.active {
	transform: translateX(0%);
}

/*タイトル*/
.maintitleBox {
	position: relative;
}
.maintitle {
	position: relative;
	width: 100%;
	min-width: 2300px;
	height: 580px;
	overflow:hidden;
	margin-top: 100px;
}
.maintitle::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("/assets/img/biomass/main_img.webp");
	/*background-size:100% auto;*/
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-animation: maintitle ease-in-out 10s alternate;
	animation: maintitle ease-in-out 10s alternate;
	animation-fill-mode: forwards;
}
h1 {
	position: absolute;
	width: 1150px;
	left: 50%;
	bottom: 5px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: 50;
}
.maintitle_text {
	color: #8AC38D;
	font-family: "Lato";
	font-size: 3rem;
	font-weight: 500;
	line-height: 80px;
	letter-spacing: 0.05em;
}

/*history*/
.historyBox {
	width: 1150px;
	margin: 0 auto;
	display: flex;
	position: relative;
}
.history_textBox {
	padding: 0 0 0 75px;
	box-sizing: border-box;
}
.history_titleBox {
	font-family: "Lato";
	font-size: 5.5rem;
	font-weight: bold;
	line-height: 1.45;
	letter-spacing: 0.1em;
	position: absolute;
	top: 90px;
	z-index: 50;
}
.history_text {
	width: 290px;
	font-size: 1.3rem;
	line-height: 1.8;
	letter-spacing: 0.08em;
	font-weight: 400;
	margin: 280px 0 0;
	text-align : justify
}

/*history_slider*/
.swiperBox {
	max-width: 720px;
	height: 800px;
	margin: 0 0 0 auto;
	position: relative;
}
.swiper {
	/*max-width: 720px;*/
	/*height: 800px;*/
}
.swiper-slide {
	width: 100%;
}
.swiper-pagination-bullets {
	width: 60px!important;
	position: absolute;
	bottom: 20px!important;
	left: 20px!important;
}
.swiper-pagination-bullet {
	width: 6px;
	height: 12px;
	background: #E0E0E0;
	opacity: 1!important;
}
.swiper-pagination-bullet-active {
	background: #7BB474;
}

.animationTextBox {
	width: 805px;
	margin: 44px auto 90px;
}
.animationTextBox .subtitle {
	font-family: "Lato";
	font-size: 3rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.3;
}
.animationTextBox hr {
	width: 40px;
	margin: 13px 0 21px;
}
.animationTextBox .ATBtext {
	font-size: 2rem;
	line-height: 1.8;
	text-align : justify
}

/*Tarkett Story*/
.TarkettStory {
	background: -moz-linear-gradient(top, #FFF, #DEBD93);
	background: -webkit-linear-gradient(top, #FFF, #DEBD93);
	background: linear-gradient(to bottom, #FFF, #DEBD93);
	box-shadow: 0 30px 20px -20px rgba(0, 0, 0, .16);
	position: relative;
	z-index: 5;
}
iframe {
	border-width: 0!important;
}
.movie {
	text-align: center;
}
.movie iframe {
	width: 800px;
	height: 450px;
	margin: 15px auto 97px;
}

/*Manufacturing Process*/
.scroll_MP {
	height: 640px;
	margin: 120px auto 44px;
}
.containerMP {
	position: relative;
	width: 800px;
	max-width: 100%;
	height: 640px;
	margin: 120px auto 44px;
}

/*Recycle System*/
.scroll_RS {
	height: 550px;
	margin: 120px auto 44px;
}
.containerRS {
	position: relative;
	width: 655px;
	max-width: 100%;
	height: 550px;
	margin: 120px auto 44px;
}

/*Product Life Cycle*/
.cycle_img {
	width: 1150px;
	margin: 0 auto 100px;
	overflow:hidden;
}
.cycle_img img {
	height: 484px;
	transition:1s all;
}
.cycle_img img:hover{
	transform:scale(1.2,1.2);
	transition:1s all;
}

/*Product Guide*/
.imgBox_PG {
	position: relative;
	width: 1150px;
	height: 360px;
	overflow: hidden;
	margin: 83px auto 0;
	background-image: url("/assets/img/biomass/productGuide_img.webp");
}
.imgBox_PG2 {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	animation: scroll-anim 15s linear infinite;
	animation-direction: alternate;
}
/*@keyframes scroll-anim {*/
/*	100% {*/
/*		background-position: -100% 0;*/
/*	}*/
/*}*/

.scroll_PG {
	height: 520px;
	margin: 90px auto 44px;
}
.containerPG {
	position: relative;
	width: 800px;
	max-width: 100%;
	height: 520px;
	margin: 90px auto 44px;
}

/*.pdf_btn {*/
/*	width: 518px;*/
/*	height: 88px;*/
/*	border-radius: 9999px;*/
/*	display: flex;*/
/*	align-items:center;*/
/*	background: #2F3138;*/
/*	justify-content: space-between;*/
/*	padding: 0 150px 0 155px;*/
/*	box-sizing: border-box;*/
/*	margin: 0 auto;*/
/*}*/
.pdf_btn {
	width: 400px;
	height: 88px;
	line-height: 88px;
	border-radius: 9999px;
	display: block;
	text-align: center;
	background: #2F3138;
	margin: 0 auto;
}
.pdf_btn:hover {
	cursor: pointer;
	opacity: 0.8;
}
.pdf_text {
	color: white;
	font-size: 2.4rem;
	font-weight: 400;
	letter-spacing: 0.05em;
}

/*Lineup*/
.lineupBox {
	width: 1070px;
	margin: 60px auto 200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
.lineupBox_one {
	width: 330px;
}
.lineup_text {
	display: flex;
	justify-content: space-between;
	margin: 10px 0 60px;
}
.lineup_pn {
	font-family: "Lato";
	font-size: 2rem;
	font-weight: bold;
}
.lineup_color {
	font-family: "Lato";
	font-size: 2rem;
	font-weight: lighter;
}
.lineupTextBox {
	width: 500px;
	background: #EAEAEA;
	padding: 12px 0 15px 37px;
	box-sizing: border-box;
	position: absolute;
	bottom: 60px;
	right: 0;
}
.lineupTextBox div {
	font-size: 1.6rem;
	line-height: 32px;
	margin: 6px 0;
}
.lineupTextBox div span {
	font-size: 2.4rem;
}
.lineup_img {
	width: 100%;
}
.lineup_img:hover {
	cursor: pointer;
}

/*footer*/
.footer {
	display: flex;
	height: 100px;
	background: #F4F4F4;
	align-items:center;
	padding: 0 44px 0 40px;
	justify-content: space-between;
}
.copyright {
	width: 205px;
	height: 18px;
}
.ft_logo {
	width: 88px;
	height: 15px;
}

.pagetop {
	width: 60px;
	text-align: center;
	font-family: "Lato";
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.2;
	position: fixed;
	right: 48px;
	bottom: 130px;
	cursor: pointer;
	opacity: 0;
	z-index: 99;
}
.pagetop img {
	margin-bottom: 6px;
}

/*モーダル*/
.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	display: none;
	z-index: 100;
}
.modal-content {
	position:fixed;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: #fefefe;
	padding: 60px 0 50px;
	border: 1px solid #888;
	width: 45%;
	min-width: 640px;
}
.close {
	position: absolute;
	top: 10px;
	right: 15px;
	display: block;
	width: 30px;
	height: 30px;
	color: #aaa;
	font-size: 50px;
	line-height: 30px;
}
.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}
.modal-content img {
	width: 50%;
	margin: 0 auto;
}
.modal_lineup_text {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 50%;
	margin: 10px auto;
}
.modal_lineup_pn {
	font-family: "Lato";
	font-size: 3rem;
	font-weight: bold;
}
.modal_lineup_color {
	font-family: "Lato";
	font-size: 2.8rem;
	font-weight: lighter;
}
.download_btn {
	max-width: 200px;
	height: 48px;
	display: flex;
	align-items: center;
	font-size: 2rem;
	color: white!important;
	background: #8AC38D;
	border-radius: 9999px;
	box-sizing: border-box;
	justify-content: center;
	margin: 40px auto 0;
}
.download_btn:hover {
	cursor: pointer;
	opacity: 0.7;
}

/*ipadサイズ*/
@media screen and (max-width:820px) {
	.pc2 {
		display: none;
	}
	.sp2 {
		display: block;
	}
	hr {
		width: 90%;
		height: 1px;
		text-align: center;
		background: black;
	}

	.maintitle {
		width: 100%;
		min-width: initial;
		/*height: 789px;*/
		height: 1000px;
		overflow:hidden;
		margin-top: initial;
	}
	.maintitle::before {
		width: 100%;
		background-size: initial;
		background-image: url("/assets/img/biomass/main_img_sp.webp");
		-webkit-animation: maintitle ease-in-out 8s alternate;
		animation: maintitle ease-in-out 8s alternate;
		animation-fill-mode: forwards;
	}
	h1 {
		position: absolute;
		width: 100%;
		left: 50%;
		bottom: 5px;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		z-index: 50;
		padding: 0 5px;
		box-sizing: border-box;
	}
	.maintitle_text {
		color: #8AC38D;
		font-family: "Lato";
		font-size: 3rem;
		font-weight: 500;
		line-height: 80px;
		letter-spacing: 0.05em;
	}

	/*history*/
	.historyBox {
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-direction: column-reverse;
		position: relative;
	}
	.history_textBox {
		padding: 0 24px;
		box-sizing: border-box;
	}
	.history_titleBox {
		/*font-family: "Lato";*/
		font-size: 5.5rem;
		font-weight: bold;
		line-height: 1.45;
		letter-spacing: 0.1em;
		position: initial;
		top: initial;
		margin-top: 40px;
		z-index: 50;
	}
	.history_text {
		width: 100%;
		font-size: 1.3rem;
		line-height: 1.8;
		letter-spacing: 0.08em;
		font-weight: 400;
		margin: 39px 0 50px;
		text-align : justify;
	}

	/*history_slider*/
	.swiperBox {
		max-width: 100%;
		height: auto;
		margin: 0 0 0 auto;
		position: relative;
	}
	.swiper-slide {
		width: 100%;
	}
	.swiper-pagination-bullets {
		width: 60px!important;
		position: absolute;
		bottom: 20px!important;
		left: 20px!important;
	}
	.swiper-pagination-bullet {
		width: 6px;
		height: 12px;
		background: #E0E0E0;
		opacity: 1!important;
	}
	.swiper-pagination-bullet-active {
		background: #7BB474;
	}
	.animationTextBox {
		width: 100%;
		margin: 10px auto 80px;
		padding: 0 23px;
		box-sizing: border-box;
	}
	.animationTextBox .subtitle {
		/*font-family: "Lato";*/
		font-size: 1.8rem;
		font-weight: bold;
		letter-spacing: 0.05em;
		line-height: 1.3;
	}
	.animationTextBox hr {
		width: 40px;
		margin: 13px 0 21px;
	}
	.animationTextBox .ATBtext {
		font-size: 1.3rem;
		line-height: 1.8;
		text-align : justify
	}

	/*Tarkett Story*/
	.movie {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
	}
	.movie iframe {
		width: 90%;
		height: 90%;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

	/*Product Life Cycle*/
	.cycle_img {
		width: 100%;
		margin: 0 auto 80px;
	}
	.cycle_img img {
		height: auto;
		transition:initial;
	}
	.cycle_img img:hover{
		transform:initial;
		transition:initial;
	}

	/*Product Guide*/
	.imgBox_PG {
		position: relative;
		width: 90%;
		/*height: 137px;*/
		overflow: hidden;
		margin: 50px auto 0;
		background-image: url("/assets/img/biomass/productGuide_img.webp");
	}
	.imgBox_PG2 {
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		animation: scroll-anim 15s linear infinite;
		animation-direction: alternate;
	}

	/*Lineup*/
	.lineupBox {
		width: 90%;
		min-width: 700px;
		margin: 60px auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
	}
	.lineupBox_one {
		width: 330px;
	}
	.lineup_text {
		display: flex;
		justify-content: space-between;
		margin: 10px 0 60px;
	}
	.lineup_pn {
		font-family: "Lato";
		font-size: 2rem;
		font-weight: bold;
	}
	.lineup_color {
		font-family: "Lato";
		font-size: 2rem;
		font-weight: lighter;
	}
	.lineupTextBox {
		width: 500px;
		background: #EAEAEA;
		padding: 12px 0 15px 37px;
		box-sizing: border-box;
		position: absolute;
		bottom: 60px;
		right: 0;
	}
	.lineupTextBox div {
		font-size: 1.6rem;
		line-height: 32px;
		margin: 6px 0;
	}
	.lineupTextBox div span {
		font-size: 2.4rem;
	}
	.lineupTextBox {
		width: 90%;
		margin: 0 auto 187px;
		background: #EAEAEA;
		padding: 20px 0 18px 30px;
		box-sizing: border-box;
		position: initial;
	}
	.lineupTextBox div,
	.lineupTextBox table tr td {
		font-size: 1.3rem;
		line-height: 18px;
		margin: 6px 0;
	}
	.lineupTextBox div span,
	.lineupTextBox table tr td span {
		font-size: 2.1rem;
	}
}




/*スマホサイズ*/
@media screen and (max-width:640px) {
	#container::-webkit-scrollbar{
		display:none;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.title_eng,
	.title_eng_PLC,
	.title_eng_PG,
	.title_eng_Lu {
		/*font-family: "Josefin Sans";*/
		font-size: 4.4rem;
		font-weight: 500;
		line-height: 1.2;
		letter-spacing:0.05em;
		text-align: center;
		box-sizing: border-box;
	}
	.title_eng {
		padding: 80px 0 19px;
	}
	.title_eng_PLC {
		padding: 0 0 19px;
	}
	.title_eng_PG {
		padding: 70px 0 19px;
	}
	.title_eng_Lu {
		padding: 80px 0 50px;
	}
	.title_jp {
		font-size: 1.6rem;
	}
	.grey_back {
		padding: 0 0 100px;
	}
	hr {
		width: 90%;
		height: 1px;
		text-align: center;
		background: black;
	}
	.space {
		line-height: 70px;
		opacity: 0;
	}
	.space2 {
		line-height: 50px;
		opacity: 0;
	}

	/*header*/
	.header {
		padding: 0 10px 0 25px;
		height: 60px;
	}
	.hd_logo {
		width: 110px;
	}
	.tarkett_logo {
		width: 120px;
		/*margin-left: 15px;*/
		position: absolute;
		top: -4px;
		left: 120px;
	}
	.hd_text {
		width: 100%;
		height: 37px;
		display: flex;
		align-items: center;
		font-size: 1.6rem;
		border-radius: initial;
		padding: 0 15px 0 20px;
		text-align: center;
		justify-content: center;
		margin-right: initial;
		position: fixed;
		top: 60px;
		z-index: 90;
	}
	/*.hd_text2 {*/
	/*	width: 100%;*/
	/*	height: 37px;*/
	/*	display: flex;*/
	/*	align-items: center;*/
	/*	font-size: 1.6rem;*/
	/*	border-radius: initial;*/
	/*	padding: 0 15px 0 20px;*/
	/*	text-align: center;*/
	/*	justify-content: center;*/
	/*	margin-right: initial;*/
	/*	position: fixed;*/
	/*	top: 97px;*/
	/*	z-index: 90;*/
	/*}*/
	.hd_text img {
		margin-left: 30px;
	}

	/*　ハンバーガーボタン　*/
	.hamburger {
		display : block;
		position: absolute;
		z-index : 200;
		/*right : 25px;*/
		/*top   : 28px;*/
		right : 60px;
		top   : 9px;
		width : 30px;
		height: 30px;
		cursor: pointer;
		text-align: center;
	}
	.hamburger span {
		display : block;
		position: absolute;
		width   : 30px;
		height  : 2px ;
		left    : 6px;
		background : #555;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition   : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
	}
	.hamburger span:nth-child(1) {
		top: 10px;
	}
	.hamburger span:nth-child(2) {
		top: 20px;
	}
	.hamburger span:nth-child(3) {
		top: 30px;
	}
	/* ナビ開いてる時のボタン */
	.hamburger.active span {
		background: white;
	}
	.hamburger.active span:nth-child(1) {
		top : 16px;
		left: 6px;
		-webkit-transform: rotate(-45deg);
		-moz-transform   : rotate(-45deg);
		transform        : rotate(-45deg);
	}
	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
		top: 16px;
		-webkit-transform: rotate(45deg);
		-moz-transform   : rotate(45deg);
		transform        : rotate(45deg);
	}
	nav.globalMenu {
		position: fixed;
		z-index : 100;
		top  : 0;
		left : 0;
		transform: translateX(100%);
		transition: all 0.6s;
		width: 100%;
		height: 100%;
	}
	nav.globalMenu ul {
		padding: 50px 0 0 39px;
		height: 100%;
		overflow: auto;
	}
	nav.globalMenu ul li {
		list-style-type: none;
		padding: 0;
		width: 100%;
		/*font-family: "Lato";*/
		font-size: 2.2rem;
		font-weight: 500;
		letter-spacing: 0.06em;
		margin: 14px auto;
	}
	nav.globalMenu ul li span {
		font-size: 1.3rem;
		font-weight: 500;
		letter-spacing: 0.06em;
	}
	nav.globalMenu ul li:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}
	nav.globalMenu ul li:hover{
	}
	nav.globalMenu ul li a {
		color: white;
		text-decoration :none;
	}
	nav.globalMenu li hr {
		width: 80%;
		height: 1px;
		background: white;
		margin: 30px auto 30px 0;
	}
	/* このクラスを、jQueryで付与・削除する */
	nav.globalMenu.active {
		transform: translateX(0%);
	}

	/*タイトル*/
	.maintitle {
		width: 100%;
		min-width: initial;
		/*height: 789px;*/
		height: 660px;
		overflow:hidden;
		margin-top: initial;
	}
	.maintitle::before {
		width: 100%;
		background-size: initial;
		background-image: url("/assets/img/biomass/main_img_sp.webp");
		-webkit-animation: maintitle ease-in-out 8s alternate;
		animation: maintitle ease-in-out 8s alternate;
		animation-fill-mode: forwards;
	}
	h1 {
		width: 100%;
		left: 0;
		bottom: 5px;
		transform: initial;
		-webkit-transform: initial;
		-ms-transform: initial;
		padding: 0 5px;
		box-sizing: border-box;
	}
	.maintitle_text {
		/*color: #8AC38D;*/
		/*font-family: "Lato";*/
		font-size: 3rem;
		font-weight: 500;
		line-height: 80px;
		letter-spacing: 0.05em;
	}

	/*history*/
	.historyBox {
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-direction: column-reverse;
		position: relative;
	}
	.history_textBox {
		padding: 0 24px;
		box-sizing: border-box;
	}
	.history_titleBox {
		/*font-family: "Lato";*/
		font-size: 3.6rem;
		font-weight: bold;
		line-height: 1.45;
		letter-spacing: 0.1em;
		position: initial;
		top: initial;
		margin-top: 40px;
		z-index: 50;
	}
	.history_text {
		width: 100%;
		font-size: 1.3rem;
		line-height: 1.8;
		letter-spacing: 0.08em;
		font-weight: 400;
		margin: 39px 0 50px;
		text-align : justify;
	}

	/*history_slider*/
	.swiperBox {
		max-width: 100%;
		height: auto;
		margin: 0 0 0 auto;
		position: relative;
	}
	.swiper-slide {
		width: 100%;
	}
	.swiper-pagination-bullets {
		width: 60px!important;
		position: absolute;
		bottom: 20px!important;
		left: 20px!important;
	}
	.swiper-pagination-bullet {
		width: 6px;
		height: 12px;
		background: #E0E0E0;
		opacity: 1!important;
	}
	.swiper-pagination-bullet-active {
		background: #7BB474;
	}

	.animationTextBox {
		width: 100%;
		margin: 10px auto 80px;
		padding: 0 23px;
		box-sizing: border-box;
	}
	.animationTextBox .subtitle {
		/*font-family: "Lato";*/
		font-size: 1.8rem;
		font-weight: bold;
		letter-spacing: 0.05em;
		line-height: 1.3;
	}
	.animationTextBox hr {
		width: 40px;
		margin: 13px 0 21px;
	}
	.animationTextBox .ATBtext {
		font-size: 1.3rem;
		line-height: 1.8;
		text-align : justify
	}

	/*Tarkett Story*/
	.TarkettStory {
		/*height: 450px;*/
		background: -moz-linear-gradient(top, #FFF, #DEBD93);
		background: -webkit-linear-gradient(top, #FFF, #DEBD93);
		background: linear-gradient(to bottom, #FFF, #DEBD93);
		box-shadow: 0 30px 20px -20px rgba(0, 0, 0, .16);
		position: relative;
		z-index: 5;
	}
	.movie {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
	}
	.movie iframe {
		width: 90%;
		height: 90%;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}


	/*Manufacturing Process*/
	.scroll_MP {
		height: 304px;
		margin: 80px auto 0;
	}
	.containerMP {
		position: relative;
		width: 90%;
		max-width: 100%;
		height: 304px;
		margin: 80px auto 0;
	}

	/*Recycle System*/
	.scroll_RS {
		height: 319px;
		margin: 71px auto 0;
	}
	.containerRS {
		position: relative;
		width: 90%;
		max-width: 100%;
		height: 319px;
		margin: 71px auto 0;
	}

	/*Product Life Cycle*/
	.cycle_img {
		width: 100%;
		margin: 0 auto 80px;
	}
	.cycle_img img {
		height: auto;
		transition:initial;
	}
	.cycle_img img:hover{
		transform:initial;
		transition:initial;
	}

	/*Product Guide*/
	.imgBox_PG {
		position: relative;
		width: 90%;
		height: 137px;
		overflow: hidden;
		margin: 50px auto 0;
		background-image: url("/assets/img/biomass/productGuide_img.webp");
	}
	.imgBox_PG2 {
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		animation: scroll-anim 15s linear infinite;
		animation-direction: alternate;
	}

	.scroll_PG {
		height: 250px;
		margin: 50px auto 44px;
	}
	.containerPG {
		position: relative;
		width: 90%;
		max-width: 100%;
		height: 250px;
		margin: 50px auto 44px;
	}

	/*.pdf_btn {*/
	/*	width: 80%;*/
	/*	height: 58px;*/
	/*	display: flex;*/
	/*	align-items:center;*/
	/*	background: #2F3138;*/
	/*	justify-content: center;*/
	/*	padding: 0;*/
	/*}*/
	.pdf_btn {
		width: 70%;
		height: 58px;
		line-height: 58px;
		display: block;
		text-align: center;
		background: #2F3138;
		margin: 0 auto;
	}
	.pdf_text {
		font-size: 1.5rem;
	}
	.pdf_icon {
		width: 19.5px;
		margin-left: 29px;
	}

	/*Lineup*/
	.lineupBox {
		width: 90%;
		min-width: initial;
		margin: 0 auto 200px;
		display: block;
		flex-wrap: initial;
		justify-content: initial;
		position: initial;
	}
	.lineupBox_one {
		width: 90%;
		margin: 0 auto;
	}
	.lineup_text {
		width: 100%;
	}
	.lineupTextBox {
		width: 90%;
		margin: 0 auto 187px;
		background: #EAEAEA;
		padding: 20px 0 18px 30px;
		box-sizing: border-box;
		position: initial;
	}
	.lineupTextBox div,
	.lineupTextBox table tr td {
		font-size: 1.3rem;
		line-height: 18px;
		margin: 6px 0;
	}
	.lineupTextBox div span,
	.lineupTextBox table tr td span {
		font-size: 2.1rem;
	}

	/*footer*/
	.footer {
		display: flex;
		flex-direction: column-reverse;
		height: 100px;
		background: #F4F4F4;
		align-items:center;
		padding: 0 44px 0 40px;
		justify-content: center;
	}
	.copyright {
		width: 205px;
		height: 18px;
	}
	.ft_logo {
		width: 88px;
		height: 15px;
		margin-bottom: 15px;
	}

	/*TOPへ戻る*/
	.pagetop {
		position: fixed;
		/*right: 26px;*/
		/*bottom: 110px;*/
		right: 1rem;
		bottom: 1rem;
	}
	.pagetop img {
		margin-bottom: 6px;
	}

	/*モーダル*/
	.modal {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.4);
		display: none;
		z-index: 100;
	}
	.modal-content {
		position:fixed;
		left: 50%;
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
		background-color: #fefefe;
		padding: 65px 0 40px;
		border: 1px solid #888;
		width: 95%;
		min-width: 95%;
	}
	.close {
		position: absolute;
		top: 10px;
		right: 15px;
		display: block;
		width: 30px;
		height: 30px;
		color: #aaa;
		font-size: 50px;
		line-height: 30px;
	}
	.close:hover,
	.close:focus {
		color: black;
		text-decoration: none;
		cursor: pointer;
	}
	.modal-content img {
		width: 70%;
		margin: 0 auto;
	}
	.modal_lineup_text {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		width: 70%;
		margin: 10px auto;
	}
	.modal_lineup_pn {
		font-family: "Lato";
		font-size: 2rem;
		font-weight: bold;
	}
	.modal_lineup_color {
		font-family: "Lato";
		font-size: 2rem;
		font-weight: lighter;
	}
	.download_btn {
		max-width: 200px;
		height: 48px;
		display: flex;
		align-items: center;
		font-size: 1.5rem;
		color: white!important;
		background: #8AC38D;
		border-radius: 9999px;
		box-sizing: border-box;
		justify-content: center;
		margin: 40px auto 0;
	}
	.download_btn:hover {
		cursor: pointer;
		opacity: 0.7;
	}
}