@charset "utf-8";

body {
	overflow-x: hidden;
}

header {
	height: 90px;
}

@media screen and (max-width: 1050px) {
	header {
		height: 118px;
	}
}

@media screen and (max-width: 750px) {
	header {
		height: 62px;
	}
}

.pc_only {
	display: block;
}

.sp_only {
	display: none;
}

.sp_only_s {
	display: none;
}

@media screen and (max-width: 750px) {
	.pc_only {
		display: none;
	}

	.sp_only {
		display: block;
	}

	.sp_only_s {
		display: block !important;
	}
}

/* ↓↓↓ side-menu ↓↓↓ */
.side-menu {
	width: 270px;
	height: 100%;
	padding: 40px 25px 40px 25px;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	box-shadow: 1px 0px 3px 0px rgba(0, 0, 0, 0.2);
	transition-duration: .2s;
	transform: translateX(-270px);
	box-sizing: border-box;
}

@media screen and (max-width: 750px) {
	.side-menu {
		width: 100vw;
		height: 70px;
		padding: 0;
		position: fixed;
		left: 0;
		top: auto !important;
		bottom: 0 !important;
		transform: translateX(0);
	}
}

.side-menu.open {
	transform: translateX(0);
}

.side-menu .title {
	margin-bottom: 25px;
}

.side-menu .navigation {
	width: 100%;
}

.side-menu .navigation .menu {
	margin-bottom: 8px;
}

/* .side-menu .navigation .menu:last-of-type {
	margin-top: 30px;
} */

.side-menu .navigation a {
	width: 100%;
	height: 100%;
	font-size: 1.4rem;
	font-weight: bold;
	color: #333;
	position: relative;
	display: flex;
}

.side-menu .navigation a:hover {
	background-color: #eee;
}

.side-menu .navigation a i {
	width: 28px;
	margin-right: 5px;
}

.side-menu .navigation a span {
	flex: 1;
	display: flex;
	align-items: center;
}

.side-menu .navigation .menu .list-group {
	position: absolute;
	top: 0;
	left: 100%;
	width: 200px;
	height: 100%;
	z-index: 998;
	background-color: #eee;
	visibility: hidden;
	transition: all .2s;
	opacity: 0;
}

.side-menu .navigation .menu:hover .list-group {
	visibility: visible;
	opacity: 1;
	transition: opacity 0s cubic-bezier(.25, .46, .45, .94), visibility 0s cubic-bezier(.25, .46, .45, .94);
}

.side-menu .navigation .menu .list-group .subtitle {
	width: 100%;
	height: 140px;
	padding: 20px;
	background-color: rgb(223, 223, 223);
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
	color: #333;
	display: flex;
	align-items: flex-end;
}

.side-menu .navigation .menu .list-group .sublist {
	width: 100%;
	height: 100%;
	padding: 20px;
}

.side-menu .navigation .menu .list-group .sublist li {
	margin-bottom: 10px;
}

.side-menu .navigation .menu .list-group .sublist a {
	padding-left: 15px;
	font-weight: normal;
	position: relative;
	line-height: 1.4;
}

.side-menu .navigation .menu .list-group .sublist a::before {
	content: "";
	display: block;
	background: url(/material/img/ico_link.svg) no-repeat;
	background-size: contain;
	border: none;
	transform: rotate(0);
	width: 6px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.side-menu .navigation .menu .list-group .sublist .-blank::after {
	content: '';
	display: block;
	background: url(/material/img/ico_blank.svg) no-repeat;
	background-size: contain;
	border: none;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
}

.side-menu .sub-navi {
	margin-top: 30px;
}

.side-menu .sub-navi li {
	margin-bottom: 10px;
}

.side-menu .sub-navi li a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 1.4rem;
}

.side-menu .menuS {
	background: url(../../img/side-menu/icon_menu_menuS-renew.png) no-repeat;
	position: absolute;
	cursor: pointer;
	top: 55px;
	width: 56px;
	height: 273px;
	left: 270px;
	z-index: 997;
	transition: left .2s;
	box-shadow: 1px 0px 3px 0px rgba(0, 0, 0, 0.2);
}

.side-menu.open .menuS {
	background: url(../../img/side-menu/icon_menu_close.png) no-repeat;
	height: 56px;
}

.scrollmagic-pin-spacer {
	width: 0 !important;
}

.side-menu .menuS,
.side-menu .menuL {
	display: block;
}

@media screen and (max-width: 750px) {

	.side-menu .menuS,
	.side-menu .menuL {
		display: none;
	}
}

.sp-menu {
	display: none;
}

@media screen and (max-width: 750px) {
	.sp-menu {
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: space-between;
		position: relative;
		z-index: 1;
	}

	.sp-menu .sp-title {
		background-color: #fff;
		flex: 1;
	}

	.sp-menu .sp-title a {
		display: block;
		width: 100%;
		height: 100%;
		padding-left: 20px;
		display: flex;
		align-items: center;
	}

	.sp-menu .sp-title img {
		width: 70%;
	}

	.sp-menu .sp-burger {
		width: 25%;
		background-color: #333;
		position: relative;
		cursor: pointer;
	}

	.sp-menu .sp-burger span {
		display: block;
		width: 30px;
		height: 3px;
		background-color: #fff;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.sp-menu .sp-burger span:nth-of-type(1) {
		margin-top: -8px;
		transition-duration: .2s;
	}

	.sp-menu .sp-burger span:nth-of-type(2) {
		transition-duration: .2s;
	}

	.sp-menu .sp-burger span:nth-of-type(3) {
		margin-top: 8px;
		transition-duration: .2s;
	}

	.sp-menu .sp-burger.open span:nth-of-type(1) {
		transform: translate(-50%, 8px) rotate(-45deg);
	}

	.sp-menu .sp-burger.open span:nth-of-type(2) {
		opacity: 0;
	}

	.sp-menu .sp-burger.open span:nth-of-type(3) {
		transform: translate(-50%, -8px) rotate(45deg);
	}

	.sp-menu .sp-info {
		width: 25%;
		background-color: #008803;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.sp-menu .sp-info img {
		width: 25px;
		transform: scale(1.0);
		transition-duration: .2s;
	}

	.sp-menu .sp-info.open img {
		transform: scale(1.6);
	}

	.sp-menu .sp-info-navi,
	.sp-menu .sp-burger-navi {
		position: absolute;
		left: 0;
		bottom: 70px;
		width: 100%;
		z-index: -1;
		transition-duration: .2s;
		transform: translateY(150%);
		background-color: #fff;
	}

	.sp-menu .sp-info-navi.open,
	.sp-menu .sp-burger-navi.open {
		transform: translateY(0%);
	}

	.sp-menu .sp-info-navi .sub-navi,
	.sp-menu .sp-burger-navi .navigation {
		width: 100%;
		height: calc(100vh - 70px - 62px);
		padding: 20px 40px;
		overflow-y: scroll;
	}

	.sp-menu .sp-burger-navi .navigation li {
		margin-bottom: 8px;
	}

	.sp-menu .sp-burger-navi .navigation a {
		font-size: 1.6rem;
		font-weight: bold;
		color: #333;
		display: flex;
		align-items: center;
	}

	.sp-menu .sp-burger-navi .navigation .icon {
		width: 40px;
		margin-right: 10px;
		display: block;
	}

	.sp-menu .sp-info-navi .sub-navi a {
		display: block;
		width: 100%;
		height: 100%;
		padding-bottom: 10px;
		font-size: 1.6rem;
		font-weight: bold;
	}

	.sp-menu .sp-burger-navi .list-group {
		margin-bottom: 10px;
	}

	.sp-menu .sp-burger-navi .list-group a {
		display: block;
		padding-left: 66px;
		font-size: 1.5rem;
	}

	.side-menu .sp-burger-navi .list-group a::before {
		content: "";
		display: block;
		background: url(/material/img/ico_link.svg) no-repeat;
		background-size: contain;
		border: none;
		transform: rotate(0);
		width: 6px;
		height: 10px;
		position: absolute;
		top: 50%;
		left: 50px;
		transform: translateY(-50%);
	}

	.side-menu .sp-burger-navi .list-group .-blank::after {
		content: '';
		display: block;
		background: url(/material/img/ico_blank.svg) no-repeat;
		background-size: contain;
		border: none;
		width: 12px;
		height: 12px;
		position: absolute;
		top: 50%;
		right: 5px;
		transform: translateY(-50%);
	}

	.sp-menu .sp-burger-navi .list-group a span {
		display: inline-block;
	}

	.side-menu .sp-burger-navi .list-group a:hover span {
		text-decoration: underline;
	}

}

/* ↑↑↑ side-menu ↑↑↑ */

/* ↓↓↓ breadcrumbs ↓↓↓ */
.breadcrumbs {
	/* padding: 25px 0 25px 0px; */
	padding: 40px 0 25px 0px;
	border-top: #ccc solid 1px;
	border-bottom: #ccc solid 1px;
}

@media screen and (max-width: 750px) {
	.breadcrumbs {
		line-height: 1.7;
	}
}

@media screen and (max-width: 375px) {
	.breadcrumbs {
		padding: 60px 0 25px 0px;
	}
}

.breadcrumbs ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.breadcrumbs ul li {
	font-size: 1.2rem;
	margin: 0 10px 0 0;
	display: inline-block;
	letter-spacing: 0.08em;
}

.breadcrumbs ul li+li:before {
	content: "";
	display: inline-block;
	background: url(/material/img/ico_link.svg) no-repeat;
	width: 6px;
	height: 10px;
	margin: 0 10px 0 0;
}

.breadcrumbs ul li a {
	width: 100%;
}

/* ↑↑↑ breadcrumbs ↑↑↑ */

/* ↓↓↓ contents-wrap ↓↓↓ */
.contents-wrap {
	max-width: 970px;
	margin: 0 auto;
	padding: 0 10px;
}

@media screen and (max-width: 750px) {
	.contents-wrap {
		padding: 0 4%;
	}
}

/* ↑↑↑ contents-wrap ↑↑↑ */

/* ↓↓↓ contents-box ↓↓↓ */
.contents-box {
	padding: 50px 0 140px 0;
}

@media screen and (max-width: 750px) {
	.contents-box {
		padding: 20px 0 70px 0;
	}
}

.contents-box .pagetitle {
	padding-top: 5px;
	padding-left: 1em;
	box-sizing: border-box;
	font-size: 2.2rem;
	font-weight: bold;
	background: url(../img/icn_pagetitle.png) no-repeat left center;
	position: relative;
}

.contents-box .pagetitle.-general {
	background: url(../img/icon_line_general.png) no-repeat left center;
}

.contents-box .pagetitle.-general::after {
	position: absolute;
	top: 9px;
	right: 0;
	content: url(../img/common_title_general_bg.png);
	width: 133px;
	height: 100%;
}

.contents-box .pagetitle.-area {
	background: url(../img/icon_line_area.png) no-repeat left center;
}

.contents-box .pagetitle.-job {
	background: url(../img/icon_line_job.png) no-repeat left center;
}

.contents-box .pagetitle.-area::after {
	position: absolute;
	top: 9px;
	right: 0;
	content: url(../img/common_title_area_bg.png);
	width: 75px;
	height: 100%;
}

.contents-box .pagetitle.-job::after {
	position: absolute;
	top: 9px;
	right: 0;
	content: url(../img/common_title_job_bg.png);
	width: 55px;
	height: 100%;
}

.contents-box .titlenotice {
	margin-bottom: 30px;
	font-size: 2.0rem;
	font-weight: bold;
	color: #cc0000;
}

@media (max-width: 768px) {
	.contents-box .titlenotice {
		font-size: 1.9rem;
	}
}

.contents-box .titlenotice .-ajt {
	margin-left: 1em;
}

@media (max-width: 768px) {

	.contents-box .titlenotice .-ajt {
		margin-left: 0;
	}
}


.contents-box .titlenotice.-center {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.contents-box .titlenotice.-sub {
	margin-top: 30px;
	margin-bottom: 0;
}

.contents-box .titlenotice a {
	color: #cc0000;
	text-decoration: underline;
}

/* ↑↑↑ contents-box ↑↑↑ */

/* ↓↓↓ 新卒・中途ボタン ↓↓↓ */
.inc-career,
.inc-new,
.newcareer {
	width: 258px;
	height: 48px;
	position: absolute;
	top: 0;
	right: 0 !important;
	left: auto !important;
	transform: translateX(-40px);
	z-index: 20;
	box-sizing: content-box;
}

.newcareer {
	width: 308px;
}

.inc-career .menu-list,
.inc-new .menu-list,
.newcareer .menu-list {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 750px) {

	.inc-career,
	.inc-new,
	.newcareer {
		width: 138px;
		height: 100px;
		transform: translate(0, 25px);
	}

	.inc-career .menu-list,
	.inc-new .menu-list,
	.newcareer .menu-list {
		flex-direction: column;
	}

	.newcareer .menu-list {
		align-items: flex-end;
	}
}

.inc-career .menu-list .list,
.inc-new .menu-list .list,
.newcareer .menu-list .list {
	width: 128px;
	height: 100%;
	background-color: #008803;
}



.inc-career .menu-list .list:hover,
.inc-new .menu-list .list:hover,
.newcareer .menu-list .list:hover {
	opacity: .7;
}

.inc-career .menu-list .list a,
.inc-new .menu-list .list a,
.newcareer .menu-list .list a {
	width: 100%;
	height: 100%;
	font-size: 1.2rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: 1px;
	line-height: 1.3;
	position: relative;
	display: flex;
	align-items: center;
}

.newcareer .menu-list .list a .font2 {
	width: 45px;
	padding: 3px 3px 3px 5px;
	text-align: center;
}

.newcareer .menu-list .list a .link-text {
	flex: 1;
	padding-left: 8px;
	border-left: 1px solid #80c381;
}

.inc-career .menu-list .list a,
.inc-new .menu-list .list a {
	justify-content: center;
}

/* .newcareer .menu-list .list.-new a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background: url(../img/icon_common_new.svg)no-repeat;
}

.newcareer .menu-list .list.-career a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background: url(../img/icon_common_career.svg)no-repeat;
} */


@media screen and (min-width: 751px) {
	.newcareer .menu-list .list.-new a .font2 {
		width: auto;
		font-size: 10px;
	}

	.newcareer .menu-list .list.-new {
		width: 178px;
	}
}

@media screen and (max-width: 750px) {

	.inc-career .menu-list .list,
	.inc-new .menu-list .list,
	.newcareer .menu-list .list {
		width: 100%;
		height: 48%;
	}

	.inc-career .menu-list .list a,
	.inc-new .menu-list .list a,
	.newcareer .menu-list .list a {
		font-size: 1.1rem;
	}

	.newcareer .menu-list .list a .font2 {
		width: 60px;
	}

	.newcareer .menu-list .list.-new a .font2 {
		font-size: 0.9rem;
	}

}

/* ↑↑↑ 新卒・中途ボタン ↑↑↑ */

/* ↓↓↓ pageTop ↓↓↓ */
@media screen and (max-width: 750px) {
	.pageTop {
		bottom: 100px;
	}

	#jre_mtd_footer {
		padding-bottom: 70px;
	}
}


body:has(.-sougou) :is(.pageTop,.pagetop) {
	display: none;
}

/* ↑↑↑ pageTop ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

@media screen and (min-width: 1281px) {}

@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 950px) {}

@media screen and (max-width: 750px) {}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {}