@charset "UTF-8";

section {
	margin-bottom: 120px;
}

section h2 {
  font-size: 36px;
  text-align: center;
  position: relative;
  font-family: "Outfit";
  font-weight: 400;
  letter-spacing: 1.4px;
  margin: 0 0 30px;
}

section h2::after {
	position: absolute;
	content: "";
	width: 50px;
	height: 3px;
	background-color: #E50012;
	bottom: -15px;
	left: 50%;
	margin-left: -25px;
}

section .view_more {
  text-align: right;
  max-width: 1200px;
	margin: 0 auto 30px;
}


section .view_more a {
	padding-right: 16px;
  position: relative;
  font-size: 16px;
}

section .view_more a::after {
	position: absolute;
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px #333 solid;
	border-right: 2px #333 solid;
	transform: rotate(45deg);
	top: 4px;
	right: 5px;
	transition: 0.3s;
}

section .view_more a:hover::after {
	right: 0px;
	transition: 0.3s;
}


/*=================================================================*/
/*	メインビジュアル */
/*=================================================================*/

.main_VS {
	width: auto;
	position: relative;
	margin-bottom: 120px;
}
.main_VS .mainImg {
	height: 600px;
	overflow: hidden;
}

.main_VS .mainImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
} 

.main_VS .mainImg img.sp {
	display: none;
}


.main_VS .catch_copy {
  position: absolute;
  left: 50%;
  margin-left: -355px;
  top: 50%;
  margin-top: -164px;
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}



/*=================================================================*/
/*	TOPICS */
/*=================================================================*/

section.topics .wrap {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	position: relative;
}

section.topics .wrap figure {
	width: 32%;
	margin-bottom: 30px;
}


section.topics .wrap figure img {
	margin-bottom: 10px;
	border-radius: 12px;
}

section.topics .wrap figure figcaption {
	font-size: 18px;
	line-height: 1.4;
	font-weight: 500;
}

/*=================================================================*/
/*	Instagram */
/*=================================================================*/


section.insta .wrap {
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	gap: 1%;
	position: relative;
}

section.insta .wrap a{
	width: 24.2%;
}

section.insta .wrap .img {
	margin-bottom: 13px;
} 


/*=================================================================*/
/*	RECRUIT */
/*=================================================================*/
section.recruit .recruit_wrap {
  background: url(../images/recruit_img02.jpg) no-repeat top center;
  background-size: cover;
  text-align: center;
  padding: 40px;
  min-height: 560px;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

section.recruit .recruit_wrap h3 {
	font-size: 50px;
	color: #fff;
	margin-bottom: 40px;
	text-shadow: 0 0 10px rgb(0 0 0 / 28%);
	position: relative;
	font-family: "A1minchoTest", serif;
	font-weight: 700;
}

section.recruit .recruit_wrap h3::after {
	position: absolute;
	content: "";
	width: 50px;
	height: 3px;
	background-color: #E50012;
	bottom: -25px;
	left: 50%;
	margin-left: -25px;
}

section.recruit .recruit_wrap p {
	font-family: "Outfit";
	font-weight: 400;
	text-shadow: 0 0 10px rgb(0 0 0 / 28%);
	color: #fff;
	margin-bottom: 60px;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 1.4px;
}



section.recruit .recruit_wrap .recruit_btn a {
	background-color: #E50012;
	padding: 23px 80px;
	border-radius: 50px;
	font-size: 24px;
	color: #fff;
	font-weight: 500;
	transition: 0.3s;
	display: inline-block;
	position: relative;
}
section.recruit .recruit_wrap .recruit_btn a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: solid 2px;
  border-right: solid 2px;
  top: 50%;
  margin-top: -6px;
  right: 28px;
  color: #ffffff;
  display: block;
  transform: rotate(45deg);
}
section.recruit .recruit_wrap .recruit_btn a:hover {
	background-color: #BB000F;
	opacity: 1;
}


/*=================================================================*/
/*	old_group */
/*=================================================================*/

section.old_group {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	justify-content: space-between;
	margin: 0 auto 60px;
	
}

section.old_group .old_box {
	width: 19%;
	position: relative;
	margin-bottom: 1.4%;
}


section.old_group .old_box a span {
	font-weight: bold;
	color: #fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	font-size: 20px;
	font-family: sans-serif;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	line-height: 1;
}




/*=================================================================*/
/*	cardsWraper
/*=================================================================*/
.cardsWraper {
  padding: 0 20px;
  width: unset;
  max-width: unset;
  clear: both;
  background: url(../images/logo_01.svg) no-repeat right 6% bottom 23%;
  background-size: 10%;
}
.cardsWraper .cards {
	max-width: 1200px;
	width: unset !important;
}
.cardsWraper .cards .card {
  padding: 0 !important;
  width: 19%;
  margin: 0 0.5% 1%;
}







@media screen and (max-width: 920px) {

/*=================================================================*/
/*	TOPICS
/*=================================================================*/

	section.topics .wrap figure {
		width: 48%;
		margin-bottom: 30px;
	}
	section.topics .wrap figure figcaption {
		font-size: 16px;
	}

/*=================================================================*/
/*	メインビジュアル
/*=================================================================*/

	.main_VS .mainImg img.sp {
		display: block;
	}

	.main_VS .mainImg img.pc {
		display: none;
	}


}


/*******************************************************************/
/* SP */
/*******************************************************************/
@media screen and (max-width: 768px) {
/*=================================================================*/
/*	共通 */
/*=================================================================*/
	
	section {
		margin-bottom: 60px;
	}
	section h2 {
		font-size: 24px;
		margin: 0 0 10px
	}
	section h2::after {
		width: 40px;
		height: 2px;
		bottom: -8px;
		margin-left: -20px;
	}
	section .view_more {
		margin: 0 auto 10px;
	}

	section .view_more a {
		padding-right: 16px;
		font-size: 14px;
	}
	section .view_more a::after {
		width: 7px;
		height: 7px;
		border-top: 1px #333 solid;
		border-right: 1px #333 solid;
		top: 4px;
		right: 5px;
	}
	section .view_more a:hover::after {
		right: 0px;
		transition: 0.3s;
	}

	/*=================================================================*/
	/*	メインビジュアル */
	/*=================================================================*/
	.main_VS {
		width: auto;
		margin-bottom: 60px;
	}
	.main_VS .mainImg {
		height: 400px;
	}
	.main_VS .mainImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	


	.main_VS .catch_copy {
		position: absolute;
		width: 340px;
		left: 50%;
		margin-left: -170px;
		top: unset;
		margin-top: 0;
		bottom: 10%;
	}
	.main_VS .catch_copy img {
		width: 100%;
	}



	/*=================================================================*/
	/*	RECRUIT */
	/*=================================================================*/
	section.recruit .recruit_wrap {
		background: url(../images/recruit_img_SP.jpg) no-repeat top center;
		background-size: cover;
		text-align: center;
		padding: 50px 0;
	}

	section.recruit .recruit_wrap h3 {
		font-size: 50px;
		margin-bottom: 40px;
	}

	section.recruit .recruit_wrap h3::after {
		width: 40px;
		height: 2px;
		bottom: -25px;
		left: 50%;
		margin-left: -20px;
	}

	section.recruit .recruit_wrap p {
		font-size: 16px;
		line-height: 1.2;
		letter-spacing: 1px;
		margin-bottom: 40px;

	}

	section.recruit .recruit_wrap .recruit_btn a {
		padding: 3% 12%;
		font-size: 16px;
		text-align: center;
	}


	section.recruit .recruit_wrap .recruit_btn a::before {
		width: 9px;
		height: 9px;
		margin-top: -5px;
		right: 19px;
	}


	/*=================================================================*/
	/*	old_group */
	/*=================================================================*/

	section.old_group .old_box a span {
		font-size: 16px;
	}

	section.old_group {
		margin: 0 auto 70px;		
	}


}
	



@media screen and (max-width: 540px) {

	section.topics .wrap figure {
		width: 100%;
		margin-bottom: 4%;
	}
	section.topics .wrap figure figcaption {
		line-height: 1.2;
	}

	/*=================================================================*/
	/*	Instagram */
	/*=================================================================*/
	section.insta .wrap {
		gap: unset;
		justify-content: space-between;
	}
	section.insta .wrap a{
		width: 48%;
	}
	section.insta .wrap .img {
		margin-bottom: 13px;
	}

	/*=================================================================*/
	/*	RECRUIT */
	/*=================================================================*/


	section.recruit .recruit_wrap h3 {
		font-size: 30px;
		margin-bottom: 30px;
	}

	section.recruit .recruit_wrap p {
		font-size: 14px;
	}

	section.recruit .recruit_wrap h3::after {
		bottom: -15px;
	}


	
/*=================================================================*/
/*	old_group */
/*=================================================================*/

	section.old_group .old_box {
		width: 32.3%;
	}


	section.old_group .old_box a span {
		font-size: 14px;
	}

	section.old_group .old_menu {
		display: none;

	}

}
