@charset "utf-8";

/*----------------------------------------------
	他ページからのページ内リンク時のみローダーをつけたいときはこちら
---------------------------------------------*/
/* デフォルトは表示（通常アクセス時は何もしない） */
.l_wrapper {
	opacity: 1;
}

#l_loader {
	display: none;
	/* 通常時は消しておく */
}

/* Breadcrumb */
.l_bread {
	margin: 5px 0;
	padding: var(--padding-container);
}

.l_bread a {
	color: var(--accent-one);
	transition: .3s;
}

.l_bread span {
	color: var(--accent-one);
	text-wrap: nowrap;
	white-space: wrap;
	font-size: 1.25em;
	font-weight: 400;
}

.l_bread span:last-child {
	text-wrap: wrap;
	font-weight: 600;
	color: var(--primary-color);
}

.l_bread a:hover {
	color: var(--primary-color);
}

.l_bread span+span:before {
	content: "＞";
	color: #858585;
	margin: .5em;
}


/* ハッシュがある時だけJSでこのクラスをhtml等に付与する */
.is-hash-access .l_wrapper {
	opacity: 0;
}

.is-hash-access #l_loader {
	display: flex;
	/* ハッシュがある時だけ表示 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	justify-content: center;
	align-items: center;
}

/* 読み込み完了後のアニメーション */
.is-hash-access .is-loaded .l_wrapper {
	opacity: 1;
	transition: opacity 0.5s ease;
}

.is-hash-access #l_loader.is-hide {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
	overflow: hidden;
}

/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: 1260px;
	margin: auto;
}

@media screen and (max-width: 1280px) {
	.l_wrap {
		width: 95%;
	}
}

/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	background: transparent;
	padding: 20px;
	justify-content: space-between;
	align-items: center;
}

.l_header.active_header {
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255);
	transition: all .3s ease-in-out;
}

.l_header_description {
	margin-bottom: 5px;
	font-size: 0.875em;
}

/*  .l_logo
---------------------------------------------*/
.l_logo {
	font-size: 2.1875em;
	font-weight: 900;
	line-height: 1;
}

.l_logo a {
	display: flex;
	align-items: center;
	color: var(--primary-accent);
}

.l_logo img {
	width: 50px;
	margin-right: 8px;
}

/*  .l_nav
---------------------------------------------*/
.l_nav_list {
	display: flex;
	align-items: center;
	font-size: 1.125em;
}

.l_nav_list>li {
	margin-left: 50px;
}

.l_nav_list a {
	position: relative;
	color: var(--dark-color);
	transition: 0.3s;
}

.l_nav_list a:hover {
	color: var(--primary-accent);
}

.l_nav_list a.active-link {
	color: var(--primary-accent);
	font-weight: 600;
}

.is_nav_contact {
	min-width: 260px;
}

.is_active {
	color: var(--primary-accent) !important;
}

.is_nav_contact .is_active {
	color: var(--light-color) !important;
}

.is_nav_contact .is_active:hover {
	color: var(--primary-accent) !important;
}

.c_btn a {
	position: relative;
	display: block;
	padding: 0.7em 50px 0.8em 1em;
	background-color: var(--primary-accent);
	border: 1px solid var(--primary-accent);
	border-radius: 5px;
	color: #fff;
	text-align: left;
	text-decoration: none;
}

.c_btn a,
.c_btn a * {
	transition: all 0.3s ease;
}

.c_btn a:hover {
	background-color: #fff;
	color: var(--primary-accent);
}

/* option - width */
.is_btn_width a {
	width: 260px;
}

/* option - auto */
.is_btn_auto a {
	margin-inline: auto;
}

/* option - icon */
.c_btn_icon {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: calc(100% - 20px);
	margin: auto;
	border-left: 1px solid #fff;
}

.c_btn a:hover .c_btn_icon {
	border-left-color: var(--primary-accent);
}

.c_btn_svg {
	width: 24px;
	height: 100%;
	fill: #fff;
}

.c_btn a:hover .c_btn_svg {
	fill: var(--primary-accent);
}

.l_sptab_burger {
	display: none;
	z-index: 99;
}

@media screen and (max-width: 1280px) {
	.l_nav_list>li {
		margin-left: 20px;
	}

	.is_nav_contact {
		min-width: 200px;
	}
}

@media screen and (max-width: 1024px) {
	.l_header {
		padding: 10px 20px;
	}

	.l_logo img {
		width: 40px;
		margin-right: 5px;
	}
}

@media screen and (max-width: 960px) {
	.l_nav_list {
		flex-direction: column;
	}

	.l_nav_list a {
		color: #fff;
	}

	.l_nav_list>li {
		margin-left: 0px;
		width: 100%;
		max-width: 300px;
		margin: auto;
		padding: 10px 20px;
	}

	.drawer-menu {
		position: fixed;
		top: 0;
		left: 100%;
		height: 100%;
		width: 100%;
		transition: all 0.5s ease-in-out 0s;
		background-color: rgba(0, 0, 0, 0.8);
		z-index: 20;
	}

	.active .drawer-menu {
		left: 0%;
	}

	.drawer-menu-list {
		margin-top: 100px;
	}

	.drawer-menu-item-link {
		display: block;
		text-align: center;
		color: #fff;
		padding: 10px 20px;
	}

	.l_sptab_burger {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 40px;
		height: 40px;
		border-radius: 10px;
		background: var(--primary-accent);
		cursor: pointer;
	}

	.l_sptab_burger-top,
	.l_sptab_burger-middle,
	.l_sptab_burger-bottom {
		width: 20px;
		height: 2px;
		border-radius: 2px;
		position: absolute;
		transition: .3s;
		background: var(--light-color);
	}

	.l_sptab_burger-top {
		transform: translateY(-7px);
	}

	.l_sptab_burger-bottom {
		transform: translateY(7px);
	}

	.active .l_sptab_burger-top {
		transform: rotate(45deg);
	}

	.active .l_sptab_burger-middle {
		opacity: 0;
	}

	.active .l_sptab_burger-bottom {
		transform: rotate(-45deg);
	}

}

@media (max-width: 500px) {
	.l_logo {
		font-size: 1.8rem;
	}

	.l_header_description {
		font-size: 1rem;
	}
}

/*----------------------------------------------
	.l_footer　必要なら復活
---------------------------------------------*/

.l_footer_logo {
	width: 100%;
	max-width: 150px;
	height: auto;
}

.l_footer_nav li {
	list-style-type: disc !important;
	color: #fff;
	cursor: pointer;
	transition: all .3s;
}

.l_footer_nav {
	width: 100%;
	max-width: 190px;
}

.l_footer_nav li a {
	transition: all .3s;
}

.l_footer_nav li:hover,
.l_footer_nav li:hover a {
	color: var(--dark-color);
}

.is_footer_btn {
	max-width: 300px;
}

.c_footer_btn a {
	position: relative;
	display: block;
	padding: 0.7em 100px 0.8em 1em;
	background-color: var(--light-color);
	border: 1px solid var(--light-color);
	border-radius: 5px;
	color: var(--primary-accent);
	text-align: left;
	text-decoration: none;
}

.c_footer_btn a,
.c_footer_btn a * {
	transition: all 0.3s ease;
}

.c_footer_btn a:hover {
	background-color: var(--primary-accent);
	color: var(--light-color);
}

.c_footer_btn_icon {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: calc(100% - 20px);
	margin: auto;
	border-left: 1px solid var(--primary-accent);
}

.c_footer_btn_svg {
	width: 24px;
	height: 100%;
	fill: var(--primary-accent);
}

.c_footer_btn a:hover .c_footer_btn_icon {
	border-left-color: var(--light-color);
}

.c_footer_btn a:hover .c_footer_btn_svg {
	fill: var(--light-color);
}

.l_footer_top {
	position: absolute;
	right: 0;
	top: -40%;
	border-radius: 5px 5px 0 0;
	z-index: 90;
	cursor: pointer;
}

.l_footer_top_icon {
	width: 24px;
	height: 24px;
	transform: rotate(270deg);
	fill: var(--light-color);
}

@media (max-width: 1000px) {
	.l_footer .c_right_container {
		gap: 0;
		flex-direction: column;
		align-items: end;
	}

	.l_footer_top {
		top: -35%;
	}
}

@media (max-width: 960px) {
	.l_footer_top {
		top: -28%;
	}

	.l_footer_contact_left {
		font-size: 2em;
	}
}

@media (max-width: 768px) {
	.l_footer_top {
		top: -27%;
	}
}

@media (max-width: 500px) {
	.l_footer_logo {
		max-width: 150px;
	}

	.c_footer_btn_svg {
		width: 50px;
		height: 20px;
	}
}

@media (max-width: 400px) {
	.l_footer_top {
		top: -23%;
	}
}

/* Contact */
.form_wrap {
	width: 100%;
	margin: auto;
}

.field_label {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* ==========================================================================
   LAYOUT: Contact Page (.l_contact_*)
   ========================================================================== */

.l_contact_container,
.p_contact_container {
	position: relative;
}

.l_contact_form_wrap,
.form_wrap {
	width: 100%;
}

.l_contact_info,
.p_contact_information {
	margin-bottom: 30px;
}

.l_contact_info br,
.p_contact_information br {
	display: none;
}

.label_text {
	margin-bottom: 10px;
	color: var(--blk-color);
	font-family: var(--primary-font);
	font-size: 1.5em;
	font-style: normal;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 1.2px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.required_badge {
	border-radius: 10px;
	background: var(--primary-accent);
	padding: 10px 20px;
	color: var(--light-color);
	font-family: var(--primary-font);
	font-size: .7em;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.8px;
}

.postal p {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.postal input {
	width: 50%;
}

input,
textarea {
	width: 100%;
	border-radius: 10px;
	background: var(--gy-color);
	border: none;
	padding: 10px 20px;
	color: var(--dark-color);
	font-family: var(--primary-font);
	font-size: 1.2em;
	font-style: normal;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 1.2px;
}

input::placeholder,
textarea::placeholder {
	font-size: 1.2em;
	font-weight: 400 !important;
}

.wpcf7-form-control-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.l_contact_terms,
.terms_text {
	width: 100%;
	height: 280px;
	max-width: 600px;
	overflow-y: auto;
	border: 1px solid var(--dark-color);
	margin: auto;
}

.ttl-inquire {
	color: var(--dark-color);
	font-family: var(--primary-font);
	font-style: normal;
	line-height: 30px;
	letter-spacing: 1px;
}

.ttl-inquire h1 {
	font-size: 1.25em;
	font-weight: 700;
}

.ttl-inquire p {
	font-size: 1em;
	font-weight: 600;
}

.ttl-inquire-policy {
	color: var(--dark-color);
	font-family: var(--primary-font);
	font-size: 1em;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0.8px;
}

.wpcf7-form-control-wrap,
.wpcf7-checkbox,
.wpcf7-list-item {
	display: flex;
	width: 100%;
	margin: 0;
}

.l_contact_agree label,
.agreement-check label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 20px;
	max-width: 250px;
	margin: auto;
}

.l_contact_agree input,
.agreement-check input {
	position: relative;
	width: 25px;
	height: 25px;
	background: gray;
	border: none;
	margin: 0 !important;
}

.l_contact_agree .wpcf7-list-item-label,
.agreement-check .wpcf7-list-item-label {
	position: relative;
	color: var(--dark-color);
	font-family: var(--primary-font);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 1px;
	width: 100%;
	max-width: fit-content;
	display: flex;
	text-wrap: nowrap;
	flex-wrap: nowrap;
	margin: 0 !important;
}

.l_contact_btn,
.s_contact_btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
	background: var(--primary-accent);
	border-radius: 10px;
	width: fit-content;
	cursor: pointer;
}

.l_contact_btn_flex,
.s_contact_btn_flex {
	display: flex;
	align-items: center;
}

.l_contact_btn input,
.s_contact_btn input {
	background: none;
	width: 100%;
	color: var(--light-color);
	font-family: var(--primary-font);
	font-size: 1.265em;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1.3px;
	cursor: pointer;
	transition: all .2s ease;
	padding: 20px 60px;
}

.l_contact_btn:hover,
.s_contact_btn:hover {
	background: #03C14F;
	transition: all .2s ease;
}

.l_contact_btn:has(input:disabled),
.s_contact_btn:has(input:disabled) {
	background: grey;
	cursor: not-allowed;
}

.s_contact_submit:disabled:hover {
	transform: none !important;
}

.wpcf7-spinner {
	position: absolute;
	right: 5%;
	display: none;
	width: 100%;
	min-width: 20px;
	max-width: 20px;
	height: 20px;
	margin: 0;
	margin-left: 5px;
}

.wpcf7-form.submitting .wpcf7-spinner {
	display: block;
}

.l_contact_recaptcha,
.recaptcha-text {
	color: var(--dark-color);
	font-family: var(--primary-font);
	font-size: .875em;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.7px;
	text-align: center;
}

.l_contact_recaptcha a,
.recaptcha-text a {
	text-decoration: underline;
	color: var(--dark-color);
	font-family: var(--primary-font);
	font-size: .875em;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.7px;
	text-align: center;
}

.wpcf7-response-output {
	font-family: var(--primary-font);
	text-align: center;
}

@media (max-width: 768px) {
	.label_text {
		font-size: 1.125em;
		margin-bottom: 0;
	}

	input,
	textarea {
		font-size: 1.125em;
		line-height: 34px;
	}

	.required_badge {
		padding: 5px 20px;
		font-size: .875em;
	}

	.l_contact_btn input,
	.s_contact_btn input {
		font-size: 1.25em;
	}

	.l_contact_info,
	.p_contact_information {
		margin-bottom: 0px;
	}
}

@media (max-width: 500px) {

	.l_contact_recaptcha br,
	.recaptcha-text br {
		display: none;
	}

	.l_contact_btn,
	.s_contact_btn {
		margin: 20px auto;
		padding: 0;
	}

	.postal input {
		width: 100%;
	}

	.contact_text {
		font-size: 1em;
	}

	.l_contact_btn input,
	.s_contact_btn input {
		font-size: 1.25em;
	}

	.field_label br {
		display: none;
	}

	.l_contact_info,
	.p_contact_information {
		margin-bottom: 20px;
	}

	input,
	textarea,
	.label_text {
		font-size: 1.4em;
		line-height: 2;
	}

	input::placeholder,
	textarea::placeholder {
		font-size: 1em;
		line-height: 2;
	}
}

@media (max-width: 400px) {
	.contact_text {
		font-size: 0.875em;
	}
}

@media (max-width: 320px) {
	.contact_text {
		font-size: 0.813em;
	}
}

/* Single Page */

.s_post_content p {
	font-size: 1.3em;
	font-family: var(--primary-accent);
	line-height: 2;
}

.post_navigation {
	border-radius: 5px;
}

.post_navigation:hover {
	background: #01a141
}

.post_navigation a {
	color: var(--light-color);
}

.is-active h4 {
	color: var(--primary-accent);
}

@media (max-width: 768px) {
	.post_navigation {
		width: fit-content;
	}
}

/* Pages Header */


@media (max-width: 500px) {
	.s_pages_recruit_header {
		object-position: 60% 100%;
	}
}