/*** 全体 ***/
body{
	background-color: #FFFDFA;
	font-size: 18px;
	letter-spacing: 0.1em;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

/*** First Display ***/
.act-first-display {
	padding: 0;
	height: 100vh;
	min-height: 300px;
}
/* First 会社名 */
.act-first-company-name {
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
}
/* First 会社名 Pタグ */
.act-first-company-name p {
	position: relative;
	z-index: 1;
	font-size: 100px;
	font-weight: bold;
	transform: translateY(140px);
	animation: act-first-company-name-animation 1s forwards;
	background: linear-gradient(
		180deg,
		#B7F7B2 0%,
		#7AF565 20%,
		#5DDB4E 38%,
		#43A737 58%,
		#2E7425 78%,
		#1B4316 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	-webkit-text-stroke: 1.5px #1B4316;
}
.act-first-company-name p::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%) scaleX(0);
	width: 120%;
	height: 0;
	background: rgba(0, 0, 0, 0.45);
	border-radius: 50%;
	filter: blur(5px);
	opacity: 0;
	z-index: -1;
	animation: shadow-expand 1s forwards;
	animation-delay: inherit;
}
@keyframes shadow-expand {
	to {
		height: 18px;
		transform: translateX(-50%) scaleX(1);
		opacity: 1;
	}
}
@keyframes shadow-in {
	to {
		transform: translateX(-50%) scale(1);
		opacity: 1;
	}
}
/* First 会社名 1文字目 */
.act-first-company-name p:nth-child(1) {
	animation-delay: 0.5s;
}
/* First 会社名 2文字目 */
.act-first-company-name p:nth-child(2) {
	margin-left: 30px;
	animation-delay: 1.2s;
}
/* First 会社名 3文字目 */
.act-first-company-name p:nth-child(3) {
	margin-left: 30px;
	animation-delay: 1.9s;
}
/* First 会社名 アニメーション */
@keyframes act-first-company-name-animation {
	0% {
		/* 開始 */
		transform: translateY(140px);
	}

	50% {
		/* 中間 */
		transform: translateY(-35px);
	}

	100% {
		/* 終了 */
		transform: translateY(0);
	}
}

/*** Main ***/
.act-main-display {
	display: none;
}

/*** Header ***/
/* ロゴ */
.act-header-logo {
	max-width: 100px;
	height: auto;
}
/** Shrink指定 **/
/* ロゴ */
.act-header-s-logo {
	max-width: 75px;
	height: auto;
}
/* オフキャンバス */
.act-header-s-offcanvas {
	--bs-offcanvas-height: 270px;
}
/* オフキャンバスヘッダ */
.act-header-s-offcanvas-header {
	background: linear-gradient(
		135deg,
		#5CA34A 0%,
		#4E973A 45%,
		#356A27 100%
	);
	color: #F7F7F7;
	font-weight: bold;
}

/*** Top ***/
/* 動画 */
.act-top-video-container {
	width: 100%;
	margin: auto;
}
.act-top-fixed-height-video {
	width: 100%;
	height: 75vh;
	object-fit: cover;
}

/*** Catch Copy ***/
/* 念のため */
@media (max-width: 350px) {
	#catchCopy .h1 {
		font-size: 1.5rem;
		white-space: nowrap;
	}
}

/*** News ***/
.act-news {
	background: linear-gradient(
		135deg,
		#5CA34A 0%,
		#4E973A 45%,
		#356A27 100%
	);
	color: #F7F7F7;
}
/* 日付 */
.act-news-date {
	width:130px;
}
/* 内容 */
.act-news-contents {
	color:#EDEDED;
}
/* リンク */
.act-news-link{
	text-decoration:none;
	position:relative;
}
.act-news-link::after{
	content:"";
	position:absolute;
	left:0;
	bottom:-4px;
	width:100%;
	height:2px;
	background:#dc3545;
	transform:scaleX(0);
	transform-origin:center;
	transition:transform .3s ease;
}
.act-news-link:hover::after{
	transform:scaleX(1);
}

/*** Business ***/
.act-business {
	background: linear-gradient(
		135deg,
		#6BC058 0%,
		#5AA247 45%,
		#3A742A 100%
	);
	color: #F7F7F7;
}
/* タイトル */
.act-business-title {
  color: #8ADBEF;
  font-weight: 600;
  letter-spacing: 0.2em;
}
/*** Footer ***/
.act-footer {
	background: linear-gradient(
		135deg,
		#5CA34A 0%,
		#4E973A 45%,
		#356A27 100%
	);
	color: #FFFFFF;
}

/*** Scroll ***/
/* 下から上 */
.act-scroll-up {
	transition: 0.8s ease-in-out;
	transform: translateY(40px);
	opacity: 0;
}
.act-scroll-up.on {
	transform: translateY(0);
	opacity: 1.0;
}
/* 左から右 */
.act-scroll-left {
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	transform: translateX(-40px);
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
}
.act-scroll-left.on {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	transform: translateX(0);
}
/* 右から左 */
.act-scroll-right {
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	transform: translateX(40px);
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
}
.act-scroll-right.on {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	transform: translateX(0);
}
/* スマホは縦方向のアニメーションに変更 */
@media (max-width: 768px) {
	.act-scroll-left,
	.act-scroll-right {
		transform: translateY(40px);
	}
}
