/* Fonts */
:root {
	--default-font: "Meiryo", "メイリオ", "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Raleway",  sans-serif;
	--nav-font: "Meiryo", "メイリオ", sans-serif;
	--section-font: "Meiryo", "メイリオ", sans-serif;
}

:root { 
	--background-color: #ffffff;
	--default-color: #444444;
	--heading-color: #556270;
	--accent-color: #d9232d;
	--surface-color: #ffffff;
	--contrast-color: #ffffff;
	--orange-color: #F6B80A;
	--blue-color: #2762b7;
	--white-color: #FFFFFF;
	--gray-color: #878383;
	--red-color: #f99;
	--footer-color: #878383;
}


:root {
	--nav-color: #556270;
	--nav-hover-color: #d9232d;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #556270;
	--nav-dropdown-hover-color: #F6B80A;
}

:root {

	--home-base-color: #E88FA3;
	--home-light-color: #FFF5F7;
	--day-base-color: #6FAFD6;
	--day-light-color: #F4FAFD;
	--syougai-base-color: #F2A65A;
	--syougai-light-color: #FFF8F1;
	--eigyou-base-color: #78B89A;
	--eigyou-light-color: #eef5f0;
	--eigyou-base-color: #78B89A;
	--eigyou-light-color: #eef5f0;
	--share-base-color: #b1b1e5;
	--share-light-color: #e2e2f3;

}


.light-background {
	--background-color: #f2f4f6;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #3b4654;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #444e5b;
	--contrast-color: #ffffff;
}

:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--orange-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--orange-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}


span.marker {
	background: linear-gradient(transparent 70%, #fff500 90%);
	font-weight: bold;
}

.orange-text {
	color: var(--orange-color);
}

.blue-text {
	color: var(--blue-color);
}

.section .mb-none {
	margin-bottom: 0 !important;
}

@media (min-width: 1200px) {

	.section .mb-none-pc {
		margin-bottom: 0 !important;
	}

}

@media (max-width: 1200px) {

	.section .mb-none-sp {
		margin-bottom: 0 !important;
	}

}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	z-index: 997;
	transition: all 0.5s;
	padding: 15px 0;
	background-color: var(--background-color);
	color: var(--default-color);
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}

@media (max-width: 902px) {
	.header .logo img {
		width: 35vw;
	}
}

.header .logo h1 {
	font-size: 28px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
	text-transform: uppercase;
}

.header .btn-header,
.header .btn-header:focus {
	border-radius: 4px;
	transition: 0.3s;
	margin: 0 0 0 30px;
	padding: 8px 25px;
	color: #fff;
	font-size: 14px;
}

@media (max-width: 1200px) {
	.header .btn-header {
		margin: 0 15px 0 0;
		padding: 6px 6px;
	}
}

.btn-entry {
	background: var(--red-color);
	color: #fffffff;
}

.btn-inquiry {
	background: #0066cc;
	color: #fffffff;
}

.header .btn-header:hover,
.header .btn-header:focus:hover {
	opacity: 0.7;
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}
	.header .btn-header {
		order: 2;
	}
	.header .navmenu {
		order: 3;
	}
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {

	.navbox {
		max-width: 100% !important;
	}

	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		padding: 18px 15px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		/*justify-content: space-between;*/
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:last-child a {
		padding-right: 0;
	}

	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--orange-color);
	}

	.navmenu .dropdown ul {
		z-index: 99;
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
		margin: 0;
		padding: 10px 0;
		background: #f3f0f0;
		border: 1px solid #878383;
		border-radius: 4px;
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 6px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}

}

/* Navmenu - Mobile */
@media (max-width: 1200px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu .a-none {
		justify-content: initial !important;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}
	
	.navmenu .i-none {
		justify-content: initial !important;
		border-radius: initial !important;
		width: initial !important;
		height: initial !important;
		background-color: initial !important;
	}	

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown>.dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu>ul {
		display: block;
	}

}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	background-color: var(--background-color);
	margin-bottom: 40px;
	padding: 0 0 40px 0;
	scroll-margin-top: 90px;
	overflow: clip;
	color: var(--default-color);
	font-family: var(--section-font);
}

@media (max-width: 1200px) {

	section,
	.section {
		scroll-margin-top: 66px;
	}

}


.section .sp-only {
	display: none;
}

@media (max-width: 1200px) {
	.section .pc-only {
	display: none;
	}
	.section .sp-only {
	display: block;
	}
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	padding: 0;
	margin-bottom: 50px;
}

.hero .carousel {
	width: 100%;
	min-height: 74vh;
	padding: 0;
	margin: 0;
	background-color: var(--background-color);
	position: relative;
}

@media (max-width: 1200px) {

	.hero .carousel {
		margin-bottom: 20px;
		min-height: 50vh;
	}

}

.hero img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	z-index: 1;
}

.hero .carousel-item {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hero .carousel-item:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
}

.hero .carousel-container {
	position: absolute;
	inset: 10px 64px 64px 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 3;
}

@media (max-width: 1200px) {
	.hero .carousel-container {
		inset: 140px 64px 10px 64px;
	}
}

.hero .image-title {
	margin: 0 auto;
	padding: 5px;
	background: color-mix(in srgb, var(--white-color), transparent 30%);
	text-align: center;
	white-space: nowrap;
	color: var(--blue-color);
	font-size: 33px;
	font-weight: 700;

}

@media (max-width: 902px) {

	.hero .image-title {
		font-size: 20px;
	}

}

.hero .image-textbox {
	display: flex;
	justify-content: space-around;
	box-sizing: content-box;
	margin: -60px auto 20px auto;
}

@media (max-width: 1200px) {
	.hero .image-textbox {
		display: block;
		justify-content: initial;
		margin:0 10px 0 10px;
		padding-bottom: 20px;
		text-align: center;
	}
}

.hero .image-text {
	z-index: 99;
	position: relative;
	box-shadow: 3px 3px 7px 3px rgb(0 0 0 / 0.2);
	border-radius: 10px; 
	background-color: #f9e7b4;
	margin: 0 7px 20px 7px;
	padding: 10px 20px;
	width: auto;
	height: auto;
	color: #666666;
	text-align: center;
	font-size: 21px;
	font-weight: 600;
}

@media (max-width: 1200px) {
	.hero .image-text {
		font-size: 16px;
	}
}

.hero .image-text .image-text-title {
	margin-bottom: 10px;
	text-align: center;
	color: var(--blue-color);
	font-size: 26px;
	font-weight: 700;
}

@media (max-width: 902px) {
	.hero .image-text .image-text-title {
		font-size: 21px;
	}
}


.hero .carousel-indicators {
	list-style: none;
}

.hero .carousel-indicators li {
	cursor: pointer;
}

@keyframes fadeInUp {

	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}

}

@keyframes fadeInDown {

	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}

}



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	margin-bottom: 20px;
	position: relative;
	font: var(--section-font);
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	margin: 0;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	position: relative;
}

.section-title h2::after {
	content: "";
	height: 4px;
	display: inline-block;
	background: var(--orange-color);
	margin: 4px 10px;
}

.section-title p {
	color: var(--blue-color);
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--heading-font);
}

@media (max-width: 1200px) {
	.section-title p {
		font-size: 27px;
	}
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	position: relative;
	background-color: #fff;
}

.footer .footer-top {
	padding: 35px 20px 30px 20px;
}

.footer .footer-about a {
	color: var(--orange-color) !important;
}

.footer .footer-about {
	margin-bottom: 22px !important;
}

.footer .footer-about .logo .main-name {
	letter-spacing: 1px;
	font-size: 1.7rem;
	font-weight: 700;
	font-family: var(--heading-font);
	color: var(--orange-color);
}

.footer .footer-about .logo .sub-name {
	font-size: 1.3rem;
	color: var(--orange-color);
}

.footer .row {
	margin-top: 0 !important;
	margin-bottom: 32px !important;
}

.footer .footer-links {
	margin: 0 !important;
}

.footer h4 {
	position: relative;
	margin-bottom: 7px !important;
	font-size: 1.10rem;
	font-weight: 600;
	color: var(--footer-color);
}

.footer .footer-links a:hover {
	color: var(--orange-color) !important;
}

@media (max-width: 1200px) {

	.footer h4 {
		font-size: 1.20rem;
	}

}

.footer .title-line {
	margin-bottom: 7px;
	border-top: 3px solid var(--footer-color);
}

.footer .title-line-disable {
	margin-bottom: 7px;
	border-top: 3px solid #fff;
}

.footer .footer-links p {
	margin: 0 !important;
	font-size: 1.10rem;
	font-weight: 600;
	color: var(--footer-color);
}

.footer .recruit-box {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	width: 100%;
	padding: 0 7px;
	font-size: 0.85rem;
}

@media (max-width: 1200px) {

	.footer .recruit-box {
		font-size: 1.00rem;
	}

}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-links ul i {
	padding-right: 2px;
	line-height: 0;
	/*font-size: 0.85rem;*/
}

.footer .footer-links ul li {
	display: flex;
	align-items: center;
	padding: 8px 0;
}

@media (max-width: 1200px) {

	.footer .footer-links ul li {
		padding: 14px 0;
	}

}

.footer .footer-links ul a {
	display: inline-block;
	line-height: 1;
	color: var(--footer-color);
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .copyright {
	padding-bottom: 25px;
	text-align: center;
	font-size: 0.85rem;
	color: var(--footer-color);
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {

	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}

}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--red-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}



/*--------------------------------------------------------------
# Notice Section
--------------------------------------------------------------*/

.notice .section-title h2::after {
	width: 60px;
}

.notice .notice-day {
	margin-bottom: 20px;
	padding: 1px 10px;
	border-radius: 4px;
	background-color: #6194de;
	color: #ffffff;
}

.notice h3 {
	font-size: 1.40rem;
	font-weight: 700;
	color: var(--orange-color);
}

@media (max-width: 1200px) {
	.notice h3 {
		font-size: 1.30rem;
	}
}

.notice .notice-text {
	font-size: 1.10rem;
	color: #000000;
}


/*--------------------------------------------------------------
# Vision Section
--------------------------------------------------------------*/
.vision .section-title h2::after {
	width: 60px;
}

.vision .vision-box {
	padding: 10px;
}

.vision .vision-box-text {
	border-radius: 10px;
	padding: 14px;
	background-color: var(--white-color);
	line-height: 2.0;
}



.vision ul {
	list-style: none;
	padding: 0;
}

.vision ul li {
	padding-bottom: 5px;
	/*display: flex;
	align-items: center;*/
}

.vision ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color);
}



/*--------------------------------------------------------------
# Ideal Candidate Section
--------------------------------------------------------------*/
.candidate .candidate-box {
	padding: 15px 15px 0 15px;
}

.candidate .section-title h2::after {
	width: 60px;
}

.candidate ul {
	list-style: none;
	padding: 0;
}

.candidate ul li {
	padding-bottom: 5px;
	display: flex;
	align-items: center;
}

.candidate ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color);
}


/*--------------------------------------------------------------
# Employee Benefits Section
--------------------------------------------------------------*/
.ee-benefit .ee-benefit-box {
	border: 1px solid #c0c0c0;
	border-radius: 0.375rem;
	box-shadow: 3px 3px 7px 3px rgb(0 0 0 / 0.1);
}

.ee-benefit .section-title h2::after {
	width: 60px;
}

.ee-benefit img {
	border-top-left-radius: calc(0.375rem - 1px);
	border-top-right-radius: calc(0.375rem - 1px);
	height: 240px;
	object-fit: cover;
}

.ee-benefit  .ee-benefit-box-body {
	padding: 1rem;
}


/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefit .benefit-box {
	border: 1px solid #c0c0c0;
	border-radius: 0.375rem;
	box-shadow: 3px 3px 7px 3px rgb(0 0 0 / 0.1);
}

.benefit .section-title h2::after {
	width: 60px;
}

.benefit img {
	border-top-left-radius: calc(0.375rem - 1px);
	border-top-right-radius: calc(0.375rem - 1px);
	height: 240px;
	object-fit: cover;
}

.benefit .benefit-box-body {
	padding: 1rem;
}


/*--------------------------------------------------------------
# Training Program Section
--------------------------------------------------------------*/
.tprogram .tprogram-box {
	padding: 15px 15px 0 15px;
}

.tprogram .section-title h2::after {
	width: 60px;
}

.tprogram p {
	font-weight: 700;
	/*color: var(--blue-color);*/
}


/*--------------------------------------------------------------
# Analysis Section
--------------------------------------------------------------*/
.analysis .section-title h2::after {
	width: 60px;
}

.analysis .analysis-box {
	position: relative;
	background: linear-gradient(
		-45deg,
		#fff 25%, #cccccd 25%,
		#cccccd 50%, #fff 50%,
		#fff 75%, #cccccd 75%,
		#cccccd
	);
	background-size: 8px 8px;
	padding: 8px;
	
}

.analysis .analysis-box-body {
	background: #FFF;
	padding: 0.50em;
	height: 100%;
}

.analysis h5 {
	margin: 0 0 0.50em;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--orange-color);
}

.analysis .text {
	margin-bottom: 24px;
	font-size: 1.00rem;
	font-weight: 700;
}


/*--------------------------------------------------------------
# SDGS Section
--------------------------------------------------------------*/

.sdgs .section-title h2::after {
	width: 60px;
}

.sdgs h5 {
	text-align: center;
	font-weight: 700;
	color: var(--orange-color);
}


/*--------------------------------------------------------------
# Recruit Section
--------------------------------------------------------------*/
.recruit .section-title h2::after {
	width: 60px;
}

.recruit .recruit-box {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 64px;
}

.recruit .left-box {
	padding: 0 !important;
	box-sizing: border-box;
}

.recruit .title-num {
	padding: 0 7px 0 10px;
	font-size: 2.80rem;
	font-weight: 700;
	color: #dddddd;
}

.recruit .title-text {
	padding-bottom: 30px;
	font-size: 1.80rem;
	font-weight: 700;
	color: var(--orange-color);
}

.recruit .left-box-body {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 35px 10px 10px 10px;
	height: 291px;
}

@media (max-width: 1200px) {
	.recruit .left-box-body {
		height: auto;
	}
}

/*ナーシングホーム部門 背景*/
.recruit .left-box-body-01 {
	/*background: linear-gradient(to top, #F7E5FB 90%, #ffffff);*/
	background: linear-gradient(to top, var(--home-light-color) 90%, #ffffff);
}

/*デイサービス部門 背景*/
.recruit .left-box-body-02 {
	/*background: linear-gradient(to top, #BDD7EE 90%, #ffffff);*/
	background: linear-gradient(to top, var(--day-light-color) 90%, #ffffff);
}

/*障がい部門 背景*/
.recruit .left-box-body-03 {
	/*background: linear-gradient(to top, #f7e7b5 90%, #ffffff);*/
	background: linear-gradient(to top, var(--syougai-light-color) 90%, #ffffff);
}

/*営業部門 背景*/
.recruit .left-box-body-04 {
	/*background: linear-gradient(to top, #D1FBD4 90%, #ffffff);*/
	background: linear-gradient(to top, var(--eigyou-light-color) 90%, #ffffff);
}

.recruit .left-box-button {
	white-space: nowrap;
}

.recruit a {
	position: relative;
	margin-bottom: 12px;
	border: 1px solid #ffffff;
	box-shadow: 3px 3px 7px 3px rgb(0 0 0 / 0.1);
	width: 280px;
	color: #ffffff;
}

@media (max-width: 1200px) {
	.recruit a {
		width: 212px;
		font-size: 0.90rem;
	}
}

.recruit a:hover {
	opacity: 0.7;
}
.recruit a:after {
	position: absolute;
	top: 50%;
	right: 20px;
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	transform: rotate(45deg) translateY(-50%);
}

/*ナーシングホーム部門 看護師 ボタン*/
.recruit .link-button-01-01 {
	/*background-color: #FF99FF;*/
	background-color: var(--home-base-color);
}

/*ナーシングホーム部門 ヘルパー ボタン*/
.recruit .link-button-01-02 {
	/*background-color: #EE4065;*/
	background-color: var(--home-base-color);
}

/*ナーシングホーム部門 リハビリ ボタン*/
.recruit .link-button-01-03 {
	/*background-color: #CC66FF;*/
	background-color: var(--home-base-color);
}

/*ナーシングホーム部門 事務スタッフ ボタン*/
.recruit .link-button-01-04 {
	/*background-color: #FF6699;*/
	background-color: var(--home-base-color);
}

/*ナーシングホーム部門 クリーン ボタン*/
.recruit .link-button-01-05 {
	/*background-color: #CC0099;*/
	background-color: var(--home-base-color);
}

/*デイサービス部門 施設長 ボタン*/
.recruit .link-button-02-01 {
	/*background-color: #2F75B5;*/
	background-color: var(--day-base-color);
}

/*デイサービス部門 ヘルパー ボタン*/
.recruit .link-button-02-02 {
	/*background-color: #33CCCC;*/
	background-color: var(--day-base-color);
}

/*デイサービス部門 送迎 ボタン*/
.recruit .link-button-02-03 {
	/*background-color: #3399FF;*/
	background-color: var(--day-base-color);
}

/*デイサービス部門 調理員 ボタン*/
.recruit .link-button-02-04 {
	/*background-color: #3366CC;*/
	background-color: var(--day-base-color);
}

/*デイサービス部門 看護師 ボタン*/
.recruit .link-button-02-05 {
	/*background-color: #0000CC;*/
	background-color: var(--day-base-color);
}

/*障がい部門 サービス管理責任者 ボタン*/
.recruit .link-button-03-01 {
	/*background-color: #FFC000;*/
	background-color: var(--syougai-base-color);
}

/*障がい部門 世話人 ボタン*/
.recruit .link-button-03-02 {
	/*background-color: #FF9966;*/
	background-color: var(--syougai-base-color);
}

/*障がい部門 相談支援専門員 ボタン*/
.recruit .link-button-03-03 {
	/*background-color: #FCC49E;*/
	background-color: var(--syougai-base-color);
}

/*営業部門 老人ホームの窓口 ボタン*/
.recruit .link-button-04-01 {
	/*background-color: #00CC99;*/
	background-color: var(--eigyou-base-color);
}

/*営業部門 未来のマネジメントスタッフ ボタン*/
.recruit .link-button-04-02 {
	/*background-color: #008080;*/
	background-color: var(--eigyou-base-color);
}

@media (max-width: 1200px) {

	.recruit .left-box-text {
		font-size: 0.90rem;
	}

}

.recruit .right-box {
	padding: 0 !important;
}

.recruit img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.recruit .recruit-img-01 {
	height: 358px;
}

.recruit .recruit-img-02 {
	height: 358px;
}

.recruit .recruit-img-03 {
	height: 358px;
}

.recruit .recruit-img-04 {
	height: 358px;
}


/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/

.faq .section-title h2::after {
	width: 60px;
}

.faq .qa-title {
	width: 100%;
	margin-bottom: 7px;
	border: 1px solid #d6dde3;
	border-radius: 5px;
	background-color: #ffffff;
}

.faq .qa-title summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em 1em 3em;
	color: #333333;
	font-weight: 600;
	cursor: pointer;
}

.faq .qa-title summary::before,
.faq .qa-title p::before {
	position: absolute;
	left: 1em;
	font-weight: 600;
	font-size: 1.3em;
}

.faq .qa-title summary::before {
	color: #75bbff;
	content: "Q";
}

.faq .qa-title summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #333333b3;
	border-right: 3px solid #333333b3;
	content: '';
	transition: transform .5s;
}

.faq .qa-title[open] summary::after {
	transform: rotate(225deg);
}

.faq .qa-title p {
	position: relative;
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: .3em 3em 1.5em;
	color: #333;
	transition: transform .5s, opacity .5s;
}

.faq .qa-title[open] p {
	transform: none;
	opacity: 1;
}

.faq .qa-title p::before {
	color: #ff8d8d;
	line-height: 1.2;
	content: "A";
}


/*--------------------------------------------------------------
# CompanyProfile Section
--------------------------------------------------------------*/

.companyprof .section-title h2::after {
	width: 60px;
}


/*--------------------------------------------------------------
# WorkPlace Section
--------------------------------------------------------------*/

.workplace .section-title h2::after {
	width: 60px;
}

.workplace .workplace-col {
	padding: 10px;
}

.workplace .workplace-box {
	box-shadow: 3px 3px 7px 3px rgb(0 0 0 / 0.1);
	background-color: #ffffff;
}

.workplace .top-box {
	padding: 10px 10px 7px 10px !important;
}

.workplace .type {
	padding: 1px 5px;
	font-size: 0.90rem;
	font-weight: 500;
	color: #ffffff;
}

/*障がい者・高齢者・一般型*/
.workplace .type-01 {
	background-color: var(--share-base-color);
}

/*ナーシングホーム*/
.workplace .type-02 {
	background-color: var(--home-base-color);
}

/*営業*/
.workplace .type-03 {
	background-color: var(--eigyou-base-color);
}

/*デイサービス*/
.workplace .type-04 {
	background-color: var(--day-base-color);
}

/*就労事業*/
.workplace .type-05 {
	background-color: var(--syougai-base-color);
}

.workplace h5 {
	margin-top: 4px !important;
	margin-bottom: 0.50rem !important;
	font-size: 1.00rem;
	font-weight: 500;
	color: #000000;
}

.workplace .top-box hr {
	margin: 3px 0 !important;
}

.workplace .addr {
	margin: 0;
	font-size: 0.90rem;
	color: var(--gray-color);
}

.workplace .map {
	margin-top: 8px;

}

.workplace a {
	font-weight: 700;
	font-size: 0.90rem;
	color: #C00000 !important;
}

.workplace .bottom-box {
	padding: 0 10px 10px 10px !important;
}

@media (max-width: 1200px) {

	.workplace .bottom-box {
		margin-bottom: 15px;
	}

}




/*--------------------------------------------------------------
# Recruit Detail Section
--------------------------------------------------------------*/
.recruit-detail-header  {
	margin-bottom: 15px !important;
}

.recruit-detail-header .recruit-detail-header-box {
	border-radius: 12px 12px 0 0;
	/*margin-bottom: 48px;*/
	padding: 36px 20px 20px 30px;
}

/*ナーシングホーム*/
.recruit-detail-header .recruit-detail-header-box-01 {
	background-color: var(--home-light-color);
	border-left: 32px solid var(--home-base-color);
}

/*デイサービス*/
.recruit-detail-header .recruit-detail-header-box-02 {
	background-color: var(--day-light-color);
	border-left: 32px solid var(--day-base-color);
}

/*障がい*/
.recruit-detail-header .recruit-detail-header-box-03 {
	background-color: var(--syougai-light-color);
	border-left: 32px solid var(--syougai-base-color);
}

/*営業*/
.recruit-detail-header .recruit-detail-header-box-04 {
	background-color: var(--eigyou-light-color);
	border-left: 32px solid var(--eigyou-base-color);
}

.recruit-detail-header .recruit-detail-header-box h3 {
	margin-bottom: 21px;
	border-bottom: 2px solid #556270;
	font-size: 1.60rem;
	font-weight: 700;
	color: #000000 !important;
}

.recruit-detail-header .recruit-detail-header-box h4 {
	font-size: 1.05rem;
	font-weight: 600;
	color: #556270 !important;
}

.recruit-detail-header .recruit-detail-header-box h5 {
	font-size: 1.20rem;
	font-weight: 700;
	color: #000000 !important;
}


.recruit-detail-body {
	margin-top: 0 !important;
}

.recruit-detail-body .detail-section .detail-title-box {
	margin-bottom: 23px;
	border-bottom: 3px solid;
	border-image: linear-gradient(to right, #555555, #dddddd) 1;
}

.recruit-detail-body .detail-section .detail-title-01 {
	padding-right: 8px;
	font-size: 1.85rem;
	font-weight: 700;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recruit-detail-body .detail-section .detail-title-02 {
	font-size: 1.3rem;
	font-weight: 700;
}


/*採用情報*/
.recruit-detail-body .detail-section .row {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.recruit-detail-body .detail-section .row .left-box {
	min-height: 50px;
	margin-bottom: 7px;
	padding: 9px;
	background-color: #f3f3f3;
	display: flex;
	align-items: center;
	font-weight: 700;
}

.recruit-detail-body .detail-section .row .right-box {
	min-height: 50px;
	margin-bottom: 7px;
	padding: 9px 9px 9px 19px;
	display: flex;
	align-items: center;
}

.recruit-detail-body .detail-section .row ul {
	list-style: none;
	padding: 0;
}


@media (max-width: 1200px) {

	.recruit-detail-body .detail-section .row .left-box {
		min-height: initial;
		margin-bottom: initial;
	}

	.recruit-detail-body .detail-section .row .right-box {
		margin-bottom: 20px;
		min-height: initial;
		padding-left: 9px;
	}

}


/*従業員の個性を尊重*/
.recruit-detail-body .detail-section .detail-exp-title {
	margin-bottom: 9px;
	font-size: 1.2rem;
	font-weight: 600;
}

.recruit-detail-body .detail-section .detail-exp-text {
	margin-bottom: 28px;
}


.recruit-detail-body .detail-section .detail-time-box {
	position: relative;
	margin: 5px 5px 30px 5px;
	padding: 16px;
	border: solid 4px #f2f2f2;
	border-radius: 8px;
}

.recruit-detail-body .detail-section .detail-time-title {
	margin-bottom: 9px;
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	background: #FFF;
	line-height: 1
	font-size: 1.1rem;
	font-weight: 600;
}

.recruit-detail-body .detail-section .detail-time-sch {
	display: inline-block;
	min-width: 70px;
	padding-right: 22px;
	text-align: right;
}


/*1日のお仕事の流れ*/
.recruit-detail-body .detail-section .features-box {
	position: relative;
	margin-bottom: 23px;
	width: auto;
	background: linear-gradient(
		-45deg,
		#fff 25%, #cccccd 25%,
		#cccccd 50%, #fff 50%,
		#fff 75%, #cccccd 75%,
		#cccccd
	);
	background-size: 8px 8px;
	padding: 8px;
	
}

.recruit-detail-body .detail-section .features-box-body {
	display: flex;
	align-items: center;
	background: #FFF;
	padding: 1.20em;
	min-height: 50px;
	height: 100%;
	font-size: 1.00rem;
	font-weight: 700;
}

.recruit-detail-body .detail-section .features-text {
	width: 43%;
}

.recruit-detail-body .detail-section .features-volume {
	width: 16%;
	white-space: nowrap;
	text-align: center;
}

.recruit-detail-body .detail-section .features-text-right {
	text-align: right;
}

@media (max-width: 1200px) {

	.recruit-detail-body .detail-section .features-text-right {
		text-align: initial;
	}

	.recruit-detail-body .detail-section .features-text {
		width: 32%;
	}

	.recruit-detail-body .detail-section .features-volume {
		width: 36%;
	}

}


/*先輩の声*/
.recruit-detail-body .detail-section .recruit-voice-section {
	display: flex;
	width: 100%;
	margin: 20px auto 70px auto;
}

.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-left-01 {
	position: relative;
	z-index: 10;
	width: 45%;
}

.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-left-02 {
	width: 55%;
	clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
}

.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-text-area {
	position: absolute;
	top: 40px;
	left: 20px;
}

.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-title {
	line-height: 1;
	margin-bottom: 32px;
}

.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-text01 {
	display: block;
	margin-bottom: 20px;
	font-size: 2.95rem;
	font-weight: 700;
}

.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-text02 {
	line-height: 1.3;
	font-size: 1.10rem;
	font-weight: 700;
}

.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-copy {
	overflow-wrap: break-word;
	word-break: break-all;
	font-size: 0.875rem;
}

.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-right-01 {
	width: 55%;
	clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-right-02 {
	width: 45%;
	position: relative;
	z-index: 10;
}

.recruit-detail-body .detail-section .recruit-voice-section img {
	width: 100%;
	height: 500px;
	vertical-align: bottom;
	object-fit: cover;
	object-position: left center;
}


@media (max-width: 1200px) {

	.recruit-detail-body .detail-section .recruit-voice-section {
		flex-direction: column;
		margin-bottom: 45px;
	}
	
	.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-left-01 {
		width: 100%;
		padding: 0 16px;
		margin-bottom: 20px;
	}
	
	.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-left-02 {
		clip-path: none;
		order: 2;
		width: 100%;
	}

	.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-text-area {
		position: static;
	}
	
	.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-title {
		margin-bottom: 10px;
	}
	
	.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-text01 {
		margin-bottom: 10px;
		font-size: 2.25rem;
	}

	.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-copy {
		margin-bottom: 0;
	}
	
	.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-right-01 {
		clip-path: none;
		width: 100%;
	}
	
	.recruit-detail-body .detail-section .recruit-voice-section .recruit-voice-right-02 {
		order: 1;
		width: 100%;
		padding: 0 16px;
		margin-bottom: 20px;
	}
	
	.recruit-detail-body .detail-section .recruit-voice-section img {
		object-fit: initial;
		object-position: initial;
		height: 100%;
	}

}


/*エントリーの流れ*/
.recruit-detail-body .detail-section .recruit-entry {
	display: flex;
}

.recruit-detail-body .detail-section .recruit-entry-box {
	padding-top: 45px;
	text-align: center;
	min-height: 130px;
	width: 160px;
	border: 2px solid #000000;
	border-radius: 10px;
	font-size: 0.90rem;
	font-weight: 700;
}

.recruit-detail-body .detail-section .recruit-entry-arrow {
	line-height: 130px;
	text-align: center;
	height: 130px;
	width: 60px;
	font-size: 2.00rem;
	font-weight: 700;
	color: var(--blue-color);
}

.recruit-detail-body .detail-section .entry-btn-area {
	margin: 60px auto 150px auto;
	text-align: center;
}

@media (max-width: 1200px) {

	.recruit-detail-body .detail-section .entry-btn-area {
		margin-top: 80px;
	}

}

.recruit-detail-body .detail-section .entry-btn {
	border-radius: 4px;
	transition: 0.3s;
	padding: 8px 25px;
	background-color: var(--red-color);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
}

.recruit-detail-body .detail-section .entry-btn:hover {
	opacity: 0.7;
}

@media (max-width: 1200px) {

	.recruit-detail-body .detail-section .recruit-entry {
		display: initial;
	}

	.recruit-detail-body .detail-section .recruit-entry-box {
		padding: 12px;
		/*line-height: 50px;*/
		min-height: initial;
		width: 100%;
		font-size: 1.00rem;
	}
	
	.recruit-detail-body .detail-section .recruit-entry-arrow {
		line-height: 50px;
		height: 50px;
		width: 100%;
	}

	.recruit-detail-body .detail-section .pc-only {
		display: none;
	}

	.recruit-detail-body .detail-section .sp-only {
		display: block;
	}

	.recruit-detail-body .detail-section .entry-btn-area {
		margin: 60px auto 20px auto;
	}

}



/*--------------------------------------------------------------
# Form Section
--------------------------------------------------------------*/

.form .section-title h2::after {
	width: 60px;
}

.form .form-box {
	border-bottom: 2px solid #fff;
}

.form .form-mr {
	display: inline-block !important;
	margin-right: 18px;
	line-height: 1.9;
}

@media (max-width: 1200px) {

	.form .form-mr {
		line-height: 2.2;
	}

}

.form .form-comment {
	display: inline-block;
	padding-top: 8px;
}


.form .privacy-title {
	margin-top: 70px;
	text-align: center;
	font-size: 1.65rem;
	font-weight: 700;
}

.form .privacy-box {
	overflow:auto;
	height:300px;
	margin-bottom: 25px;
	background-color: #ffffff;
	border:1px solid #CCCCCC;
	padding:20px;
}

.form .privacy-box ul {
	list-style: none;
	margin-top: 20px;
	padding-left: 0 !important;
}

.form .privacy-checkbox {
	margin-bottom: 70px;
	text-align: center;
}


.form .checkbox-error-msg {
	width: 100%;
	margin-top: 0.25rem;
	font-size: 0.875em;
	font-weight: 700;
	color: var(--bs-form-invalid-color);
}

.form .invalid-feedback {
	font-weight: 700;
}

.form .checkbox-error .form-check-input {
	border-color: var(--bs-form-invalid-color);
}

.form .checkbox-error .form-check-input:checked {
	background-color: var(--bs-form-invalid-color);
	border-color: var(--bs-form-invalid-color);
}

.form .checkbox-error .form-check-input + .form-check-label {
	color: var(--bs-form-invalid-color) !important;
}

.form .radio-group .invalid-feedback {
	display: none;
}

.form .radio-group.is-invalid .invalid-feedback {
	display: block;
}

.form .radio-group.is-invalid .form-check-input {
	border-color: var(--bs-form-invalid-color);
}

.form .radio-group.is-invalid .form-check-label {
	color: var(--bs-form-invalid-color);
}


.form .entry-button {
	background-color: var(--red-color) !important;
	color: #ffffff !important;
}

.form .inquiry-button {
	background-color: #0066cc !important;
	color: #ffffff !important;
}

