@charset "utf-8";
body {
	background-color: #fff;
}
/* ----------------------------------------------------
	スライドアニメーション
---------------------------------------------------- */
.scrollContent {
	position: relative;
}
.scrollContent::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 110%;
	height: 100%;
	background-color: #fff;
	transform-origin: left;
	transform: translateX(0);
	transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body.is-scroll-current .scrollContent::before  {
	transform: translateX(100%);
}
header::before {
	height: 665px;
}
/* アニメーション後*/
header .headerWrap::before {
	height: 665px;
	z-index: 2;
}
/* ----------------------------------------------------
	共通
---------------------------------------------------- */
.topWrapper {
	width: 1200px;
	margin: auto;
	position: relative;
	margin-top: 60px;
}
h1 {
	color: #fff;
	position: relative;
	z-index: 2;
}
.subTitle {
	position: relative;
	z-index: 4;
	color: #ffffff;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	margin-bottom: 9px;
	margin-left: -2px;
}
h1.en {
	font-family: futura-pt-bold, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 70px;
	font-feature-settings: "palt";
	margin-left: -4px;
}
.commonWrapper {
	margin-top: 56px;
	margin-bottom: 150px;
}
.newsPhoto {
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.newsPhoto::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 110%;
	height: 100%;
	background-color: #fff;
	transform-origin: left;
	transform: translateX(0);
	transition: transform 0.3s 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body.is-scroll-current .newsPhoto::before {
	transform: translateX(101%);
}
.newsPhoto::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 110%;
	height: 100%;
	background: linear-gradient(60deg, #25c037, #5ad230);
	transform-origin: left;
	transform: translateX(0);
	transition: transform 0.4s 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body.is-scroll-current .newsPhoto::after {
	transform: scaleX(1) translateX(101%);
}
ul.newsList {
	margin-top: 100px;
}
ul.newsList li a {
	display: flex;
	-webkit-transition: .2s ease;
	transition: .2s all ease;
}
ul.newsList li a:hover {
	opacity: 0.5;
}
ul.newsList li a .date {
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	color: #262626;
	width: 150px;
/*	min-height: 88px;*/
	display: flex;
	align-items: center;
	margin-right: 85px;
	border-bottom: solid 1px #7d7d7d;
	font-feature-settings: "palt";
/*	padding: 20px 0;*/
}
ul.newsList li:first-child a .date {
	border-top: solid 1px #7d7d7d;
}
ul.newsList li a .newsTitle {
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	color: #262626;
	width: 835px;
/*	min-height: 88px;*/
	display: flex;
	align-items: center;
	border-bottom: solid 1px #bfbfbf;
	line-height: 1.3;
	padding: 51px 0;
}
ul.newsList li:first-child a .newsTitle {
	border-top: solid 1px #bfbfbf;
}

