@charset "UTF-8";
html {
	scroll-behavior: smooth;
}
html.scroll-lock {
scroll-behavior: auto !important;
}
.mgt-10 {
	margin-top: 10px!important;
}
.mgt-20 {
	margin-top: 20px!important;
}
.mgt-30 {
	margin-top: 30px!important;
}
.mgt-50 {
	margin-top: 50px!important;
}
.mgt-100 {
	margin-top: 100px!important;
}
.pd-20 {
	padding: 20px;
}
.p-center {
	text-align: center!important;
	margin: 0 auto;
}
.black {
	color: #242424;
}
.black:hover {
	color: #FC0242;
}
.job-head-box {
	text-align: left;
}
.job-head {
	background-color: #FC0242;
	display: inline-block;
	color: white;
	padding: 0 20px;
	font-weight: bold;
	text-align: center;
}
.job-text {
	font-size: 14px;
}

.job-flex {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	padding: 10px;
	border: 1px solid #242424;
	gap: 20px;
}
.job-flex .left {
	width: 500px;
}
.job-flex .left img {
	width: 100%;
	display: block;
	height: auto;
	vertical-align: bottom;
}

.job-flex .right {
	flex: 1;
	position: relative;
	box-sizing: border-box;
}
	.jobBatch-flex {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: stretch;
	}
		.jobBatch-flex .child {
			display: inline-block;
			background-color: #FC0242;
			color: white;
			margin-right: 10px;
			padding: 0 5px;
			font-size: 12px;
		}
			.job-detail-title {
				font-size: 1.2em;
				font-weight: bold;
			}
			.job-detail-text p {
				background-color: #0e62d1;
				display: inline-block;
				color: white;
				font-size: 12px;
				padding: 0 10px;
			}
			.job-detail-text p.normal-text {
				font-size: 14px;
				color: black;
				font-weight: normal;
				padding: 0;
				background-color: transparent;
			}
				.job-detail-text p.normal-text a {
					color: black;
				}
					.job-detail-text p.normal-text a:hover {
						color: #FC0242;
					}
			.job-detail-text ul li {
				font-size: 14px;
				list-style: none;
			}
				.job-detail-text ul li::before {
					content: '・';
				}
			.job-btn {
				position: absolute;
				right: 0;
				bottom: 0;
			}
				.job-btn a {
					background-color: #FC0242;
					display: inline-block;
					color: white;
					font-size: 20px;
					padding: 2px 20px 4px;
				}
			.lang {
				position: absolute;
				top: 0;
				right: 0;
				background-color: #242424;
				display: inline-block;
				color: white;
				font-size: 12px;
				padding: 2px 10px 4px;
			}
.domestic-box {
	margin: auto;
}
	.domestic-box span {
		font-size: 1em;
	}
	.domestic-box span.marker {
		background: linear-gradient(transparent 60%,#faff6b 60%);
	}
	.domestic-box p {
		font-size: .8em;
	}
.abroad-box {
	margin: auto;
}
	.abroad-box .abroad-form-wrap h4 {
		color: #FC0242;
	}
.abroad-form-wrap {
	position: relative;
	max-height: 150px;
	padding-bottom: 60px;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.abroad-form-wrap.expanded {
	max-height: 1000px;
}

.read-more-overlay {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	pointer-events: none;
	transition: opacity 0.3s;
}

.abroad-form-wrap.expanded .read-more-overlay {
	opacity: 0;
}

.read-more-btn {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #242424;
	color: white;
	border: none;
	padding: 8px 16px;
	cursor: pointer;
	border-radius: 4px;
	font-size: 1rem;
	z-index: 2;
}

.abroad-form-wrap form {
	margin: 0 auto;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 700px;
	text-align: left;
}
.abroad-form-wrap label {
	display: block;
	font-weight: bold;
	color: #555;
}
.abroad-form-wrap label.required:after {
	content: '※';
	color: #FC0242;
	font-size: .6em;
	line-height: 2;
}

.abroad-form-wrap input {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 6px;
}
.abroad-form-wrap select {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 6px;
}
.abroad-form-wrap .radio-group {
	display: flex;
	gap: 20px;
	flex-wrap: nowrap;
	min-width: 300px;
	margin-bottom: 20px;
}

.abroad-form-wrap .radio-group label {
	display: flex;
	align-items: center;
	gap: 8px;
}

.abroad-form-wrap .radio-group input[type="radio"] {
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin: 0;
	position: relative;
}
button.form-btn {
background-color: #FC0242;
color: #fff;
padding: 12px 20px;
border: none;
border-radius: 6px;
cursor: pointer;
width: 100%;
display: inline-block;
}
button.form-btn:hover {
background-color: #0e62d1;
}

.back-btn {
	text-align: center;
	margin: 0 auto;
}
	.back-btn a {
		background-color: #242424;
		color: white;
		padding: 5px 15px 10px;
		border-radius: 25px;
	}
	.back-btn a:hover {
		background-color: #FC0242;
		color: white;
	}

#scrollBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 20px;
  background: rgb(252, 248, 14);
  color: #242424;
  font-weight: bold;
  border: 5px solid white;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#scrollBtn.show {
  opacity: 1;
  visibility: visible;
}
#free {
  scroll-margin-top: 180px;
}

.flow-box {
	margin: 50px auto;
}
.flow-title {
	color: #FC0242;
	font-size: 2em;
	font-weight: bold;
	position: relative;
	display: inline-block;
}
.flow-title::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #FC0242;
	margin-top: 5px;
}
.sub-title {
	margin: 20px auto;
	text-align: center;
}
.sub-title p {
	font-size: .8em;
	font-weight: bold;
}
.flow-flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.flow-flex-child {
	flex: 1 1 calc(25% - 15px);
	box-sizing: border-box;
	background: white;
	border: 1px solid #ccc;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
}
.flow-icon img {
	width: 60px;
	height: 60px;
}
.flow-main-title {
	margin: 20px 0;
	font-weight: bold;
}
.flow-main-text {
	text-align: left;
}
.flow-main-text p {
	font-size: .7em;
}

.job-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 1em;
	z-index: 10;
	pointer-events: none;
	display: none;
}
.job-overlay p {
	font-size: 2em;
}
/* 非募集中のスタイル */
.job-flex.is-closed .job-overlay {
	display: flex;
}

.job-flex.is-closed .job-btn a {
	pointer-events: none;
	opacity: 0.5;
}
@media (min-width: 1025px) and (max-width: 1199px) {
	.contents-wrapper {
		padding: 0 10px;
	}
	.enge {
		font-size: 14px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
.mgt-100 {
	margin-top: 50px!important;
}
.contents-wrapper {
	padding: 0 10px;
}
	.enge {
		font-size: 14px;
	}
.job-flex {
	flex-direction: column;
}

.job-flex .left,
.job-flex .right {
	width: 100%;
}
	.job-flex .right {
		height: auto;
	}
			.job-btn {
				position: relative;
				left: 0;
				bottom: 0;
				text-align: center;
			}
}
@media screen and (max-width: 767px) {
.mgt-100 {
	margin-top: 50px!important;
}
.contents-wrapper {
	padding: 0 10px;
}
	.enge {
		font-size: 12px;
		text-align: left!important;
	}
		.enge p br {
			display: none;
		}
.job-flex {
	flex-direction: column;
}

.job-flex .left,
.job-flex .right {
	width: 100%;
}
	.job-flex .right {
		height: auto;
	}
			.job-btn {
				position: relative;
				left: 0;
				bottom: 0;
				text-align: center;
			}
.flow-flex-child {
	flex: 100%;
	box-sizing: border-box;
	background: white;
	border: 1px solid #ccc;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
}
	.lang {
		position: relative;
		top: 0;
		right: 0;
		background-color: #242424;
		display: inline-block;
		color: white;
		font-size: 12px;
		margin-bottom: 10px;
		padding: 2px 10px 4px;
	}
}