@charset "UTF-8";

.sections {
	opacity: 0;
	/* 初期状態で非表示 */
}

.webp .section01 {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background-image: url(../img/recruit/recruit_img01.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.no-webp .section01 {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background-image: url(../img/recruit/recruit_img01-min.jpg );
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* タイトル アニメーション */
.section01 .animate_titleBox {
	position: absolute;
	top: 34%;
	left: 20%;
	z-index: 2;
	width: 800px;
	height: 100px;
	overflow: hidden;
	display: block;
}


.section02 {
	width: 1300px;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
}

.section02 .top_message {
	margin-top: 50px;
	display: flex;
	align-items: flex-start;
	gap: 100px;
}

.section02 .top_message .left {}

.section02 .top_message .left img {
	opacity: 0;
}

@keyframes sec02_img {
	0% {
		opacity: 0;
	}

	70% {
		opacity: 0;

	}

	100% {
		opacity: 1;

	}
}

.section02 .top_message .right {}

.section02 .top_message .right h2 {
	position: relative;
	width: 100%;
	height: 50px;
	font-size: 24px;
	font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
	padding: 0px 0px 30px 0px;
	display: block;
	transform: translate(-10%);
	display: block;
	overflow: hidden;
	opacity: 0;
}

@keyframes sec02_title {
	0% {
		transform: translate(-10%);
		opacity: 0;
	}

	70% {
		transform: translate(-10%);
		opacity: 0;

	}

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

.section02 .top_message .right .detail {
	position: relative;
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	overflow: hidden;
	transform: translate(0%, -10%);
	opacity: 0;
}

.section02 .top_message .right .detail span {
	line-height: 2.5;
	display: block;
}

.section02 .top_message .right .detail p {
	text-align: right;
	margin-top: 50px;
	display: block;
}

@keyframes sec02_detail {
	0% {
		opacity: 0;
		transform: translate(0%, -10%);
	}

	70% {
		opacity: 0;
		transform: translate(0%, -10%);
	}

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


.section03 {}

.section03 .sec03_box {
	width: 1300px;
	margin-top: 150px;
	margin-left: auto;
	margin-right: auto;
}

.section03 .sec03_subbox {}

.section03 .profile_box {
	margin-top: 100px;
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.section03 .profile_box .left {
	/*	width: 500px;*/
}

.section03 .profile_box table {
	width: 100%;
	box-sizing: border-box;
	border-collapse: collapse;
}

.section03 .profile_box table th {
	color: #1E6D64;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	padding-bottom: 20px;
}

.section03 .profile_box table th .left_text {
	position: relative;
	width: 150px;
	padding: 10px 0px;
	display: block;
	overflow: hidden;
}

.section03 .profile_box table th .left_text .th_title {
	text-align: left;
	transform: translate(-10%, 0%);
	display: block;
	opacity: 0;
}

.section03 .profile_box table th .left_text .border_left_bottom {
	width: 0;
	height: 1px;
	margin-top: 15px;
	background-color: #979797;
	display: block;
}

@keyframes th_title {
	0% {
		opacity: 0;
		transform: translate(-10%, 0%);
	}

	70% {
		opacity: 0;
		transform: translate(-10%, 0%);
	}

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

@keyframes border_left_bottom {
	0% {
		width: 0px;
	}

	70% {
		width: 0px;
	}

	100% {
		width: 150px;
	}
}

.section03 .profile_box table td {
	color: #483D3A;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
}

.section03 .profile_box table td .right_text {
	position: relative;
	width: 500px;
	padding: 10px 0px;
	display: block;
	overflow: hidden;
}

.section03 .profile_box table td .right_text .detail_text {
	text-align: right;
	margin-bottom: 10px;
	transform: translate(100%, 0%);
	display: block;
	opacity: 0;
}

.section03 .profile_box table td .right_text .detail_text a {
	position: relative;
	color: #483D3A;
	text-decoration: none;
	padding-bottom: 5px;
	transition: all 0.5s ease-in-out;
	display: block;
}

.section03 .profile_box table td .right_text .detail_text a:hover {
	color: #1E6D64;
}

.section03 .profile_box table td .right_text .detail_text a:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: -5px;
	width: 0;
	height: 1px;
	background-color: #1E6D64;
	transition: all 0.2s ease-in-out;
}

.section03 .profile_box table td .right_text .detail_text a:hover:after {
	width: 100%;
}

.section03 .profile_box table td .right_text .border_right_bottom {
	width: 100%;
	height: 1px;
	transform: translate(100%, 0%);
	margin-top: 15px;
	background-color: #979797;
	display: block;
}

@keyframes detail_text {
	0% {
		opacity: 0;
		transform: translate(100%, 0%);
	}

	70% {
		opacity: 0;
		transform: translate(100%, 0%);
	}

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

@keyframes border_right_bottom {
	0% {
		transform: translate(100%, 0%);
	}

	70% {
		transform: translate(100%, 0%);
	}

	100% {
		transform: translate(0%, 0%);
	}
}

.section03 .profile_box table td .right_text .address {}

.section03 .profile_box table td .right_text .google_map {
	width: 110px;
	margin-left: auto;
}

.section03 .profile_box table td .right_text .google_map a {
	padding-right: 20px;
}

.section03 .profile_box table td .right_text .google_map a:before {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 20px;
	height: 20px;
	background-image: url(../img/company/icon-map.png);
	background-repeat: no-repeat;
	background-position: center;
	/*	background-size: 50px;*/
}

.section03 .profile_box table td .right_text .tel {
	width: 150px;
	margin-left: auto;
}

.section03 .profile_box .right {}

.section03 .profile_box .right img {
	width: 100%;
	opacity: 0;
}

@keyframes profile_img {
	0% {
		opacity: 0;
	}

	70% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


.section04 {
	width: 1300px;
	margin-top: 150px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 150px;
}

.section04 .history_box {
	width: 600px;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
}

.section04 .history_box .box {
	display: flex;
	align-items: flex-start;
	/*	justify-items: center;*/
}

.section04 .history_box .box .left {}

.section04 .history_box .box .left .date {
	color: #1E6D64;
	font-size: 48px;
	font-family: "Lato", sans-serif;
	font-style: italic;
	display: block;
	opacity: 0;
}

.section04 .history_box .box .center {
	width: 100px;
}

.section04 .history_box .box .center .cirle_vertical_box {
	width: 100%;
	height: 200px;
	box-sizing: border-box;
	position: relative;
	padding: 0px 10px;
}

.section04 .history_box .box .center .box_circle {
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translate(-50%);
	padding: 10px;
	background-color: #1E6D64;
	border-radius: 50%;
	opacity: 0;
}

.section04 .history_box .box .center .border_vertical {
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translate(-50%);
	width: 2px;
	height: 0;
	display: block;
	background-color: #1E6D64;

}

.section04 .history_box .box .right {}

.section04 .history_box .box .right .text {
	transform: translate(0%, 10%);
	color: #483D3A;
	font-size: 16px;
	font-family: "Lato", sans-serif;
	line-height: 1.8;
	display: block;
	opacity: 0;
}

@keyframes date_text_animation {
	0% {
		opacity: 0;
	}

	70% {
		opacity: 0;
	}

	100% {
		opacity: 0.6;
	}

}

@keyframes circle_animation {
	0% {
		opacity: 0;
	}

	70% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes vertical_animation {
	0% {
		height: 0;
	}

	70% {
		height: 0;
	}

	100% {
		height: 100%;
	}
}

/* ここからscss */
/* scss/recruit/style.scssのコンパイルしたものを貼り付け */

.recruit_outer {
	margin: 0 0 100px
}

.recruit_outer .recruit_title_h2 {
	background: #488881;
	color: #fff;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
	padding: 10px 0;
	margin: 50px auto 30px
}

.recruit_outer .recruit_type {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 30px;
	font-size: 20px
}

.recruit_outer .recruit_type .recruit_type_list a {
	text-decoration: none;
	color: #000;
	position: relative;
	padding-left: 20px
}

.recruit_outer .recruit_type .recruit_type_list a::before {
	position: absolute;
	content: "・";
	width: 20px;
	top: 50%;
	transform: translateY(-50%);
	left: 0
}

.recruit_outer .recruit_type .recruit_type_list a:hover::after {
	transform: scale(1, 1)
}

.recruit_outer .recruit_type .recruit_type_list a::after {
	position: absolute;
	content: "";
	left: 0;
	width: 100%;
	height: 4px;
	background: #488881;
	bottom: -5px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s
}

.recruit_outer .recruit_list_wrap .recruit_list {
	padding-top: 50px
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_title {
	padding-left: 20px;
	border-left: solid 8px #488881;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px
}

.recruit_outer .recruit_list_wrap .recruit_list:nth-child(even) .recruit_wrap {
	flex-direction: row-reverse
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap {
	display: flex;
	gap: 0 50px
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap .recruit_img {
	width: 600px
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap .recruit_img img {
	width: 100%;
	height: auto;
	display: block
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap .recruit_inner {
	width: calc(100% - 650px)
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap .recruit_inner .recruit_box {
	display: flex;
	font-size: 20px;
	align-items: center;
	justify-content: center;
	height: 100%
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap .recruit_inner .recruit_contents {
	line-height: 1.5;
	margin-bottom: 40px
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap .recruit_inner .recruit_contents:last-child {
	margin-bottom: 0
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap .recruit_inner .recruit_contents dt {
	font-size: 20px;
	padding-left: 20px;
	position: relative;
	margin-bottom: 10px;
	font-weight: bold
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap .recruit_inner .recruit_contents dt::before {
	position: absolute;
	content: "・";
	width: 20;
	top: 0;
	left: 0
}

.recruit_outer .recruit_list_wrap .recruit_list .recruit_wrap .recruit_inner .recruit_contents dd {
	font-size: 16px
}

.recruit_btn {
	display: block;
	width: 500px;
	margin: 30px auto 0;
	font-size: 26px;
	background: #488881;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	border-radius: 10px;
	text-decoration: none
}

.recruit_btn:hover {
	opacity: .7
}

/* ここから下には追加しない */