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: 45px;
	}
	.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;
		margin-bottom: 10px;
	}
	/* タイトルのアニメーション */
	.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_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;
	}
	/* 選択ボックス */
	.select_waku{
		display: flex;
		flex-direction: row;
		margin-top: 60px;
		padding: 20px 33px;
		background-color: white;
		border: 1px solid gainsboro;
		box-shadow: 0 0 10px rgba(124, 124, 124, 0.16);
		border-radius: 60px;
		box-sizing: border-box;
	}
	.select_btn{
		display: flex;
		flex-direction: row;
		text-decoration: none;
		color: black;
		font-size: 20px;
		margin-right: 50px;
	}
	.select_btn:last-child{
		margin-right: 0px;
	}
	.select_btn:hover{
		opacity: 0.5;
	}
	.select_title{
		margin-right: 10px;
	}
	.select_yazirusi{
		/* color: #fd452d; */
	}
/* メインコンテンツ */
	.main_contents_waku{
		background-color: #f0f0f0;
		border-radius: 20px;
		margin: 0 120px;
		padding: 50px;
		box-sizing: border-box;
	}
	.main_contents_white{
		/* width: 65vw; */
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0 auto;
		padding: 100px;
		background-color: white;
		border-radius: 20px;
		box-sizing: border-box;
	}
	.Q_genre_waku{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: -100px;
		padding-top: 100px;
		margin-bottom: 100px;
	}
	.Q_genre_waku:last-child{
		margin-bottom: 0px;
	}
	.Q_genre_title{
		color: #fd452d;
		font-size: 27px;
		font-weight: bold;
		letter-spacing: 7px;
		margin-bottom: 40px;
	}
	/* 質問内容 */
	.Q_waku {
		width: 60vw;
		min-width: 660px;
		margin-bottom: 20px;
		border-bottom: 2px solid #d6dde3;
		font-size: 20px;
	}
	.Q_waku:last-child{
		margin-bottom: 0px;
	}
	.Q_waku summary {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		padding: 1em 2em 1em 3.2em;
		color: #333333;
		font-weight: 600;
		letter-spacing: 3px;
		cursor: pointer;
	}
	.Q_waku:hover summary{
		opacity: 0.7;
	}
	.Q_waku[open] summary{
		color: #5590cc;
	}
	.Q_waku summary::before,
	.Q_waku p::before {
		position: absolute;
		left: 1em;
		font-weight: 600;
		font-size: 1.3em;
	}
	.Q_waku summary::before {
		color: #75bbff;
		content: "Q";
	}
	.Q_waku summary::after {
		transform: translateY(-25%) rotate(45deg);
		width: 9px;
		height: 9px;
		margin-left: 15px;
		border-bottom: 3px solid #333333b3;
		border-right: 3px solid #333333b3;
		content: '';
		transition: transform .5s;
	}
	.Q_waku[open] summary::after {
		transform: rotate(225deg);
	}
	.Q_waku p {
		position: relative;
		transform: translateY(-10px);
		opacity: 0;
		margin: 0;
		padding: .3em 3.2em 1em;
		color: #333;
		line-height: 40px;
		transition: transform .5s, opacity .5s;
	}
	.Q_waku[open] p {
		transform: none;
		opacity: 1;
	}
	.Q_waku p::before {
		color: #ff8d8d;
		/* line-height: 1.2; */
		content: "A";
	}
/* 応募 */
	.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) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}	
	/* タイトル */
		.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;
		}
	/* 選択ボックス */
		.select_waku{
			width: 975px;
			flex-direction: column;
			background-color: unset;
			border: unset;
			box-shadow: unset;
		}
		.select_btn{
			font-size: 38px;
			margin-right: 0px;
			margin-bottom: 20px;
			padding: 1em;
			border-bottom: 2px solid lightgray;
			box-sizing: border-box;
			justify-content: space-between;
		}
	/* メインコンテンツ */
		.main_contents_waku{
			margin: 0px 30px;
		}
		.months_waku{
			width: unset;
		}
		.Q_genre_title{
			font-size: 52px;
		}
		.Q_waku{
			width: 260vw;
			font-size: 38px;
		}
		.Q_waku summary::after{
			width: 18px;
			height: 18px;
		}
		.Q_waku p{
			line-height: 75px;
		}
	/* 応募 */
		.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;
		}
	}	