/* 
 TOP
----------------------------------------------------------- */
.home .header,
.home .spnav__toggle {
	display: none;
}
.fv {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
}
.fv__video {
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.fv__list {
	display: flex;
	height: 100%;
}
.fv__list-item {
	position: relative;
	z-index: 0;
	flex: 1;
	transition: flex var(--trans-slow);
	background: url("../movie/top/thumbnail-mov-company.jpg") center center / cover no-repeat;
}
.fv__list-item:nth-child(2) {
	background: url("../movie/top/thumbnail-mov-service.jpg") center center / cover no-repeat;
}
.fv__list-item:nth-child(3) {
	background: url("../movie/top/thumbnail-mov-recruit.jpg") center center / cover no-repeat;
}
.fv__list-item:hover {
	flex: 1.75;
}
.fv__list-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(43,43,43,0.3);
	z-index: 1;
	pointer-events: none;
	transition: background-color var(--trans-slow);
}
.fv__list-item:hover::before {
	background-color: rgba(43,43,43,0.1);
}
.fv__list-item::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(43,43,43,0.7);
	z-index: 3;
	pointer-events: none;
	transition: opacity var(--trans-slow);
	opacity: 0;
}
.fv__list-item.is-not-hover::after {
	opacity: 1;
}
@media (hover: none) {
	.fv__list-item {
		flex: 1;
		transition: flex var(--trans-slow);
	}
	.fv__list-item.is-active {
		flex: 1.3;
	}
	.fv__list-item.is-active  .fv__text-ja{
		background-color: var(--white-color);
		color: #222;
	}
}
.fv__text{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
	line-height: 1.5;
}
.fv__text-en{
	font-family: var(--font-en);
	color: var(--white-color);
	text-align: center;
	font-size: 36px;
	margin-bottom: 20px;
}
.fv__text-ja{
	text-align: center;
	padding: 10px 20px;
	border: 1px solid var(--white-color);
	transition: background-color var(--trans-base), color var(--trans-base);
	font-size: var(--fontsize-13);
	font-weight: 600;
	width: fit-content;
	margin: 0 auto;
	color: var(--white-color);
	letter-spacing: 0.15em;
}
.fv__list-item:hover .fv__text-ja{
	background-color: var(--white-color);
	color: #222;
}
.news{
	padding-block: clamp(50px, 5.7vw, 110px);
	background-image: url("../img/common/bg-dot.png");
}
.news .l-inner{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.news .c-nomal-title__en{
	-webkit-text-stroke: 1px var(--main-color);
}
.news__cats{
	margin-top: 30px;
}
.news__cats-item:not(:last-child){
	margin-bottom: 10px;
}
.news__cats-link{
	font-family: var(--font-en);
	font-size: var(--fontsize-18);
	line-height: 1.5;
	padding-left: 23px;
	position: relative;
	z-index: 0;
	transition: color var(--trans-base);
}
.news__cats-link:hover{
	color: var(--white-color);
}
.news__cats-link::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 1px;
	width: 15px;
	background-color: #222;
}
.news__cats-link > span{
	display: inline-block;
	width: fit-content;
	padding: 0 4px;
	position: relative;
	z-index: 0;
}
.news__cats-link > span::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: width var(--trans-base);
	z-index: -1;
	background-color: #222;
}
.news__cats-link:hover > span::before{
	width: 100%;
}
.news__body{
	width: 63.5%;
}
.news-list__item:not(:last-child){
	margin-bottom: 16px;
}
.news-list__item{
	border: 1px solid var(--border-color);
	border-radius: 2px;
}
.news-list__link{
	display: block;
	position: relative;
	z-index: 0;
	padding: 25px 30px;
	transition: background-color var(--trans-base);
}
.news-list__link:hover{
	background-color: rgba(217,217,217,0.4);
}
.news-list__link::before{
	content: "";
	position: absolute;
	left: 1px;
	top: 1px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border-radius: 2px;
	border: 2px solid var(--white-color);
	background-color: rgba(242,242,242,0.4);
	transition: opacity var(--trans-base);
	z-index: -1;
}
.news-list__link:hover::before{
	opacity: 0;
}
.news-list__title{
	font-size: var(--fontsize-16);
	line-height: 1.5;
	margin-top: 13px;
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px){
	.fv__list {
		flex-direction: column;
	}
	.news__body{
		width: calc(100% - 305px);
	}
	.news__cats{
		margin-top: 10px;
	}
}
@media screen and (max-width: 767px){
	.fv__list-item::after{
		background-color: rgba(43,43,43,0.5);
	}
	.fv__list-item:hover {
		flex: 1.3;
	}
	.fv__text-en{
		font-size: 28px;
		margin-bottom: 10px;
	}
	.fv__text-ja{
		padding: 5px 15px;
	}
	.news__body{
		width: 100%;
	}
}
@media screen and (max-width: 480px){
	.news-list__link{
		padding: 20px;
	}
}