@charset "UTF-8";
#page_head {
		padding-inline: 20px;
		-webkit-margin-before: 140px;
		        margin-block-start: 140px;
}
@media screen and (min-width: 425px) {
		#page_head {
				padding-inline: 30px;
		}
}
@media screen and (min-width: 768px) {
		#page_head {
				padding-inline: 40px;
		}
}
@media screen and (min-width: 992px) {
		#page_head {
				padding-inline: 70px min(100vw - 435px, 250px);
		}
}
@media screen and (min-width: 1300px) {
		#page_head {
				padding-inline: 70px;
		}
}
@media screen and (min-width: 992px) {
		#page_head {
				-webkit-margin-before: 160px;
				        margin-block-start: 160px;
		}
}

.page_title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 10px 10px;
		-webkit-box-align: baseline;
		    -ms-flex-align: baseline;
		        align-items: baseline;
		-webkit-padding-after: 15px;
		        padding-block-end: 15px;
		border-bottom: solid 1px #222222;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
		.page_title {
				gap: 20px;
		}
}

.page_title_ja {
		font-size: 3.5rem;
		line-height: 1.3;
		font-weight: 500;
}
@media screen and (min-width: 768px) {
		.page_title_ja {
				font-size: 4.5rem;
		}
}
@media screen and (min-width: 992px) {
		.page_title_ja {
				font-size: 5rem;
		}
}

.page_title_en {
		font-size: 1.6rem;
		line-height: 1.5;
}

.section_title {
		position: relative;
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1.5;
		-webkit-padding-start: 20px;
		        padding-inline-start: 20px;
		-webkit-padding-after: 15px;
		        padding-block-end: 15px;
		border-bottom: solid 1px #DBD9CD;
}
@media screen and (min-width: 992px) {
		.section_title {
				font-size: 3rem;
		}
}
.section_title::before {
		content: "";
		position: absolute;
		top: 0.8em;
		left: 0;
		translate: 0 -50%;
		width: 10px;
		height: 8px;
		background-color: #008C64;
		border-radius: 0 100vmax 100vmax 0;
}

.recruit_block {
		-webkit-margin-before: 60px;
		        margin-block-start: 60px;
}

.middle_title {
		font-size: 2.2rem;
		line-height: 1.5;
		font-weight: 500;
}
@media screen and (min-width: 992px) {
		.middle_title {
				font-size: 2.5rem;
		}
}

.recruit_text {
		font-size: 1.6rem;
		line-height: 1.8;
		-webkit-margin-before: 20px;
		        margin-block-start: 20px;
}
@media screen and (min-width: 992px) {
		.recruit_text {
				-webkit-margin-before: 35px;
				        margin-block-start: 35px;
		}
}

#index {
		-webkit-margin-before: 60px;
		        margin-block-start: 60px;
		padding-inline: 20px;
}
@media screen and (min-width: 425px) {
		#index {
				padding-inline: 30px;
		}
}
@media screen and (min-width: 768px) {
		#index {
				padding-inline: 40px;
		}
}
@media screen and (min-width: 992px) {
		#index {
				padding-inline: 70px min(100vw - 435px, 250px);
		}
}
@media screen and (min-width: 1300px) {
		#index {
				padding-inline: 70px;
		}
}

.index_list {
		display: -ms-grid;
		display: grid;
		gap: 10px;
		-webkit-margin-before: 30px;
		        margin-block-start: 30px;
}
@media screen and (min-width: 768px) {
		.index_list {
				-ms-grid-columns: (1fr)[2];
				grid-template-columns: repeat(2, 1fr);
		}
}
@media screen and (min-width: 992px) {
		.index_list {
				-ms-grid-columns: (1fr)[3];
				grid-template-columns: repeat(3, 1fr);
		}
}

.index_list_item a {
		position: relative;
		display: block;
		padding-inline: 45px 0px;
		padding-block: 8px;
		border: solid 1px #DBD9CD;
		border-radius: 10px;
		-webkit-transition: background-color 0.3s;
		transition: background-color 0.3s;
}
@media screen and (min-width: 992px) {
		.index_list_item a {
				padding-inline: 45px 15px;
		}
}
.index_list_item a::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 20px;
		width: 7px;
		height: 12px;
		background-color: #008C64;
		-webkit-mask-image: url("../img/common/arrow.svg");
		        mask-image: url("../img/common/arrow.svg");
		-webkit-mask-size: cover;
		        mask-size: cover;
		translate: 0 -50%;
		-webkit-transition: background-color 0.3s, translate 0.3s;
		transition: background-color 0.3s, translate 0.3s;
}
@media (hover: hover) and (pointer: fine) {
		.index_list_item a:hover {
				background-color: #008C64;
				color: #fff;
		}
		.index_list_item a:hover span {
				color: #fff;
		}
		.index_list_item a:hover::before {
				background-color: #fff;
				translate: 0 calc(-50% + 3px);
		}
}
.index_list_item span {
		display: block;
		border-left: solid 1px #DBD9CD;
		-webkit-padding-start: 15px;
		        padding-inline-start: 15px;
		color: #222222;
		line-height: 1.5;
		height: 100%;
		padding-block: 10px;
		place-content: center;
		font-size: 1.6rem;
		letter-spacing: 0.04em;
		-webkit-transition: color 0.3s;
		transition: color 0.3s;
}
@media screen and (min-width: 992px) {
		.index_list_item span {
				font-size: 1.5rem;
				line-height: 1.4;
		}
}

#job {
		padding-inline: 20px;
		-webkit-margin-before: 80px;
		        margin-block-start: 80px;
}
@media screen and (min-width: 425px) {
		#job {
				padding-inline: 30px;
		}
}
@media screen and (min-width: 768px) {
		#job {
				padding-inline: 40px;
		}
}
@media screen and (min-width: 992px) {
		#job {
				padding-inline: 70px min(100vw - 435px, 250px);
		}
}
@media screen and (min-width: 1300px) {
		#job {
				padding-inline: 70px;
		}
}

.job_row {
		-webkit-margin-before: 25px;
		        margin-block-start: 25px;
}
.job_row + .job_row {
		-webkit-margin-before: 70px;
		        margin-block-start: 70px;
}

.job_type {
		font-size: 2.5rem;
		line-height: 1.5;
}

.job_list {
		-webkit-margin-before: 30px;
		        margin-block-start: 30px;
		display: -ms-grid;
		display: grid;
		gap: 20px;
}
@media screen and (min-width: 768px) {
		.job_list {
				gap: 30px 40px;
				-ms-grid-columns: 1fr 40px 1fr;
				grid-template-columns: repeat(2, 1fr);
		}
}

.job_item {
		border-bottom: solid 1px #DBD9CD;
		-webkit-padding-after: 20px;
		        padding-block-end: 20px;
}
.job_item dt {
		font-size: 2rem;
		line-height: 1.5;
}
.job_item dd {
		font-size: 1.6rem;
		line-height: 1.8;
		-webkit-margin-before: 10px;
		        margin-block-start: 10px;
}

#requirement {
		-webkit-margin-before: 80px;
		        margin-block-start: 80px;
		padding-inline: 20px;
}
@media screen and (min-width: 425px) {
		#requirement {
				padding-inline: 30px;
		}
}
@media screen and (min-width: 768px) {
		#requirement {
				padding-inline: 40px;
		}
}
@media screen and (min-width: 992px) {
		#requirement {
				padding-inline: 70px min(100vw - 435px, 250px);
		}
}
@media screen and (min-width: 1300px) {
		#requirement {
				padding-inline: 70px;
		}
}
@media screen and (min-width: 768px) {
		#requirement {
				-webkit-margin-before: 100px;
				        margin-block-start: 100px;
		}
}

.recruit_table {
		-webkit-margin-before: 25px;
		        margin-block-start: 25px;
		border: solid 1px #DBD9CD;
		border-collapse: collapse;
}
.recruit_table td {
		padding: 20px;
		border: solid 1px #DBD9CD;
		font-size: 1.6rem;
		line-height: 1.8;
}
.recruit_table td:first-of-type {
		min-width: 110px;
		vertical-align: top;
}
@media screen and (min-width: 768px) {
		.recruit_table td:first-of-type {
				min-width: 170px;
		}
}

.table_list {
		display: -ms-grid;
		display: grid;
		gap: 10px;
}
.table_list li {
		position: relative;
		-webkit-padding-start: 16px;
		        padding-inline-start: 16px;
}
.table_list li::before {
		content: "";
		position: absolute;
		top: 0.8em;
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background-color: #222222;
		left: 4px;
}

.section_subtitle {
		font-size: 2.2rem;
		line-height: 1.5;
		font-weight: 500;
		-webkit-margin-before: 25px;
		        margin-block-start: 25px;
}
@media screen and (min-width: 768px) {
		.section_subtitle {
				font-size: 2.5rem;
		}
}

#question {
		-webkit-margin-before: 80px;
		        margin-block-start: 80px;
		-webkit-padding-after: 80px;
		        padding-block-end: 80px;
		padding-inline: 20px;
}
@media screen and (min-width: 425px) {
		#question {
				padding-inline: 30px;
		}
}
@media screen and (min-width: 768px) {
		#question {
				padding-inline: 40px;
		}
}
@media screen and (min-width: 992px) {
		#question {
				padding-inline: 70px min(100vw - 435px, 250px);
		}
}
@media screen and (min-width: 1300px) {
		#question {
				padding-inline: 70px;
		}
}
@media screen and (min-width: 768px) {
		#question {
				-webkit-margin-before: 100px;
				        margin-block-start: 100px;
				-webkit-padding-after: 100px;
				        padding-block-end: 100px;
		}
}

.question_category {
		-webkit-margin-before: 40px;
		        margin-block-start: 40px;
}
.question_category[open] .question_category_name::before {
		rotate: 45deg;
}
.question_category + .question_category {
		-webkit-margin-before: 40px;
		        margin-block-start: 40px;
}
@media screen and (min-width: 992px) {
		.question_category + .question_category {
				-webkit-margin-before: 80px;
				        margin-block-start: 80px;
		}
}

.question_category_name {
		position: relative;
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1.5;
		-webkit-padding-after: 15px;
		        padding-block-end: 15px;
		border-bottom: solid 1px #DBD9CD;
		-webkit-transition: color 0.3s;
		transition: color 0.3s;
}
@media screen and (min-width: 992px) {
		.question_category_name {
				font-size: 3rem;
		}
}
.question_category_name::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		width: 20px;
		height: 20px;
		border-top: solid 1px #222222;
		border-left: solid 1px #222222;
		rotate: 225deg;
		translate: 0 -50%;
		-webkit-transition: rotate 0.3s, border-color 0.3s;
		transition: rotate 0.3s, border-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
		.question_category_name:hover {
				cursor: pointer;
				color: #008C64;
		}
		.question_category_name:hover::before {
				border-color: #008C64;
		}
}

.question_inner {
		overflow: hidden;
}

.question_item {
		-webkit-margin-before: 35px;
		        margin-block-start: 35px;
}
.question_item dt {
		position: relative;
		font-size: 1.8rem;
		font-weight: 500;
		line-height: 1.8;
		-webkit-padding-start: 28px;
		        padding-inline-start: 28px;
}
.question_item dt::before {
		content: "Q";
		position: absolute;
		width: 20px;
		height: 20px;
		background-color: #222222;
		color: #fff;
		top: 0.5em;
		left: 0;
		text-align: center;
		line-height: 16px;
		font-size: 1.4rem;
		font-weight: 400;
		border-radius: 2px;
}
.question_item dd {
		position: relative;
		-webkit-margin-before: 15px;
		        margin-block-start: 15px;
		-webkit-padding-start: 28px;
		        padding-inline-start: 28px;
		font-size: 1.6rem;
		line-height: 1.8;
}
.question_item dd::before {
		content: "A";
		position: absolute;
		width: 20px;
		height: 20px;
		border: solid 1px #222222;
		color: #222222;
		top: 0.3em;
		left: 0;
		text-align: center;
		line-height: 16px;
		font-size: 1.4rem;
		font-weight: 400;
		border-radius: 2px;
}

.question_num_list li {
		position: relative;
		counter-increment: list;
		-webkit-padding-start: 1.2em;
		        padding-inline-start: 1.2em;
}
.question_num_list li::before {
		content: "①";
		position: absolute;
		top: 0em;
		left: 0;
}
.question_num_list li:nth-of-type(2)::before {
		content: "②";
}
.question_num_list li a {
		color: currentColor;
		-webkit-transition: color 0.3s;
		transition: color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
		.question_num_list li a:hover {
				color: #008C64;
		}
}

#entry {
		-webkit-margin-before: 80px;
		        margin-block-start: 80px;
		border: solid 1px #DBD9CD;
		border-radius: 6px;
		padding: 30px 40px 40px;
}

.entry_title {
		font-size: 3rem;
		line-height: 1.5;
		text-align: center;
		-webkit-padding-after: 10px;
		        padding-block-end: 10px;
		border-bottom: solid 1px #222222;
}

.entry_text {
		-webkit-margin-before: 30px;
		        margin-block-start: 30px;
		font-size: 1.8rem;
		line-height: 2;
		text-align: center;
}
.entry_text .pc {
		display: none;
}
@media screen and (min-width: 768px) {
		.entry_text .pc {
				display: block;
		}
}
@media screen and (min-width: 768px) {
		.entry_text .sp {
				display: none;
		}
}

.entry_link {
		display: block;
		-webkit-margin-before: 40px;
		        margin-block-start: 40px;
		border-radius: 6px;
		background-color: #222222;
		padding-block: 27px;
		width: 100%;
		text-align: center;
		border: solid 1px #222222;
		-webkit-transition: background-color 0.3s;
		transition: background-color 0.3s;
		max-width: 350px;
		margin-inline: auto;
}
.entry_link span {
		position: relative;
		color: #fff;
		font-size: 2rem;
		line-height: 1.5;
		-webkit-padding-start: 58px;
		        padding-inline-start: 58px;
		-webkit-transition: color 0.3s;
		transition: color 0.3s;
}
.entry_link span::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 35px;
		height: 28px;
		-webkit-mask-image: url(../img/common/chat.svg);
		        mask-image: url(../img/common/chat.svg);
		-webkit-mask-size: cover;
		        mask-size: cover;
		background-color: #DBD9CD;
		translate: 0 -50%;
		-webkit-transition: background-color 0.3s;
		transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
		.entry_link:hover {
				background-color: #ffffff;
		}
		.entry_link:hover span {
				color: #222222;
		}
		.entry_link:hover span::before {
				background-color: #222222;
		}
}

.fixed_entry_button {
		display: none;
		border-radius: 6px;
		background-color: #222222;
		padding-block: 27px;
		width: 100%;
		text-align: center;
		border: solid 1px #222222;
		-webkit-transition: background-color 0.3s, opacity 0.3s;
		transition: background-color 0.3s, opacity 0.3s;
		margin-inline: auto;
}
@media screen and (min-width: 992px) {
		.fixed_entry_button {
				position: fixed;
				bottom: 20px;
				display: block;
				right: 10px;
				max-width: 200px;
		}
}
@media screen and (min-width: 1150px) {
		.fixed_entry_button {
				right: min(100vw - 435px, 250px);
				translate: 100% 0;
		}
}
@media screen and (min-width: 1300px) {
		.fixed_entry_button {
				translate: 100% 0;
				right: calc((100vw - 800px) / 2 - 50px);
		}
}
.fixed_entry_button._hidden {
		opacity: 0;
}
.fixed_entry_button span {
		position: relative;
		color: #fff;
		font-size: 1.6rem;
		line-height: 1.5;
		-webkit-padding-start: 32px;
		        padding-inline-start: 32px;
		-webkit-transition: color 0.3s;
		transition: color 0.3s;
}
.fixed_entry_button span::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 25px;
		height: 20px;
		-webkit-mask-image: url(../img/common/chat.svg);
		        mask-image: url(../img/common/chat.svg);
		-webkit-mask-size: cover;
		        mask-size: cover;
		background-color: #DBD9CD;
		translate: 0 -50%;
		-webkit-transition: background-color 0.3s;
		transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
		.fixed_entry_button:hover {
				background-color: #ffffff;
		}
		.fixed_entry_button:hover span {
				color: #222222;
		}
		.fixed_entry_button:hover span::before {
				background-color: #222222;
		}
}