@charset "utf-8";
/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
	overflow: hidden;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 120% auto;
}
@media screen and (max-width: 768px) {
	.l_all {
		background-position: center top 60px;
	}
}
@media screen and (max-width: 640px) {
	.l_all {
		background-position: center top 40px;
	}
}
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: min(95%, 1000px);
	margin-inline: auto;
}
.l_wrap_sm {
	width: min(95%, 800px);
	margin-inline: auto;
}
/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	padding-top: 40px;
}
.l_header_fix {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	padding: 20px 0;
	background: var(--key-color);
	text-align: center;
	transition: 0.5s;
}
#top .l_header_fix {
	transform: translateY(-102%);
}
#top .l_header_fix.active {
	transform: translateY(0);
}
/*  .l_logo
---------------------------------------------*/
.l_logo,
.l_header_fix_logo {
	font-size: 0;
	line-height: 1;
	text-align: center;
}
.l_logo img {
	width: min(320px, 32%);
}
.l_header_fix_logo img {
	width: min(240px, 24%);
}
@media screen and (max-width: 640px) {
	.l_header_fix {
		padding: 10px 0;
	}
	.l_logo img {
		width: 45%;
	}
	.l_header_fix_logo img {
		width: 170px;
	}
}

/*----------------------------------------------
	.l_nav
---------------------------------------------*/
.l_nav {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 15px 20px;
	background: var(--main-color);
	border-radius: 15px;
}
.l_nav_img {
	width: 150px;
	position: relative;
	bottom: -30px;
}
#top .l_nav_img,
.error404 .l_nav_img {
	bottom: 0;
}
.l_nav_img img {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 0 10px;
}
#exam .l_nav_img img {
	padding: 0 20px;
}
#recruit .l_nav_img img {
	padding: 0;
}
.l_nav_list {
	display: flex;
	max-width: calc(100% - 150px);
}
.l_nav_list > li {
	line-height: 1.2em;
}
.l_nav_list > li:not(:last-child) {
	border-right: 1px solid #fff;
}
.l_nav_list a {
	padding: 0 10px;
	color: #fff;
	transition: 0.3s;
}
.l_nav_list a:hover,
.l_nav_list > li.current a {
	opacity: 0.5;
}
.menu-checkbox {
	display: none;
}
@media screen and (max-width: 1080px) {
	.l_header {
		padding-top: 20px;
	}
	.l_nav_img img {
		padding: 0 20px;
	}
	#exam .l_nav_img img {
		padding: 0 30px;
	}
	#recruit .l_nav_img img {
		padding: 0 10px;
	}
}
@media screen and (max-width: 840px) {
	.l_nav_img {
		width: 80px;
	}
	.l_nav_img img {
		padding: 0;
	}
	#exam .l_nav_img img {
		padding: 0 10px 0 0;
	}
	#recruit .l_nav_img img {
		padding: 0;
		transform: scale(1.1);
	}
	.l_nav_list {
		max-width: calc(100% - 80px);
	}
}
@media screen and (max-width: 768px) {
	.l_nav_img {
		display: none;
	}
	.l_nav_list {
		flex-direction: column;
		width: 100%;
	}
	.l_nav_list > li:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid #fff;
	}
	.l_nav_list a {
		padding: 20px 10px;
	}

	.drawer-menu {
		position: fixed;
		top: 0;
		left: 100%;
		height: 100%;
		width: 100%;
		border-radius: 0;
		transition: all 0.5s ease-in-out 0s;
		z-index: 20;
	}

	.drawer-menu-list {
		margin-top: 100px;
	}

	.drawer-menu-item-link {
		display: block;
		text-align: center;
		color: #fff;
	}

	.menu-checkbox:checked ~ .drawer-menu {
		left: 0;
	}

	.drawer-icon {
		cursor: pointer;
		position: fixed;
		top: 8px;
		right: 10px;
		justify-content: center;
		align-items: center;
		z-index: 30;
		display: block;
		width: 50px;
		height: 50px;
		background-color: var(--main-color);
		border-radius: 5px;
	}

	.drawer-icon span,
	.drawer-icon span::before,
	.drawer-icon span::after {
		position: absolute;
		inset: 0;
		content: "";
		display: block;
		height: 4px;
		width: 34px;
		margin: auto;
		border-radius: 3px;
		background-color: #fff;
		transition: all 0.5s ease-in-out 0s;
	}

	.drawer-icon span::before {
		top: initial;
		bottom: 12px;
	}

	.drawer-icon span::after {
		top: 12px;
		bottom: initial;
	}

	/* .menu-checkbox:checked ~ .drawer-icon {
		background-color: #3584bb;
	} */

	.menu-checkbox:checked ~ .drawer-icon span {
		background-color: rgba(255, 255, 255, 0);
	}

	.menu-checkbox:checked ~ .drawer-icon span::before {
		bottom: 0;
		transform: rotate(-45deg);
		background-color: #fff;
	}

	.menu-checkbox:checked ~ .drawer-icon span::after {
		top: 0;
		transform: rotate(45deg);
		background-color: #fff;
	}

	/* .menu-background {
		display: none;
		position: fixed;
		z-index: 10;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--bk-color);
		opacity: 0;
		transition: all 0.5s ease-in-out 0s;
	} */

	.menu-checkbox:checked ~ .menu-background {
		display: block;
		opacity: 0.3;
	}
}
@media screen and (max-width: 640px) {
	.drawer-icon {
		top: 2px;
		right: 2px;
		width: 40px;
		height: 40px;
	}
	.drawer-icon span,
	.drawer-icon span::before,
	.drawer-icon span::after {
		height: 3px;
		width: 24px;
	}
	.drawer-icon span::before {
		bottom: 8px;
	}
	.drawer-icon span::after {
		top: 8px;
	}
}
/*----------------------------------------------
	.l_main
---------------------------------------------*/
.l_main:not(#top .l_main) {
	padding: 60px 0 160px;
}
@media screen and (max-width: 1024px) {
	.l_main:not(#top .l_main) {
		padding: 20px 0 120px;
	}
}
@media screen and (max-width: 768px) {
	.l_main:not(#top .l_main) {
		padding: 0 0 120px;
	}
}
@media screen and (max-width: 460px) {
	.l_main:not(#top .l_main) {
		padding: 0 0 80px;
	}
}
/*----------------------------------------------
	.l_page_head
---------------------------------------------*/
.l_page_title {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 180px;
	margin: 80px 0 40px;
	background: url(../images/ttl_cloud_bg_wh.png) no-repeat center / 200px auto;
	color: var(--main-color);
	font-size: 2.33em;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.l_page_title {
		height: 130px;
		margin: 80px 0 0;
		background-size: 140px auto;
		font-size: 1.8em;
	}
}
/*----------------------------------------------
	.l_pagetop　必要なら復活
---------------------------------------------*/
.l_pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9;
	width: 100px;
}
@media screen and (max-width: 1024px) {
	.l_pagetop {
		width: 80px;
	}
}
@media screen and (max-width: 768px) {
	.l_pagetop {
		width: 50px;
		right: 10px;
		bottom: 10px;
	}
}
@media screen and (max-width: 460px) {
	.l_pagetop {
		right: 0;
		bottom: 0;
	}
}
/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
	position: relative;
	z-index: 3;
	padding: 50px 0 20px;
	background-color: var(--key-color);
	margin-top: calc(-1 * var(--wave-height));
	color: #fff;
	text-align: center;
}
.l_footer::after {
	position: absolute;
	top: -47px;
	left: 0;
	content: "";
	z-index: 2;
	width: 100%;
	height: 60px;
	background-color: var(--key-color);
	clip-path: url(#wave-clip);
}
.l_footer_name {
	margin-bottom: 10px;
	font-size: 1.5em;
}
.l_footer_name a {
	color: #fff;
}
.l_footer_address {
	margin-bottom: 10px;
}
.l_footer_icon {
	margin-right: 5px;
}
.l_footer_icon img {
	width: 18px;
	transform: translateY(-2px);
}
.l_footer_nav {
	display: flex;
	justify-content: center;
	margin: 0 0 50px;
}
.l_footer_nav li {
	line-height: 1em;
}
.l_footer_nav li:not(:last-child) {
	border-right: 1px solid #fff;
}
.l_footer_nav a {
	padding: 0 15px;
	color: #fff;
	transition: all 0.2s ease;
}
.l_footer_nav a:hover {
	opacity: 0.6;
}
.l_footer .tellink a {
	color: #fff;
}
/*  .l_copyright
---------------------------------------------*/
.l_copyright {
	font-size: 0.8em;
}
@media screen and (max-width: 1080px) {
	.l_footer {
		mask-size: 1080px;
	}
}
@media screen and (max-width: 768px) {
	.l_footer {
		padding: 30px 0 10px;
		mask-size: 768px;
	}
	.l_footer_icon img {
		width: 14px;
		transform: translateY(-1px);
	}
	.l_footer_nav {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.l_footer::after {
		top: -16px;
		height: 30px;
	}
}
@media screen and (max-width: 460px) {
	.l_footer {
		mask-size: 460px;
	}
}
