/*************** 
*common
******************/
.contentsWrap {
	position: relative;
	z-index: 1;
	padding: 220px 0 120px;
	width: 100%;
	background-color: #fff;
	color: #292929;
	&::before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		width: 90%;
		height: 1px;
		background-image: repeating-linear-gradient(90deg, #292929, #292929 10px, transparent 10px, transparent 20px), repeating-linear-gradient(180deg, #292929, #292929 10px, transparent 10px, transparent 20px), repeating-linear-gradient(90deg, #292929, #292929 10px, transparent 10px, transparent 20px), repeating-linear-gradient(180deg, #292929, #292929 10px, transparent 10px, transparent 20px);
		background-position: left top, right top, left bottom, left top;
		background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
		background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
	}
}
.inner {
	width: min(1200px, 90%);
	margin: 0 auto;
}
.ttlArea {
	position: relative;
	z-index: 5;
	width: 100%;
	&::before {
		content: '';
		position: absolute;
		bottom: 50%;
		z-index: -1;
		width: 100%;
		text-align: center;
		line-height: 1;
		font-size: clamp(36px, 10vw, 107px);
		font-family: "Roboto", serif;
		font-weight: 600;
		color: #f7f7f7;
		text-shadow:
			1px 1px 1px #f4f4f4,
			-1px 1px 1px #f4f4f4,
			1px -1px 1px #f4f4f4,
			-1px -1px 1px #f4f4f4,
			1px 0px 1px #f4f4f4,
			0px 1px 1px #f4f4f4,
			-1px 0px 1px #f4f4f4,
			0px -1px 1px #f4f4f4;
		;
	}
}
.ttlArea .ttl {
	text-align: center;
	font-size: clamp(16px, 4vw, 38px);
	font-weight: 600;
}
/*************** 
*アニメーション用
******************/
.js-ttlAppear span {
	display: inline-block;
}
.txtRing {
	position: relative;
	z-index: 1;
	&::after {
		content: '';
		position: absolute;
		bottom: 0;
		right: -15%;
		z-index: 2;
		display: block;
		width: 590px;
		height: 590px;
		background-repeat: no-repeat;
		background-size: contain;
		animation: rotation 60s linear infinite;
	}
}
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.txtRing.designerTxt {
	&::after {
		background-image: url(../library/images/recruit_d_txtRing.png);
	}
}
.txtRing.coderTxt {
	&::after {
		background-image: url(../library/images/recruit_c_txtRing.png);
	}
}
.txtRing.directorTxt {
	&::after {
		background-image: url(../library/images/recruit_di_txtRing.png);
	}
}
.scroll {
	position: relative;
	z-index: 5;
	margin: 0 auto;
	height: 240px;
	width: min(1730px, 90%);
	background-color: #fff;
}
.scroll span {
	writing-mode: vertical-rl;
	font-family: "Roboto", serif;
	font-size: clamp(16px, 2vw, 20px);
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		margin: auto;
		width: 1px;
		height: 120px;
		background-color: #000;
		animation: scroll 2s infinite;
	}
	&::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		margin: auto;
		width: 1px;
		height: 120px;
		background-color: #ccc;
	}
}
@keyframes scroll {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	51% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}
.cubeItem1 {
	position: relative;
	z-index: 1;
	&::before {
		content: "";
		position: fixed;
		top: 120px;
		left: 8vw;
		z-index: -1;
		display: block;
		width: 250px;
		height: auto;
		aspect-ratio: 1 / 1;
		background-image: url(../library/images/recruit_cubeItem1.png);
		background-repeat: no-repeat;
		background-size: cover;
		animation: floating 3s ease-in-out 2s infinite alternate-reverse;
	}
	&::after {
		content: "";
		position: fixed;
		top: 190px;
		right: 7vw;
		z-index: -1;
		display: block;
		width: 270px;
		height: auto;
		aspect-ratio: 1 / 1;
		background-image: url(../library/images/recruit_cubeItem2.png);
		background-repeat: no-repeat;
		background-size: cover;
		animation: floating 3s ease-in-out infinite alternate-reverse;
	}
}
.cubeItem2 {
	position: relative;
	z-index: 1;
	&::before {
		content: "";
		position: fixed;
		top: 590px;
		left: 17vw;
		z-index: -1;
		display: block;
		width: 180px;
		height: auto;
		aspect-ratio: 1 / 1;
		background-image: url(../library/images/recruit_cubeItem3.png);
		background-repeat: no-repeat;
		background-size: cover;
		animation: floating 3s ease infinite alternate-reverse;
	}
	&::after {
		content: "";
		position: fixed;
		top: 618px;
		right: 10vw;
		z-index: -1;
		display: block;
		width: 310px;
		height: auto;
		aspect-ratio: 1 / 1;
		transform: rotate(-10deg);
		background-image: url(../library/images/recruit_cubeItem4.png);
		background-repeat: no-repeat;
		background-size: cover;
		animation: floating 3s ease 1s infinite alternate-reverse;
	}
}
.js-show {
	opacity: 0;
}
@keyframes floating {
	0% {
		transform: translateY(-10%) rotate(-8deg);
	}
	100% {
		transform: translateY(10%) rotate(4deg);
	}
}
.backTxt {
	position: absolute;
	top: 50%;
	z-index: -1;
	transform: translateY(-50%);
	width: 100%;
	height: 200px;
	background-image: url(../library/images/recruit_entryBackTxt.png);
	background-repeat: repeat-x;
	background-size: auto 70%;
	background-position: top 50% right;
	overflow: hidden;
	animation: infinity-scroll-left 60s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
	from {
		background-position: top 50% right;
	}
	to {
		background-position: top 50% right 3000px;
	}
}
/***************
*FV
******************/
.FV.contentsWrap {
	padding-bottom: 80px;
}
.FV {
	position: relative;
	z-index: 1;
	width: 100%;
}
.FV .inner {
	position: relative;
	top: 0;
	z-index: 1;
	width: min(1730px, 90%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	&::before {
		content: '';
		position: absolute;
		top: -150px;
		right: 0;
		z-index: -5;
		display: block;
		width: 100%;
		height: 746px;
		background-color: #ffffff75;
	}
}
.FV .txtArea {
	width: 100%;
}
.FV .ttlArea {
	position: relative;
	margin-bottom: 6vw;
	&::after {
		content: '';
		position: absolute;
		bottom: -2vw;
		left: 0;
		display: block;
		height: 3px;
		width: min(9vw, 54px);
	}
}
.FV .ttlArea.green {
	&::after {
		background-color: #228125;
	}
}
.FV .ttlArea.blue {
	&::after {
		background-color: #487EBC;
	}
}
.FV .ttlArea.red {
	&::after {
		background-color: #C42E2E;
	}
}
.FV .ttlArea .mainttl {
	line-height: 1.2;
	font-family: "Roboto", serif;
	font-size: clamp(45px, 12vw, 187px);
	font-weight: 400;
}
.FV .ttlArea .subttl {
	font-size: clamp(16px, 4vw, 33px);
	font-weight: 600;
}
.FV .detailArea .backBlack {
	position: relative;
	z-index: 5;
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	line-height: 0;
	font-size: clamp(16px, 3vw, 24px);
	font-weight: 600;
	color: #fff;
	padding: 0.5em;
	margin-bottom: 18px;
	line-height: 3.2em;
	background-color: #292929;
}
.FV .detailArea .backWhite {
	position: relative;
	top: 0;
	z-index: 1;
	width: fit-content;
	line-height: 2;
	font-size: clamp(16px, 3vw, 18px);
	&::before {
		content: '';
		position: absolute;
		top: -355px;
		left: 0;
		display: block;
		width: 72vw;
		max-width: 960px;
		height: auto;
		aspect-ratio: 1 / 0.541;
		background-image: url(../library/images/recruit_d_fvtxtback.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	&::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		z-index: -2;
		display: block;
		width: 100%;
		height: 100%;
		background-color: #fff;
	}
}
.FV .fixWrap {
	position: fixed;
	top: 200px;
	z-index: -10;
	width: min(1730px, 90%);
	margin: 0 auto;
}
.FV .imgArea {
	margin-left: auto;
	width: 45vw;
	max-width: 992px;
	height: auto;
}
.FV .imgArea img {
	width: 100%;
}
/*************** 
*job
******************/
.job {
	position: relative;
	z-index: 5;
	background-color: #fff;
	width: 100%;
}
.job .ttlArea {
	margin-bottom: 60px;
	&::before {
		content: 'Job Description';
	}
}
.job .description {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 50px;
	width: 100%;
}
.job .description .content {
	padding: 48px;
	border: 1px solid #707070;
	border-radius: 10px;
}
.job .description h3 {
	padding-bottom: 20px;
	border-bottom: 1px solid #707070;
	margin-bottom: 30px;
	text-align: center;
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 600;
}
.job .description .imgArea {
	width: 100%;
	height: 130px;
	place-items: center;
	object-fit: contain;
	object-position: center;
	align-content: center;
	margin-bottom: 40px;
}
.job .description .imgArea img {
	margin: 0 auto;
}
.job .description .txtArea {
	width: 100%;
}
.job .description .txtArea li {
	position: relative;
	padding-left: 60px;
	line-height: 1.8;
	font-size: clamp(16px, 2vw, 18px);
	&::before {
		content: '';
		position: absolute;
		top: 12px;
		left: 20px;
		display: block;
		width: 12px;
		height: 12px;
		background-color: #292929;
	}
}
.job .description .txtArea li + li {
	margin-top: 10px;
}
/***************
*Interview
******************/
.int .ttlArea {
	margin-bottom: 60px;
	&::before {
		content: 'Interview';
	}
}
.int .qaList {
	width: 100%;
}
.int .qaList .content {
	width: 100%;
}
.int .qaList .content + .content {
	margin-top: 70px;
}
.int .qaList span {
	display: block;
	width: fit-content;
	padding: 20px 60px;
	border-bottom: 1px solid #707070;
	margin-bottom: 25px;
	font-size: clamp(21px, 3vw, 28px);
	font-weight: 600;
}
.int .qaList .ques {
	position: relative;
	z-index: 5;
	padding: 30px 50px;
	border: 1px solid #CDCDCD;
	border-radius: 10px;
	margin-bottom: 40px;
	width: min(960px, 90%);
	font-size: clamp(16px, 2vw, 18px);
	background-color: #EAEAEA;
}
.int .qaList .ans {
	position: relative;
	z-index: 5;
	padding: 30px 50px;
	border: 1px solid #707070;
	border-radius: 10px;
	margin: 0 0 0 auto;
	width: min(960px, 90%);
	font-size: clamp(16px, 2vw, 18px);
	background-color: #ffffffc6;
}
/***************
*schedule
******************/
.sched.contentsWrap {
	padding-bottom: 0;
}
.sched .ttlArea {
	margin-bottom: 70px;
	&::before {
		content: 'Daily Schedule';
	}
}
.sched .tl {
	padding: 60px 0 120px;
	width: 100%;
	background-image: url(../library/images/recruit_d_tlBack.jpg);
}
.sched .tl .content {
	display: flex;
	padding: 45px 60px;
	border-radius: 10px;
	background-color: #fff;
}
.sched .tl .content + .content {
	margin-top: 65px;
}
.sched .tl .txtArea {
	flex: 1;
}
.sched .tl .time {
	width: min(230px, 14vw);
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 600;
	color: #A2A2A2;
}
.sched .tl dl {
	margin-bottom: 30px;
}
.sched .tl dt {
	margin-bottom: 25px;
	line-height: 1.2;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 600;
}
.sched .tl .txtArea .deco {
	font-size: clamp(20px, 2vw, 28px);
	color: #A2A2A2;
}
/***************
*jobAd
******************/
.jobAd {
	position: relative;
	z-index: 1;
	padding: 120px 0;
	background-color: #fff;
}
.jobAd .ttlArea {
	&::before {
		content: 'Recruit';
		bottom: 44%;
		letter-spacing: 0.07em;
		font-size: clamp(44px, 3vw, 50px);
	}
	&:hover {
		background-color: #fadc3327;
	}
}
.jobAd .content {
	position: relative;
	height: 137px;
	width: min(643px, 90%);
	border: 1px solid #292929;
	border-radius: 10px;
	margin: 0 auto;
	&::after {
		content: '';
		position: absolute;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		width: 197px;
		height: 1px;
		background-color: #292929;
	}
}
.jobAd .content a {
	display: block;
	height: 100%;
	width: 100%;
	align-content: center;
}
.jobAd .content .ttl {
	font-size: clamp(28px, 3vw, 32px);
}
/***************
*entry
******************/
.entry {
	position: relative;
	z-index: 1;
	place-items: center;
	padding: 60px 0;
	width: 100%;
	background-image: linear-gradient(90deg, rgba(250, 219, 51, 1) 61%, rgba(250, 219, 51, 0.19));
}
.entry a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid #292929;
	border-radius: 300px;
	width: 280px;
	aspect-ratio: 1 / 1;
	background-color: #fff;
	margin: 0 auto;
	&:hover {
		background-color: #E9E9E9;
	}
}
.entry .content h3 {
	line-height: 1.2;
	font-size: 44px;
}
.entry .content p {
	font-size: 18px;
}
/*************** 
*footer
******************/
#footer {
	position: relative;
	z-index: 1;
}
@media screen and (max-width:1200px) {
	.txtRing {
		&::after {
			top: 0;
			right: -480px;
			width: 600px;
			height: 600px;
		}
	}
	.FV.contentsWrap {
		padding-top: 120px;
	}
	.FV .inner {
		flex-direction: column-reverse;
		&::before {
			content: none;
		}
	}
	.FV .txtArea {
		width: 100%;
	}
	.FV .fixWrap {
		position: static;
		top: 0;
		z-index: 1;
		width: 100%;
	}
	.FV .imgArea {
		margin: 0 auto;
		width: 90%;
		max-width: none;
	}
	.scroll {
		display: none;
	}
	.job .description {
		gap: 35px;
	}
	.job .description .content {
		padding: 30px 40px;
	}
}
@media screen and (max-width:820px) {
	.cubeItem1 {
		&::before {
			bottom: 170px;
			left: -6vw;
			width: 216px;
			height: 216px;
		}
		&::after {
			top: 110px;
			right: 3vw;
			width: 200px;
		}
	}
	.cubeItem2 {
		&::before {
			top: 800px;
			left: 3vw;
			width: 180px;
		}
		&::after {
			top: 600px;
			right: 7vw;
			width: 260px;
		}
	}
	.job .description {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
	}
	.sched .tl .content {
		display: flex;
		flex-direction: column;
		padding: 30px;
	}
	.sched .tl .content + .content {
		margin-top: 30px;
	}
	.sched .tl .time {
		width: 100%;
		margin-bottom: 15px;
	}
	.sched .tl dl {
		margin-bottom: 20px;
	}
}
@media screen and (max-width:640px) {
	.ttlArea {
		&::before {
			letter-spacing: 0.08em;
		}
	}
	.txtRing {
		&::after {
			top: 35px;
			right: -463px;
			width: 500px;
			height: 500px;
		}
	}
	.FV .detailArea .backWhite {
		&::before {
			top: -240px;
		}
	}
	.FV .imgArea {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		width: 120%;
		max-width: none;
		height: auto;
	}
	.contentsWrap {
		padding: 100px 0;
	}
	.FV .detailArea .backBlack {
		margin-bottom: 10px;
	}
	.int .qaList span {
		padding: 5px 40px;
		margin-bottom: 15px;
		font-size: clamp(21px, 3vw, 28px);
	}
	.int .qaList .ques {
		padding: 20px 15px;
		margin-bottom: 30px;
	}
	.int .qaList .ans {
		padding: 20px 15px;
		width: 90%;
	}
	.sched .tl {
		padding: 60px 0 100px;
	}
	.jobAd {
		padding: 100px 0;
	}
	.entry {
		padding: 100px 0;
		background-color: rgba(250, 219, 51, 1);
	}
	.entry .content {
		width: 280px;
	}
}