@charset "UTF-8";

#recruit_visual {
	background: url(image/recruit_mv.jpg) center/cover no-repeat;
}

.recruit_page_visual {
	width: 100vw;
	height: 90vh;
	margin-top: -80px;
	position: relative;
	z-index: 0;
}

.recruit_pagevisual_text {
	position: absolute;
	bottom: 10%;
	left: 0;
	z-index: 10;
	background: var(--background-color);
}

#recruit_visual h2 {
	font-size: 4rem;
	text-align: left;
	margin: 0;
	padding: 10px 40px;
	letter-spacing: 0.05em;
	color: #fff
}

.recruit_page_title_en {
	font-size: 1.6rem;
	display: block;
	margin-top: -10px;
}

@media (max-width: 700px) {
	#recruit_visual {
		background: url(image/recruit_mv.png) calc(100% + 250px) center/cover no-repeat;
	}

	.recruit_page_visual {
		height: 80vh;
	}

	#recruit_visual h2 {
		font-size: 2rem;
		padding: 10px 20px;
	}

	.recruit_pagevisual_text {
		transform: translate(-50%, 0);
	}

	.recruit_page_title_en {
		font-size: 1rem;
	}
}

.fade-in-left {
	opacity: 0;
	/* 初期状態では透明 */
	transform: translateX(-100px);
	/* 左にオフセット */
	animation: fadeInLeft 1.3s ease-out forwards;
	/* アニメーションを適用 */
}

/* アニメーションの定義 */
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-100px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


.recruit_area {
	background: var(--background-color);
	padding: 70px;
	margin-top: 100px;
}

.recruit_area_content {
	background: #fff;
	width: 100%;
	margin: 0 auto;
	text-align: left;
}

@media (max-width: 900px) {
	.recruit_area {
		padding: 20px;
	}

	.recruit_area_content {
		width: 100%;
	}
}

#recruit_menu {
	margin-top: 70px;
}

#recruit_contents h2 {
	margin-top: 80px;
}

.recruit_h3 {
	color: var(--accent-color);
	text-align: left;
}

#recruit_contents ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 70px;
	flex-wrap: wrap;
}

@media screen and (max-width: 900px) {
	#recruit_contents ul {
		gap: 30px;
	}
}


button {
	background: var(--background-color);
	color: #fff;
	border-radius: 50px;
	width: 330px;
	padding: 16px 20px;
	font-size: 1.3rem;
	font-family: "Zen Maru Gothic", serif;
	font-weight: bold;
}

button:hover {
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.arrow-button {
	position: relative;
}

.arrow-button::after {
	content: "▼";
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	font-size: 16px;
}

.recruit_box {
	width: 70%;
	margin: 0 auto;
	padding: 40px 0;
}

.recruit_box dl {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	margin: 40px 0;
	padding-bottom: 60px;
}

.recruit_box dt {
	width: 20%;
	padding: 30px 0;
	border-bottom: solid 1px #EEEEEE;
	font-weight: 600;
}

.recruit_box dd {
	width: 80%;
	padding: 30px 0;
	border-bottom: solid 1px #EEEEEE;
}

.recruit_fade-in {
	animation: fadeIn 1.0s ease forwards;
	opacity: 0;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

@media (max-width: 900px) {
	.recruit_box {
		width: 93%;
	}

	.recruit_box dl {
		display: block;
	}

	.recruit_box dt {
		width: 100%;
		padding: 30px 0 3px 8px;
		border-bottom: none;
		font-weight: 600;
	}

	.recruit_box dd {
		width: 100%;
		padding: 10px 0 30px 16px;
		border-bottom: solid 1px #EEEEEE;
	}

}