body{
	margin: 0;
	min-width: 1200px;
	overflow-x: hidden;
	font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3', sans-serif;
}
img{
	pointer-events: none;
}
.waku{
	width: 100%;
	justify-content: space-between;
	padding-top: 140px;
	margin: 0 auto;
	box-sizing: border-box;
	min-width: 1200px;
}
@media screen and (max-width:450px) {
	.waku{
		padding: 0px;
	}
}
.scroll_effect{
	transition: 0.8s ease-in-out;
	transform: translateY(30px);
	opacity: 0;
}
.scroll_effect.on{
	transform: translateY(0);
	opacity: 1.0;
}
/* 円背景 */
	.canvas{
		position: absolute;
		z-index: -2;
	}
/* トップタイトル */
	.top_contents{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 65px;
		margin-bottom: 30px;
	}
	.top_title_waku{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.top_title_eng{
		color: #fd452d;
		font-size: 85px;
		font-weight: bold;
		font-family: 'ヒラギノ角ゴ StdN', 'Hiragino Kaku Gothic StdN', sans-serif;
		display: flex;
	}
	/* タイトルのアニメーション */
	.top_title_eng.show {
		opacity: 1;
		transform: translateY(0);
	}
	.top_title_eng p{
		opacity: 0;
		transform: translateY(2em);
		transition: all 0.5s ease-out;
		margin: 0px
	}
	.top_title_eng.show p {
		opacity: 1;
		transform: translateY(0);
	}
	.top_title_eng p:nth-child(1) { transition-delay: 0.1s; }
	.top_title_eng p:nth-child(2) { transition-delay: 0.2s; }
	.top_title_eng p:nth-child(3) { transition-delay: 0.3s; }
	.top_title_eng p:nth-child(4) { transition-delay: 0.4s; }
	.top_title_eng p:nth-child(5) { transition-delay: 0.5s; }
	.top_title_eng p:nth-child(6) { transition-delay: 0.6s; }
	.top_title_eng p:nth-child(7) { transition-delay: 0.7s; }
	.top_title_eng p:nth-child(8) { transition-delay: 0.8s; }
	/* 　　　　　　　　 */
	
	.top_title_jpn{
		color: #fd452d;
		font-size: 27px;
	}
	.top_comment{
		text-align: center;
		margin-top: 40px;
		font-size: 20px;
		line-height: 40px;
	}
	.pc{
		display: block;
	}
	.sp{
		display: none;
	}
/* はたらく環境　コンテンツ */
	.worklife_comtents{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	.worklife_box{
		width: 39vw;
		min-width: 430px;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 60px;
		margin-right: 40px;
		padding: 35px;
		border-radius: 20px;
		box-sizing: border-box;
		background-color: white;
		border: 1px solid gainsboro;
		box-shadow: 3px 3px 10px gainsboro;
	}
	.worklife_img{
		width: 29vw;
		min-width: 320px;
		margin-bottom: 30px;
		border-radius: 8px;
		box-sizing: border-box;
	}
	.worklife_title{
		color: #fd452d;
		font-size: clamp(25px, 0.8vw, 32px);
		text-align: center;
		font-weight: bold;
		margin-bottom: 20px;
	}
	.worklife_comment{
		font-size: clamp(16px, 1.4vw, 19px);
		text-align: center;
	}
/* 応募 */
	.oubo_waku{
		height: 565px;
		display: flex;
		flex-direction: row;
		justify-content: center;
		background-image: url("/recruitment_20250108/img/oubo/oubo.jpeg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		background-attachment: scroll;
		margin: 120px 0px;
	}
	.oubo_waku::after{
		content: '';
		width: 100%;
		background-color: rgba(0, 0, 0, .7);
	}
	.scroll_oubo{
		position: absolute;
		margin:88px 0px;
	}
	.oubo_contents{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.oubo_title{
		color: white;
		font-size: clamp(45px, 1.25vw, 47px);
		letter-spacing: 15px;
		font-family: 'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
		font-weight: 600;
		margin-bottom: 20px;
	}
	.oubo_box{
		width: clamp(625px, 1.25vw, 635px);
		height: 300px;
		background-color: #6093C6;
		color: white;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 20px;
		border-radius: 20px;
		box-sizing: border-box;
	}
	.oubo_tel{
		display: flex;
		align-items: center;
		margin-bottom: 5px;
	}
	.oubo_tel1{
		font-size: clamp(30px, 1.25vw, 32px);
		margin-right: 5px;
	}
	.oubo_tel2{
		font-size: clamp(40px, 1.25vw, 42px);
		font-weight: bold;
		color: white;
		text-decoration: none;
	}
	.oubo_zinzi{
		font-size: clamp(30px, 1.25vw, 32px);
		margin-bottom: 10px;
	}
	.oubo_detail{
		text-align: center;
		font-size: clamp(23px, 1.25vw, 35px);
	}	
/* スマホレイアウト */
	@media screen and (max-width:450px) {
	/* タイトル */
		.top_contents{
			margin-top: 200px;
			margin-bottom: 45px;
		}
		.top_title_eng{
			font-size: 110px;
			line-height: 150px;
			letter-spacing: 6px;
		}
		.top_title_jpn{
			font-size: 52px;
		}
		.top_comment{
			margin-top: 120px;
			font-size: 38px;
			line-height: 73px;
		}
		.pc{
			display: none;
		}
		.sp{
			display: block;
		}
	/* はたらく環境　コンテンツ */
		.worklife_comtents {
			display: flex;
			flex-direction: column;
			align-items: center;
		}
		.worklife_box{
			width: 900px;
			padding: 70px;
			min-width: unset;
		}
		.worklife_img{
			width: 800px;
			min-width: unset;
			margin-bottom: 52px;
		}
		.worklife_title{
			font-size: 52px;
			margin-bottom: 38px;
		}
		.worklife_comment{
			font-size: 38px;
		}
		/* 応募 */
		.oubo_title{
			font-size: 55px;
		}
		.scroll_oubo{
			margin: 65px 0px;
		}
		.oubo_box{
			width: 700px;
			height: 330px;
		}
		.oubo_tel1{
			font-size: 43px;
		}
		.oubo_tel2{
			font-size: 50px;
		}
		.oubo_tel2 a{
			color: white;
			text-decoration: none;
		}
		.oubo_zinzi{
			font-size: 40px;
		}
		.oubo_detail{
			font-size: 28px;
		}
	}	