@charset "UTF-8";
.global_nav {
	line-height: 1;
}
.global_nav-link {
	text-decoration: none;
	color: inherit;
}
.global_nav-main_list {
	list-style: none;
	display: grid;
	grid-template: "home  company   business recruitment" auto ".     interview blog     contact    " auto/1fr 1fr 1fr 1fr;
	grid-gap: 2rem 0;
}
@media screen and (max-width: 700px) {
	.global_nav-main_list {
		grid-template: "home  company     business " auto ".     recruitment interview" auto ".     recruitment blog     " auto ".     recruitment contact  " auto/1fr 1fr 1fr;
	}
}
@media screen and (max-width: 550px) {
	.global_nav-main_list {
		grid-template: "home        home     " auto "company     business " auto "recruitment interview" auto "recruitment blog     " auto "recruitment contact  " auto/1fr 1fr;
	}
}
.global_nav-main_item-home {
	grid-area: home;
}
.global_nav-main_item-company {
	grid-area: company;
}
.global_nav-main_item-business {
	grid-area: business;
}
.global_nav-main_item-recruitment {
	grid-area: recruitment;
	justify-self: end;
}
@media screen and (max-width: 750px) {
	.global_nav-main_item-recruitment {
		justify-self: auto;
	}
}
.global_nav-main_item-interview {
	grid-area: interview;
}
.global_nav-main_item-blog {
	grid-area: blog;
}
.global_nav-main_item-contact {
	grid-area: contact;
	justify-self: end;
}
@media screen and (max-width: 750px) {
	.global_nav-main_item-contact {
		justify-self: auto;
	}
}
.global_nav-sub_text {
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	display: block;
	text-transform: uppercase;
}
.global_nav-sub_text-home {
	color: #8B8B8B;
}
.global_nav-sub_text-company {
	color: var(--company-theme_color);
}
.global_nav-sub_text-business {
	color: var(--business-theme_color);
}
.global_nav-sub_text-recruitment {
	color: var(--recruitment-theme_color);
}
.global_nav-sub_text-interview {
	color: var(--interview-theme_color);
}
.global_nav-sub_text-blog {
	color: var(--blog-theme_color);
}
.global_nav-sub_text-contact {
	color: var(--contact-theme_color);
}
.global_nav-main_text {
	font-family: "M PLUS 1p", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.global_nav-sub_list {
	list-style-type: "-";
	font-size: 14px;
}
.global_nav-sub_item {
	padding-left: 10px;
	list-style-position: outside;
	margin: 10px;
}

.hamburger_nav {
	line-height: 1.3;
}
@media screen and (max-width: 750px) {
	.hamburger_nav {
		padding: 0 5%;
	}
}
.hamburger_nav-main_list {
	list-style: none;
	display: grid;
	grid-template: "company  recruitment" auto "company  interview  " auto "business interview  " auto "business blog       " auto/auto auto;
	grid-gap: 1rem 2rem;
	justify-content: center;
}
@media screen and (max-width: 1200px) {
	.hamburger_nav-main_list {
		grid-template: "company    " auto "business   " auto "recruitment" auto "interview  " auto "blog       " auto/auto;
	}
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_list {
		grid-template-columns: 100%;
		grid-gap: 0.75rem 2rem;
	}
}
.hamburger_nav-main_item {
	display: grid;
	grid-template: "main  sub   arrow" 1fr/200px 250px auto;
	align-items: center;
	border: solid;
	padding: 2rem;
	border-radius: 2rem;
}
.hamburger_nav-main_item-company {
	grid-area: company;
	border-color: var(--company-theme_color);
}
.hamburger_nav-main_item-business {
	grid-area: business;
	border-color: var(--business-theme_color);
}
.hamburger_nav-main_item-recruitment {
	grid-area: recruitment;
	border-color: var(--recruitment-theme_color);
}
.hamburger_nav-main_item-interview {
	grid-area: interview;
	border-color: var(--interview-theme_color);
}
.hamburger_nav-main_item-blog {
	grid-area: blog;
	border-color: var(--blog-theme_color);
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_item {
		padding: 1rem 0 1em 1.5rem;
		grid-template: "main sub" 1fr/120px 1fr;
		border-width: 2px;
		border-radius: 1.5rem;
	}
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_item-interview {
		padding-top: 1.25em;
	}
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_item-blog {
		padding-top: 1.25em;
	}
}
.hamburger_nav-main_item-link-company {
	text-decoration: none;
	transition: 0.3s;
}
.hamburger_nav-main_item-link-company:after {
	content: "→";
	grid-area: arrow;
	font-size: 50px;
	color: var(--company-theme_color);
}
.hamburger_nav-main_item-link-company:hover {
	opacity: 0.6;
	transform: translateX(10px);
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_item-link-company {
		display: none;
	}
}
.hamburger_nav-main_item-link-business {
	text-decoration: none;
	transition: 0.3s;
}
.hamburger_nav-main_item-link-business:after {
	content: "→";
	grid-area: arrow;
	font-size: 50px;
	color: var(--business-theme_color);
}
.hamburger_nav-main_item-link-business:hover {
	opacity: 0.6;
	transform: translateX(10px);
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_item-link-business {
		display: none;
	}
}
.hamburger_nav-main_item-link-recruitment {
	text-decoration: none;
	transition: 0.3s;
}
.hamburger_nav-main_item-link-recruitment:after {
	content: "→";
	grid-area: arrow;
	font-size: 50px;
	color: var(--recruitment-theme_color);
}
.hamburger_nav-main_item-link-recruitment:hover {
	opacity: 0.6;
	transform: translateX(10px);
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_item-link-recruitment {
		display: none;
	}
}
.hamburger_nav-main_item-link-interview {
	text-decoration: none;
	transition: 0.3s;
}
.hamburger_nav-main_item-link-interview:after {
	content: "→";
	grid-area: arrow;
	font-size: 50px;
	color: var(--interview-theme_color);
}
.hamburger_nav-main_item-link-interview:hover {
	opacity: 0.6;
	transform: translateX(10px);
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_item-link-interview {
		display: none;
	}
}
.hamburger_nav-main_item-link-blog {
	text-decoration: none;
	transition: 0.3s;
}
.hamburger_nav-main_item-link-blog:after {
	content: "→";
	grid-area: arrow;
	font-size: 50px;
	color: var(--blog-theme_color);
}
.hamburger_nav-main_item-link-blog:hover {
	opacity: 0.6;
	transform: translateX(10px);
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_item-link-blog {
		display: none;
	}
}
.hamburger_nav-link {
	text-decoration: none;
	color: inherit;
	grid-area: main;
}
.hamburger_nav-link a {
	text-decoration: none;
	color: inherit;
}
.hamburger_nav-sub_text {
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	display: block;
	text-transform: uppercase;
}
@media screen and (max-width: 750px) {
	.hamburger_nav-sub_text {
		font-size: 8px;
	}
}
.hamburger_nav-sub_text-home {
	color: var(--home-theme_color);
}
.hamburger_nav-sub_text-company {
	color: var(--company-theme_color);
}
.hamburger_nav-sub_text-business {
	color: var(--business-theme_color);
}
.hamburger_nav-sub_text-recruitment {
	color: var(--recruitment-theme_color);
}
.hamburger_nav-sub_text-interview {
	color: var(--interview-theme_color);
}
.hamburger_nav-sub_text-blog {
	color: var(--blog-theme_color);
}
.hamburger_nav-sub_text-contact {
	color: var(--contact-theme_color);
}
.hamburger_nav-main_text {
	font-family: "M PLUS 1p", sans-serif;
	font-weight: 300;
	font-size: 30px;
}
@media screen and (max-width: 750px) {
	.hamburger_nav-main_text {
		font-size: 18px;
	}
}
.hamburger_nav-sub_list {
	grid-area: sub;
	list-style-type: "-";
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.hamburger_nav-sub_list {
		font-size: 3.5vw;
	}
}
.hamburger_nav-sub_item {
	padding-left: 10px;
	list-style-position: outside;
	margin: 10px;
}
@media screen and (max-width: 750px) {
	.hamburger_nav-sub_item {
		margin: 5px 10px;
	}
}

.nav_contacts_parts {
	padding: 2em;
	list-style: none;
	justify-content: center;
	align-items: center;
	display: grid;
	grid-template: "line  mail  tel" auto/300px 300px 600px;
	line-height: 1.4;
}
@media screen and (max-width: 1300px) {
	.nav_contacts_parts {
		grid-template: "line separator mail" auto "tel  tel       tel " auto/1fr 1px 1fr;
	}
	.nav_contacts_parts:after {
		content: "";
		width: 1px;
		background-color: #C3BFBF;
		grid-area: separator;
		height: 100%;
	}
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts {
		grid-template: "line separator mail" 70px "tel  tel       tel " auto/1fr 1px 1fr;
		row-gap: 25px;
		padding: 10% 5% 0 5%;
	}
	.nav_contacts_parts:after {
		content: "";
		width: 1px;
		background-color: #C3BFBF;
		grid-area: separator;
		height: 100%;
	}
}
.nav_contacts_parts-item {
	border-right: solid 1px #C3BFBF;
	text-align: center;
}
.nav_contacts_parts-item:first-of-type {
	border-left: solid 1px #C3BFBF;
}
@media screen and (max-width: 1300px) {
	.nav_contacts_parts-item, .nav_contacts_parts-item:first-of-type {
		border: none;
	}
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-item {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
}
.nav_contacts_parts-item-line {
	grid-area: line;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-item-line {
		border-left: solid 1px #C3BFBF !important;
	}
}
.nav_contacts_parts-item-mail {
	grid-area: mail;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-item-mail {
		border-right: solid 1px #C3BFBF !important;
	}
}
.nav_contacts_parts-item-tel {
	grid-area: tel;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-item-tel {
		flex-direction: column;
	}
}
.nav_contacts_parts-link {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
	height: 100%;
	transition: 0.3s;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-link {
		display: flex;
		align-items: center;
	}
}
.nav_contacts_parts-link:after {
	content: "→";
	font-size: 50px;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-link:after {
		display: none;
	}
}
.nav_contacts_parts-link:hover {
	opacity: 0.6;
}
.nav_contacts_parts-label {
	font-size: 18px;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-label {
		font-size: 12px;
	}
}
.nav_contacts_parts-label:before {
	font-family: "FontAwesome";
	font-size: 1.5em;
	position: relative;
	top: 3px;
	padding-right: 0.5em;
}
.nav_contacts_parts-label-line:before {
	content: "\f3c0";
	color: #8B8B8B;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-label-line:before {
		font-size: 2em;
	}
}
.nav_contacts_parts-label-mail:before {
	content: url(../img/menu_icon_mail.svg);
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-label-mail:before {
		content: "";
		background-image: url(../img/menu_icon_mail.svg);
		background-size: cover;
		width: 25px;
		height: 20px;
		display: inline-block;
		margin-right: 10px;
	}
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-label-tel {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
.nav_contacts_parts-label-tel:before {
	content: url(../img/menu_icon_tell.svg);
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-label-tel:before {
		content: "";
		background-image: url(../img/menu_icon_tell.svg);
		background-size: cover;
		top: 0;
		width: 23px;
		height: 24px;
		display: inline-block;
		margin-right: 10px;
	}
}
.nav_contacts_parts-text {
	font-size: 50px;
	font-weight: 400;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-text {
		font-size: 8vw;
	}
}
.nav_contacts_parts-text a {
	pointer-events: none;
	color: #5D5D5D;
	text-decoration: none;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-text a {
		pointer-events: inherit;
		text-decoration: underline;
	}
}
.nav_contacts_parts-notice {
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.nav_contacts_parts-notice {
		font-size: 12px;
	}
}

.popup {
	height: 0;
}
.popup-checkbox {
	display: none;
}
.popup-overlay {
	display: none;
	z-index: 9999;
	background-color: rgba(139, 139, 139, 0.8666666667);
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.popup-checkbox:checked + .popup-overlay {
	display: block;
}
.popup-window {
	background-color: #ffffff;
	border-radius: 6px;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	width: fit-content;
}
@media screen and (max-width: 750px) {
	.popup-window {
		transform: translate(-50%, -50%);
		width: 95%;
		height: auto;
	}
}

.line_popup_parts {
	padding: 1em 10vw;
}
.line_popup_parts-close_button {
	cursor: pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 40px;
	border: solid 1px;
	width: 70px;
	text-align: center;
	line-height: 70px;
	border-radius: 100%;
	color: #C3BFBF;
}
.line_popup_parts-qrcode {
	margin: auto;
}
.line_popup_parts-message {
	font-size: 26px;
	width: fit-content;
	margin: auto;
}
.line_popup_parts-notice {
	font-size: 15px;
	width: fit-content;
	margin: auto;
}

.recruitment_popup_parts {
	border-radius: 65px;
	padding: 50px 100px 30px 80px;
	max-width: 100%;
	display: grid;
	grid-template: "message .     " auto "speech  .     " auto "chara   chara" auto/auto 35px;
}
@media screen and (max-width: 750px) {
	.recruitment_popup_parts {
		padding: 50px 10px;
		margin: 0px;
	}
}
.recruitment_popup_parts-close_button {
	cursor: pointer;
	position: absolute;
	top: 17px;
	right: 19px;
	font-size: 40px;
	border: solid 1px #E5E2E2;
	width: 100px;
	height: 100px;
	text-align: center;
	line-height: 70px;
	border-radius: 100%;
}
@media screen and (max-width: 750px) {
	.recruitment_popup_parts-close_button {
		width: 50px;
		height: 50px;
	}
}
.recruitment_popup_parts-close_button:before, .recruitment_popup_parts-close_button:after {
	content: "";
	display: block;
	height: 3px;
	width: 28px;
	border-radius: 3px;
	position: absolute;
	inset: 0;
	margin: auto;
}
.recruitment_popup_parts-close_button:before {
	background-color: #CB5229;
	transform: rotate(45deg);
}
.recruitment_popup_parts-close_button:after {
	background-color: #F79B3E;
	transform: rotate(-45deg);
}
.recruitment_popup_parts-message {
	grid-area: message;
	position: relative;
	padding: 40px;
	background: #faf8c8;
	border: 10px solid #f79b3e;
	border-radius: 60px;
}
@media screen and (max-width: 750px) {
	.recruitment_popup_parts-message {
		padding: 15px;
	}
}
.recruitment_popup_parts:after {
	grid-area: speech;
	content: url("../img/recruitment/speech_parts.svg");
	margin-left: auto;
	position: relative;
	top: -11px;
	left: -110px;
	margin-bottom: -30px;
}
.recruitment_popup_parts-text {
	max-width: 421px;
	width: 100%;
	font-weight: 500;
	font-size: 16px;
	line-height: 44px;
	text-align: left;
	color: #5d5d5d;
	background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #FAF8C8 0%, #FAF8C8 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 97.5%, #707070 100%);
	background-size: 8px 100%, 100% 44px;
}
@media screen and (max-width: 750px) {
	.recruitment_popup_parts-text {
		font-size: 3.5vw;
		line-height: 1.5;
		background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #FAF8C8 0%, #FAF8C8 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 97.5%, #707070 100%);
		background-size: 8px 100%, 100% 2.5em;
		line-height: 2.5em;
	}
}
.recruitment_popup_parts-chara {
	margin-left: auto;
	grid-area: chara;
	width: 195px;
}
@media screen and (max-width: 750px) {
	.recruitment_popup_parts-chara {
		width: 150px;
	}
}

.top_slider_parts-top_area {
	display: flex;
	width: 100vw;
	height: 31vh;
	overflow: hidden;
}
@media screen and (max-width: 750px) {
	.top_slider_parts-top_area {
		height: 18vh;
	}
}
.top_slider_parts-top_img {
	width: 500vw;
	max-width: none;
	animation: top_slider_parts-top_img 60s linear infinite;
}
@keyframes top_slider_parts-top_img {
	0% {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-100%);
	}
}
@media screen and (max-width: 750px) {
	.top_slider_parts-top_img {
		width: 300vw;
	}
}
.top_slider_parts-bottom_area {
	display: flex;
	width: 100vw;
	height: 56vh;
	overflow: hidden;
}
@media screen and (max-width: 750px) {
	.top_slider_parts-bottom_area {
		height: 38vh;
	}
}
.top_slider_parts-bottom_img {
	width: 500vw;
	max-width: none;
	animation: top_slider_parts-bottom_img 60s linear infinite;
}
@keyframes top_slider_parts-bottom_img {
	0% {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0%);
	}
}
@media screen and (max-width: 750px) {
	.top_slider_parts-bottom_img {
		width: 300vw;
	}
}

.top_page_section {
	position: relative;
}
@media screen and (max-width: 750px) {
	.top_page_section {
		font-size: 15px;
	}
}
.top_page_section-titles {
	grid-area: title;
	line-height: 1;
}
.top_page_section-sub_title {
	display: flex;
	align-items: center;
	font-size: 20px;
	font-family: "M PLUS 1p", sans-serif;
	margin-bottom: 5px;
	padding-left: 8px;
}
@media screen and (max-width: 750px) {
	.top_page_section-sub_title {
		font-size: 18px;
		padding-left: 3px;
	}
}
.top_page_section-sub_title:before {
	content: "";
	width: 23px;
	height: 6px;
	display: block;
	background-color: var(--theme_color);
	margin-right: 10px;
}
.top_page_section-main_title {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 80px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--theme_color);
}
@media screen and (max-width: 750px) {
	.top_page_section-main_title {
		font-size: 45px;
	}
}
.top_page_section-catch {
	font-size: 60px;
	font-weight: 300;
	margin-top: 100px;
	letter-spacing: 3px;
	line-height: 1.2;
}
@media screen and (max-width: 1500px) {
	.top_page_section-catch {
		font-size: 50px;
	}
}
@media screen and (max-width: 750px) {
	.top_page_section-catch {
		margin-top: 30px;
		line-height: 1.5;
		margin-bottom: 1em;
	}
}
@media screen and (max-width: 750px) {
	.top_page_section-catch {
		font-size: 40px;
	}
}
.top_page_section-description {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
@media screen and (max-width: 750px) {
	.top_page_section-description {
		padding-top: 0rem;
	}
}
.top_page_section-button {
	font-size: 18px;
	margin: auto 0 0 0;
}
@media screen and (max-width: 750px) {
	.top_page_section-button {
		margin: 1em;
	}
}
.top_page_section-button_link {
	padding: 1em 0;
	color: var(--theme_color);
	position: relative;
	border: solid 2px;
	border-radius: 40px;
	text-decoration: none;
	transition: 0.3s;
	display: inline-block;
	text-align: center;
	width: 300px;
}
.top_page_section-button_link span {
	position: relative;
	z-index: 2;
}
.top_page_section-button_link:hover {
	background-color: var(--theme_color);
	color: white;
}
.top_page_section-button_link:hover:before {
	transform: scale(1.1);
	opacity: 1;
}
.top_page_section-button_link:after {
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -12px;
	width: 24px;
	height: 24px;
	z-index: 2;
}
.top_page_section-button_link:before {
	content: "";
	background-color: var(--theme_color);
	border-radius: 40px;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	transition: 0.3s;
	opacity: 0;
}
.top_page_section-button_link-recruit {
	/*color: var(--theme_color);
	position: relative;
	border: solid 2px;
	border-radius: 40px;
	text-decoration: none;*/
}
.top_page_section-button_link-recruit:hover {
	color: var(--recruitment-theme_color);
}
.top_page_section-button_link-recruit:after {
	/*content: "";
	content: "→";
	position: absolute;
	right: 1rem;*/
}

.top_summary_parts {
	display: grid;
	grid-template: ".   .     .     .   .     .     .  " 100px ".   .     item1 .   item2 item2 .  " 2fr ".   item3 item3 .   item2 item2 .  " 1fr ".   item3 item3 .   .     .     .  " 1fr ".   item3 item3 .   item4 item4 .  " 1fr ".   .     .     .   item4 item4 .  " 2fr/1fr 2fr 5fr 2fr 5fr 2fr 1fr;
	margin: auto;
	list-style: none;
}
@media screen and (max-width: 750px) {
	.top_summary_parts {
		grid-template: "item1" 1fr "item2" 2fr "item3" 2fr "item4" 2fr/1fr;
		display: flex;
		flex-direction: column;
	}
}
.top_summary_parts-item {
	text-align: center;
	transition: all 2s ease-out;
}
.top_summary_parts-item-left {
	padding-left: 100px;
}
@media screen and (max-width: 750px) {
	.top_summary_parts-item-left {
		padding-left: 0;
	}
}
.top_summary_parts-item-right {
	padding-right: 100px;
}
@media screen and (max-width: 750px) {
	.top_summary_parts-item-right {
		padding-right: 0;
	}
}
@media screen and (max-width: 750px) {
	.top_summary_parts-item-right:last-of-type {
		margin-bottom: 0;
	}
}
.top_summary_parts-item-animate_ready {
	transform: translatey(20%);
	opacity: 0;
}
@media screen and (max-width: 750px) {
	.top_summary_parts-item {
		margin-bottom: 5em;
	}
}
.top_summary_parts-item:nth-of-type(1) {
	grid-area: item1;
}
.top_summary_parts-item:nth-of-type(2) {
	grid-area: item2;
}
.top_summary_parts-item:nth-of-type(3) {
	grid-area: item3;
}
.top_summary_parts-item:nth-of-type(4) {
	grid-area: item4;
}
.top_summary_parts-item:nth-of-type(5) {
	grid-area: item5;
}
.top_summary_parts-image {
	position: relative;
}
.top_summary_parts-image_img {
	margin: auto;
}
.top_summary_parts-image_en {
	position: absolute;
	bottom: -15px;
	left: 55px;
	/*background: url("../img/top/summary_paint.svg");
	background-size: contain;
	background-repeat: no-repeat;
	font-size: 26px;
	font-family: 'Sketchnote Square Regular', sans-serif;
	font-weight: 300;
	width: 9em;
	text-align: center;
	line-height: 4;
	color: white;*/
}
@media screen and (max-width: 750px) {
	.top_summary_parts-image_en {
		font-size: 15px;
	}
}
.top_summary_parts-image_en_text {
	transform: rotate(350deg);
	display: block;
}
.top_summary_parts-cap {
	display: inline-block;
	text-align: left;
	margin-top: 25px;
}
.top_summary_parts-catch {
	font-size: 30px;
	color: var(--theme_color);
	font-weight: 500;
	letter-spacing: 3px;
}
@media screen and (max-width: 1600px) {
	.top_summary_parts-catch {
		font-size: 24px;
	}
}
@media screen and (max-width: 750px) {
	.top_summary_parts-catch {
		font-size: 17px;
	}
}
.top_summary_parts-desc {
	font-size: 16px;
	line-height: 1.7;
}
@media screen and (max-width: 1600px) {
	.top_summary_parts-desc {
		font-size: 14px;
	}
}
@media screen and (max-width: 750px) {
	.top_summary_parts-desc {
		font-size: 14px;
	}
}

.lower_page-simple_title {
	text-align: center;
	font-size: 40px;
	color: #5d5d5d;
	margin: 3em;
}
@media screen and (max-width: 750px) {
	.lower_page-simple_title {
		font-size: 30px;
		margin: 3em 0;
	}
}
.lower_page-simple_title:before {
	content: "";
	background-color: var(--interview-theme_color);
	display: block;
	width: 23px;
	height: 6px;
	margin: auto;
}

.lower_page_top {
	display: grid;
	grid-template: ".        .        .        .   " 3em ".        title    catch    .   " auto ".        .        .        .   " 3em "eyecatch eyecatch eyecatch .   " auto/1fr 10fr 6fr 1fr;
	margin: auto;
}
@media screen and (max-width: 1280px) {
	.lower_page_top {
		grid-template: ".        .        .    " 3em ".        title    .    " auto ".        .        .    " 2em ".        catch    .    " auto ".        .        .    " 3em "eyecatch eyecatch .    " auto/1fr 16fr 1fr;
	}
}
@media screen and (max-width: 750px) {
	.lower_page_top {
		grid-template: ".        .        .  " 2em "title    title    .  " auto "catch    catch    .  " auto ".        .        .  " 2em "eyecatch eyecatch .  " auto/1em 1fr 1em;
	}
}
.lower_page_top-title {
	grid-area: title;
}
@media screen and (max-width: 750px) {
	.lower_page_top-title {
		padding: 1em;
	}
}
.lower_page_top-title-sub_text {
	font-size: 20px;
	display: block;
	display: flex;
	align-items: center;
}
.lower_page_top-title-sub_text:before {
	content: "";
	width: 23px;
	height: 6px;
	display: block;
	background-color: var(--theme_color);
	margin-right: 10px;
}
.lower_page_top-title-main_text {
	font-size: 90px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	display: block;
	text-transform: uppercase;
	line-height: 1.2;
	color: var(--theme_color);
	letter-spacing: 5px;
}
@media screen and (max-width: 750px) {
	.lower_page_top-title-main_text {
		font-size: 50px;
	}
}
.lower_page_top-catch_phraze {
	font-size: 40px;
	line-height: 1.5;
	grid-area: catch;
}
@media screen and (max-width: 750px) {
	.lower_page_top-catch_phraze {
		font-size: 30px;
		padding: 1em;
	}
}
.lower_page_top-catch_phraze:before {
	content: "";
	width: 23px;
	height: 6px;
	display: block;
	background-color: var(--theme_color);
	margin: 20px 0;
}
.lower_page_top-eyecatch_img {
	grid-area: eyecatch;
	width: 100%;
}

.lower_page_section {
	position: relative;
	padding: 50px 0;
}
.lower_page_section-title {
	grid-area: title;
	max-width: 1500px;
	margin: 5vw auto;
	width: 90%;
	padding-left: 300px;
}
@media screen and (max-width: 1280px) {
	.lower_page_section-title {
		padding: 1em;
	}
}
@media screen and (max-width: 750px) {
	.lower_page_section-title {
		width: 100%;
	}
}
.lower_page_section-title-sub_text {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--theme_color);
}
.lower_page_section-title-sub_text:before {
	content: "";
	width: 23px;
	height: 6px;
	display: block;
	background-color: var(--theme_color);
	margin-right: 10px;
}
.lower_page_section-title-main_text {
	font-family: "M PLUS 1p", sans-serif;
	font-size: 40px;
	line-height: 1.5;
}
@media screen and (max-width: 750px) {
	.lower_page_section-title-main_text {
		font-size: 35px;
		display: block;
		line-height: 1.3;
	}
}
.lower_page_section-content {
	grid-area: content;
	max-width: 1500px;
	padding-left: 300px;
	padding-bottom: 100px;
	width: 90%;
	margin: 0 auto;
}
@media screen and (max-width: 1280px) {
	.lower_page_section-content {
		padding: 1.5em;
	}
}
@media screen and (max-width: 750px) {
	.lower_page_section-content {
		width: 100%;
	}
}
@media screen and (max-width: 1280px) {
	.lower_page_section-philosophy {
		margin-bottom: 0px;
	}
}
.lower_page_section-work_division {
	margin: 10vw auto 5vw auto;
}
.lower_page_section-creative_division {
	margin: 15vw auto 7vw auto;
}
@media screen and (max-width: 1280px) {
	.lower_page_section-creative_division {
		margin: 0;
	}
}

.lower_page_divid {
	border-top: 1px solid #ccc;
	margin: 0 10vw 0 25vw;
}
@media screen and (max-width: 1350px) {
	.lower_page_divid {
		margin: 0px 5vw;
	}
}

.lower_page_index {
	z-index: 100;
	position: sticky;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}
@media screen and (max-width: 1280px) {
	.lower_page_index {
		display: none;
	}
}
.lower_page_index-item {
	margin: 0.5em 0;
	display: table;
}
.lower_page_index-list {
	padding: 7em 0;
	position: sticky;
	top: 0;
	left: 0;
	list-style: none;
}
.lower_page_index-link {
	display: table-cell;
	vertical-align: middle;
	width: 15em;
	height: 70px;
	background-color: var(--theme_color);
	color: white;
	text-decoration: none;
	margin: 0.5em 0;
	border-radius: 0 2em 2em 0;
	padding-left: 5em;
	opacity: 60%;
	line-height: 1.5;
}
.lower_page_index-link-current {
	opacity: 100%;
	position: relative;
}
.lower_page_index-link-current:before {
	content: "●";
	position: absolute;
	top: 1.15em;
	left: 3.5em;
}
.lower_1200_page_top {
	display: grid;
	grid-template: ".        catch    message  .       " auto "eyecatch eyecatch eyecatch eyecatch" auto/1fr 8fr 6fr 1fr;
	margin: auto;
}
@media screen and (max-width: 1280px) {
	.lower_1200_page_top {
		grid-template: ".        catch    .       " auto ".        message  .       " auto "eyecatch eyecatch eyecatch" auto/1em 1fr 1em;
	}
}
@media screen and (max-width: 750px) {
	.lower_1200_page_top {
		grid-template: "catch    catch    .       " auto "message  message  .       " auto "eyecatch eyecatch eyecatch" auto/1em 1fr 1em;
	}
}
.lower_1200_page_top-catch_phraze {
	font-size: 40px;
	grid-area: catch;
	color: var(--theme_color);
	line-height: 1.5;
}
@media screen and (max-width: 750px) {
	.lower_1200_page_top-catch_phraze {
		font-size: 30px;
		padding: 0 1em;
	}
}
.lower_1200_page_top-catch_phraze:before {
	content: "";
	width: 23px;
	height: 6px;
	display: block;
	background-color: var(--theme_color);
	margin-right: 10px;
	margin-bottom: 25px;
}
.lower_1200_page_top-message {
	grid-area: message;
	margin: auto 0 0 0;
}
@media screen and (max-width: 750px) {
	.lower_1200_page_top-message {
		font-size: 15px;
		padding: 1.5em;
	}
}
.lower_1200_page_top-eyecatch_img {
	grid-area: eyecatch;
	width: 100%;
	padding-top: 5em;
}
@media screen and (max-width: 750px) {
	.lower_1200_page_top-eyecatch_img {
		padding-top: 0;
	}
}
.lower_1200_page_top-support_img {
	grid-area: eyecatch;
	width: 100%;
}

.lower_1200_page_divid {
	border-top: 1px solid #ccc;
	margin: 0 10vw 0 10vw;
}
@media screen and (max-width: 750px) {
	.lower_1200_page_divid {
		margin: 0 5vw;
	}
}

.lower_1200_page_section {
	position: relative;
	padding: 50px 0;
}
@media screen and (max-width: 750px) {
	.lower_1200_page_section {
		padding: 0;
		padding-bottom: 70px;
	}
}
.lower_1200_page_section-title {
	grid-area: title;
	max-width: 1200px;
	margin: 100px auto;
}
@media screen and (max-width: 1500px) {
	.lower_1200_page_section-title {
		max-width: 900px;
	}
}
@media screen and (max-width: 1280px) {
	.lower_1200_page_section-title {
		padding: 1em;
	}
}
@media screen and (max-width: 750px) {
	.lower_1200_page_section-title {
		margin: 50px 0 0 0;
	}
}
.lower_1200_page_section-title_sub {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--theme_color);
}
.lower_1200_page_section-title_sub:before {
	content: "";
	width: 23px;
	height: 6px;
	display: block;
	background-color: var(--theme_color);
	margin-right: 10px;
}
.lower_1200_page_section-title_main {
	font-family: "M PLUS 1p", sans-serif;
	font-size: 40px;
	line-height: 1.5;
}
@media screen and (max-width: 750px) {
	.lower_1200_page_section-title_main {
		font-size: 30px;
		display: block;
		line-height: 1.3;
	}
}
.lower_1200_page_section-content {
	grid-area: content;
	max-width: 1200px;
	margin: 100px auto;
}
@media screen and (max-width: 1500px) {
	.lower_1200_page_section-content {
		max-width: 900px;
	}
}
@media screen and (max-width: 1280px) {
	.lower_1200_page_section-content {
		padding: 1.5em;
	}
}
@media screen and (max-width: 750px) {
	.lower_1200_page_section-content {
		margin: 0;
	}
}

.lower_1200_page_index {
	z-index: 100;
	position: sticky;
	top: 0;
	left: 0;
	height: 0;
}
.lower_1200_page_index-item {
	margin: 0.5em 0;
	display: table;
}
@media screen and (max-width: 1280px) {
	.lower_1200_page_index-item {
		writing-mode: vertical-rl;
	}
}
.lower_1200_page_index-list {
	padding: 8em 0;
	list-style: none;
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.lower_1200_page_index-list {
		font-size: 14px;
	}
}
.lower_1200_page_index-link {
	display: table-cell;
	vertical-align: middle;
	width: 15em;
	height: 70px;
	background-color: white;
	color: var(--theme_color);
	text-decoration: none;
	margin: 0.5em 0;
	border-radius: 0 2em 2em 0;
	padding-left: 5em;
	opacity: 60%;
	line-height: 1.5;
}
@media screen and (max-width: 1280px) {
	.lower_1200_page_index-link {
		padding: 3em 1em 1em 1em;
		border-radius: 0 1.5em 1.5em 0;
		width: 4em;
		height: auto;
		vertical-align: baseline;
	}
}
.lower_1200_page_index-link-current {
	opacity: 100%;
	position: relative;
}
.lower_1200_page_index-link-current:before {
	content: "●";
	position: absolute;
	top: 1.15em;
	left: 3.5em;
	line-height: 2;
}
@media screen and (max-width: 1280px) {
	.lower_1200_page_index-link-current:before {
		top: 1em;
		line-height: 1.5;
		left: auto;
	}
}
.simple_page_title_parts {
	width: 100%;
	background-color: #E5E2E2;
	color: #5D5D5D;
	text-align: center;
	padding: 1em;
}
.simple_page_title_parts-main {
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 90px;
	display: block;
	line-height: 1;
}
@media screen and (max-width: 750px) {
	.simple_page_title_parts-main {
		font-size: 50px;
	}
}
.simple_page_title_parts-sub {
	font-size: 20px;
	display: block;
}

.simple_section {
	background-color: white;
	border: solid 16px #EBE5EF;
	border-radius: 2em;
	padding: 3em;
	position: relative;
}
.simple_section-title {
	grid-area: title;
	font-size: 20px;
}
.simple_section-title:before {
	font-family: "FontAwesome";
	color: #C3BFBF;
	font-size: 1.5em;
	padding-right: 0.5em;
}
.simple_section-title-line:before {
	content: "\f3c0";
	color: #06C755;
}
.simple_section-title-mail:before {
	content: "\f0e0";
}
.simple_section-title-tell:before {
	content: "\f2a0";
}
@media screen and (max-width: 750px) {
	.simple_section-desc {
		font-size: 14px;
	}
}
.simple_section-notice {
	font-size: 14px;
}
.simple_section-caution {
	color: #DB0F0F;
	font-size: 14px;
}
.simple_section-error {
	color: #DB0F0F;
	font-weight: bold;
}
.simple_section-big_text {
	line-height: 1;
	font-size: 40px;
}
.simple_section-link {
	text-decoration: none;
	cursor: pointer;
	color: #5D5D5D;
}
.simple_section-link:after {
	position: absolute;
	top: 2em;
	right: 1em;
	content: "→";
	font-size: 2em;
	border: solid 1px;
	display: block;
	width: 2em;
	height: 2em;
	text-align: center;
	border-radius: 0.6em;
}
@media screen and (max-width: 750px) {
	.simple_section-link:after {
		right: 10px;
		font-size: 1.5em;
	}
}
.simple_section-link:hover:after {
	background-color: var(--text_color);
	color: white;
}

.form_parts-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1.5em 0;
	border-top: solid 1px #B4B4B4;
}
@media screen and (max-width: 750px) {
	.form_parts-row {
		padding: 1em 0;
	}
}
.form_parts-row-confirm {
	border-top: none;
}
.form_parts-label {
	display: block;
	width: 12em;
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.form_parts-label {
		width: 100%;
	}
}
.form_parts-label small {
	font-size: 12px;
	vertical-align: top;
}
.form_parts-input {
	display: block;
	width: calc(100% - 12em);
	padding: 7px 25px;
	flex-grow: 1;
	font-size: 16px;
	background-color: #FAF8F2;
}
.form_parts-input::placeholder {
	color: #8B8B8B;
}
@media screen and (max-width: 750px) {
	.form_parts-input {
		padding: 5px 15px;
		width: 100%;
	}
}
.form_parts-privacy {
	font-size: 18px;
	display: block;
	text-align: center;
	padding: 1em;
}
@media screen and (max-width: 750px) {
	.form_parts-privacy {
		font-size: 13px;
	}
}
.form_parts-privacy_checkbox {
	transform: scale(2);
	margin-right: 1em;
}
.form_parts-submit {
	max-width: 440px;
	width: 100%;
	display: block;
	margin: 3em auto;
	color: white;
	background-color: var(--recruitment-theme_color);
	padding: 1.25em;
	border-radius: 3em;
	transition: 0.3s;
}
.form_parts-submit.disabled {
	background-color: #ccc;
}
.form_parts-submit:hover {
	opacity: 0.6;
}
@media screen and (max-width: 750px) {
	.form_parts-submit {
		max-width: none;
		padding: 0.75em 0;
		font-size: 5vw;
		margin: 1em auto 0.5em auto;
	}
}
.form_parts-button {
	display: block;
	margin: auto;
}

.horizontal_parts {
	display: flex;
	list-style: none;
	align-items: flex-start;
}
@media screen and (max-width: 750px) {
	.horizontal_parts {
		flex-flow: column;
	}
}
.horizontal_parts-item {
	min-width: 0;
	width: 100%;
}
@media screen and (max-width: 750px) {
	.horizontal_parts-top_area {
		width: calc(100% - 60px);
	}
}
@media screen and (max-width: 750px) {
	.horizontal_parts-bottom_area {
		padding-left: 30px;
	}
}

.simple_links_parts {
	font-size: 30px;
	list-style: none;
}
@media screen and (max-width: 1500px) {
	.simple_links_parts {
		font-size: 25px;
	}
}
@media screen and (max-width: 750px) {
	.simple_links_parts {
		font-size: 20px;
	}
}
.simple_links_parts-item {
	padding: 1em;
	border-top: solid 1px;
	width: 100%;
}
.simple_links_parts-item:last-of-type {
	border-bottom: solid 1px;
}
.simple_links_parts-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: inherit;
	text-decoration: none;
	width: 100%;
	position: relative;
}
.simple_links_parts-link span {
	position: relative;
	width: 2em;
	height: 2em;
	border-radius: 0.6em;
	border: solid 1px;
}
@media screen and (max-width: 750px) {
	.simple_links_parts-link span {
		width: 55px;
		height: 55px;
	}
}
.simple_links_parts-link span:after {
	position: absolute;
	inset: 0;
	content: "";
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='m1.5,12h21' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/><path d='m12,1.5l10.5,10.5-10.5,10.5' transform='translate(0)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/></svg>");
	background-size: 21px;
	background-repeat: no-repeat;
	background-position: center center;
	font-size: 1em;
	display: block;
	width: 2em;
	height: 2em;
	text-align: center;
	transition: 0.3s;
}
@media screen and (max-width: 750px) {
	.simple_links_parts-link span:after {
		width: 55px;
		height: 55px;
	}
}
.simple_links_parts-link span:before {
	content: "";
	position: absolute;
	border-radius: 0.6em;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: 0.3s;
	background-color: transparent;
}
.simple_links_parts-link:hover span:after {
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='m1.5,12h21' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/><path d='m12,1.5l10.5,10.5-10.5,10.5' transform='translate(0)' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/></svg>");
	color: var(--theme_color);
}
.simple_links_parts-link:hover span:before {
	background-color: #fff;
	transform: scale(1.3);
}

.contact_aside_parts {
	display: grid;
	grid-template: ".   sp    .     title title    title .  " auto ".   sp    .     .     .        .     .  " 125px ".   sp    .     desc  desc     .     .  " auto ".   sp    .     line  mailform .     .  " 150px ".   sp    .     tel   tel      .     .  " 150px ".   .     .     .     .        .     .  " 0 ".   .     .     .     .        .     .  " 100px/1fr 360px 100px 470px 470px 200px 1fr;
	grid-gap: 10px;
	padding: 8em 0;
}
.contact_aside_parts-title {
	grid-area: title;
	color: #F79B3E;
	font-size: 145px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	align-self: end;
	line-height: 1;
	margin-top: 80px;
}
@media screen and (max-width: 750px) {
	.contact_aside_parts-title {
		margin-top: 0;
	}
}
.contact_aside_parts-desc {
	grid-area: desc;
	font-size: 26px;
	color: white;
}
.contact_aside_parts-tel_text {
	border: solid 1px white;
	border-radius: 0.5em;
	font-size: 20px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact_aside_parts-line_link, .contact_aside_parts-mailform_link {
	border: solid 1px white;
	border-radius: 0.5em;
	font-size: 20px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	transition: 0.3s;
}
.contact_aside_parts-line_link span, .contact_aside_parts-mailform_link span {
	position: absolute;
	top: 50%;
	right: 0.5em;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	text-align: center;
	border-radius: 30px;
	background-color: white;
	color: #F79B3E;
	transform: translateY(-50%);
	transition: 0.3s;
}
@media screen and (max-width: 750px) {
	.contact_aside_parts-line_link span, .contact_aside_parts-mailform_link span {
		width: 65px;
		height: 65px;
		border-radius: 20px;
	}
}
.contact_aside_parts-line_link span:after, .contact_aside_parts-mailform_link span:after {
	content: "";
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='m1.5,12h21' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/><path d='m12,1.5l10.5,10.5-10.5,10.5' transform='translate(0)' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/></svg>");
	width: 21px;
	height: 21px;
	display: block;
}
@media screen and (max-width: 750px) {
	.contact_aside_parts-line_link span:after, .contact_aside_parts-mailform_link span:after {
		width: 18px;
		height: 18px;
	}
}
.contact_aside_parts-line_link:hover, .contact_aside_parts-mailform_link:hover {
	background-color: rgba(255, 255, 255, 0.45);
}
.contact_aside_parts-line_link:hover span, .contact_aside_parts-mailform_link:hover span {
	transform: translateY(-50%) scale(1.1);
}
.contact_aside_parts-text {
	margin: auto;
	right: 2em;
}
.contact_aside_parts-text-line, .contact_aside_parts-text-mail, .contact_aside_parts-text-tell {
	position: relative;
	font-size: 18px;
	display: flex;
	align-items: center;
	right: 0;
	width: 90%;
	justify-content: center;
	padding-right: 90px;
}
@media screen and (max-width: 1350px) {
	.contact_aside_parts-text-tell {
		padding-right: 0px;
	}
}
.contact_aside_parts-text-line:before, .contact_aside_parts-text-mail:before, .contact_aside_parts-text-tell:before {
	font-family: FontAwesome;
	font-size: 2em;
	position: relative;
	margin-right: 0.5em;
}
.contact_aside_parts-text-line:before {
	content: "\f3c0";
}
.contact_aside_parts-text-mail:before {
	content: url(../img/icon_mail.svg);
}
.contact_aside_parts-text-tell:before {
	content: url(../img/icon_tell.svg);
}
.contact_aside_parts-line_link {
	grid-area: line;
}
.contact_aside_parts-mailform_link {
	grid-area: mailform;
}
.contact_aside_parts-tel_text {
	grid-area: tel;
}
.contact_aside_parts-tel_number {
	font-size: 48px;
	margin-left: 10px;
	margin-right: 10px;
	text-decoration: none;
	color: #fff;
	pointer-events: none;
}
@media screen and (max-width: 1350px) {
	.contact_aside_parts-tel_number {
		font-size: 3vw;
	}
}
@media screen and (max-width: 750px) {
	.contact_aside_parts-tel_number {
		pointer-events: inherit;
	}
}
.contact_aside_parts-sp {
	grid-area: sp;
	position: relative;
	margin: auto 0 0 0;
}
@media screen and (max-width: 1280px) {
	.contact_aside_parts-sp {
		width: 80%;
		margin: 0 auto;
	}
}
.contact_aside_parts-sp:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	aspect-ratio: 359/669;
	background: transparent;
	border-radius: 15px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
}
.contact_aside_parts-sp:after {
	content: "";
	width: 100%;
	background-image: url(../img/contact_us-sp2.webp);
	background-size: cover;
	aspect-ratio: 718/255;
	position: absolute;
	top: 0;
	left: 0;
}
.contact_aside_parts-sp_content {
	width: 340px;
	height: 520px;
	position: absolute;
	top: 187px;
	left: 10px;
	overflow-y: scroll;
}
.contact_aside_parts:before {
	content: "";
	grid-column: 1/7;
	grid-row: 2/8;
	background-image: url(../img/top_bg.png), linear-gradient(#f69a3f 0%, #f6a43f 60.1%, #fdbf32 100%);
	background-position: center;
	border-radius: 0 20em 20em 0;
}
@media screen and (max-width: 1700px) {
	.contact_aside_parts {
		grid-template: ".    sp    .    title    title    title .  " auto ".    sp    .    .        .        .     .  " 125px ".    sp    .    desc     desc     .     .  " auto ".    sp    .    line     mailform .     .  " 150px ".    sp    .    tel      tel      .     .  " 150px ".    .     .    .        .        .     .  " 0 ".    .     .    .        .        .     .  " 100px/10px 360px 10px 1fr 1fr 100px 10px;
	}
}
@media screen and (max-width: 1500px) {
	.contact_aside_parts-title {
		font-size: 9vw;
	}
}
@media screen and (max-width: 1280px) {
	.contact_aside_parts {
		background: linear-gradient(#f69a3f 0%, #f6a43f 60.1%, #fdbf32 100%);
		text-align: center;
		padding: 1em;
		grid-template: "title    title    title   " auto "desc     desc     desc    " auto ".        sp       .       " auto "line     line     line    " 150px "mailform mailform mailform" 150px "tel      tel      tel     " 200px/1fr 450px 1fr;
		margin-bottom: 100px;
	}
	.contact_aside_parts-sp {
		margin-bottom: 10%;
	}
	.contact_aside_parts-sp_content {
		width: 335px;
		height: 520px;
		position: absolute;
		top: 190px;
		left: 10px;
		overflow-y: scroll;
	}
	.contact_aside_parts-title {
		color: white;
		font-size: 50px;
	}
}
@media screen and (max-width: 1280px) and (max-width: 750px) {
	.contact_aside_parts-title {
		font-size: 40px;
	}
}
@media screen and (max-width: 1280px) {
	.contact_aside_parts-desc {
		font-size: 13px;
	}
	.contact_aside_parts-text {
		position: relative;
		padding-right: 0;
	}
	.contact_aside_parts:before {
		content: none;
	}
	.contact_aside_parts-tel_number {
		font-size: 4vw;
	}
}
@media screen and (max-width: 750px) {
	.contact_aside_parts {
		grid-template: "title    title    title   " auto "desc     desc     desc    " auto ".        sp       .       " auto "line     line     line    " 110px "mailform mailform mailform" 110px "tel      tel      tel     " 200px/1fr 320px 1fr;
		margin-bottom: 70px;
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.contact_aside_parts-text-mail {
		padding-right: 65px;
	}
	.contact_aside_parts-text-tell {
		flex-wrap: wrap;
		padding-right: 0;
	}
	.contact_aside_parts-text-tell:before {
		line-height: 1;
		margin-right: 10px;
	}
	.contact_aside_parts-text-tell br {
		display: none;
	}
	.contact_aside_parts-text-tell a {
		text-decoration: underline;
		font-size: 8vw;
	}
	.contact_aside_parts-text-tell span.time {
		font-size: 16px;
	}
	.contact_aside_parts-sp {
		width: 85%;
	}
	.contact_aside_parts-sp_content {
		width: 255px;
		height: 390px;
		top: 140px;
		left: 10px;
	}
	.contact_aside_parts-line_link:after, .contact_aside_parts-mailform_link:after {
		right: 0.3em;
	}
}

.recruitment_aside_parts {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 300;
	transition: 0.3s;
	animation: recruitment_aside_parts 3s ease-in-out infinite alternate;
}
.recruitment_aside_parts-img {
	width: min(200px,30vw);
	object-fit: contain;
	padding: 1vw;
}
@keyframes recruitment_aside_parts {
	0% {
		transform: translateY(0%);
	}
	to {
		transform: translateY(-10%);
	}
}
.recruitment_aside_parts:hover {
	animation-play-state: paused;
	opacity: 0.6;
}

.oneline_entry_parts {
	display: grid;
	grid-template-columns: 50px max-content max-content;
	gap: 1em;
	align-items: baseline;
}
@media screen and (max-width: 750px) {
	.oneline_entry_parts {
		display: block;
		padding-bottom: 1em;
	}
}
.oneline_entry_parts-new {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #CB5229;
}
.oneline_entry_parts-date {
	font-size: 14px;
}
.oneline_entry_parts-link {
	color: inherit;
	font-size: 16px;
	line-height: 1.3;
	text-decoration: none;
}
.oneline_entry_parts:nth-child(n+2) .oneline_entry_parts-new span {
	display: none;
}

.portrait_title {
	writing-mode: vertical-rl;
}
.portrait_title-main_text {
	font-size: 90px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	display: flex;
	text-transform: uppercase;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	line-height: 1.2;
	letter-spacing: 3px;
}
@media screen and (max-width: 750px) {
	.portrait_title-main_text {
		font-size: 60px;
	}
}
.portrait_title-sub_text {
	font-size: 20px;
	font-family: "Montserrat", sans-serif;
	display: flex;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	letter-spacing: 3px;
}
.portrait_title-sub_text:before {
	content: "";
	width: 6px;
	height: 23px;
	display: flex;
	margin: 10px auto;
	background-color: white;
}

.button_parts {
	padding: 0.5em 3em;
	background-color: #E5E2E2;
	color: #5D5D5D;
	position: relative;
	border-radius: 30px;
	text-decoration: none;
	z-index: 200;
	transition: 0.3s;
}
@media screen and (max-width: 750px) {
	.button_parts {
		padding: 0.5em 2em;
		margin-top: 2em;
	}
}
.button_parts:hover {
	background-color: #BCBABA;
}
.button_parts-right_arrow:after {
	content: "→";
	position: absolute;
	right: 1rem;
	color: #8B8B8B;
}
.button_parts-left_arrow:after {
	content: "";
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='m1.5,12h21' fill='none' stroke='%238B8B8B' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/><path d='m12,1.5l10.5,10.5-10.5,10.5' transform='translate(0)' fill='none' stroke='%238B8B8B' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/></svg>");
	width: 12px;
	height: 12px;
	background-size: cover;
	transform: rotate(-180deg);
	position: absolute;
	left: 1rem;
	top: 50%;
	margin-top: -6px;
	color: #8B8B8B;
}

.benefits_cards_parts {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 1em;
	max-width: 1200px;
	margin: auto;
}
@media screen and (max-width: 1500px) {
	.benefits_cards_parts {
		max-width: 900px;
	}
}
.benefits_cards_parts-item {
	display: grid;
	background-color: #fff;
	grid-template: "image" auto ".    " 30px "title" auto ".    " 30px "list " 1fr "link " auto/1fr;
	border: solid 10px #FDEC8D;
	border-radius: 2em;
	max-width: 380px;
	padding: 1em;
	position: relative;
}
@media screen and (max-width: 1500px) {
	.benefits_cards_parts-item {
		max-width: 280px;
	}
}
@media screen and (max-width: 750px) {
	.benefits_cards_parts-item {
		padding: 0.75em;
		grid-template: "image" auto ".    " 20px "title" auto ".    " 20px "list " 1fr "link " auto/1fr;
	}
}
.benefits_cards_parts-image {
	grid-area: image;
	width: 100%;
}
.benefits_cards_parts-title {
	grid-area: title;
	display: grid;
	grid-template: "icon .     sub " auto "icon .     main" auto/auto 15px auto;
	align-items: center;
	justify-content: flex-start;
	line-height: 1;
	padding: 0 20px;
	color: var(--theme_color);
}
@media screen and (max-width: 750px) {
	.benefits_cards_parts-title {
		justify-content: flex-start;
		padding: 0 10px;
	}
}
.benefits_cards_parts-title:before {
	grid-area: icon;
	content: "";
	width: 50px;
	aspect-ratio: 21/26;
	background-size: auto 100%;
	background-position: center center;
	background-repeat: no-repeat;
}
@media screen and (max-width: 750px) {
	.benefits_cards_parts-title:before {
		width: 35px;
	}
}
.benefits_cards_parts-title-wellness:before {
	background-image: url("../img/recruitment/benefits_wellness_icon.svg");
}
.benefits_cards_parts-title-carrier:before {
	background-image: url("../img/recruitment/benefits_carrier_icon.svg");
}
.benefits_cards_parts-title-others:before {
	background-image: url("../img/recruitment/benefits_others_icon.svg");
}
.benefits_cards_parts-title_sub {
	grid-area: sub;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
}
.benefits_cards_parts-title_main {
	grid-area: main;
	font-size: 24px;
}
@media screen and (max-width: 750px) {
	.benefits_cards_parts-title_main {
		font-size: 4.5vw;
	}
}
.benefits_cards_parts-list {
	grid-area: list;
	padding: 0 20px;
	font-size: 16px;
	color: #5D5D5D;
	line-height: 1.5;
	margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
	.benefits_cards_parts-list {
		font-size: 3.75vw;
		padding: 0 10px;
	}
}
.benefits_cards_parts-list_item {
	list-style: none;
	margin-bottom: 5px;
	position: relative;
	padding-left: 20px;
}
@media screen and (max-width: 750px) {
	.benefits_cards_parts-list_item {
		padding-left: 15px;
	}
}
.benefits_cards_parts-list_item:before {
	content: "□";
	font-size: 10px;
	position: absolute;
	left: 0;
	top: 5px;
}
@media screen and (max-width: 750px) {
	.benefits_cards_parts-list_item:before {
		font-size: 2.5vw;
		top: 4px;
	}
}
.benefits_cards_parts-list_item span {
	display: block;
	font-size: 14px;
	color: #8B8B8B;
}
.benefits_cards_parts-link {
	grid-area: link;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 14px;
}

.recruitment_step_parts {
	list-style: none;
	display: flex;
	padding: 3em 4em;
	border-radius: 2em;
	gap: 1em;
	margin: 0px auto;
}
@media screen and (max-width: 750px) {
	.recruitment_step_parts {
		flex-flow: column;
		padding: 1.5em;
		border-radius: 1.5em;
	}
}
.recruitment_step_parts-item {
	background-color: white;
	padding: 1.5em 2em;
	border-radius: 1.5em;
}
@media screen and (max-width: 750px) {
	.recruitment_step_parts-item {
		padding: 3em 1.5em;
		border-radius: 1.25em;
	}
}
.recruitment_step_parts-title {
	color: var(--theme_color);
	font-size: 18px;
	text-align: center;
	padding-bottom: 1em;
}
@media screen and (max-width: 750px) {
	.recruitment_step_parts-title {
		font-size: 4.5vw;
	}
}
.recruitment_step_parts-title:before {
	position: relative;
	top: 0.5em;
	padding-right: 1em;
}
@media screen and (max-width: 750px) {
	.recruitment_step_parts-title:before {
		display: block;
	}
}
.recruitment_step_parts-title-beginner:before {
	content: url("../img/recruitment/beginner_icon.svg");
}
.recruitment_step_parts-title-advanced:before {
	content: url("../img/recruitment/advanced_icon.svg");
}
@media screen and (max-width: 750px) {
	.recruitment_step_parts-contents {
		font-size: 4vw;
		line-height: 1.75;
	}
}

.big_button_parts {
	padding: 4em;
}
@media screen and (max-width: 750px) {
	.big_button_parts {
		padding: 0 2em 1.5em 2em;
	}
}
.big_button_parts-link {
	max-width: 1200px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
	padding: 30px;
	background-color: var(--theme_color);
	color: white;
	position: relative;
	border: solid 1px;
	border-radius: 75px;
	text-decoration: none;
	margin: auto;
	text-align: center;
	font-size: 20px;
	padding-left: 120px;
	transition: 0.3s;
}
@media screen and (max-width: 750px) {
	.big_button_parts-link {
		padding: 1em 2em;
		font-size: 4vw;
		gap: 0;
		justify-content: space-between;
	}
}
.big_button_parts-link:hover {
	opacity: 0.6;
}
.big_button_parts-link:after {
	content: "";
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='m1.5,12h21' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/><path d='m12,1.5l10.5,10.5-10.5,10.5' transform='translate(0)' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/></svg>");
	background-size: 24px;
	background-position: center center;
	background-repeat: no-repeat;
	display: inline-block;
	width: 90px;
	height: 90px;
	text-align: center;
	border-radius: 30px;
	background-color: white;
}
@media screen and (max-width: 750px) {
	.big_button_parts-link:after {
		width: 60px;
		height: 60px;
		background-size: 16px;
		border-radius: 20px;
	}
}

.other_pages_parts {
	margin: 100px auto;
}
.other_pages_parts-list {
	display: flex;
	max-width: 1200px;
	width: 90%;
	margin: 10vw auto 0vw auto;
	list-style: none;
	gap: 1em;
	line-height: 1;
}
@media screen and (max-width: 750px) {
	.other_pages_parts-list {
		flex-flow: column;
		margin: 10vw 5vw;
		padding-left: 0px;
	}
}
.other_pages_parts-item {
	flex: 1;
	z-index: 200;
}
.other_pages_parts-item-company {
	--theme_color: var(--company-theme_color_rgb);
}
.other_pages_parts-item-business {
	--theme_color: var(--business-theme_color_rgb);
}
.other_pages_parts-item-recruitment {
	--theme_color: var(--recruitment-theme_color_rgb);
}
.other_pages_parts-link {
	text-decoration: none;
	border: solid 10px rgba(var(--theme_color), 0.2);
	border-radius: 30px;
	display: grid;
	grid-template: ".   line      sub_text  .         arrow .  " auto ".   main_text main_text main_text arrow .  " auto/1fr auto auto auto auto 1fr;
	align-items: center;
	padding: 3em 0;
	transition: 0.3s;
}
@media screen and (max-width: 750px) {
	.other_pages_parts-link {
		border-width: 5px;
		border-radius: 20px;
		padding: 2.25em 0;
	}
}
.other_pages_parts-link:before {
	grid-area: line;
	content: "";
	width: 23px;
	height: 6px;
	display: block;
	background-color: rgba(var(--theme_color), 1);
	margin: 0 10px;
}
@media screen and (max-width: 750px) {
	.other_pages_parts-link:before {
		margin: 0 5px 0 0;
	}
}
.other_pages_parts-link:after {
	grid-area: arrow;
	content: "";
	background-size: 17px;
	background-position: center center;
	background-repeat: no-repeat;
	color: rgba(var(--theme_color), 1);
	border: solid 1px;
	width: 98px;
	height: 98px;
	display: block;
	text-align: center;
	border-radius: 30px;
	margin-left: 1em;
}
@media screen and (max-width: 750px) {
	.other_pages_parts-link:after {
		width: 60px;
		height: 60px;
		border-radius: 20px;
		background-size: 12px;
	}
}
.other_pages_parts-item-business .other_pages_parts-link:after {
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='m1.5,12h21' fill='none' stroke='%23856995' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/><path d='m12,1.5l10.5,10.5-10.5,10.5' transform='translate(0)' fill='none' stroke='%23856995' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/></svg>");
}
.other_pages_parts-item-recruitment .other_pages_parts-link:after {
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='m1.5,12h21' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/><path d='m12,1.5l10.5,10.5-10.5,10.5' transform='translate(0)' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/></svg>");
}
.other_pages_parts-item-company .other_pages_parts-link:after {
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='m1.5,12h21' fill='none' stroke='%235A7AA6' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/><path d='m12,1.5l10.5,10.5-10.5,10.5' transform='translate(0)' fill='none' stroke='%235A7AA6' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/></svg>");
}
.other_pages_parts-link:hover {
	background-color: rgba(var(--theme_color), 0.2);
}
@media screen and (max-width: 750px) {
	.other_pages_parts {
		margin: 15% auto;
	}
}
.other_pages_parts-sub_text {
	grid-area: sub_text;
	display: flex;
	align-items: center;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: rgba(var(--theme_color), 1);
}
@media screen and (max-width: 750px) {
	.other_pages_parts-sub_text {
		font-size: 10px;
	}
}
.other_pages_parts-main_text {
	grid-area: main_text;
	font-family: "M PLUS 1p", sans-serif;
	font-size: 40px;
	color: #5D5D5D;
}
@media screen and (max-width: 750px) {
	.other_pages_parts-main_text {
		font-size: 23px;
		margin: 0 0 auto 0;
	}
}

.phraze_and_figure {
	display: block;
}
@media screen and (max-width: 750px) {
	.phraze_and_figure {
		display: block;
	}
}
.phraze_and_figure-phraze {
	font-size: 60px;
	font-weight: 100;
	letter-spacing: 3px;
	color: var(--theme_color);
}
@media screen and (max-width: 750px) {
	.phraze_and_figure-phraze {
		font-size: 28px;
		padding-bottom: 2em;
	}
}
.phraze_and_figure-phraze_text {
	font-weight: 100;
	display: inline-block;
}
.phraze_and_figure-figure {
	max-width: 90%;
	margin-left: auto;
	min-width: 0;
	flex: 1;
	top: -40vh;
}
@media screen and (max-width: 1280px) {
	.phraze_and_figure-figure {
		top: -20vh;
	}
}
@media screen and (max-width: 750px) {
	.phraze_and_figure-figure {
		max-width: 120%;
		margin: auto;
		top: -10vh;
		right: 10vw;
	}
}
.phraze_and_figure-recruit {
	max-width: 60%;
	margin-left: auto;
	min-width: 0;
	flex: 1;
	top: -40vh;
}
@media screen and (max-width: 1280px) {
	.phraze_and_figure-recruit {
		top: -20vh;
	}
}
@media screen and (max-width: 750px) {
	.phraze_and_figure-recruit {
		max-width: 100%;
		margin: auto;
		top: -10vh;
		right: 10vw;
	}
}

.message_parts-paragraph {
	width: 500px;
	padding: 1rem 0;
}
@media screen and (max-width: 950px) {
	.message_parts-paragraph {
		width: 100%;
	}
}
.message_parts-position {
	padding-top: 5em;
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.message_parts-position {
		padding-top: 1.5em;
	}
}
.message_parts-name {
	font-size: 26px;
	line-height: 1.5;
}
.message_parts-en_name {
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
	font-size: 16px;
	padding-left: 1em;
}

.outline_parts {
	display: grid;
	font-size: 15px;
	grid-template-columns: 10rem 1fr;
}
@media screen and (max-width: 750px) {
	.outline_parts {
		grid-template-columns: 7em 1fr;
	}
}
@media screen and (max-width: 420px) {
	.outline_parts {
		font-size: 0.8em;
	}
}
.outline_parts-title {
	padding: 2rem 1.5rem;
	color: #8B8B8B;
	border-top: solid 1px var(--theme_color);
}
@media screen and (max-width: 750px) {
	.outline_parts-title {
		padding: 2rem 1em;
	}
}
.outline_parts-title:last-of-type {
	border-bottom: solid 1px var(--theme_color);
}
.outline_parts-data {
	padding: 2rem 0 2rem 4rem;
	border-top: solid 1px #E5E2E2;
}
@media screen and (max-width: 750px) {
	.outline_parts-data {
		padding-left: 1em;
	}
}
.outline_parts-data:last-of-type {
	border-bottom: solid 1px #E5E2E2;
}
.outline_parts-list {
	list-style: none;
	margin-bottom: 3rem;
}
.outline_parts-detail {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
@media screen and (max-width: 750px) {
	.outline_parts-detail {
		display: block;
	}
}
.outline_parts-job {
	color: var(--company-theme_color);
	margin-bottom: 5px;
}

.access_parts {
	display: grid;
	grid-template: "map     map   " auto "address access" auto/2fr 3fr;
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.access_parts {
		grid-template: ".    map     ." auto ".    address ." auto ".    access  ." auto/20px 1fr 20px;
		font-size: 13px;
		padding-top: 0;
		padding-bottom: 0;
	}
}
.access_parts-map {
	grid-area: map;
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
	padding-bottom: 2rem;
	z-index: 200;
}
@media screen and (max-width: 750px) {
	.access_parts-map {
		padding-bottom: 1em;
	}
}
.access_parts-address {
	grid-area: address;
}
.access_parts-access {
	grid-area: access;
}
.access_parts-access:marker {
	font-size: 25px;
	list-style-type: square;
}

.work_parts {
	margin-bottom: 10vw;
	display: grid;
	grid-template: "business    .   image" auto "catch       .   image" max-content "description .   image" 1fr/1fr 4em 1fr;
}
.work_parts:last-of-type {
	margin-bottom: 0;
}
@media screen and (max-width: 750px) {
	.work_parts {
		display: block;
		margin-bottom: 20vw;
	}
}
.work_parts-business {
	grid-area: business;
}
.work_parts-catch {
	grid-area: catch;
	font-size: 30px;
	line-height: 1.5;
	font-weight: 400;
	margin: 50px 0 30px 0;
}
@media screen and (max-width: 750px) {
	.work_parts-catch {
		font-size: 6.5vw;
		line-height: 1.5;
		padding: 0.5em 0;
		margin: 0;
	}
}
.work_parts-description {
	grid-area: description;
	font-weight: 400;
	z-index: 200;
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.work_parts-description {
		font-size: 4vw;
		margin-bottom: 3em;
	}
}
.work_parts-image {
	grid-area: image;
}
.work_parts-business_list {
	list-style: none;
}
.work_parts-business_item {
	font-size: 20px;
	font-weight: 500;
	width: 15em;
	text-align: center;
	border: solid 3px var(--theme_color);
	color: var(--theme_color);
	margin: 0.5em 0;
	border-radius: 0.5em;
}
.work_parts-pdf_link {
	color: #5D5D5D;
	margin-top: 2em;
	display: inline-block;
	transition: 0.3s;
}
.work_parts-pdf_link:after {
	content: "";
	background-image: url("../img/icon-pdf.svg");
	background-size: cover;
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}
.work_parts-pdf_link:hover {
	opacity: 0.6;
}

.group_parts {
	margin-bottom: 15em;
}
.group_parts-item {
	border: solid 2px #E5E2E2;
	display: grid;
	grid-template-columns: 14em 1px 1fr;
	margin: 1em 0;
	padding: 1em 0;
	border-radius: 1.5em;
	align-items: center;
}
@media screen and (max-width: 950px) {
	.group_parts-item {
		display: block;
	}
}
.group_parts-item:before {
	content: "";
	grid-column: 2/2;
	grid-row: 1/10;
	background-color: #E5E2E2;
	height: 100%;
}
@media screen and (max-width: 950px) {
	.group_parts-item:before {
		content: none;
	}
}
.group_parts-title {
	grid-column: 1/1;
	grid-row: 1/10;
	padding: 2em;
	margin: 1em 0;
	font-size: 18px;
	color: var(--theme_color);
}
@media screen and (max-width: 950px) {
	.group_parts-title {
		padding: 0;
		margin: 0 3em;
	}
}
.group_parts-data {
	grid-column: 3/3;
	margin: 0 3em;
	padding: 2em 0;
	border-bottom: solid 2px #E5E2E2;
	display: grid;
	grid-template: "name    pdf map" auto "address pdf map" auto "tel     pdf map" auto/1fr 9em 7em;
	align-items: center;
}
@media screen and (max-width: 750px) {
	.group_parts-data {
		display: block;
		padding: 1em 0;
	}
}
.group_parts-data:last-of-type {
	border-bottom: none;
}
.group_parts-name {
	grid-area: name;
	font-size: 20px;
}
@media screen and (max-width: 750px) {
	.group_parts-name {
		font-size: 17px;
		padding: 1em 0;
		line-height: 1;
	}
}
.group_parts-address {
	grid-area: address;
	line-height: 1.2;
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.group_parts-address {
		font-size: 13px;
	}
}
.group_parts-tel {
	grid-area: tel;
	line-height: 1.2;
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.group_parts-tel {
		font-size: 13px;
		padding-bottom: 1em;
	}
}
.group_parts-pdf {
	grid-area: pdf;
	color: #707070;
	z-index: 200;
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.group_parts-pdf {
		font-size: 15px;
		display: block;
	}
}
.group_parts-pdf:after {
	content: "";
	background-image: url("../img/common/icon-pdf.svg");
	background-size: cover;
	width: 24px;
	height: 24px;
	margin-left: 10px;
	vertical-align: middle;
	display: inline-block;
}
.group_parts-map {
	grid-area: map;
	font-size: 15px;
	z-index: 200;
	color: #707070;
}
.group_parts-map:after {
	content: "";
	background-image: url(../img/common/arrow-up.svg);
	background-size: cover;
	width: 10px;
	height: 10px;
	display: inline-block;
	margin-left: 3px;
}

.tab_parts {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
	gap: 0.3rem;
}
@media screen and (max-width: 750px) {
	.tab_parts {
		padding-top: 0;
	}
}
.tab_parts-title {
	order: -1;
	width: 15.8333333333%;
	min-width: 8em;
	text-align: center;
	background-color: #FDF9EB;
	color: var(--theme_color);
	border-color: var(--theme_color);
	border: 2px solid;
	border-radius: 50px;
	display: table;
	line-height: 1.5;
	height: 95px;
	transition: 0.3s;
	font-size: 20px;
	position: relative;
}
@media screen and (max-width: 1500px) {
	.tab_parts-title {
		width: 31.6666666667%;
	}
}
@media screen and (max-width: 750px) {
	.tab_parts-title {
		width: 48%;
		min-width: inherit;
		border-radius: 13px;
		font-size: 3.5vw;
		line-height: 1.3;
		border-width: 1px;
		padding: 0;
		height: 55px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
.tab_parts-title:hover {
	background-color: var(--theme_color);
	color: #fff;
}
.tab_parts-title:after {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin-left: -14px;
	display: none;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 14px solid transparent;
	border-left: 14px solid transparent;
	border-top: 24px solid #555555;
	border-top-color: var(--theme_color);
	border-bottom: 0;
}
@media screen and (max-width: 1500px) {
	.tab_parts-title:after {
		display: none;
	}
}
@media screen and (max-width: 750px) {
	.tab_parts-title:after {
		display: none;
	}
}
.tab_parts-checkbox {
	display: none;
}
.tab_parts-button {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}
@media screen and (max-width: 750px) {
	.tab_parts-button {
		height: auto;
	}
}
.tab_parts-title:has(.tab_parts-checkbox:checked) {
	background-color: var(--theme_color);
	color: white;
	font-weight: 500;
}
.tab_parts-title:has(.tab_parts-checkbox:checked):after {
	display: block;
}
@media screen and (max-width: 1500px) {
	.tab_parts-title:has(.tab_parts-checkbox:checked):after {
		display: none;
	}
}
@media screen and (max-width: 750px) {
	.tab_parts-title:has(.tab_parts-checkbox:checked):after {
		display: none;
	}
}
.tab_parts-title:has(.tab_parts-checkbox:checked) + .tab_parts-content {
	display: block;
}
.tab_parts-content {
	width: 100%;
	background-color: #FAF8C8;
	border-radius: 1rem;
	padding: 2rem;
	margin-top: 1em;
}
@media screen and (max-width: 750px) {
	.tab_parts-content {
		padding: 1rem 0.5em 1em 0.5em;
		margin-top: 0;
	}
}
.loaded .tab_parts-content {
	display: none;
}
.tab_parts-link {
	margin-top: 1em;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 10px 10px 10px 35px;
	background-color: var(--theme_color);
	color: white;
	text-decoration: none;
	border-radius: 1.2em;
	transition: 0.3s;
}
@media screen and (max-width: 750px) {
	.tab_parts-link {
		padding: 1em 2em;
		text-align: center;
		flex-wrap: wrap;
		justify-content: center;
		font-size: 4vw;
	}
}
.tab_parts-link:hover {
	opacity: 0.6;
}
.tab_parts-link:before {
	content: "";
	background-image: url(../img/recruitment/new_business_tab_icon.svg);
	width: 27px;
	height: 22px;
	background-size: cover;
	display: inline-block;
	margin-right: 15px;
}
@media screen and (max-width: 750px) {
	.tab_parts-link:before {
		margin-right: 10px;
	}
}
.tab_parts-link:after {
	content: "";
	width: 54px;
	height: 54px;
	border-radius: 20px;
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='m1.5,12h21' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/><path d='m12,1.5l10.5,10.5-10.5,10.5' transform='translate(0)' fill='none' stroke='%23F79B3E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/></svg>");
	background-size: 16px;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: white;
	opacity: 0.6;
	position: relative;
	display: block;
	margin: 0 0 0 auto;
}
@media screen and (max-width: 750px) {
	.tab_parts-link:after {
		margin: 10px auto 0 auto;
		border-radius: 15px;
	}
}

.job_desc {
	position: relative;
}
@media screen and (max-width: 750px) {
	.job_desc {
		display: flex;
		justify-content: space-between;
	}
}
.job_desc .slides {
	grid-gap: 0 2%;
	display: grid;
	grid-template: "time     salary holidays" auto "time      salary  holidays " auto "time      salary  .             " 1em "time      salary  license " auto "time      salary  license  " auto "time      salary  .             " auto ".              salary_data  .             " 1fr/32% 32% 32%;
}
@media screen and (max-width: 750px) {
	.job_desc .slides {
		width: calc(100% - 30px);
	}
}
@media screen and (max-width: 1280px) {
	.job_desc .slides {
		grid-template: "time     salary " auto "time      salary  " auto ".              .            " 1em "holidays license" auto "holidays  license " auto/auto auto;
	}
}
@media screen and (max-width: 750px) {
	.job_desc .slides {
		display: block;
		grid-template: "time    " auto ".             " 1em "salary  " auto ".             " 1em "holidays" auto "." 1em "license " auto/auto;
	}
}
.job_desc .p-goto-nav__lists {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 750px) {
	.job_desc .p-goto-nav__lists {
		display: block;
	}
}
.job_desc .p-goto-nav__lists li {
	writing-mode: vertical-lr;
	font-family: "M PLUS 1", sans-serif;
	font-size: 11px;
	background-color: #E5E2E2;
	border-radius: 20px;
	padding: 10px 0;
	margin-bottom: 5px;
}
.job_desc .p-goto-nav__lists li.act {
	background-color: #5A7AA6;
	color: #fff;
}

.job_desc_parts {
	/*display: grid;
	grid-template:
	    "time_title     salary_title holidays_title" auto
	    "time_data      salary_data  holidays_data " auto
	    "time_data      salary_data  .             " 1em
	    "time_data      salary_data  license_title " auto
	    "time_data      salary_data  license_data  " auto
	    "time_data      salary_data  .             " auto
	    ".              salary_data  .             " 1fr
	    /33%       33%         33%
	;
	@include mq(1280px){
	    grid-template:
	        "time_title     salary_title " auto
	        "time_data      salary_data  " auto
	        ".              .            " 1em
	        "holidays_title license_title" auto
	        "holidays_data  license_data " auto
	        /auto           auto
	    ;
	}
	@include mq(){
	    grid-template:
	        "time_title    " auto
	        "time_data     " auto
	        ".             " 1em
	        "salary_title  " auto
	        "salary_data   " auto
	        ".             " 1em
	        "holidays_title" auto
	        "holidays_data " auto
	        "."              1em
	        "license_title " auto
	        "license_data  " auto
	        /auto
	    ;
	}
	grid-gap: 0 1em;*/
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 750px) {
	.job_desc_parts {
		min-width: 200px;
	}
}
.job_desc_parts.time {
	grid-area: time;
}
.job_desc_parts.salary {
	grid-area: salary;
}
.job_desc_parts.holidays {
	grid-area: holidays;
}
.job_desc_parts.license {
	grid-area: license;
}
.job_desc_parts-time_title, .job_desc_parts-salary_title, .job_desc_parts-holidays_title, .job_desc_parts-license_title {
	font-size: 20px;
	color: white;
	padding: 1em 2em;
	border-radius: 1em 1em 0 0;
	background-color: var(--theme_color);
	height: 70px;
	display: flex;
	align-items: center;
}
@media screen and (max-width: 750px) {
	.job_desc_parts-time_title, .job_desc_parts-salary_title, .job_desc_parts-holidays_title, .job_desc_parts-license_title {
		font-size: 4.5vw;
		height: 55px;
		padding: 0.5em 0 0.35em 2em;
	}
}
.job_desc_parts-time_data, .job_desc_parts-salary_data, .job_desc_parts-holidays_data, .job_desc_parts-license_data {
	background-color: white;
	border: solid 3px var(--theme_color);
	border-radius: 0 0 1em 1em;
	padding: 1em;
	font-size: 16px;
	height: calc(100% - 70px);
}
@media screen and (max-width: 750px) {
	.job_desc_parts-time_data, .job_desc_parts-salary_data, .job_desc_parts-holidays_data, .job_desc_parts-license_data {
		font-size: 3.5vw;
		border-width: 2px;
		height: auto;
	}
}
.job_desc_parts-time_title {
	grid-area: time_title;
}
.job_desc_parts-time_title:before {
	content: url("../img/recruitment/clock_icon.svg");
	position: relative;
	top: 0.3em;
	left: -0.5em;
}
.job_desc_parts-time_data {
	grid-area: time_data;
}
.job_desc_parts-salary_title {
	grid-area: salary_title;
}
.job_desc_parts-salary_title:before {
	content: url("../img/recruitment/money_icon.svg");
	position: relative;
	top: 0.3em;
	left: -0.5em;
}
.job_desc_parts-salary_data {
	grid-area: salary_data;
}
.job_desc_parts-holidays_title {
	grid-area: holidays_title;
}
.job_desc_parts-holidays_title:before {
	content: url("../img/recruitment/sun_icon.svg");
	position: relative;
	top: 0.3em;
	left: -0.5em;
}
.job_desc_parts-holidays_data {
	grid-area: holidays_data;
}
.job_desc_parts-license_title {
	grid-area: license_title;
}
.job_desc_parts-license_title:before {
	content: url("../img/recruitment/study_icon.svg");
	position: relative;
	top: 0.3em;
	left: -0.5em;
}
.job_desc_parts-license_data {
	grid-area: license_data;
}
.job_desc_parts-sub_list {
	display: grid;
	grid-template-columns: auto 1fr;
}
@media screen and (max-width: 750px) {
	.job_desc_parts-sub_list {
		grid-template-columns: 1fr;
	}
}
.job_desc_parts-sub_title {
	color: var(--theme_color);
	padding: 0.5em 0;
	border-bottom: solid 1px #E5E2E2;
}
@media screen and (max-width: 750px) {
	.job_desc_parts-sub_title {
		border-bottom: none;
		padding-bottom: 0;
	}
}
.job_desc_parts-sub_title:last-of-type {
	border: none;
}
.job_desc_parts-sub_data {
	padding: 0.5em 0 0.5em 1em;
	border-bottom: solid 1px #E5E2E2;
}
@media screen and (max-width: 750px) {
	.job_desc_parts-sub_data {
		padding-left: 0;
		padding-top: 0;
	}
}
.job_desc_parts-sub_data:last-of-type {
	border: none;
}

.support_list_parts {
	display: grid;
	grid-template: ".   title    title .    " auto ".   catch    catch .    " auto ".   desc     desc  .    " auto ".   contents .     image" auto/1fr 7fr 1fr 6fr;
	align-items: center;
	padding: 8em 0;
}
@media screen and (max-width: 1280px) {
	.support_list_parts {
		margin-left: 1em;
	}
}
@media screen and (max-width: 750px) {
	.support_list_parts {
		grid-template: "title   " auto "catch   " auto "desc    " auto "image   " auto "contents" auto/1fr;
		padding: 2.5em 0;
	}
}
.support_list_parts-title {
	grid-area: title;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	line-height: 3;
	font-size: 20px;
	color: #C3BFBF;
}
.support_list_parts-title-wellness:before {
	content: url("../img/recruitment/support_wellness_icon.svg");
	position: relative;
	top: 0.6em;
	margin-right: 15px;
}
.support_list_parts-title-carrier:before {
	content: url("../img/recruitment/support_carrier_icon.svg");
	position: relative;
	top: 0.6em;
	margin-right: 15px;
}
.support_list_parts-catch {
	grid-area: catch;
	font-size: 30px;
	color: var(--theme_color);
	line-height: 1.3;
}
@media screen and (max-width: 750px) {
	.support_list_parts-catch {
		font-size: 6.5vw;
	}
}
.support_list_parts-desc {
	grid-area: desc;
	padding-top: 1em;
	font-size: 18px;
}
@media screen and (max-width: 750px) {
	.support_list_parts-desc {
		font-size: 3.5vw;
		padding-right: 5%;
	}
}
.support_list_parts-support_title {
	font-size: 20px;
	color: var(--theme_color);
	border-bottom: solid 1px;
	padding-top: 4em;
	margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
	.support_list_parts-support_title {
		font-size: 4.75vw;
		padding-left: 2em;
		text-indent: -2em;
		line-height: 1.1;
		padding-bottom: 10px;
		width: 95%;
	}
}
.support_list_parts-support_title-wellness:before {
	content: url("../img/recruitment/support_heart_icon.svg");
	padding-right: 12px;
	vertical-align: middle;
}
.support_list_parts-support_title-meeting:before {
	content: url("../img/recruitment/support_speech_icon.svg");
	padding-right: 12px;
	vertical-align: middle;
}
.support_list_parts-support_title-learning:before {
	content: url("../img/recruitment/support_book_icon.svg");
	padding-right: 12px;
	vertical-align: middle;
}
@media screen and (max-width: 750px) {
	.support_list_parts-support_desc {
		font-size: 3.5vw;
		padding-right: 5%;
	}
}
.support_list_parts-image {
	grid-area: image;
}
@media screen and (max-width: 750px) {
	.support_list_parts-image {
		padding-top: 2em;
	}
}
.support_list_parts-contents {
	grid-area: contents;
}
.support_list_parts-others {
	display: grid;
	grid-template: ". div ." auto/1fr 13fr 1fr;
	margin-block-end: clamp(3rem, 1.6rem + 4.375vw, 10rem);
}
.support_list_parts-others div {
	grid-area: div;
	border: 5px solid #7DD5D5;
	border-radius: 30px;
	display: flex;
	gap: clamp(1rem, 0.2rem + 2.5vw, 5rem);
	align-items: flex-start;
	padding-block: 10px;
	padding-inline: 7.5%;
}
@media screen and (max-width: 1100px) {
	.support_list_parts-others div {
		padding: 5%;
	}
}
@media screen and (max-width: 750px) {
	.support_list_parts-others div {
		border-radius: 20px;
		border-width: 3px;
		padding: 10% 7.5% 5% 7.5%;
		flex-direction: column;
	}
}
.support_list_parts-others div dl {
	margin: auto 0 12% 0;
}
@media screen and (max-width: 1600px) {
	.support_list_parts-others div dl {
		margin: auto 0;
	}
}
.support_list_parts-others div dl dt {
	padding-top: 0;
	color: #00ACA0;
}
.support_list_parts-others div dl dt:before {
	content: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223.964%22%20height%3D%2219.66%22%20viewBox%3D%220%200%2023.964%2019.66%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_112611%22%20data-name%3D%22%E3%83%91%E3%82%B9%20112611%22%20d%3D%22M466.285%2C140.691a.972.972%2C0%2C0%2C1-.523-.153l-3.054-1.947a35.419%2C35.419%2C0%2C0%2C1-4.338-3.331c-1.3-1.182-5.259-4.776-3.714-9.6a6.656%2C6.656%2C0%2C0%2C1%2C11.63-2.007%2C6.655%2C6.655%2C0%2C0%2C1%2C11.63%2C2.008c1.543%2C4.824-2.414%2C8.418-3.714%2C9.6a35.4%2C35.4%2C0%2C0%2C1-4.34%2C3.331l-3.054%2C1.947A.972.972%2C0%2C0%2C1%2C466.285%2C140.691Zm-5.3-17.713a4.716%2C4.716%2C0%2C0%2C0-4.478%2C3.275c-1.163%2C3.633%2C1.872%2C6.39%2C3.168%2C7.567a33.247%2C33.247%2C0%2C0%2C0%2C4.077%2C3.131l2.531%2C1.614%2C2.531-1.614a33.28%2C33.28%2C0%2C0%2C0%2C4.077-3.13c1.3-1.178%2C4.331-3.934%2C3.169-7.566a4.708%2C4.708%2C0%2C0%2C0-8.871-.277.973.973%2C0%2C0%2C1-1.812%2C0%2C4.719%2C4.719%2C0%2C0%2C0-4.392-3Z%22%20transform%3D%22translate(-454.303%20-121.031)%22%20fill%3D%22%2300aca0%22%2F%3E%3C%2Fsvg%3E");
}

@media screen and (max-width: 1280px) {
	.person_detail_parts {
		display: flex;
		flex-flow: column-reverse;
		overflow: hidden;
		margin-bottom: 50px;
	}
}
.person_detail_parts-profile {
	background-image: url("../img/paint-white.svg");
	line-height: 1;
	background-size: contain;
	background-repeat: no-repeat;
	padding-top: 10%;
	padding-bottom: 10%;
	padding-right: 15%;
	padding-left: 20%;
	position: absolute;
	left: -8em;
}
@media screen and (max-width: 1280px) {
	.person_detail_parts-profile {
		position: relative;
		top: -8em;
		width: 1200px;
		z-index: -1;
		margin-bottom: -8em;
		padding-top: 20%;
		padding-bottom: 20%;
		padding-right: 15%;
		padding-left: 30%;
	}
}
@media screen and (max-width: 750px) {
	.person_detail_parts-profile {
		position: relative;
		top: 0;
		width: 1200px;
		z-index: -1;
		margin-bottom: 0%;
		padding-top: 19.5em;
		padding-bottom: 30%;
		padding-right: 10%;
		padding-left: 45%;
		margin-top: -18em;
		background-position: center bottom;
	}
}
.person_detail_parts-image {
	grid-area: image;
	height: 80vh;
	margin-left: auto;
}
@media screen and (max-width: 1280px) {
	.person_detail_parts-image {
		height: auto;
		margin-left: 1em;
	}
}
.person_detail_parts-roll {
	font-size: 18px;
	padding: 0.5em 2em;
	background-color: var(--theme_color);
	color: white;
	width: fit-content;
	border-radius: 3px;
}
.person_detail_parts-name_en {
	font-family: "Montserrat", sans-serif;
	font-size: 80px;
	font-weight: 500;
	color: var(--theme_color);
	padding-top: 15px;
	padding-bottom: 15px;
	letter-spacing: 10px;
}
@media screen and (max-width: 750px) {
	.person_detail_parts-name_en {
		font-size: 40px;
	}
}
.person_detail_parts-job {
	font-size: 16px;
	margin-bottom: 10px;
}
.person_detail_parts-name_jp {
	font-size: 26px;
}
.person_detail_parts-supplement {
	display: grid;
	grid-template-columns: max-content 300px;
	grid-gap: 1.25em;
	padding-top: 50px;
	justify-content: start;
	font-size: 16px;
}
.person_detail_parts-supplement_title {
	color: var(--theme_color);
}

.simple_frame_parts {
	background-color: white;
	border: solid 10px #F4E1DB;
	border-radius: 2em;
	padding: 3em;
}
@media screen and (max-width: 1280px) {
	.simple_frame_parts {
		width: 95%;
		margin: auto;
	}
}
@media screen and (max-width: 750px) {
	.simple_frame_parts {
		width: auto;
		padding: 2em;
		margin: auto 1em;
	}
}
.simple_frame_parts-title {
	font-size: 20px;
	color: var(--theme_color);
	padding-bottom: 1em;
}
.simple_frame_parts-underline_text {
	background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 97.5%, #856995 100%);
	background-size: 8px 100%, 100% 2em;
}

.filtering_parts {
	margin: 0 auto;
	display: block;
	width: fit-content;
	max-width: 1200px;
	width: 90%;
}
@media screen and (max-width: 800px) {
	.filtering_parts {
		width: calc(100% - 9em);
	}
}
.filtering_parts-title {
	font-size: 14px;
}
.filtering_parts-item {
	display: inline-block;
	position: relative;
	left: 6em;
	font-size: 15px;
	width: 7em;
	text-align: center;
	background: #8B8B8B;
	color: white;
	border-radius: 2em;
	margin: 0 0.5em;
	top: -2.2em;
	opacity: 0.3;
}
.filtering_parts-item-daily {
	background-color: rgba(var(--blog-daily_color_rgb), 1);
}
.filtering_parts-item-news {
	background-color: rgba(var(--blog-news_color_rgb), 1);
}
.filtering_parts-item-event {
	background-color: rgba(var(--blog-event_color_rgb), 1);
}
.filtering_parts-item-current {
	opacity: 1;
}
.filtering_parts-item a {
	text-decoration: none;
	color: white;
}
.filtering_parts-item-year:has([aria-current=page]) {
	opacity: 1;
}
.filtering_parts-link {
	text-decoration: none;
	color: white;
}

.interview_list_parts {
	/*
	display: grid;
	//grid-template:
	//    "item1 .    " auto
	//    "item1 item2" auto
	//    ".     item2" auto
	//    "item3 item2" auto
	//    "item3 .    " auto
	//    "item3 item4" auto
	//    ".     item4" auto
	//    "item5 item4" auto
	//    "item5 .    " auto
	//    /1fr   1fr
	//;
	grid-template:
	    ".   .      .   .     . " 50px
	    ".   item1  .   .     . " auto
	    ".   item1  .   item2 . " auto
	    ".   .      .   item2 . " auto
	    ".   item3  .   item2 . " auto
	    ".   item3  .   .     . " auto
	    ".   item3  .   item4 . " auto
	    ".   .      .   item4 . " auto
	    ".   item5  .   item4 . " auto
	    ".   item5  .   .     . " auto
	    ".   item5  .   item6 . " auto
	    ".   .      .   item6 . " auto
	    ".   item7  .   item6 . " auto
	    ".   item7  .   .     . " auto
	    ".   item7  .   item8 . " auto
	    ".   .      .   .     . " 50px
	    /2fr 6fr    0.3fr 6fr   2fr
	;
	*/
	display: flex;
	flex-wrap: wrap;
	max-width: 1300px;
	width: 90%;
	margin: 150px auto;
	list-style: none;
	gap: 0 5em;
}
@media screen and (max-width: 1280px) {
	.interview_list_parts {
		grid-template: "." 5vw "item1" auto "item2" auto "item3" auto "item4" auto "item5" auto "." 20vw/1fr;
		gap: 0;
	}
}
.interview_list_parts-item:nth-of-type(1) {
	grid-area: item1;
}
.interview_list_parts-item:nth-of-type(2) {
	grid-area: item2;
}
.interview_list_parts-item:nth-of-type(3) {
	grid-area: item3;
}
.interview_list_parts-item:nth-of-type(4) {
	grid-area: item4;
}
.interview_list_parts-item:nth-of-type(5) {
	grid-area: item5;
}
.interview_list_parts-item:nth-of-type(6) {
	grid-area: item6;
}
.interview_list_parts-item:nth-of-type(7) {
	grid-area: item7;
}
.interview_list_parts-item:nth-of-type(8) {
	grid-area: item8;
}
.interview_list_parts-item:nth-of-type(9) {
	grid-area: item9;
}
.interview_list_parts-item:nth-of-type(10) {
	grid-area: item10;
}
.interview_list_parts-item {
	background-image: url("../img/interview/zabuton.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 100%;
	width: 50%;
	margin-top: -15vw;
	transition: all 2s ease-out;
}
.interview_list_parts-item:nth-of-type(1) {
	margin-top: 0;
}
.interview_list_parts-item:nth-of-type(even) {
	margin-right: 0;
	margin-left: auto;
}
.interview_list_parts-item-animate_ready {
	transform: translatey(20%);
	opacity: 0;
}
@media screen and (max-width: 1280px) {
	.interview_list_parts-item {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	.interview_list_parts-item {
		width: 95%;
		margin: 0 auto;
	}
}
.interview_list_parts-link {
	margin: 6em auto;
}
@media screen and (max-width: 750px) {
	.interview_list_parts-link {
		margin: 1em auto;
	}
}
.interview_list_parts-link:after {
	position: absolute;
	right: 0;
	bottom: 0.5em;
	content: "→";
	font-size: 2em;
	border: solid 1px var(--theme_color);
	display: block;
	width: 2em;
	height: 2em;
	text-align: center;
	border-radius: 0.6em;
	color: var(--theme_color);
}

.interview_link_parts-link {
	text-decoration: none;
	color: var(--text_color);
	position: relative;
	display: block;
	padding-top: 40px;
	transition: 0.3s;
}
.interview_link_parts-link .num {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
	gap: 5px;
}
.interview_link_parts-link .num em {
	display: inline-block;
}
.interview_link_parts-link .num span {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 30px;
	line-height: 1;
}
.interview_link_parts-link .cap {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
	font-size: 20px;
	line-height: 1.1;
	font-family: "M PLUS 1", sans-serif;
	font-weight: 500;
	color: var(--interview-theme_color);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 4;
}
.interview_link_parts-link .cap span {
	flex-basis: auto;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-o-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	border: 3px solid var(--interview-theme_color);
	border-radius: 10px;
	padding: 20px 7px;
	background-color: #fff;
}
@media screen and (max-width: 750px) {
	.interview_link_parts-link .cap span {
		text-align: center;
		width: 42px;
		white-space: nowrap;
	}
}
.interview_link_parts-link .cap span:nth-of-type(2) {
	margin-top: 20px;
}
.interview_link_parts-link dl {
	position: relative;
}
.interview_link_parts-link dl dt {
	position: absolute;
	left: 0;
	bottom: 10%;
	z-index: 3;
}
.interview_link_parts-link dl dt span {
	min-width: 150px;
	padding: 0 10px;
	font-size: 18px;
	color: #fff;
	background-color: var(--interview-theme_color);
	display: block;
	text-align: center;
	border-radius: 3px;
}
.interview_link_parts-link dl dd {
	aspect-ratio: 262/357;
	width: 100%;
	transition: 0.3s;
	position: relative;
}
.interview_link_parts-link dl dd img.img {
	position: absolute;
	top: 0;
	z-index: 2;
	transition: 0.3s;
}
.interview_link_parts-link dl dd img.imgon {
	top: 0;
}
.interview_link_parts-link:hover dl dd .img {
	opacity: 0;
}
.interview_link_parts-img {
	height: 50vh;
}
.interview_link_parts-img-mouse_on {
	height: 50vh;
	display: none;
}
.interview_link_parts-no {
	writing-mode: vertical-rl;
	position: absolute;
	top: 0;
	left: 0;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}
.interview_link_parts-no_alpha {
	font-size: 14px;
}
.interview_link_parts-no_num {
	font-size: 30px;
	writing-mode: horizontal-tb;
}
.interview_link_parts-roll {
	position: absolute;
	top: 450px;
	font-size: 18px;
	background-color: var(--theme_color);
	padding: 0.2em 1.5em;
	width: fit-content;
	border-radius: 3px;
	color: white;
}
@media screen and (max-width: 750px) {
	.interview_link_parts-roll {
		top: 350px;
	}
}
.interview_link_parts-flaze {
	writing-mode: vertical-lr;
	font-size: 20px;
	color: var(--theme_color);
}
.interview_link_parts-flaze_line1, .interview_link_parts-flaze_line2 {
	padding: 1em 0.2em;
	border: solid 3px var(--theme_color);
	border-radius: 0.7em;
	background-color: white;
}
.interview_link_parts-flaze_line1 {
	position: absolute;
	top: 0;
	right: -1em;
}
.interview_link_parts-flaze_line2 {
	position: absolute;
	top: 1em;
	right: 2em;
}
.interview_link_parts-name_en {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 30px;
	font-weight: 500;
	color: var(--theme_color);
	line-height: 1;
}
.interview_link_parts-name_jp {
	display: block;
	font-size: 20px;
}

.interview_slider_parts {
	/*display: flex;
	list-style: none;
	gap: 3em;
	width: 100%;
	overflow-y: scroll;
	padding: 0 50px;*/
}
.interview_slider_parts-item {
	margin: 0 0.75%;
}
@media screen and (max-width: 750px) {
	.interview_slider_parts-item {
		margin: 0 0 0 1%;
	}
}
.interview_slider_parts .slick-list {
	padding: 0 12% 0 0 !important;
}
@media screen and (max-width: 750px) {
	.interview_slider_parts .slick-list {
		padding: 0 20% 0 0 !important;
	}
}

.video_link_parts {
	display: grid;
	grid-template: "thumb thumb" auto "title media" auto/1fr 1fr;
}
.video_link_parts-thumb {
	grid-area: thumb;
	margin: 25px 0;
}
@media screen and (max-width: 750px) {
	.video_link_parts-thumb {
		margin: 15px 0;
	}
}
.video_link_parts-title {
	grid-area: title;
	font-size: 20px;
	font-weight: bold;
}
.video_link_parts-media {
	grid-area: media;
	font-size: 16px;
	font-family: "Overpass", sans-serif;
	font-weight: 300;
	text-decoration: underline;
	text-align: center;
}
.video_link_parts-media:after {
	content: "";
	background-image: url(../img/common/arrow-up.svg);
	background-size: cover;
	width: 10px;
	height: 10px;
	display: inline-block;
	margin-left: 10px;
}

.articles_list_parts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5em;
	--theme_color: 139,139,139;
}
.articles_list_parts:after {
	content: "";
	width: 380px;
	min-width: 300px;
}
@media screen and (max-width: 500px) {
	.articles_list_parts:after {
		min-width: 250px;
		width: 100%;
	}
}
.articles_list_parts-item {
	background-color: white;
	border: solid 16px rgba(var(--theme_color), 0.15);
	border-radius: 2em;
	padding: 22px;
	width: 380px;
	min-width: 300px;
	max-width: 380px;
	flex: 1;
}
.articles_list_parts-item-event {
	--theme_color: var(--blog-event_color_rgb);
}
.articles_list_parts-item-news {
	--theme_color: var(--blog-news_color_rgb);
}
.articles_list_parts-item-daily {
	--theme_color: var(--blog-daily_color_rgb);
}
@media screen and (max-width: 500px) {
	.articles_list_parts-item {
		min-width: 250px;
		width: 100%;
	}
}
.articles_list_parts-link {
	display: grid;
	grid-template: "img   img      " auto "date  category" auto "title title  " auto/1fr 110px;
	grid-gap: 1em;
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}
.articles_list_parts-link:hover {
	opacity: 0.6;
}
.articles_list_parts-img {
	width: auto;
	grid-area: img;
}
.articles_list_parts-date {
	grid-area: date;
	font-size: 15px;
	color: #8B8B8B;
}
.articles_list_parts-category {
	grid-area: category;
	background-color: rgba(var(--theme_color), 1);
	color: white;
	border-radius: 1em;
	text-align: center;
	font-size: 15px;
}
.articles_list_parts-title {
	font-size: 20px;
	padding-bottom: 1em;
	grid-area: title;
	font-size: 18px;
	background-color: #fff;
	background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 97.5%, #856995 100%);
	background-size: 8px 100%, 100% 2em;
}

.formal_text_parts-title_area {
	max-width: 1200px;
	margin: auto;
	text-align: center;
	padding: 1.5rem;
	background-color: white;
	margin-bottom: 1em;
}
.formal_text_parts-main_title {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 50px;
	font-weight: bold;
	text-transform: uppercase;
}
.formal_text_parts-sub_title {
	display: block;
	font-size: 20px;
}
.formal_text_parts-content_area {
	max-width: 1200px;
	margin: auto;
	padding: 9rem;
	background-color: white;
}
@media screen and (max-width: 750px) {
	.formal_text_parts-content_area {
		padding: 2em;
	}
}
.formal_text_parts-paragraph_title {
	font-size: 26px;
	color: var(--theme_color);
	border-bottom: solid 1px var(--theme_color);
	margin: 2em 0 0.5em 0;
}
.formal_text_parts-paragraph_text {
	font-size: 16px;
}
.formal_text_parts-sub_section {
	padding: 1.5em;
	margin: 4em 0;
	border: solid 1px var(--theme_color);
}
.formal_text_parts-sub_section_title {
	font-size: 26px;
	color: var(--theme_color);
}
.formal_text_parts-button {
	margin: auto;
	display: block;
	width: 15em;
}

.blog_contents_parts {
	max-width: 1000px;
	margin: 5% auto 25px auto;
	padding: 10em 10em 5em 10em;
	border-color: rgba(var(--theme_color), 0.15);
	display: grid;
	grid-template: "date    category .      " auto "title   title    title  " auto "content content  content" auto ".       .        .      " 4em "sns     sns      sns    " auto "tag     tag      tag    " auto/auto auto 1fr;
	align-items: center;
	grid-gap: 1em;
}
.blog_contents_parts--daily {
	--theme_color: var(--blog-daily_color_rgb);
}
.blog_contents_parts--event {
	--theme_color: var(--blog-event_color_rgb);
}
.blog_contents_parts--news {
	--theme_color: var(--blog-news_color_rgb);
}
@media screen and (max-width: 750px) {
	.blog_contents_parts {
		padding: 3em 1em;
		padding-top: 6em;
		grid-template: "date    category .      " auto "title   title    title  " auto "content content  content" auto "sns     sns      sns    " auto "tag     tag      tag    " auto/auto auto 1fr;
	}
}
.blog_contents_parts-back_button {
	position: absolute;
	top: 1em;
	left: 1em;
}
@media screen and (max-width: 750px) {
	.blog_contents_parts-back_button {
		font-size: 13px;
		top: 0;
		margin-top: 1em;
		padding: 0.5em 3.5em;
	}
}
.blog_contents_parts-date {
	grid-area: date;
	font-size: 15px;
	color: #8B8B8B;
}
.blog_contents_parts-category {
	grid-area: category;
	padding: 0.1em 1em;
	background-color: rgba(var(--theme_color), 1);
	border-radius: 1em;
	color: white;
}
@media screen and (max-width: 750px) {
	.blog_contents_parts-category {
		font-size: 15px;
	}
}
.blog_contents_parts-title {
	grid-area: title;
	font-size: 40px;
	line-height: 1.5;
	color: #5D5D5D;
}
@media screen and (max-width: 750px) {
	.blog_contents_parts-title {
		font-size: 25px;
	}
}
.blog_contents_parts-content {
	grid-area: content;
	color: #5D5D5D;
}
@media screen and (max-width: 750px) {
	.blog_contents_parts-content {
		font-size: 15px;
	}
}
.blog_contents_parts-tag_list {
	grid-area: tag;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	color: #5d5d5d;
	gap: 1em;
}
.blog_contents_parts-tag_item:before {
	content: "#";
}

.blog_navigation_parts {
	max-width: 1000px;
	margin: 1em auto;
	display: grid;
	grid-template: "prev .   return .   next" auto/5em 1fr auto 1fr 5em;
	justify-content: space-between;
	font-weight: normal;
	font-size: 16px;
	color: #5d5d5d;
}
@media screen and (max-width: 1200px) {
	.blog_navigation_parts {
		margin: 1em 10px;
	}
}
@media screen and (max-width: 750px) {
	.blog_navigation_parts {
		margin: 1em 5%;
	}
}
.blog_navigation_parts-prev {
	grid-area: prev;
	color: inherit;
}
.blog_navigation_parts-prev:before {
	content: "←";
}
.blog_navigation_parts-next {
	grid-area: next;
	color: inherit;
}
.blog_navigation_parts-next:after {
	content: "→";
}
.blog_navigation_parts-return {
	grid-area: return;
}
@media screen and (max-width: 750px) {
	.blog_navigation_parts-return {
		margin-top: 4em;
	}
}

.business_anime_parts {
	position: relative;
	width: 75%;
	overflow: hidden;
	top: 0;
	right: 0;
	margin-top: -40vh;
}
@keyframes business_anime_parts {
	from {
		left: 0;
	}
	to {
		left: -3000%;
	}
}
@media screen and (max-width: 750px) {
	.business_anime_parts {
		width: 120%;
		aspect-ratio: 0.9;
		margin-top: 0;
		transform: translateX(-7%);
	}
}
.business_anime_parts-img {
	position: absolute;
	height: 100%;
	max-width: none;
	left: 0;
	animation: business_anime_parts 3s steps(30) 1s forwards;
}
.business_anime_parts-img-animate_ready {
	animation: none;
}

.company_anime_parts {
	aspect-ratio: 1;
	position: relative;
	width: 70%;
	overflow: hidden;
	top: 0;
	right: 0;
	margin-top: -23vh;
}
@keyframes business_anime_parts {
	from {
		left: 0;
	}
	to {
		left: -3000%;
	}
}
@media screen and (max-width: 750px) {
	.company_anime_parts {
		width: 105%;
		top: 0;
		right: 2.5%;
		margin-top: 0;
	}
}
.company_anime_parts-img {
	position: absolute;
	height: 100%;
	max-width: none;
	left: 0;
	animation: business_anime_parts 3s steps(30) 1s forwards;
}
.company_anime_parts-img-animate_ready {
	animation: none;
}

.recruitment_anime_parts {
	aspect-ratio: 1;
	position: relative;
	width: 80%;
	overflow: hidden;
}
@keyframes recruitment_anime_parts {
	from {
		left: 0;
	}
	to {
		left: -3000%;
	}
}
@media screen and (max-width: 750px) {
	.recruitment_anime_parts {
		width: 100%;
	}
}
.recruitment_anime_parts-img {
	position: absolute;
	height: 100%;
	max-width: none;
	left: 0;
	animation: business_anime_parts 3s steps(30) 1s forwards;
}
.recruitment_anime_parts-img-animate_ready {
	animation: none;
}

.blog_pager_parts {
	display: flex;
	list-style: none;
	gap: 1.5em;
	justify-content: center;
	padding: 120px 0 1em 0;
}
@media screen and (max-width: 750px) {
	.blog_pager_parts {
		padding: 5% 0 10% 0;
	}
}
.blog_pager_parts-link, .blog_pager_parts a, .blog_pager_parts span {
	color: #8B8B8B;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: bold;
	border: solid 1px #C3BFBF;
	border-radius: 10px;
	display: block;
	text-align: center;
	width: 2.5em;
	height: 2.5em;
	line-height: 2.5em;
	text-decoration: none;
}
.blog_pager_parts-link-current, .blog_pager_parts-link.current, .blog_pager_parts a-current, .blog_pager_parts a.current, .blog_pager_parts span-current, .blog_pager_parts span.current {
	border: none;
	color: #C3BFBF;
	pointer-events: none;
}

.interview_slider_controler_parts {
	grid-area: controler;
	display: flex;
	gap: 25px;
	align-items: center;
	justify-content: center;
	padding: 50px 0;
}
@media screen and (max-width: 750px) {
	.interview_slider_controler_parts {
		padding: 20px 0 40px 0;
	}
}
.interview_slider_controler_parts-left_button:before {
	content: "";
	display: inline-block;
	cursor: pointer;
	background-image: url(../img/interview_left.svg);
	background-size: contain;
	width: 80px;
	height: 80px;
}
.interview_slider_controler_parts-indicator {
	display: block;
	width: 30px;
	height: 3px;
	background-color: #E5E2E2;
}
.interview_slider_controler_parts-indicator-active {
	background-color: #CB5229;
}
.interview_slider_controler_parts-right_button:before {
	content: "";
	cursor: pointer;
	display: inline-block;
	background-image: url(../img/interview_right.svg);
	background-size: contain;
	width: 80px;
	height: 80px;
}
.interview_slider_controler_parts .slick-prev, .interview_slider_controler_parts .slick-next {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 94px;
	height: 94px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
	position: relative;
}
@media screen and (max-width: 750px) {
	.interview_slider_controler_parts .slick-prev, .interview_slider_controler_parts .slick-next {
		width: 70px;
		height: 70px;
	}
}
.interview_slider_controler_parts .slick-prev:before, .interview_slider_controler_parts .slick-next:before {
	content: "";
	background-color: rgba(204, 82, 41, 0.1);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: block;
	transition: 0.3s;
}
.interview_slider_controler_parts .slick-prev:after, .interview_slider_controler_parts .slick-next:after {
	content: "";
	width: 20px;
	height: 20px;
	border-top: 3px solid var(--interview-theme_color);
	border-left: 3px solid var(--interview-theme_color);
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -10px 0 0 -11px;
}
@media screen and (max-width: 750px) {
	.interview_slider_controler_parts .slick-prev:after, .interview_slider_controler_parts .slick-next:after {
		width: 15px;
		height: 15px;
		margin: -7px 0 0 -9px;
	}
}
.interview_slider_controler_parts .slick-prev:hover:before, .interview_slider_controler_parts .slick-next:hover:before {
	transform: scale(1.1);
}
.interview_slider_controler_parts .slick-next:after {
	transform: rotate(135deg);
}
.interview_slider_controler_parts .slick-prev:after {
	transform: rotate(-45deg);
}/*# sourceMappingURL=parts.css.map */