@charset "UTF-8";

:root {
	--color-gentleorange: #f5f2ed;
	--border-gray: #bfbfbf;
}
.job {
	overflow: hidden;
}
.days {
	overflow: hidden;
}
.page-inner::after {
	background-color: var(--color-orange);
}
.job__inner {
	max-width: 1080px;
	margin-inline: auto;
	background: #fff;
	padding: 4%;
}
.job__details {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--border-gray);
	margin-bottom: 40px;
	position: relative;
}
.job__details::before {
	height: 140%;
	width: 92%;
	bottom: -60%;
	left: calc(100% - 1540px);
	position: absolute;
	content: "";
	display: inline-block;
	background-repeat: no-repeat;
	z-index: -1;
	background-image: url(../images/recruit/obj-recruit.jpg);
	mask-image: url("../images/recruit/job__details.svg");
	-webkit-mask-image: url("../images/recruit/job__details.svg");
	mask-size: 100%;
	-webkit-mask-size: 100%;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	background-size: 90%;
}
.job__details::after {
	height: 70%;
	width: 92%;
	top: -5%;
	right: calc(100% - 1670px);
	position: absolute;
	content: "";
	display: inline-block;
	background-repeat: no-repeat;
	z-index: -1;
	background-image: url(../images/recruit/obj-recruit02.jpg);
	mask-image: url("../images/recruit/job__details.svg");
	-webkit-mask-image: url("../images/recruit/job__details.svg");
	mask-size: 100%;
	-webkit-mask-size: 100%;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}
.job__term {
	width: 20%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-orange);
	border-bottom: 1px solid var(--border-gray);
	color: #fff;
}

.job__description {
	width: 80%;
	border-bottom: 1px solid var(--border-gray);
	padding: 20px;
	background: #fff;
}

.job__btn-line-link {
	display: inline-block;
	background: var(--color-darkgreen);
	padding: .4em 4em;
	border-radius: 2em;
	color: #fff;
}

.job__btn-line {
	text-align: center;
}

.recruit__line-link {
	padding: 10px 20px;
	box-shadow: var(--shadow-btn);
	font-weight: bold;
	display: inline-flex;
	width: 250px;
	text-indent: 1em;
	border: 2px solid transparent;
}
.recruit__line-link:hover {
	background: #fff;
	border: 2px solid var(--color-darkgreen);
	color: var(--color-darkgreen);
}
.recruit__line-svg {
	width: 13%;
}
.job__btn-line-icon {
	fill: #fff;
}
.recruit__line-link:hover .job__btn-line-icon {
	fill: var(--color-darkgreen);
}
.recruit__line-link img {
	max-width: 20%;
}

.schedule__item {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
}

.schedule__area {
	padding: 0 10px;
	display: block;
	width: 100%;
	border-left: 2px solid var(--color-orange);
}

.schedule__time {
	display: inline-flex;
	justify-content: flex-end;
	flex-basis: 5em;
	max-width: 5em;
	margin-right: 1em;
	color: var(--color-orange);
	font-size: 18px;
	line-height: initial;
}

.schedule__box {
	position: relative;
	min-height: 2em;
	padding: 0 1em;
	border-radius: 6px;
	margin-bottom: 1.5em;
}

.schedule__box::before {
	content: "";
	position: absolute;
	left: -20px;
	top: 0px;
	background: var(--color-orange);
	width: 20px;
	height: 20px;
	border-radius: 10px;
}

.schedule__item:last-child .schedule__box {
	margin-bottom: 0;
}

.schedule__item:last-child .schedule__area {
	border: none;
}

.schedule__title {
	line-height: initial;
	font-size: 18px;
}

.schedule__content {
	display: flex;
	justify-content: center;
	gap: 0 20%;
}
.values__title.c__title {
	margin-bottom: 200px;
}
.values__title.c__title::after {
	position: absolute;
	content: attr(data-title2);
	bottom: -80px;
	left: 50%;
	transform: translatex(-50%);
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0;
	width: 100%;
	z-index: 1;
}
.days__inner.inner-narrow {
	padding: 0 4% 140px;
}

.rec-section__image-svg {
	width: 100%;
	height: auto;
}

.flow__inner.inner-narrow {
	padding-bottom: 140px;
}

.flow__list {
	display: flex;
	justify-content: center;
	gap: 0 40px;
	counter-reset: item;
}

.flow__list-item {
	border: 2px solid var(--color-orange);
	border-radius: 2em;
	padding: .5em 4em;
	position: relative;
	font-size: 24px;
	font-weight: bold;
}

.flow__list-item::before {
	counter-increment: item;
	content: counter(item)'';
	background: var(--color-orange);
	width: 2.8em;
	height: 100%;
	display: flex;
	text-align: center;
	position: absolute;
	left: 0;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
}

.flow__list-item:not(:last-child)::after {
	content: "";
	display: inline-block;
	border-bottom: 2px solid var(--color-orange);
	position: absolute;
	right: -41px;
	width: 40px;
	top: 50%;
	transform: translateY(-50%);
}

.message__title.c__title {
	margin-bottom: 130px;
}

.message__item {
	border: 2px solid var(--color-orange);
	border-radius: 2em;
	padding: 2em;
	flex: 1;
}

.message__item.message__item-even {
	flex-direction: row-reverse;
}

.message__name {
	font-size: 20px;
}

.message__person {
	margin-bottom: 20px;
	font-size: 1.4rem;
}
.message__content {
	margin-bottom: 80px;
	display: flex;
	gap: 40px;
}
.bg-gentle {
	background: var(--color-gentleorange);
}

.inner-narrow.bg-gentle {
	margin: 100px auto;
	border-radius: 2em;
}

.faq__inner.inner-narrow {
	padding: 100px 20px;
}
.faq__content {
	position: relative;
}

.faq__content::before {
	content: "";
	display: inline-block;
	width: 599px;
	height: 523px;
	background-image: url(../images/recruit/obj-faq.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: -300px;
	top: -150px;
}
.faq__item {
	background: #fff;
	padding: 2em 3em;
	border-radius: 1em;
	position: relative;
}
.faq__item:not(:last-child) {
	margin-bottom: 30px;
}

.faq__question-title {
	border-bottom: 1px solid #c5c5c5;
	margin-bottom: 1.4em;
	padding-bottom: .8em;
	padding-left: 4em;
	font-weight: bold;
	font-size: 20px;
	position: relative;
}

.faq__question-title::before {
	content: "";
	display: inline-block;
	width: 29px;
	height: 34px;
	background-image: url(../images/recruit/icon_ques.svg);
	position: absolute;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

.faq__answer-text {
	padding-left: 5em;
	position: relative;
}

.faq__answer-text::before {
	content: "";
	display: inline-block;
	width: 27px;
	height: 28px;
	background-image: url(../images/recruit/icon_ans.svg);
	position: absolute;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	background-size: contain;
}

.recruit__inner {
	max-width: 750px;
	margin-inline: auto;
	padding: 4em 0;
}

.recruit__inner {
	max-width: 750px;
	margin-inline: auto;
	padding: 4em 0;
}

.recruit__links {
	display: flex;
	gap: 0 20px;
	margin-bottom: 30px;
}

.recruit__link-item {
	width: calc(100%/ 2 - 15px);
	text-align: center;
	flex-wrap: wrap;
}

.recruit__contact-link {
	background: var(--color-orange);
	display: flex;
	padding: .5em;
	color: #fff;
	border-radius: 2em;
	box-shadow: var(--shadow-btn);
	position: relative;
	font-weight: bold;
	border: 2px solid var(--color-orange);
	align-items: center;
}
.nav-link__image.nav-link__image-form {
	left: 55%;
	top: 55%;
}
.recruit__contact-link:hover {
	background: #fff;
	transition: .3s;
	border: 2px solid var(--color-orange);
	color: var(--color-orange);
}
.recruit__contact-link:hover .nav-link__svg {
	background: var(--color-orange);
	border-color: var(--color-orange);
}
.nav-link__text {
	text-indent: 2em;
}
.recruit__contact-image {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.recruit__contact-link .nav-link__text {
	text-indent: 0;
	line-height: initial;
	display: block;
	width: 100%;
}
.recruit__line-contact-link {
	background: var(--color-darkgreen);
	display: block;
	border-radius: 2em;
	box-shadow: var(--shadow-btn);
	padding: 1em 4em 2em;
	text-align: center;
	color: #fff;
}

.recruit__line-highlight {
	font-size: 28px;
	color: var(--color-yellow);
	font-weight: bold;
}

.recruit__line-title {
	font-size: 20px;
}

.recruit__line-id {
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	gap: 0 10px;
}

.recruit__line-questions {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 1em;
	justify-content: center;
	padding: 1em;
	gap: 0 10px;
}

.recruit__line-question-detail {
	color: var(--color-brown);
	text-align: left;
}

.recruit__line-question-highlight {
	color: var(--color-darkgreen);
	font-weight: bold;
}

.recruit__line-icon {
	width: 8%;
}

.days__images {
	position: relative;
	flex: 1;
}

.days__image:first-child {
	position: absolute;
	top: -7em;
}
.days__image:nth-child(2) {
	position: absolute;
	left: -10em;
	top: 6em;
	width: 50%;
}

.days__image:nth-child(3) {
	position: absolute;
	right: -3em;
	bottom: -6em;
	width: 70%;
}

.days__schedule.schedule {
	width: 40%;
}

.form {
	max-width: 600px;
	margin: 0 auto;
}

.form__fieldset {
	border: none;
	padding: 0;
}

.form__legend {
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 1em;
	text-align: center;
}

/* ラベルと入力欄を横並びにするためのスタイル */
.form__group {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}

.form__label {
	width: 160px;
	font-weight: bold;
}

.form__input,
.form__select,
.form__textarea {
	width: 100%;
	border: 1px solid #c5c5c5;
	padding: 8px;
	font-size: 16px;
	border-radius: 4px;
}
.wpcf7-form-control-wrap {
	position: relative;
	flex: 1;
}
.form__textarea {
	resize: vertical;
	height: 200px;
}
.form__submit {
	background-color: #0073aa;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	font-size: 20px;
	cursor: pointer;
	width: 100%;
	text-align: center;
}
.form__submit:hover {
	background-color: #005c8c;
}
.contactform__content {
	background: #fff;
	border-radius: 2em;
	padding: 4em;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
	border: 1px solid #c5c5c5;
	padding: .3em;
	border-radius: .3em;
}
.form__group.form__group-select .wpcf7-form-control-wrap {
	width: fit-content;
	flex: initial;
}
.form__group.form__group-select .wpcf7-form-control-wrap::before {
	content: "▼";
	display: inline-block;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}
#your-subject {
	padding-right: 2em;
	cursor: pointer;
}
.contactform__inner.inner-narrow {
	padding: 100px 20px;
}
.form__group.form__group-submit {
	margin: 60px 0 0;
}
@media (max-width: 1080px) {
	.flow__list {
		gap: 30px 0px;
		flex-direction: column;
	}
	.flow__list-item {
		padding: .5em 0em;
		text-align: center;
		font-size: clamp(1rem, 0.7321rem + 1.3393vw, 1.375rem);
	}
	.flow__list-item::before {
		padding: .8em 1.4em;
		font-size: clamp(0.875rem, 0.6071rem + 1.3393vw, 1.25rem);
	}
	.flow__list-item:not(:last-child)::after {
		content: none;
	}
	.flow__inner.inner-narrow {
		padding-bottom: 80px;
	}

}
@media (max-width: 768px) {
	.job__inner {
		padding: 0;
	}
	.job__details {
		font-size: clamp(0.875rem, 0.6071rem + 1.3393vw, 1.25rem);
	}
	.job__term {
		width: 25%;
	}
	.job__description {
		width: 75%;
	}
	.schedule__content {
		flex-direction: column;
		gap: 40px 0;
	}
	.days__schedule.schedule {
		width: 100%;
	}
	
	.days__image:first-child {
		position: static;
		width: 80%;
		margin-inline: auto;
	}
	.days__image:nth-child(2) {
		position: absolute;
		left: 70%;
		top: -40rem;
		width: 50%;
		display: block !important;
		z-index: -1;
	}
	.schedule__title {
		font-size: clamp(0.875rem, 0.6071rem + 1.3393vw, 1.25rem);
	}
	.schedule__content {
		flex-direction: column;
		gap: 40px 0;
	}
	.days__inner.inner-narrow {
		padding: 4rem 4% 80px;
	}

	.faq__content::before {
		width: 70%;
		height: 0;
		left: -40%;
		top: -60px;
		padding-top: 61%;
	}
	.faq__item {
		padding: 2em;
	}

	.faq__answer-text {
		padding-left: 3em;
	}
	.faq__question-title::before, .faq__answer-text::before  {
		background-size: 80%;
	}
	.faq__question-title {
		line-height: initial;
		padding-left: 2.5em;
		font-size: clamp(1.0625rem, 0.8393rem + 1.1161vw, 1.375rem);
	}
	.faq__answer {
		font-size: clamp(0.875rem, 0.6071rem + 1.3393vw, 1.25rem);
	}
	.recruit__links {
		gap: 30px;
		flex-direction: column;
	}
	.recruit {
		width: 95%;
		margin: 0 auto;
	}
	.recruit__link-item {
		width: 100%;
	}
	.recruit__line-contact-link {
		padding: 1em 1em 2em;
	}
	.recruit__line-highlight {
		display: block;
	}
	.recruit__line-question-image {
		width: 30%;
	}
	.contactform__content {
		padding: 2em 1.5em;
	}
	.nav-link__text {
		text-indent: revert;
	}
	.form__group {
		flex-direction: column;
	}
	.form__label {
		width: 100%;
		text-align: left;
		margin-bottom: 5px;
	}
	.form__group.form__group-select .wpcf7-form-control-wrap {
		width: 100%;
	}
	#your-subject {
		border: 1px solid #c5c5c5;
	}
	.days__image--sp {
		display: none !important;
	}
	.message__title.c__title {
		margin-bottom: 6rem;
	}

	.message {
		overflow-x: hidden;
	}
	.message__description {
		font-size: clamp(0.875rem, 0.6071rem + 1.3393vw, 1.25rem);
	}
	.message__content {
		margin-bottom: 4rem;
		flex-direction: column;
	}
	.message__inner.inner-narrow {
		padding-bottom: 2rem;
	}
	.values__title.c__title {
		margin-bottom: 260px;
	}
	.values__title.c__title::after {
		font-size: clamp(1rem, 0.9107rem + 0.4464vw, 1.125rem);
		bottom: -60px;
}

}
