@charset "utf-8";

.reuruit_tab {
	padding: 0 120px;
	background-color: white;
}

.reuruit_tab .tab {
	display: flex;
	justify-content: space-around;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.reuruit_tab .tab li {
	flex-grow: 1;
	text-align: center;
	padding: 10px;
	background-color: #707070;
	position: relative;
	margin-right: 50px;
	/* 各タブの右側に30pxのマージンを追加 */
}

.reuruit_tab .tab li:last-child {
	margin-right: 0;
	/* 最後のタブの右マージンを0に設定 */
}

.reuruit_tab .tab a {
	text-decoration: none;
	color: white;
	display: block;
}

.reuruit_tab .tab li:hover {
	background-color: #5a5a5a;
}

.reuruit_tab .tab a:focus,
.reuruit_tab .tab a:active,
.reuruit_tab .tab a:hover {
	color: #f0f0f0;
}

.reuruit_tab .tab .corner {
	width: 30px;
	height: 10px;
	background-color: #D83425;
	position: absolute;
	top: 0px;
	left: 0px;
}



.recruit {
	padding: 20px;
}


/* セクション設定 */
.sections {
	display: flex;
	flex-direction: column;
}

.section {
	opacity: 0;
	/* 初期状態では透明にする */
	transform: translateY(50px);
	transition: opacity 1s, transform 1s;
	animation: fadeIn 1s ease forwards;
	/* 1秒かけてフェードイン */
	animation-delay: 0.5s;
	/* アニメーションの開始を0.5秒遅延させる */
}

.section h2 {
	padding: 10px;
	font-weight: bold;
}

/* テーブル設定 */
table {
	width: 100%;
	/* 境界線を分離 */
	border-spacing: 20px;
	/* 境界線同士の間隔を10ピクセルに設定 */
	border-collapse: collapse;
}




th,
td {
	border-bottom: 1px solid #E4E4E9;
	vertical-align: middle;
}

/* トップに戻るボタン */
.topback a {
	text-decoration: none;
	color: #333;
}

/* フェードインアニメーション */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


.section h2 .corner {
	width: 10px;
	/* 四角の幅 */
	height: 20px;
	/* 四角の高さ */
	background-color: #3577CA;
	/* 四角の色 */
	display: inline-block;
	/* インライン要素として表示 */
	margin-right: 5px;
	/* テキストとの間隔 */
	vertical-align: middle;
	/* テキストと同じ高さに配置 */
}

.h1 {
	margin-bottom: -10px;
}

.kakkokanyuhoken {
	margin-top: -45px;
	margin-bottom: 15px;
}

.kanyuuhoken {
	padding: 30px 20px 80px 20px;
}

.kanyuuhokenshita {
	padding-left: 5px;
}

.kanyuuhokenkikan {
	text-align: right;
}

.shikaku td {
	width: 800px;

}

.section {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

/*.backgroundtext{
	margin-top:-93px;
	position:fixed;
	display:inline-block;
	font-size:70pt;

	  transform: translate(-50%, -50%);
	top:50%;
	left:50%;
	justify-content: center; 
	color: #707070;
	opacity: 10%;
}*/

.kaishagaiyou {
	background-image: url("../img/gaiyou_overview.jpg");
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: center center;
	background-blend-mode: lighten;
}

.enkaku {
	background-image: url("../img/gaiyou_histry.jpg");
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: center center;
	background-blend-mode: lighten;
}

.shikaku {
	background-image: url("../img/gaiyou_certification.jpg");
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: center center;
	background-blend-mode: lighten;
}





/* レスポンシブ対応（画面幅が1179px以下の場合） */
@media screen and (max-width: 1179px) {
	.shikaku td {
		width: 600px;
	}
}

/* レスポンシブ対応（画面幅が944px以下の場合） */
@media screen and (max-width: 944px) {
	.shikaku td {
		width: 300px;
	}
}

/* レスポンシブ対応（画面幅が726px以下の場合） */
@media screen and (max-width: 726px) {
	.enkaku td {
		width: 61vw;
	}
}



/* レスポンシブ対応（画面幅が679px以下の場合） */
@media screen and (max-width: 679px) {
	.shikaku td {
		width: 100px;
	}
}

/* レスポンシブ対応（画面幅が600px以下の場合） */
@media screen and (max-width: 600px) {
	.shikaku td {
		width: 100px;
	}


	/* レスポンシブ対応（画面幅が480px以下の場合） */
	@media screen and (max-width: 480px) {
		.shikaku td {
			width: 70px;
			text-align: right;
		}
	}

	/* レスポンシブ対応（画面幅が390px以下の場合） */
	@media screen and (max-width: 390px) {

		th,
		td {
			display: block;
			border-bottom: none;
			margin: 0;
		}

		th {
			border-top: 1px solid #3577CA;
			color: #3577CA;
			padding: 10px 10px 0px 10px;
		}

		.enkaku td {
			width: 100%;
		}

		.shikaku tr {
			display: flex;
			justify-content: space-between;
			border-top: 1px solid #3577CA;
		}

		.shikaku th {
			border-top: none;
			flex-flow: column;
		}
	}