@charset "utf-8";

/* トップページ
======================================== */

/* 共通
------------------------------------------------- */
/* 画像 */
.index img {
	width: 100%;
}

/* 見出し */
.index h2 {
	position: relative;
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 60px;
}
.index h2 span {
	display: block;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 6rem;
	color: #e60000;
}
.index h2::before {
	position: absolute;
	display: block;
	content: "";
	bottom: -30px;
	left: 0;
	width: 40px;
	height: 3px;
	background: #e60000;
	margin: auto;
}
@media screen and (max-width:1024px) {
	.index h2 {
		font-size: 1.8rem;
		margin-bottom: 45px;
	}
	.index h2 span {
		font-size: 4.5rem;
	}
	.index h2::before {
		bottom: -20px;
		width: 30px;
		height: 3px;
	}
}

/* READ MORE ボタン */
.index .more a {
	display: inline-block;
	font-family: 'Lato', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05em;
	border-radius: 100px;
	padding: 16px 80px;
	margin-top: 40px;
	transition: all 0.2s;
}
.index .more a.arrow::before {
	height: 14px;
	width: 14px;
	background: #fff;
}
.index .more a:hover {
	transform: scale(1.1);
}
@media screen and (max-width:1024px) {
	.index .more a {
		font-size: 1.3rem;
		padding: 12px 50px 12px 40px;
		margin-top: 15px;
	}
	.index .more a.arrow::before {
		height: 12px;
		width: 12px;
	}
}


/* ビジュアル
------------------------------------------------- */
.visualArea {
	position: relative;
	width: 100%;
	height: 800px;
	padding: 0;
}
.visualArea::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	background-blend-mode: multiply;
	z-index: 1;
}
.visualArea .txt_box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	text-align: center;
	z-index: 2;
}
.visualArea img {
	width: 100%;
	height: 800px;
	object-fit: cover;
}
.visualArea .copy {
	font-size: 6.4rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 20px;
}
.visualArea .subcopy {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 3.4rem;
	letter-spacing: 0.01em;
	margin: 0;
}
@media screen and (max-width:1024px) {
	.visualArea {
		height: 300px;
		margin-bottom: 10px;
		overflow: hidden;
	}
	.visualArea img {
		height: 300px;
	}
	.visualArea .copy {
		font-size: 3rem;
		margin: 0 0 10px;
	}
	.visualArea .subcopy {
		font-size: 1.8rem;
		margin: 0;
	}
}

/* キラーコンテンツ
------------------------------------------------- */
.main_contentsArea {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 100px 0 120px;
}
.main_contentsArea.picL {
	padding-right: 10%;
	margin-bottom: 200px;
}
.main_contentsArea.picR {
	flex-direction: row-reverse;
	padding-left: 10%;
}
.main_contentsArea::before {
	position: absolute;
	content: "";
	width: 90%;
	height: calc(100% - 50px);
	top: 150px;
	background: #f2f2f2;
	opacity: 0.8;
	z-index: -1;
}
.main_contentsArea.picL::before {
	left: 0;
}
.main_contentsArea.picR::before {
	right: 0;
}
.main_contentsArea.picL::after {
	right: 0;
}
.main_contentsArea.picR::after {
	left: 0;
}
.main_contentsArea .pic_box {
	width: 55%;
}
.main_contentsArea .txt_box {
	width: 45%;
	padding: 115px 5% 0;
}
.main_contentsArea .pic_box img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: 50% 50%;
}
.main_contentsArea.picL .pic_box img {
	border-radius: 0 30px 30px 0;
}
.main_contentsArea.picR .pic_box img {
	border-radius: 30px 0 0 30px;
}
@media screen and (max-width:1024px) {
	.main_contentsArea {
		display: block;
		margin: 60px 0 70px;
	}
	.main_contentsArea.picL {
		padding-right: 10%;
		margin-bottom: 100px;
	}
	.main_contentsArea.picR {
		padding-left: 10%;
	}
	.main_contentsArea::before {
		width: 90%;
		height: calc(100% - 100px);
		bottom: auto;
	}
	.main_contentsArea .pic_box {
		width: 90%;
		margin-bottom: 30px;
	}
	.main_contentsArea.picR .pic_box {
		margin-left: auto;
	}
	.main_contentsArea .txt_box {
		width: 100%;
		padding: 0 10%;
	}
	.main_contentsArea .pic_box img {
		height: 200px;
	}
}

/* カテゴリ系（横並び）
------------------------------------------------- */
.category_a_Area .pic_bg {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 500px;
	background: url("../images/career.jpg") rgba(0,0,0,0.4) no-repeat center center / cover;
	background-blend-mode: multiply;
	color: #fff;
	margin-bottom: 40px;
	padding: 0 5% 3%;
}
.category_a_Area .pic_bg h2 span {
	color: #fff;
}
.category_a_Area ul {
	display: flex;
	justify-content: space-between;
	padding: 0 4%;
	margin: -130px 0 0;
}
.category_a_Area li {
	display: flex;
	align-items: center;
	flex: 1;
	margin: 0 1%;
}
.category_a_Area a {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.4;
	border-radius: 30px;
	background: #f2f2f2;
	padding: 60px 18% 60px 10%;
	transition: all 0.3s;
}
.category_a_Area a:hover {
	transform: scale(1.1);
}
.category_a_Area a span {
	display: block;
	font-family: 'Lato', sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.category_a_Area a.arrow::before {
	background: #e60000;
}
@media screen and (max-width:1024px) {
	.category_a_Area .pic_bg {
		height: 250px;
		margin-bottom: 40px;
		padding: 0 7% 3%;
	}
	.category_a_Area ul {
		flex-wrap: wrap;
		padding: 0 4%;
		margin: -90px 0 0;
	}
	.category_a_Area li {
		flex: auto;
		width: calc((100% - 28px) / 2);
		margin: 14px 7px 0;
	}
	.category_a_Area ul::after {
		display: block;
		content:"";
		width: 50%;
	}
	.category_a_Area a {
		font-size: 1.6rem;
		border-radius: 20px;
		padding: 30px 18% 30px 10%;
	}
	.category_a_Area a span {
		font-size: 1.2rem;
	}
}

/* カテゴリ系（縦並び）
------------------------------------------------- */
.category_b_Area .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.category_b_Area .pic_box {
	width: 48%;
}
.category_b_Area .txt_box {
	width: 45%;
}
.category_b_Area .pic2 {
	text-align: right;
	margin: -230px 0 0 0;
}
.category_b_Area .pic1 img {
	max-width: 400px;
	width: 80%;
	height: 540px;
	object-fit: cover;
	border-radius: 30px;
}
.category_b_Area .pic2 img {
	max-width: 240px;
	width: 80%;
	height: 324px;
	object-fit: cover;
	border-radius: 30px;
}
.category_b_Area ul {
	font-size: 2.4rem;
	font-weight: 500;
	border-top: solid 1px #eee;
	margin-top: 80px;
}
.category_b_Area ul li a {
	display: block;
	border-bottom: solid 1px #eee;
	padding: 22px 0;
	transition: all 0.3s;
}
.category_b_Area ul li a:hover {
	transform: scale(1.05);
}
.category_b_Area a.arrow::before {
	background: #e60000;
}
@media screen and (max-width:1024px) {
	.category_b_Area .wrap {
		display: block;
	}
	.category_b_Area .pic_box {
		width: 100%;
		margin-bottom: 20px;
	}
	.category_b_Area .txt_box {
		width: 100%;
	}
	.category_b_Area .pic2 {
		text-align: left;
		margin: -150px 0 0 170px;
	}
	.category_b_Area .pic1 img {
		width: 220px;
		height: 300px;
	}
	.category_b_Area .pic2 img {
		width: 140px;
		height: 190px;
	}
	.category_b_Area ul {
		font-size: 1.8rem;
		margin-top: 20px;
	}
	.category_b_Area ul li a {
		display: block;
		border-bottom: solid 1px #eee;
		padding: 18px 0;
	}
}

/* エントリー
------------------------------------------------- */
.entryArea {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 540px;
	background: url("../images/entry.jpg") rgba(0,0,0,0.4) no-repeat center center / cover;
	background-blend-mode: multiply;
	text-align: center;
	color: #fff;
	padding: 0;
	margin: 100px 0 0;
}
.entryArea h2 span {
	color: #fff;
}
.entryArea h2::before {
	right: 0;
	background: #fff;
}
.entryArea .btn a {
	display: inline-block;
	width: 400px;
	font-size: 2.2rem;
	font-weight: 500;
	color: #fff;
	border-radius: 100px;
	padding: 16px;
	margin-top: 40px;
	transition: all 0.3s;
}
.entryArea .btn a.arrow::before {
	background: #fff;
}
.entryArea .btn a:hover {
		transform: scale(1.1);
}
@media screen and (max-width:1024px) {
	.entryArea {
		width: 100%;
		height: 400px;
		padding: 0;
		margin: 80px 0 0;
	}
	.entryArea .btn a {
		width: 90%;
		font-size: 1.8rem;
		padding: 12px;
		margin: 20px auto 0;
	}
}
