@charset "utf-8";
/*------------------------------------------------------------
	index
------------------------------------------------------------*/
#main .mainVisual {
	--moveNum: 8px;
	--clipTime: 1.2s;
	--transitionTime: 2s;
}
#main .mainVisual .dots li.on::before {
	animation: linegrow linear var(--transitionTime);
	animation-fill-mode: forwards;
}
@keyframes linegrow {
	from {width: 0%;}
	to {width: 100%;}
}
#main .mainVisual.pause .dots li.on::before {
	animation-play-state: paused;
}
#main .mainVisual .textBox {
	z-index: 9;
}
#main .mainVisual .enImg {
	z-index: 9;
}
#main .mainVisual .fooUl {
	display: flex;
	position: relative;
	transform-style: preserve-3d;
}
#main .mainVisual .fooUl > li {
	width: 100%;
	flex-shrink: 0;
	position: relative;
	will-change: transform;
}
#main .mainVisual .fooUl > li + li {
	margin-left: -100%;
}
#main .mainVisual .fooUl .subList {
	align-items: flex-start;
}
#main .mainVisual .fooUl .subList li {
	aspect-ratio: 712/1063;
	overflow: clip;
	clip-path: inset(100% 0% 0% 0%);
	position: relative;
	border-radius: 1.6rem;
}
#main .mainVisual .fooUl .subList li:first-child::after {
	position: absolute;
	bottom: 0;
	left: -1rem;
	width: 41rem;
	height: 17.3rem;
	background: linear-gradient(89deg, #F0F2F5 78.64%, rgba(240, 242, 245, 0.67) 85.38%, rgba(240, 242, 245, 0.00) 98.96%);
	content: '';
}
#main .mainVisual .fooUl .subList li img {
	max-width: none;
	width: calc(100% + var(--moveNum));
	height: 100%;
	object-fit: cover;
}
#main .mainVisual .fooUl > li.on img {
	animation: moveR cubic-bezier(0.25, 0.46, 0.45, 0.94) calc(var(--transitionTime) + var(--clipTime));
	animation-fill-mode: forwards;
}
@keyframes moveR {
    from {transform: translateX(0);}
    to {transform: translateX(calc(-1 * var(--moveNum)));}
}
#main .mainVisual.pause .fooUl > li.on img {
	animation-play-state: paused;
}
#main .mainVisual .fooUl > li.on .subList li {
	animation: clipT cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--clipTime);
	animation-fill-mode: forwards;
}
@keyframes clipT {
	from {clip-path: inset(100% 0% 0% 0%);}
	to {clip-path: inset(0%);}
}
#main .mainVisual .fooUl > li.on .subList li:nth-of-type(2) {
	animation-delay: calc(var(--clipTime) * 0.2);
}
#main .mainVisual .fooUl > li.on .subList li:nth-of-type(3) {
	animation-delay: calc(var(--clipTime) * 0.2 + 0.1s);
}
#main .mainVisual .textBox .title .bgTxt {
	background: none !important;
}
#main .mainVisual .text .emBgBox.on .emTxt {
	transition-delay: 1s;
}
#container {
	background: url(../img/index/bg01.png) no-repeat center top / 100%;
}
.boke02 {
	width: 158rem;
	height: 109.3rem;
	left: -42.7rem;
	top: 48.9rem;
}
#main {
	padding-top: 10.9rem;
}
#main .mainVisual {
	margin-bottom: 5.9rem;
	padding-bottom: 12.9rem;
	position: relative;
	z-index: 5;
	overflow: hidden;
}
#main .mainVisual .fooUl {
	margin: 0 auto;
	max-width: 114rem;
}
#main .mainVisual .fooUl .subList {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}
#main .mainVisual .fooUl .subList li {
	width: calc((100% - 4rem) / 3);
}
#main .mainVisual .fooUl .subList li:nth-child(2) {
	margin-top: 3.6rem;
}
#main .mainVisual .fooUl .subList li img {
	border-radius: 1.6rem;
}
#main .mainVisual .barBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	position: absolute;
	right: 3.2rem;
	bottom: 8.5rem;
	z-index: 10;
}
#main .mainVisual .barBox .play {
	margin-right: 0.8rem;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border: 0.2rem solid #E9E9E9;
	background-color: #FFF;
}
#main .mainVisual .barBox .play a {
	line-height: 0;
}
#main .mainVisual .barBox .play .start {
	display: none;
}
#main .mainVisual .barBox .play img {
	width: 0.8rem;
}
#main .mainVisual .barBox .play.on {
    background: #fff;
}
#main .mainVisual .barBox .play.on .stop {
	display: none;
}
#main .mainVisual .barBox .play.on .start {
	display: block;
}
#main .mainVisual .dots {
	margin: 0;
	padding: 0.7rem 0.5rem 0.7rem 0.5rem;
	display: flex;
	width: 8.4rem;
	border: 0.2rem solid #E9E9E9;
	background-color: #FFF;
	border-radius: 3.2rem;
	z-index: 6;
}
#main .mainVisual .dots li {
	position: relative;
	width: 0.6rem;
	height: 0.6rem;
	background-color: #95A1BB;
	border-radius: 50%;
	margin: 0 0.3rem;
	overflow: hidden;
	cursor: pointer;
    transition: all linear 0.3s;
}
#main .mainVisual .dots li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	border-radius: 3.2rem;
	background: #E50012;
}
#main .mainVisual .dots li.on {
	width: 4rem;
	border-radius: 3.2rem;
}
#main .mainVisual .dots li.on::before {
	width: 100%;
	transition: all linear 2s;
}
#main .mainVisual .textBox {
	margin: -11rem 0 0 -61.9rem;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 123.8rem;
}
#main .mainVisual .textBox.onlyMix {
	/* mix-blend-mode: difference; */
	pointer-events: none;
}
#main .mainVisual .textBox .title {
	margin-bottom: 0.8rem;
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1.66;
	letter-spacing: 0.01em;
}
#main .mainVisual .textBox.onlyMix .title {
	opacity: 0;
}
#main .mainVisual .textBox .title .sub {
	margin: 0 1rem 0 -0.2rem;
	font-feature-settings: "palt";
	-moz-font-feature-settings: "palt";
}
#main .mainVisual .textBox .title .bgTxt {
	padding: 0 0 0.5rem;
	background: -webkit-linear-gradient(#FFF,#FFF) repeat-x center center / 100% 100%;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
#main .mainVisual .textBox .title .red {
	color: #E50012;
}
#main .mainVisual .text {
	font-size: 3.2rem;
	font-weight: 700;
}
#main .mainVisual .text .sub {
	/* color: #FFF;
	mix-blend-mode: difference; */
	color: #1A1A1A;
	opacity: 0;
}
#main .mainVisual .textBox.onlyMix .text .sub {
	opacity: 1;
}
#main .mainVisual .enImg {
	position: absolute;
	bottom: 0;
	left: -2.7rem;
	width: 168rem;
	mix-blend-mode: hard-light;
}
#main .mainVisual .enImg .sub {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	mix-blend-mode: screen;
	z-index: 2;
}
#main .mainVisual .enImg .sub02 {
	mix-blend-mode: multiply;
}
#main .mainVisual .enImg .sub img,
#main .mainVisual .enImg .sub02 img {
	margin-right: 4rem;
}
#main .message {
	margin-bottom: 12.3rem;
}
#main .message .imgBox .photoBox {
	margin-top: 10.8rem;
	width: 56rem;
}
#main .message .imgBox .textBox {
	width: calc(100% - 58rem);
}
#main .message .imgBox .textBox .headLine01 {
	margin-bottom: 3.5rem;
}
#main .message .imgBox .textBox .subBox {
	padding-left: 9.7rem;
}
#main .message .imgBox .textBox .textArea .text {
	margin-bottom: 3.6rem;
	line-height: 2.15;
	font-weight: 700;
}
#main .message .imgBox .textBox .textArea .text:last-child {
	margin-bottom: 0;
}
#main .motex {
	margin-bottom: 9.6rem;
}
#main .motex .topBox {
	margin-bottom: -8rem;
}
#main .motex .topBox .headLine01 {
	width: 35rem;
}
#main .motex .topBox .text {
	padding-top: 1rem;
	width: calc(100% - 38.7rem);
	line-height: 1.8;
}
#main .motex .en {
	margin: 0 -3.5rem -11.3rem;
	color: rgba(240, 242, 245, 0.8);
	font-size: 21rem;
	font-weight: 700;
	font-family: "DM Sans", sans-serif;
	line-height: 1.2;
	mix-blend-mode: multiply;
	letter-spacing: 0.04em;
}
#main .bgBox {
	margin-top: -15.8rem;
	padding: 20.6rem 0 4.4rem;
	background-color: #F0F0F5;
	position: relative;
}
#main .benefit {
	padding: 5rem 0 9.6rem;
	background-color: #FFF;
}
#main .benefit .inner {
	border: none;
}
#main .benefit .inner .lBox {
	width: 29.2rem;
}
#main .interview {
	margin-bottom: 9.7rem;
	position: relative;
}
#main .interview::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 30rem;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #FFF 37.48%);
	content: '';
}
#main .interview .topBox {
	margin-bottom: -1.3rem;
}
#main .interview .topBox .rBox  {
	width: calc(100% - 25.8rem);
}
#main .interview .topBox .rBox .text {
	padding-top: 0.1rem;
	width: calc(100% - 37.4rem);
	line-height: 1.8;
}
#main .interview .topBox .rBox .comLink {
	margin-top: 2rem;
}
#main .interview .photoList {
	margin: 0 0 0 auto !important;
	width: calc(50% + 57rem);
}
#main .interview .photoList .swiper-slide.odd-slide {
    margin-top: 3.2rem;
}
#main .interview .photoList .swiper-slide {
	margin-right: 3.2rem;
	width: 32rem;
}
#main .interview .photoList li a {
	display: block;
	position: relative;
	border-radius: 1.6rem;
	overflow: hidden;
}
#main .interview .photoList li a .pho img {
	transition: transform 1s cubic-bezier(.18,.06,.23,1),filter 1s cubic-bezier(.3,.26,.38,1);
}
#main .interview .photoList li a .en {
	position: absolute;
	top: 1rem;
	left: 1.7rem;
	font-size: 2.4rem;
	font-weight: 700;
	font-family: "DM Sans", sans-serif;
	display: block;
	color: #D5D5D5;
	z-index: 5;
}
#main .interview .photoList li a .en.white {
	color: #FFF;
}
#main .interview .photoList li .txtBox {
	margin-top: 2.4rem;
}
#main .interview .photoList li .txtBox .tag {
	margin-bottom: 0.7rem;
	padding: 0.1rem 0.8rem 0.3rem;
	width: fit-content;
	color: #FFF;
	font-size: 1.4rem;
	font-weight: 700;
	background-color: #1A1A1A;
}
#main .interview .photoList li .txtBox .ttl {
	margin-bottom: 1.3rem;
	color: #95A1BB;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.17;
}
#main .interview .photoList li .txtBox .ttl .num {
	font-size: 1.4rem;
	font-family: "DM Sans", sans-serif;
}
#main .interview .photoList li .txtBox .txt {
	font-weight: 700;
}
#main .bgBox.style01 {
	margin: 0;
	padding: 9.5rem 0;
}
#main .outLinkList li {
	width: calc((100% - 2rem) / 2);
}
#main .outLinkList li a {
	position: relative;
	padding: 3.1rem 3rem;
	display: block;
	border: 0.2rem solid #E9E9E9;
	background-color: #FFF;
	border-radius: 1.6rem;
}
#main .outLinkList li a .topBox {
	margin-bottom: 3.2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#main .outLinkList li a .topBox .lBox {
	width: calc(100% - 25rem);
	display: flex;
	flex-wrap: wrap;
}
#main .outLinkList li a .topBox .lBox .textImg {
	width: 9.6rem;
}
#main .outLinkList li a .topBox .lBox .rText {
	margin-left: 1.6rem;
	font-weight: 700;
}
#main .outLinkList li a .topBox .photo {
	width: 23.9rem;
}
#main .outLinkList li a .ttl {
	margin-bottom: 0.8rem;
	font-size: 2rem;
	font-weight: 700;
}
#main .outLinkList li a .txt {
	font-size: 1.4rem;
	line-height: 1.8;
}
#main .flow {
	padding: 4.8rem 0 0;
}
#main .flow .inner {
	background-color: transparent;
	border: none;
}
@media all and (min-width: 960px) {
	#main .interview .photoList li a:hover .pho img {
		transform: translateZ(0) scale(1.03);
	}
	#main .outLinkList li a:hover {
		border-color: #E50012;
	}
}
@media all and (max-width: 959px) {
	#container {
		background-image: url(../img/index/bg01_sp.png);
	}
	.boke01 {
		width: 60.8rem;
		height: 42.1rem;
		left: -32.7rem;
		top: -10.2rem;
	}
	.boke02 {
		width: 79.3rem;
		height: 54.3rem;
		left: -37.7rem;
		top: 49.3rem;
	}
	#main {
		padding-top: 12.1rem;
	}
	#main .mainVisual {
		margin-bottom: 4.8rem;
		padding-bottom: 11.1rem;
	}
	#main .mainVisual .textBox {
		margin: 0 0.5rem 2.7rem 2rem;
		position: static;
		width: auto;
		max-width: inherit;
	}
	#main .mainVisual .textBox .title {
		margin-bottom: 0.4rem;
		font-size: 3.6rem;
		line-height: 1.55;
	}
	#main .mainVisual .textBox .title .sub {
		margin: 0 1.8rem 0 0;
	}
	#main .mainVisual .textBox .title .bgTxt {
		padding: 0;
	}
	#main .mainVisual .text {
		font-size: 1.6rem;
	}
	#main .mainVisual .text .sub {
		color: #1A1A1A;
		opacity: 1;
	}
	#main .mainVisual .fooUl {
		margin: 0;
		max-width: inherit;
	}
	#main .mainVisual .fooUl .subList {
		gap: 0.4rem;
		align-items: flex-start;
	}
	#main .mainVisual .fooUl .subList li {
		width: calc((100% - 0.8rem) / 3);
		aspect-ratio: 122 / 223;
		border-radius: 0.8rem;
	}
	#main .mainVisual .fooUl .subList li:first-child::after {
		display: none;
	}
	#main .mainVisual .fooUl .subList li:nth-child(2) {
		margin-top: 1.6rem;
	}
	#main .mainVisual .fooUl .subList li img {
		border-radius: 0.8rem;
	}
	#main .mainVisual .barBox {
		right:1.5rem;
		bottom: 0;
	}
	#main .mainVisual .enImg {
		left: 0;
		bottom: 3.2rem;
		width: 113rem;
	}
	#main .message {
		margin-bottom: 5.6rem;
	}
	#main .message .imgBox {
		display: block;
	}
	#main .message .imgBox .photoBox {
		margin: 0 3rem 3.9rem;
		width: auto;
	}
	#main .message .imgBox .photoBox img {
		width: 100%;
	}
	#main .message .imgBox .textBox {
		width: auto;
	}
	#main .message .imgBox .textBox .headLine01 {
		margin-bottom: 0.9rem;
		letter-spacing: -0.02em;
	}
	#main .message .imgBox .textBox .subBox {
		padding-left: 0;
	}
	#main .message .imgBox .textBox .subBox .headLine04 {
		font-size: 2.4rem;
		letter-spacing: 0;
	}
	#main .message .imgBox .textBox .textArea .text {
		margin-bottom: 3.2rem;
		font-size: 1.6rem;
		line-height: 2;
	}
	#main .motex {
		margin-bottom: 6.4rem;
	}
	#main .motex .topBox {
		margin-bottom: 3.9rem;
		display: block;
	}
	#main .motex .topBox .headLine01 {
		margin-bottom: 1rem;
		width: auto;
		font-size: 4rem;
		letter-spacing: 0.02em;
	}
	#main .motex .topBox .text {
		padding-top: 0;
		width: auto;
		line-height: 1.8;
	}
	#main .motex .en {
		margin: 0 -3.5rem -11.3rem;
		color: rgba(240, 242, 245, 0.8);
		font-size: 21rem;
		font-weight: 700;
		font-family: "DM Sans", sans-serif;
		line-height: 1.2;
		mix-blend-mode: multiply;
		letter-spacing: 0.04em;
		display: none;
	}
	#main .bgBox {
		margin: -31rem 0 4.2rem;
		padding: 32.4rem 0 3.1rem;
	}
	#main .benefit {
		padding: 2.7rem 0 5.9rem;
	}
	#main .benefit .inner {
		padding: 0;
	}
	#main .benefit .inner .lBox .headLine04 {
		margin-bottom: 1.7rem;
	}
	#main .interview {
		margin-bottom: 6.5rem;
	}
	#main .interview::before {
		height: 25.8rem;
	}
	#main .interview .topBox {
		margin-bottom: 6.2rem;
		display: block;
	}
	#main .interview .topBox .headLine04 {
		margin-bottom: 1.7rem;
	}
	#main .interview .topBox .rBox  {
		width: auto;
		display: block;
	}
	#main .interview .topBox .rBox .text {
		padding-top: 0;
		width: auto;
		line-height: 1.8;
	}
	#main .interview .topBox .rBox .comLink {
		margin: 6.2rem 0 0 2.1rem;
	}
	#main .interview .photoList {
		margin: 0 0 0 1.5rem !important;
		width: auto;
	}
	#main .interview .photoList .swiper-slide {
		margin-right: 2rem;
		width: 25.5rem;
	}
	#main .interview .photoList li a .en {
		top: 1.2rem;
		left: 1.6rem;
		font-size: 1.8rem;
	}
	#main .interview .photoList li .txtBox {
		margin-top: 1.7rem;
	}
	#main .interview .photoList li .txtBox .tag {
		margin-bottom: 0.5rem;
		padding: 0.1rem 0.8rem 0.3rem;
		font-size: 1.2rem;
	}
	#main .interview .photoList li .txtBox .txt {
		font-size: 1.6rem;
	}
	#main .bgBox.style01 {
		margin: 0;
		padding: 3.2rem 0;
	}
	#main .outLinkList {
		display: block;
	}
	#main .outLinkList li {
		margin-bottom: 2rem;
		width: auto;
	}
	#main .outLinkList li:last-child {
		margin-bottom: 0;
	}
	#main .outLinkList li a {
		position: relative;
		padding: 2.3rem 2.3rem;
		border-width: 1px;
	}
	#main .outLinkList li a .topBox {
		margin-bottom: 2.4rem;
		display: block;
	}
	#main .outLinkList li a .topBox .lBox {
		margin-bottom: 1.5rem;
		width: auto;
		display: flex;
		flex-wrap: wrap;
	}
	#main .outLinkList li a .topBox .lBox .rText {
		font-size: 1.6rem;
	}
	#main .outLinkList li a .topBox .photo {
		margin: 0 auto;
		width: 22.9rem;
	}
	#main .outLinkList li a .ttl {
		margin-bottom: 0.8rem;
		font-size: 1.8rem;
	}
	#main .outLinkList li a .txt {
		font-size: 1.2rem;
	}
	#main .flow {
		padding: 2.9rem 0 3.8rem;
		position: relative;
		z-index: 5;
	}
	#main .flow .inner {
		padding: 0;
	}
	#main .flow .inner .lBox .headLine04 {
		margin-bottom: 1.7rem;
	}
}