@charset "UTF-8";
/* CSS Document */
#ctsWrapper.pageTop{
	overflow: hidden;
}

/*
	キービジュアル
-----------------------------------------------------------------------------------------------*/
#kvWrapper{
	width: 100%;
	height: 100vh;
	min-height: 900px;
	position: relative;
	overflow: hidden;
}
.kvInner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: var(--width-base);
	margin-inline: auto;
	padding: 100px 30px 0;
	position: relative;
}

/* 背景動画
============================== */
#kvMovieWrapper{
	position: absolute;
	inset: 0;
	z-index: -1;
}
#kvMovieWrapper::before,
#kvMovieWrapper::after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: 0;
}
#kvMovieWrapper::before{
	background: var(--background-noise);
}
#kvMovieWrapper::after{
	background-color: var(--color-natural-grey-900);
	opacity: 0.2;
}
.kvMovie{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* タイトル周り
============================== */
.kvTxtArea{
	display: flex;
	flex-direction: column;
	gap: 30px;
	z-index: 5;
}
.kvCatch{
	font-size: 5.5rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.6rem;
	line-height: 1.5;
}

/* Swiper
============================== */
.listKvImgWrapper{
	width: 1330px;
	height: 700px;
	position: absolute;
	top: 0;
	right: -420px;
	overflow: visible;
}
.listKvImg > li{
	position: relative;
}
.listKvImg > li::before{
	content: "";
	width: 100%;
	height: 100%;
	clip-path: polygon(43.885% 0%, 0% 100%, 56.115% 100%, 78.058% 50%, 100% 0%);
	background: var(--gradation-primary-red);
	position: absolute;
	top: 10px;
	right: -5px;
	z-index: -1;
}


/*
	BIZXIMとは
-----------------------------------------------------------------------------------------------*/
#aboutWrapper{
	margin-bottom: 100px;
}
.aboutFrame{
	margin-top: -100px;
	padding: 80px;
	background-color: var(--color-natural-grey-25);
	border-radius: var(--border-radius-5);
}
.aboutCtsAreaWrapper{
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin-top: 50px;
}
.aboutCtsArea{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

/* テキスト図
============================== */
.aboutTxtArea{
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 520px;
}
.aboutTxtArea .lead{
	font-size: 3.2rem;
	font-weight: 600;
	color: var(--color-primary-red-default);
}
.aboutTxtArea .txt{
	font-size: 1.7rem;
	letter-spacing: 0.2rem;
	line-height: 2.5;
}
.aboutTxtArea .txt span{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 25px;
	margin-right: 10px;
	padding: 2px 5px 4px 10px;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.0;
	background-color: var(--color-natural-grey-900);
	border-radius: 3px;
}
.aboutImgArea{
	width: 480px;
	margin-left: -30px;
}

/* テキスト動画
============================== */
.aboutMovieTxtArea{
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 390px;
}
.aboutMovieTxtArea .lead{
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--color-primary-red-default);
	line-height: 1.6;
}
.aboutMovieTxtArea .txt{
	font-size: 1.6rem;
	letter-spacing: 0.2rem;
}
.aboutMovieArea{
	width: 550px;
	border-radius: var(--border-radius-5);
	overflow: hidden;
	position: relative;
}
.aboutMovieArea::after{
	content: "";
	display: block;
	width: 70px;
	aspect-ratio: 1/1;
	background: url("../images/ico_play.svg") no-repeat center center / 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.aboutMovie{
	display: block;
	width: 100%;
	object-fit: cover;
}

/* modal
============================== */
.modalWrapper{
	display: none;
	width: 90%;
	max-width: 1000px;
	margin: 0;
    position: fixed;
    z-index: 1000;
}
.modalArea{
	max-height: calc(100svh - 20px);
	padding: 60px;
	background-color: #fff;
	border-radius: var(--border-radius-5);
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.modalArea::-webkit-scrollbar{
	display: none;
}
.modalArea iframe{
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
/* オープンボタン */
.modalOpen:hover{
	cursor: pointer;
}
/* クローズボタン */
.modalClose {
	width: 55px;
	aspect-ratio: 1/1;
	background-color: var(--color-primary-red-default);
	border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
	cursor: pointer;
}
@media (any-hover: hover){
	.modalClose:hover{
		opacity: 1;
		background-color: var(--color-natural-grey-900);
	}
}
.modalClose::before,
.modalClose::after{
	content: '';
	width: 1px;
	height: 20px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.modalClose::after{
	transform: translate(-50%, -50%) rotate(-45deg);
}
/* 背景 */
.modalBg {
	display: none;
	width: 100%;
	height: 100%;
	background-color: var(--color-natural-grey-900);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
	opacity: 0.98;
	cursor: pointer;
}


/*
	お知らせ
-----------------------------------------------------------------------------------------------*/
#newsWrapper{
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}

/* スラッシュタイトル
============================== */
#newsWrapper .cmnTitSlashArea{
	align-items: flex-start;
}
/* タイトル */
#newsWrapper .cmnTitSlashArea .tit{
	align-items: flex-start;
}
#newsWrapper .cmnTitSlashArea .tit .jp{
	margin-left: 60px;
}

/* お知らせ一覧
============================== */
#newsWrapper .cmnListNewsWrapper{
	align-items: center;
	width: 750px;
}


/*
	10の経営アジェンダ
-----------------------------------------------------------------------------------------------*/
#agendaWrapper{
	background: var(--gradation-primary-red);
}
#agendaWrapper .ctsArea{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
	padding-block: 100px;
}

/* スラッシュタイトル
============================== */
/* タイトル */
#agendaWrapper .cmnTitSlashArea .tit .en,
#agendaWrapper .cmnTitSlashArea .tit .jp,
#agendaWrapper .cmnTitSlashArea .lead,
#agendaWrapper .cmnTitSlashArea .txt{
	color: #fff;
}
#agendaWrapper .cmnTitSlashArea .tit .en::before{
	background: var(--color-natural-grey-900);
}

/* アジェンダリスト
============================== */
.listAgenda{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.listAgenda > li{
	width: 210px;
	min-height: 120px;
}
.listAgenda > li > a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	width: 100%;
	height: 100%;
	border-radius: var(--border-radius-5);
	position: relative;
}
/* アイコン */
.listAgenda > li > a figure{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
}
.listAgenda > li > a figure img{
	height: 100%;
	object-fit: cover;
}
/* タイトル */
.listAgenda > li > a .tit{
	color: var(--color-primary-red-default);
	font-weight: 600;
	text-align: center;
}
/* ボタン */
.listAgenda > li .btn{
	width: 30px;
	aspect-ratio: 1/1;
	position: absolute;
	right: 5px;
	bottom: 5px;
}
.listAgenda > li .btn::after{
	content: "";
	width: 26px;
	aspect-ratio: 1/1;
	background-color: var(--color-primary-red-default);
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px auto;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 2px;
	transform: translateY(-50%) scale(0.23);
	transition: all 0.4s;
}
@media (any-hover: hover){
	.listAgenda > li a:hover{
		background-color: var(--color-primary-red-background);
		opacity: 1.0;
	}
	.listAgenda > li a:hover .tit,
	.listAgenda > li a:hover .txt{
		color: var(--color-primary-red-default);
	}
	.listAgenda > li a:hover .btn::after{
		background-image: url("../images/ico_arrow_wh.svg");
		transform: translateY(-50%) scale(1);
	}
}


/*
	導入事例のご紹介
-----------------------------------------------------------------------------------------------*/
#caseWrapper{
	position: relative;
}
#caseWrapper::before{
	content: "";
	width: 100%;
	height: 100%;
	background: var(--background-dots);
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.5;
}
#caseWrapper .ctsArea{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
	padding-block: 100px;
}


/*
	ナレッジ
-----------------------------------------------------------------------------------------------*/
#knowledgeWrapper{
	background-color: var(--color-natural-grey-25);
	position: relative;
}
#knowledgeWrapper .ctsArea{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
	padding-block: 100px;
}


@media screen and (max-width:812px){
	/*
		キービジュアル
	-----------------------------------------------------------------------------------------------*/
	#kvWrapper{
		height: 100%;
		min-height: 450px;
	}
	.kvInner{
		max-width: 500px;
		padding: 30px 30px 0;
	}

	/* タイトル周り
	============================== */
	.kvLogo{
		width: 250px;
	}
	.kvTxtArea{
		gap: 20px;
	}
	.kvCatch{
		font-size: 2.6rem;
		letter-spacing: 0.5rem;
	}

	/* Swiper
	============================== */
	.listKvImgWrapper{
		width: 665px;
		height: 350px;
		top: 0;
		right: auto;
		left: 20px;
	}
	.listKvImg > li::before{
		top: 5px;
		right: -2px;
	}


	/*
		BIZXIMとは
	-----------------------------------------------------------------------------------------------*/
	#aboutWrapper{
		margin-bottom: 60px;
	}
	.aboutFrame{
		margin-top: -50px;
		padding: 30px 20px;
	}
	.aboutCtsAreaWrapper{
		gap: 50px;
		margin-top: 30px;
	}
	.aboutCtsArea{
		flex-direction: column;
		gap: 20px;
	}

	/* テキスト図
	============================== */
	.aboutTxtArea{
		width: 100%;
	}
	.aboutTxtArea .lead{
		font-size: 2.0rem;
		text-align: center;
		line-height: 1.5;
	}
	.aboutTxtArea .txt{
		font-size: 1.4rem;
		line-height: 2.2;
		text-align: center;
	}
	.aboutTxtArea .txt span{
		margin-right: 5px;
		font-size: 1.3rem;
		line-height: 1.2;
	}
	.aboutImgArea{
		width: min(100%, 300px);
		margin-left: 0;
	}

	/* テキスト動画
	============================== */
	.aboutMovieTxtArea{
		gap: 10px;
		width: 100%;
	}
	.aboutMovieTxtArea .lead{
		font-size: 1.8rem;
	}
	.aboutMovieTxtArea .txt{
		font-size: 1.4rem;
	}
	.aboutMovieArea{
		width: 100%;
	}
	.aboutMovieArea::after{
		width: 50px;
	}

	/* modal
	============================== */
	.modalWrapper{
		max-width: 500px;
	}
	.modalArea{
		padding: 20px;
	}
	/* クローズボタン */
	.modalClose {
		width: 40px;
		top: -15px;
		right: -15px;
	}
	.modalClose::before,
	.modalClose::after{
		height: 15px;
	}


	/*
		お知らせ
	-----------------------------------------------------------------------------------------------*/
	#newsWrapper{
		flex-direction: column;
		align-items: center;
		gap: 30px;
		margin-bottom: 60px;
	}

	/* スラッシュタイトル
	============================== */
	/* タイトル */
	#newsWrapper .cmnTitSlashArea .tit{
		align-items: center;
	}
	#newsWrapper .cmnTitSlashArea .tit .jp{
		margin-left: 0;
	}

	/* お知らせ一覧
	============================== */
	#newsWrapper .cmnListNewsWrapper{
		width: 100%;
	}

	/*
		10の経営アジェンダ
	-----------------------------------------------------------------------------------------------*/
	#agendaWrapper .ctsArea{
		gap: 30px;
		padding-block: 60px;
	}

	/* アジェンダリスト
	============================== */
	.listAgenda{
		gap: 10px;
	}
	.listAgenda > li{
		width: calc((100% - 10px)/2);
		min-height: 110px;
	}
	/* アイコン */
	.listAgenda > li > a figure{
		width: 40px;
		height: 40px;
	}
	/* タイトル */
	.listAgenda > li > a .tit{
		font-size: 1.2rem;
		line-height: 1.2;
	}
	/* ボタン */
	.listAgenda > li .btn{
		width: 20px;
	}
	.listAgenda > li .btn::after{
		width: 20px;
		background-image: url("../images/ico_arrow_wh.svg");
		background-size: 8px auto;
		transform: translateY(-50%) scale(1);
	}

	/*
		導入事例のご紹介
	-----------------------------------------------------------------------------------------------*/
	#caseWrapper .ctsArea{
		gap: 30px;
		padding-block: 60px;
	}


	/*
		ナレッジ
	-----------------------------------------------------------------------------------------------*/
	#knowledgeWrapper .ctsArea{
		gap: 30px;
		padding-block: 60px;
	}
}