@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-YH */
/* clearfix */
.clearfix::after {
	content: '';
	display: block;
	clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
	display: flex;
	flex-wrap: wrap;
}
.flexA {
	justify-content: space-around;
}
.flexB {
	justify-content: space-between;
}
.flexC {
	justify-content: center;
}
/* font */
.mont {
	font-family: "Montserrat", sans-serif;
}
/*------------------------------------------------------------
	loading
------------------------------------------------------------*/
.loading {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: #fff;
	z-index: 10000;
}
.loading .loader {
	width: 4.8rem;
	height: 4.8rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 0.5rem solid #E5E5E5;
	border-bottom-color: #EB0A1E;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/*------------------------------------------------------------
	fadeIn
------------------------------------------------------------*/
.fadeIn {
	opacity: 0;
	transform: translateY(10rem);
	transition: 1s ease;
}
.fadeIn.on {
	opacity: 1;
	transform: translateY(0);
}
/*------------------------------------------------------------
	comLinkBox
------------------------------------------------------------*/
.comLinkBox {
	display: flex;
}
.comLinkBox .col {
	padding: 4rem 0.5rem 6.6rem;
	width: 50%;
	color: #fff;
	text-align: center;
}
.comLinkBox .col01 {
	background: url(../img/common/bg01.jpg) no-repeat center center / cover;
}
.comLinkBox .col02 {
	background: #D80C18;
}
.comLinkBox .enTxt {
	margin-bottom: 1.6rem;
}
.comLinkBox .txt01 {
	margin-bottom: 2.5rem;
	font-size: 4rem;
	letter-spacing: 0.1em;
}
.comLinkBox .txt02 {
	margin-bottom: 3.3rem;
	font-size: 1.8rem;
}
.comLinkBox .btn {
	margin: 0 auto;
	width: 34.9rem;
	max-width: 100%;
}
.comLinkBox .btn a {
	padding: 1rem 5rem 1rem 2.9rem;
	width: 100%;
	min-height: 5rem;
	display: flex;
	align-items: center;
	border-radius: 5rem;
	background: url(../img/common/icon08.png) no-repeat right 2.8rem center / 1.8rem;
	border: 1px solid #fff;
}
.comLinkBox .btn a.noLink {
	opacity: 0.5 !important;
}
.comLinkBox .btn .note {
	margin-top: 1.6rem;
	display: block;
	text-align: right;
	font-size: 1.4rem;
}
.comLinkBox .btnList {
	margin: 3.4rem auto 0;
	width: 54rem;
	max-width: 95%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 5rem 0;
	position: relative;
}
.comLinkBox .btnList::before {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 50%;
	box-sizing: border-box;
	border-top: 1px dashed rgba(255, 255, 255, 0.50);
	content: '';
	pointer-events: none;
	user-select: none;
}
.comLinkBox .btnList li {
	width: calc(50% - 1rem);
	position: relative;
}
.comLinkBox .btnList li a {
	padding: 1.7rem 5rem 1.6rem 6rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: 10rem;
	border: 1px solid #fff;
	background: #D80C18 url(../img/common/icon03.png) no-repeat right 2.9rem center / 1.4rem;
}
.comLinkBox .btnList li a .icon {
	width: 3.3rem;
	position: absolute;
	left: 2.8rem;
	top: 50%;
	font-size: 0;
	transform: translateY(-50%);
}
.comLinkBox .btnList li a .icon img {
	width: 100%;
}
.comLinkBox .btnList li a .icon .black {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
}
.comLinkBox .btnList li a .txt {
	display: block;
	letter-spacing: 0.15em;
	line-height: 1.25;
}
.comLinkBox .btnList li a .txt .mont {
	display: block;
	font-size: 2rem;
}
@media all and (min-width: 897px) {
	.comLinkBox .btn a:hover {
		opacity: 1;
		color: #000;
		background-color: #fff;
		background-image: url(../img/common/icon09.png);
		background-position: right 1.8rem center;
	}
	.comLinkBox .btnList li a:hover {
		color: #000;
		background-color: #fff;
		background-image: url(../img/common/icon02.png);
	}
	.comLinkBox .btnList li a:hover .icon .white {
		opacity: 0;
	}
	.comLinkBox .btnList li a:hover .icon .black {
		opacity: 1;
	}
}
@media all and (min-width: 897px) and (max-width: 1425px) {
	.comLinkBox .enTxt img {
		height: max(3.2rem,2.526vw);
	}
}
@media all and (min-width: 897px) and (max-width: 999px) {
	.comLinkBox .btnList li a .icon {
		left: 2vw;
	}
	.comLinkBox .btnList li a .txt {
		letter-spacing: 0.05em;
	}
	.comLinkBox .btnList li a .txt .mont {
		font-size: 2vw;
	}
}
@media all and (max-width: 896px) {
	.comLinkBox {
		display: block;
	}
	.comLinkBox .col {
		padding: 2.9rem 2rem 1.6rem;
		width: auto;
	}
	.comLinkBox .col02 {
		padding: 2.9rem 2rem 2.4rem;
	}
	.comLinkBox .enTxt {
		margin: 0 -0.5rem 1.3rem;
	}
	.comLinkBox .enTxt img {
		height: 1.85rem;
	}
	.comLinkBox .txt01 {
		margin-bottom: 1.8rem;
		font-size: 2.8rem;
	}
	.comLinkBox .txt02 {
		margin-bottom: 2.3rem;
		font-size: 1.26rem;
	}
	.comLinkBox .btn {
		width: 24.4rem;
	}
	.comLinkBox .btn a {
		padding: 0.2rem 3rem 0.4rem 2rem;
		min-height: 3.5rem;
		font-size: 1.1rem;
		background-position: right 1.9rem center;
		background-size: 1.2rem;
	}
	.comLinkBox .btn .note {
		margin-top: 0.6rem;
		font-size: 1.2rem;
	}
	.comLinkBox .btnList {
		margin: 2.8rem 0 0;
		width: auto;
		max-width: initial;
		gap: 2.6rem 0;
	}
	.comLinkBox .btnList li {
		width: calc(50% - 0.5rem);
	}
	.comLinkBox .btnList li a {
		padding: 1.3rem 5rem 1rem 6rem;
		background-position: right 1.8rem center;
		background-size: 1rem;
	}
	.comLinkBox .btnList li a .icon {
		width: 2.3rem;
		left: 1.9rem;
	}
	.comLinkBox .btnList li a .icon .black {
		opacity: 0 !important;
	}
	.comLinkBox .btnList li a .txt {
		font-size: 1rem;
		line-height: 1.3;
	}
	.comLinkBox .btnList li a .txt .mont {
		font-size: 1.4rem;
	}
}
/*------------------------------------------------------------
	comTxtSlide
------------------------------------------------------------*/
.comTxtSlide {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -0.4rem;
	white-space: nowrap;
	mix-blend-mode: overlay;
	z-index: 1;
}
.comTxtSlide span {
	margin-right: 5.8rem;
}
.comTxtSlide img {
	max-width: initial;
}
@media all and (max-width: 896px) {
	.comTxtSlide {
		bottom: -0.2rem;
	}
	.comTxtSlide span {
		margin-right: 2.8rem;
	}
	.comTxtSlide img {
		height: 7.8rem;
	}
}
/*------------------------------------------------------------
	comTxt
------------------------------------------------------------*/
.comTxt {
	line-height: 1;
}
/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
	width: 100%;
	height: 60rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: url(../img/job-type/page_title_bg.jpg) no-repeat center center / cover;
	overflow: hidden;
}
.pageTitle h2 {
	margin-bottom: 0.4rem;
	width: 100%;
	color: #fff;
	font-size: 5rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.pageTitle h2 .sm {
	margin: 0 auto 1.1rem;
	padding: 0.7rem 1.5rem;
	width: fit-content;
	display: block;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.25;
	border: 1px solid currentColor;
}
.pageTitle .comTxtSlide {
	mix-blend-mode: screen;
}
@media all and (max-width: 896px) {
	.pageTitle {
		height: 30rem;
		background-image: url(../img/job-type/page_title_bg_sp.jpg);
	}
	.pageTitle h2 {
		margin-bottom: 1rem;
		font-size: 2.8rem;
	}
	.pageTitle h2 .sm {
		margin-bottom: 0.8rem;
		padding: 0.3rem 0.8rem;
		font-size: 0.9rem;
		line-height: 1.3;
	}
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 100rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 2rem;
		width: auto !important;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.6rem 2rem;
}
.comBtn a {
	padding: 0.5rem 4rem 0.5rem 2.9rem;
	width: 25.4rem;
	max-width: 100%;
	min-height: 6rem;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	border-radius: 5rem;
	border: 0.1rem solid #000;
	background: rgba(255, 255, 255, 0.50) url(../img/common/icon09.png) no-repeat right 2.8rem center / 1.8rem;
}
@media all and (min-width: 897px) {
	.comBtn a:hover {
		color: #fff;
		background-color: #000;
		background-image: url(../img/common/icon08.png);
		background-position: right 1.8rem center;
	}
}
@media all and (max-width: 896px) {
	.comBtn {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem 0;
	}
	.comBtn a {
		padding: 0.3rem 4rem 0.3rem 2rem;
		width: 17.8rem;
		min-height: 4.2rem;
		font-size: 1.2rem;
		background-position: right 1.9rem center;
		background-size: 1.3rem;
	}
}
/*------------------------------------------------------------
	comIntBox
------------------------------------------------------------*/
.comIntBox {
	position: relative;
	z-index: 1;
	overflow-x: clip;
}
.comIntBox .intSlider {
	margin: 0 auto;
	padding-bottom: 9rem;
	width: calc(100% - 44rem);
	min-width: 100rem;
}
.comIntBox .intSlider .slick-list {
	overflow: visible;
}
.comIntBox .intSlider .slick-slide > div {
	margin-right: 5rem;
	width: 30rem;
}
.comIntBox .intSlider li {
	position: relative;
	vertical-align: top;
}
.comIntBox .intSlider li a {
	display: block;
	position: relative;
}
.comIntBox .intSlider .num {
	position: absolute;
	right: -1.3rem;
	top: -1.3rem;
	width: 10.1rem;
}
.comIntBox .intSlider .pho {
	border-radius: 15rem 15rem 15rem 0;
	overflow: hidden;
}
.comIntBox .intSlider .pho img {
	width: 100%;
	transition: 0.3s;
}
.comIntBox .intSlider .txtBox {
	padding-bottom: 0.7rem;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.comIntBox .intSlider .txtBox .jobTitle {
	margin-bottom: 0.4rem;
	padding: 0.4rem 1.5rem;
	width: fit-content;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	background: #D80C18;
}
.comIntBox .intSlider .txtBox .text {
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2.26;
}
.comIntBox .intSlider .txtBox .text span {
	padding: 0.5rem 1.5rem;
	background: #fff;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.comIntBox .intSlider .txtBox .name {
	margin: 0 1.5rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.15em;
}
.comIntBox .intSlider .slick-arrow {
	padding: 0;
	width: 6rem;
	height: 6rem;
	position: absolute;
	bottom: 0;
	display: block;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	line-height: 0;
	border-radius: 50%;
	border: 0.1rem solid #000;
	background: transparent;
	outline: none;
	transition: 0.3s;
	z-index: 1;
}
.comIntBox .intSlider .slick-arrow.slick-disabled {
	opacity: 0.3 !important;
	pointer-events: none !important;
}
.comIntBox .intSlider .slick-arrow::before {
	width: 1.8rem;
	height: 1rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: url(../img/common/icon09.png) no-repeat center center / 100%;
	content: '';
	z-index: 1;
	transition: 0.3s;
}
.comIntBox .intSlider .slick-prev {
	left: 0;
}
.comIntBox .intSlider .slick-prev::before {
	transform: translate(-50%, -50%) rotate(180deg);
}
.comIntBox .intSlider .slick-next {
	left: 8rem;
}
@media all and (min-width: 897px) {
	.comIntBox .intSlider a:hover .pho img {
		transform: scale(1.05);
	}
	.comIntBox .intSlider .slick-arrow:hover {
		background-color: #000;
	}
	.comIntBox .intSlider .slick-arrow:hover::before {
		background-image: url(../img/common/icon08.png);
	}
	.comIntBox .intSlider .slick-prev:hover::before {
		margin-left: -1rem;
	}
	.comIntBox .intSlider .slick-next:hover::before {
		margin-left: 1rem;
	}
}
@media all and (max-width: 896px) {
	.comIntBox .intSlider {
		margin: 0 0 0 4rem;
		padding-bottom: 6.1rem;
		width: auto;
		min-width: initial;
	}
	.comIntBox .intSlider .slick-list {
		padding-right: 1.2rem;
	}
	.comIntBox .intSlider .slick-slide > div {
		margin-right: 4.8rem;
		width: auto;
	}
	.comIntBox .intSlider .num {
		width: 9.8rem;
	}
	.comIntBox .intSlider .txtBox .jobTitle {
		margin: 0 0.1rem 0.5rem;
		font-size: 1.13rem;
	}
	.comIntBox .intSlider .txtBox .text {
		margin: 0 0.3rem 0.8rem;
		font-size: 1.3rem;
	}
	.comIntBox .intSlider .txtBox .text span {
		padding: 0.4rem 1.5rem;
	}
	.comIntBox .intSlider .txtBox .name {
		margin: 0 1.5rem;
		font-size: 2.2rem;
	}
	.comIntBox .intSlider .slick-arrow {
		width: 4.2rem;
		height: 4.2rem;
	}
	.comIntBox .intSlider .slick-arrow::before {
		width: 1.3rem;
	}
	.comIntBox .intSlider .slick-next {
		left: 5.6rem;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 10.3rem;
	position: relative;
	text-align: center;
	font-size: 4rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
.headLine01::after {
	width: 6rem;
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: -4.2rem;
	transform: translateX(-50%);
	background: #D80C18;
	content: '';
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 6.7rem;
		font-size: 2.8rem;
	}
	.headLine01::after {
		width: 4.5rem;
		bottom: -3rem;
	}
}
/*------------------------------------------------------------
	comBtnBox
------------------------------------------------------------*/
.comBtnBox {
	padding: 10rem 0;
	background: #fff;
}
.comBtnBox .btnList {
	display: flex;
	justify-content: space-between;
}
.comBtnBox .btnList li {
	width: 48rem;
}
.comBtnBox .btnList li a {
	display: block;
	position: relative;
	border-radius: 3rem 3rem 0 3rem;
	overflow: hidden;
}
.comBtnBox .btnList li img {
	width: 100%;
	transition: 0.3s;
}
.comBtnBox .btnList li .txt {
	padding: 1.3rem 9.7rem 1.3rem 3rem;
	min-width: 19rem;
	position: absolute;
	right: 0;
	bottom: 0;
	background: #FFF url(../img/common/icon09.png) no-repeat right 3.1rem center / 1.8rem;
	border-radius: 3rem 0 0 0;
	transition: 0.3s;
}
@media all and (min-width: 897px) {
	.comBtnBox .btnList li a:hover img {
		transform: scale(1.05);
	}
	.comBtnBox .btnList li a:hover .txt {
		background-position: right 2.1rem center;
	}
}
@media all and (max-width: 896px) {
	.comBtnBox {
		padding: 5rem 0;
	}
	.comBtnBox .btnList {
		margin: 0 3rem;
		flex-wrap: wrap;
		gap: 2rem 0;
	}
	.comBtnBox .btnList li {
		width: 100%;
	}
	.comBtnBox .btnList li a {
		border-radius: 2rem 2rem 0 2rem;
	}
	.comBtnBox .btnList li .txt {
		padding: 0.9rem 6.6rem 0.9rem 2rem;
		min-width: 13rem;
		font-size: 1.1rem;
		background-size: 1.2rem;
		background-position: right 2rem center;
		border-radius: 2rem 0 0 0;
	}
}