@charset "utf-8";
/* ローディング画面のスタイル */
#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

#logo {
	width: 3.00rem;
	margin-bottom: 0.60rem;
	text-align: center;
}
@media screen and (max-width: 640px) {
	#logo {
		margin-bottom: 0.30rem;
	}
}

#logo img {
	display: block;
	width: 1.80rem;
	margin: 0 auto 0.20rem;
}
@media screen and (max-width: 640px) {
	#logo img {
		width: 1.30rem;
	}
}

#logo .txt {
	font-size: 0.16rem;
	font-weight: 700;
}
@media screen and (max-width: 640px) {
	#logo .txt {
		font-size: 0.14rem;
		font-weight: 700;
	}
}

#loading-bar {
	width: 100%;
	max-width: 4.00rem;
	height: 0.03rem;
	background: #ccc;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}
@media screen and (max-width: 640px) {
	#loading-bar {
		max-width: 2.00rem;
		height: 0.02rem;
	}
}

#progress {
	width: 0;
	height: 100%;
	background: #EB0909;
	transition: width 0.3s ease;
}

/*============================
MV
============================*/
#mv .main_img {
	box-sizing: border-box;
	padding: 0.20rem 0.20rem 0.3rem;
}
@media screen and (max-width: 640px) {
	#mv {
		padding-bottom: 0.55rem;
	}
	#mv .main_img {
		padding: 0;
		display: block;
		height: 67vw;
		overflow: hidden;
	}
	#mv .main_img img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

#mv .text {
	max-width: 7.18rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
	#mv .text {
		width: 100%;
		max-width: 3.40rem;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}

/* 左側コピーライト */
.side_copyright {
	top: 8.85rem;
}

/*============================
ニュース
============================*/
#news {
	margin-top: 0.5rem;
	padding-bottom: 0.8rem;
}
@media screen and (max-width: 640px) {
	#news {
		margin-top: 0.4rem;
		padding-bottom: 0.40rem;
	}
}

#news .cont_wrap {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
	#news .cont_wrap {
		display: block;
	}
}

#news .cont_wrap .sec_title_wrap {
	width: 20%;
	box-sizing: border-box;
}
@media screen and (max-width: 640px) {
	#news .cont_wrap .sec_title_wrap {
		width: 100%;
		text-align: center;
		padding-bottom: 0.20rem;
		border-bottom: 1px solid #CCCCCC;
	}
}

#news .cont_wrap .list {
	width: 80%;
	border-left: 1px solid #CCCCCC;
	box-sizing: border-box;
	padding-left: 0.30rem;
}
@media screen and (max-width: 640px) {
	#news .cont_wrap .list {
		width: 100%;
		border-left: 0;
		padding-left: 0;
	}
}

#news .cont_wrap .list .item {
	margin-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
	#news .cont_wrap .list .item {
		margin-bottom: 0;
		padding: 0.15rem 0;
		border-bottom: 1px solid #CCCCCC;
	}
}

#news .cont_wrap .list .item a {
	display: flex;
	align-items: center;
	color: #111;
	line-height: 1.75;
}
@media screen and (max-width: 640px) {
	#news .cont_wrap .list .item a {
		display: block;
		line-height: 1.5;
	}
}

#news .cont_wrap .list .item a:hover {
	color: #EB0909;
}

#news .cont_wrap .list .item a .date {
	width: 15%;
	font-size: 0.145rem;
	font-family: "Inter", serif;
	position: relative;
	top: 0.02rem;
}
@media screen and (max-width: 640px) {
	#news .cont_wrap .list .item a .date {
		width: 100%;
		font-size: 0.12rem;
		top: 0;
		padding-bottom: 0.04rem;
	}
}

#news .cont_wrap .list .item a .news_title {
	font-size: 0.16rem;
	font-weight: 600;
}
@media screen and (max-width: 640px) {
	#news .cont_wrap .list .item a .news_title {
		font-size: 0.14rem;
	}
}

#news .btn {
	margin-top: 0.50rem;
}
@media screen and (max-width: 640px) {
	#news .btn {
		margin-top: 0.30rem;
	}
}


/*============================
わたしたちについて
============================*/
#introduction {
	position: relative;
	height: 7.30rem;
}
@media screen and (max-width: 640px) {
	#introduction {
		position: relative;
		height: auto;
	}
}

#introduction .deco {
	bottom: -1.95rem;
	left: auto;
}

#introduction::after {
	content: '';
	display: block;
	background: #111;
	width: 70%;
	height: 6.5rem;
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
}
@media screen and (max-width: 640px) {
	#introduction::after {
		width: 100%;
		height: calc(100% - 0.40rem);
		top: auto;
		bottom: 0;
	}
}

#introduction .ph_wrap {
	max-width: 8.55rem;
	box-sizing: border-box;
	padding-top: 0.9rem;
	position: relative;
	z-index: 2;
	margin-left: calc((100% - 14rem) / 2);
	overflow: hidden;
}
@media screen and (max-width: 640px) {
	#introduction .ph_wrap {
		width: calc(100% - 0.20rem);
		max-width: 100%;
		height: 70vw;
		margin-left: 0;
		padding-top: 0;
	}
}
#introduction .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#introduction .in {
	position: absolute;
	top: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
@media screen and (max-width: 640px) {
	#introduction .in {
		position: relative;
		top: auto;
		left: auto;
		transform: translateX(0);
		padding-top: 0.30rem;
	}
}

#introduction .text_wrap {
	max-width: 3.8rem;
	margin-left: auto;
	margin-right: 0;
}
@media screen and (max-width: 640px) {
	#introduction .text_wrap {
		max-width: 100%;
		margin: auto;
		padding-bottom: 0.50rem;
	}
}

#introduction .text_wrap .sec_title_wrap {
	color: #fff;
}

#introduction .text_wrap .text {
	color: #fff;
	font-size: 0.16rem;
	line-height: 2;
	margin-top: 0.3rem;
	margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
	#introduction .text_wrap .text {
		font-size: 0.14rem;
		margin-top: 0.2rem;
		margin-bottom: 0.2rem;
	}
}

/*============================
デビューまでの流れ
============================*/
#flow {
	margin-top: 1rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	#flow {
		margin-top: 0;
	}
}

#flow::after {
	content: '';
	display: block;
	width: calc(100% - ((100% - 10rem) / 2));
	height: 7.8rem;
	background: #F0F0F0;
	z-index: -1;
	position: absolute;
	top: -2.5rem;
	left: 0;
}
@media screen and (max-width: 640px) {
	#flow::after {
		width: 100%;
		height: 100%;
		z-index: -1;
		top: 0;
	}
}

#flow .in {
	padding: 0;
}

#flow .cont_wrap {
	display: flex;
	flex-wrap: wrap;
}

#flow .cont_wrap .ph_wrap {
	width: 50%;
}
@media screen and (max-width: 640px) {
	#flow .cont_wrap .ph_wrap {
		width: 100%;
	}
}

#flow .cont_wrap .text_wrap {
	width: 50%;
	padding-left: 0.50rem;
	padding-right: 0.40rem;
	box-sizing: border-box;
	margin-top: 0.50rem;
}
@media screen and (max-width: 640px) {
	#flow .cont_wrap .text_wrap {
		width: 100%;
		padding:0.30rem 0.20rem 0.50rem;
		margin-top: 0;
	}
}

#flow .text_wrap .text {
	font-size: 0.16rem;
	line-height: 2;
	margin-top: 0.3rem;
	margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
	#flow .text_wrap .text {
		font-size: 0.14rem;
		margin-top: 0.2rem;
		margin-bottom: 0.2rem;
	}
}

/*============================
働くメリット／待遇
============================*/
#benefits {
	padding-top: 1rem;
}
@media screen and (max-width: 640px) {
	#benefits {
		padding-top: 0;
	}
}

#benefits .in {
	padding: 0;
}

#benefits .cont_wrap {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
	#benefits .cont_wrap {
		display: block;
	}
}

#benefits .cont_wrap .ph_wrap {
	width: 50%;
}
@media screen and (max-width: 640px) {
	#benefits .cont_wrap .ph_wrap {
		width: 100%;
	}
}

#benefits .cont_wrap .text_wrap {
	width: 50%;
	padding-left: 0.50rem;
	padding-right: 0.40rem;
	box-sizing: border-box;
	margin-top: 1rem;
}
@media screen and (max-width: 640px) {
	#benefits .cont_wrap .text_wrap {
		width: 100%;
		padding:0.30rem 0.20rem 0.50rem;
		margin-top: 0;
	}
}

#benefits .text_wrap .text {
	font-size: 0.16rem;
	line-height: 2;
	margin-top: 0.3rem;
	margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
	#benefits .text_wrap .text {
		font-size: 0.14rem;
		margin-top: 0.2rem;
		margin-bottom: 0.2rem;
	}
}

/*============================
よくある質問
============================*/
#faq {
	position: relative;
}

#faq .deco {
	top: -2.8rem;
}

#faq::after {
	content: '';
	display: block;
	background: #111;
	width: 70%;
	height: 4.8rem;
	position: absolute;
	z-index: 0;
	top: 0.8rem;
	left: 0;
}
@media screen and (max-width: 640px) {
	#faq::after {
		content: none;
	}
}

#faq::before {
	content: '';
	display: block;
	background: #F0F0F0;
	width: 100%;
	height: 8.88rem;
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
}
@media screen and (max-width: 640px) {
	#faq::before {
		content: none;
	}
}

#faq .mv_wrap {
	max-width: 8.55rem;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
	margin-right: calc((100% - 14rem) / 2);
	margin-left: auto;
}
@media screen and (max-width: 640px) {
	#faq .mv_wrap {
		max-width: 100%;
		width: 100%;
		height: 55vw;
		margin-right: auto;
		margin-left: 0;
	}
}

#faq .mv_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#faq .in.-top {
	position: absolute;
	top: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
@media screen and (max-width: 640px) {
	#faq .in.-top {
		position: relative;
		top: auto;
		left: 0;
		transform: translateX(0);
		background-color: #111;
		padding: 0.25rem 0.20rem 0;
	}
}

#faq .top_text_wrap {
	max-width: 3.8rem;
	margin-left: 0;
	margin-right: auto;
}
@media screen and (max-width: 640px) {
	#faq .top_text_wrap {
		max-width: 100%;
		margin: auto;
	}
}

#faq .top_text_wrap .sec_title_wrap {
	color: #fff;
}

#faq .top_text_wrap .text {
	color: #fff;
	font-size: 0.16rem;
	line-height: 2;
	margin-top: 0.3rem;
	margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
	#faq .top_text_wrap .text {
		font-size: 0.14rem;
		margin-top: 0.15rem;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 640px) {
	#faq .in1000 {
		position: relative;
	}
	#faq .in1000::before {
		content: "";
		width: 100%;
		height: 2.00rem;
		background-color: #111;
		position: absolute;
		left: 0;
		top: -0.20rem;
		z-index: 0;
	}
}

#faq .faq_wrap {
	border: 2px solid #111;
	margin-top: 0.8rem;
	box-sizing: border-box;
	padding: 0.5rem 0.45rem 0;
	background: #fff;
}
@media screen and (max-width: 640px) {
	#faq .faq_wrap {
		margin: 0.2rem 0 0;
		padding: 0.2rem 0.2rem 0;
		position: relative;
		z-index: 1;
	}
}

#faq .faq_wrap .faq_box {
	margin-bottom: 0.55rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	#faq .faq_wrap .faq_box {
		margin-bottom: 0.25rem;
		position: relative;
	}
}

#faq .faq_wrap .faq_box .q {
	font-size: 0.2rem;
	font-weight: bold;
	line-height: 1.75;
	position: relative;
	border-bottom: 1px solid #707070;
	padding-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
	#faq .faq_wrap .faq_box .q {
		font-size: 0.15rem;
		line-height: 1.3;
		text-indent: -0.12rem;
		padding-left: 0.22rem;
		padding-right: 0.30rem;
	}
	#faq .faq_wrap .faq_box .q i {
		width: 0.10rem;
		height: 0.10rem;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	#faq .faq_wrap .faq_box .q i::before {
		content: "";
		width: 0.10rem;
		height: 1px;
		background-color: #111;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	#faq .faq_wrap .faq_box .q i::after {
		content: "";
		width: 1px;
		height: 0.10rem;
		background-color: #111;
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		transition: all 0.5s;
	}
	#faq .faq_wrap .faq_box .q.-open i::after {
		transform: translateX(-50%) rotate(90deg);
	}
}

#faq .faq_wrap .faq_box .q::before{
	content: 'Q.';
	font-size: 0.24rem;
	font-family: "Inter", serif;
	display: inline-block;
	font-weight: 600;
	padding-right: 0.06rem;
	color: #EB0909;
}
@media screen and (max-width: 640px) {
	#faq .faq_wrap .faq_box .q::before{
		font-size: 0.18rem;
		padding-right: 0.04rem;
	}
}

#faq .faq_wrap .faq_box .a_box {
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.25rem;
	align-items: center;
}
@media screen and (max-width: 640px) {
	#faq .faq_wrap .faq_box .a_box {
		display: block;
		margin-top: 0.20rem;
		display: none;
		padding-bottom: 0.20rem;
	}
}

#faq .faq_wrap .faq_box .a_box .people_img {
	width: 1.35rem;
	height: 1.35rem;
	overflow: hidden;
	border-radius: 50%;
}
@media screen and (max-width: 640px) {
	#faq .faq_wrap .faq_box .a_box .people_img {
		width: 1.20rem;
		height: 1.20rem;
		margin: auto;
	}
}

#faq .faq_wrap .faq_box .a_box .a_wrap {
	width: calc(100% - 1.35rem);
	padding-left: 0.25rem;
	box-sizing: border-box;
}
@media screen and (max-width: 640px) {
	#faq .faq_wrap .faq_box .a_box .a_wrap {
		width: 100%;
		padding: 0.15rem 0 0;
	}
}

#faq .faq_wrap .faq_box .a_box .a {
	font-size: 0.16rem;
	line-height: 2;
	box-sizing: border-box;
}
@media screen and (max-width: 640px) {
	#faq .faq_wrap .faq_box .a_box .a {
		font-size: 0.14rem;
		text-align: justify;
	}
}

#faq .faq_wrap .faq_box .name {
	font-size: 0.14rem;
	font-weight: bold;
	margin-top: 0.1rem;
	display: inline-block;
	padding-left: 0.10rem;
}
@media screen and (max-width: 640px) {
	#faq .faq_wrap .faq_box .name {
		font-size: 0.12rem;
		margin-top: 0.06rem;
	}
}

#faq .faq_wrap .faq_box .name::before {
	content: "（";
}

#faq .faq_wrap .faq_box .name::after {
	content: "）";
}

@media screen and (max-width: 640px) {
	#faq .bnr {
		max-width: 100%;
	}
}

/*============================
フッター
============================*/
footer::before {
	content: "";
	width: 100%;
	height: 0.60rem;
	background-color: #F0F0F0;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 640px) {
	footer::before {
		content: none;
	}
	footer {
		padding-top: 0.30rem;
	}
}