/*============================
MV
============================*/
#mv {
	background-image: url(../img/newgrads/aboutus/mv.jpg);
}

/*============================
スクロールアニメーション
============================*/
/* ズームイン */
.zoomInTrigger.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}

.zoomInTrigger02.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	animation-delay: 0.3s;
}

.zoomInTrigger03.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	animation-delay: 0.6s;
}

.zoomInTrigger04.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	animation-delay: 0.8s;
}

@keyframes zoomInAnime {
	from {
		transform: scale(0.6);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.zoomInTrigger,
.zoomInTrigger02,
.zoomInTrigger03,
.zoomInTrigger04,
.flipLeftTopTrigger,
.flipRightTopTrigger {
	opacity: 0;
}

/* 左からフリップ */
.flipLeftTop {
	animation-name: flipLeftTopAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes flipLeftTopAnime {
	from {
		transform: translate(-20px, 80px) rotate(-15deg);
		opacity: 0;
	}

	to {
		transform: translate(0, 0) rotate(0deg);
		opacity: 1;
	}
}

/*============================
コンテンツ
============================*/
#suji {
	margin-top: 1rem;
}

@media screen and (max-width: 599px) {
	#suji {
		margin-top: 0.50rem;
	}
}


/* 売上・稼働スタッフ（PC) */
#uriage_wrap {
	border: 1px solid #FF7A59;
	box-shadow: 10px 10px 0px 0px rgba(255, 122, 89, 0.4);
	margin-bottom: 0.5rem;
	background-color: #FFF;
}

@media screen and (max-width: 599px) {
	#uriage_wrap {
		margin: 0 0.20rem 0.30rem;
	}
}

#uriage_wrap {
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	padding: 0.3rem 0 0;
}

#uriage_wrap .uriage_box {
	width:calc((100% - 1rem) /2);
}

#uriage_wrap .uriage_box .cont_title {
	margin-bottom: 0.3rem;
	width: 100%;
}

#uriage_wrap .uriage_box.staff .cont_title {
	padding-right: 0.60rem;
	box-sizing: border-box;
}

#uriage_wrap .uriage_box .uriage_list .item {
	padding-bottom: 0.37rem;
	text-align: right;
	padding: 0 0.3rem 0.37rem;
	position: relative;
}

#uriage_wrap .uriage_box .uriage_list .item img {
	height: 0.37rem;
}

#uriage_wrap .uriage_box .uriage_list.staff .item {
	text-align: left;
	padding-right: 0;
	padding-left: 0.3rem;
}

#uriage_wrap .uriage_year {
	width: 1rem;
	padding-top: 0.6rem;
}

#uriage_wrap .uriage_year .year_list .item {
	text-align: center;
	background: #2F475C;
	color: #fff;
	font-size: 0.23rem;
	box-sizing: border-box;
	padding: 0.1rem 0 0.12rem;
	border-radius: 0.1rem;
	margin-bottom: 0.3rem;;
}

/* 売上・稼働スタッフ（SP) */
.uriage_wrap_sp {
	border: 1px solid #FF7A59;
	box-shadow: 10px 10px 0px 0px rgba(255, 122, 89, 0.4);
	margin: 0 0.20rem 0.30rem;
	background-color: #FFF;
	padding: 0.20rem;
}
.uriage_wrap_sp.staff {
	border: 1px solid #2F475C;
	box-shadow: 10px 10px 0px 0px rgba(47, 71, 92, 0.4);
}

.uriage_wrap_sp .uriage_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 0.20rem;
}

.uriage_wrap_sp .uriage_box .cont_title {
	width: 100%;
	padding-bottom: 0.20rem;
}

.uriage_wrap_sp .uriage_box .uriage_year {
	width: 0.60rem;
}

.uriage_wrap_sp .uriage_box .uriage_year .year_list .item {
	margin-top: 0.15rem;
	background-color: #2F475C;
	text-align: center;
	font-size: 0.14rem;
	font-weight: 700;
	color: #FFF;
	border-radius: 0.06rem;
	padding: 0.15rem 0 0.17rem;
	line-height: 0;
}

.uriage_wrap_sp .uriage_box .uriage_list {
	width: calc(100% - 0.75rem);
}

.uriage_wrap_sp .uriage_box .uriage_list .item {
	height: 0.32rem;
	margin-top: 0.15rem;
}

.uriage_wrap_sp .uriage_box .uriage_list .item img {
	height: 0.30rem;
}

/* ２カラム */
#suji .list {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
	#suji .list {
		padding: 0 0.20rem;
	}
}

#suji .list .item {
	width: calc(50% - 0.2rem);
	box-sizing: border-box;
	padding: 0.3rem 0.2rem;
	margin-bottom: 0.8rem;
	background: #fff;
}

@media screen and (max-width: 599px) {
	#suji .list .item {
		width: 100%;
		padding: 0.20rem;
		margin-bottom: 0.30rem;
	}
}

#suji .list .item:nth-child(odd) {
	margin-right: 0.2rem;
}

@media screen and (max-width: 599px) {
	#suji .list .item:nth-child(odd) {
		margin-right: 0;
	}
}

#suji .list .item:nth-child(even) {
	margin-left: 0.2rem;
	position: relative;
	top: 0.5rem;
}

@media screen and (max-width: 599px) {
	#suji .list .item:nth-child(even) {
		margin-left: 0;
		top: 0;
	}
}


/* タイトル */
.cont_title {
	font-size: 0.23rem;
	font-weight: bold;
	position: relative;
	text-align: center;
	padding-left: 0.1rem;
}

@media screen and (max-width: 599px) {
	.cont_title {
		font-size: 0.18rem;
		padding-left: 0.08rem;
	}
}

.cont_title::before {
	content: '';
	display: inline-block;
	width: 0.45rem;
	height: 0.3rem;
	background: url(../img/newgrads/aboutus/icon_data.svg) no-repeat center;
	background-size: cover;
	position: relative;
	top: 0.08rem;
	left: -0.1rem;
}

@media screen and (max-width: 599px) {
	.cont_title::before {
		content: '';
		display: inline-block;
		width: 0.35rem;
		height: 0.30rem;
		background: url(../img/newgrads/aboutus/icon_data.svg) no-repeat center;
		background-size: contain;
		position: relative;
		top: 0.10rem;
		left: -0.1rem;
	}
}

/* 数字 */
.list .item .number {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
}

/* テキスト */
.list .item .text {
	font-size: 0.14rem;
	text-align: center;
	line-height: 1.65;
}

@media screen and (max-width: 599px) {
	.list .item .text {
		padding-bottom: 0.20rem;
	}
}

/* オレンジ */
.list .item.orange {
	border: 1px solid #FF7A59;
	box-shadow: 10px 10px 0px 0px rgba(255, 122, 89, 0.4);
}

/* ネイビー */
.list .item.navy {
	border: 1px solid #2F475C;
	box-shadow: 10px 10px 0px 0px rgba(47, 71, 92, 0.4);
}


/* 社員数 */
#shainsu .cont_title {
	margin-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#shainsu .cont_title {
		margin-bottom: 0.20rem;
	}
}

#shainsu .box {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 0.20rem 0.5rem 0;
	position: relative;
	margin-bottom: 0.7rem;
}

@media screen and (max-width: 599px) {
	#shainsu .box {
		padding: 0.20rem;
		justify-content: center;
		margin-bottom: 0;
	}
}

#shainsu .ph_wrap {
	display: flex;
}

#shainsu .number .count-up {
	font-size: 1.03rem;
	box-sizing: border-box;
	padding-left: 0.20rem;
}

@media screen and (max-width: 599px) {
	#shainsu .number .count-up {
		font-size: 0.60rem;
		width: 1.40rem;
		display: block;
		text-align: right;
		padding-right: 0.30rem;
	}
}

#shainsu .number .unit {
	font-size: 0.6rem;
	font-weight: 700;
	position: absolute;
	right: 0.45rem;
	top: 0.55rem;
}

@media screen and (max-width: 599px) {
	#shainsu .number .unit {
		font-size: 0.30rem;
		position: absolute;
		right: auto;
		left: calc(50% + 1.00rem);
		top: 0.55rem;
	}
}

/* 社員の男女比 */
#danjohi .box {
	margin-top: 0.4rem;
}

@media screen and (max-width: 599px) {
	#danjohi .box {
		margin-top: 0.3rem;
	}
}

#danjohi .cont {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.30rem;
}

@media screen and (max-width: 599px) {
	#danjohi .cont {
		margin-bottom: 0.20rem;
		padding: 0 0.40rem;
	}
}

#danjohi .cont .icon {
	padding-right: 0.15rem;
}

/* 平均勤続年数 */
#kinzoku .cont_title {
	margin-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#kinzoku .cont_title {
		margin-bottom: 0.30rem;
	}
}

#kinzoku .box {
	display: flex;
	align-items: baseline;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 0.4rem;
	padding-left: 0.7rem;
}

@media screen and (max-width: 599px) {
	#kinzoku .box {
		justify-content: center;
		margin-bottom: 0.2rem;
		padding-left: 0.3rem;
	}
	#kinzoku .box .ph_wrap {
		width: 0.60rem;
	}
	#kinzoku .number {
		display: flex;
		align-items: end;
	}
}

#kinzoku .number .count-up {
	font-size: 1.28rem;
	box-sizing: border-box;
	padding-left: 0.20rem;
	color: #FF7A59;
}

@media screen and (max-width: 599px) {
	#kinzoku .number .count-up {
		font-size: 0.86rem;
		width: 1.20rem;
		display: block;
		text-align: center;
		box-sizing: border-box;
		padding-left: 0;
	}
}

#kinzoku .number .unit {
	font-size: 0.6rem;
	font-weight: 700;
	position: absolute;
	right: 0.45rem;
	top: 0.6rem;
	color: #FF7A59
}

@media screen and (max-width: 599px) {
	#kinzoku .number .unit {
		font-size: 0.4rem;
		font-weight: 700;
		position: relative;
		right: auto;
		top: -0.10rem;
	}
}

/* 平均残業時間 */
#zangyo .cont_title {
	margin-bottom: 0.70rem;
}

@media screen and (max-width: 599px) {
	#zangyo .cont_title {
		margin-bottom: 0.40rem;
	}
}

#zangyo .box {
	display: flex;
	align-items: baseline;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 0.4rem;
	padding-left: 0.7rem;
}

@media screen and (max-width: 599px) {
	#zangyo .box {
		justify-content: center;
		margin-bottom: 0.15rem;
		padding-left: 0;
	}
	#zangyo .number {
		display: flex;
		align-items: end;
	}
}

#zangyo .number .count-up {
	font-size: 1.28rem;
	box-sizing: border-box;
	padding-left: 0.20rem;
}

@media screen and (max-width: 599px) {
	#zangyo .number .count-up {
		font-size: 0.86rem;
		width: 1.20rem;
		display: block;
		text-align: center;
		box-sizing: border-box;
		padding-left: 0;
	}
}

#zangyo .number {
	/* position: relative; */
}

#zangyo .number .unit {
	font-size: 0.6rem;
	font-weight: 700;
	position: absolute;
	right: 0.7rem;
	top: 0.6rem;
}

@media screen and (max-width: 599px) {
	#zangyo .number .unit {
		font-size: 0.4rem;
		font-weight: 700;
		position: relative;
		right: auto;
		top: -0.10rem;
	}
}

#zangyo .ph_wrap {
	position: absolute;
	top: -0.4rem;
	right: 0.8rem;
}

@media screen and (max-width: 599px) {
	#zangyo .ph_wrap {
		width: 0.4rem;
		position: absolute;
		top: -0.15rem;
		right: auto;
		left: calc(50% + 0.30rem);
	}
}

/* 有給取得日数 */
#yukyu .cont_title {
	margin-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#yukyu .cont_title {
		margin-bottom: 0.30rem;
	}
}

#yukyu .box {
	display: flex;
	align-items: baseline;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 0.4rem;
	padding-left: 0.7rem;
}

@media screen and (max-width: 599px) {
	#yukyu .box {
		justify-content: center;
		margin-bottom: 0.2rem;
		padding-left: 0.3rem;
	}
	#yukyu .box .ph_wrap {
		width: 0.60rem;
	}
	#yukyu .number {
		display: flex;
		align-items: end;
	}
}

#yukyu .number .count-up {
	font-size: 1.28rem;
	box-sizing: border-box;
	padding-left: 0.50rem;
	color: #FF7A59;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
	#yukyu .number .count-up {
		font-size: 0.86rem;
		width: 1.20rem;
		display: block;
		text-align: center;
		box-sizing: border-box;
		padding-left: 0;
	}
}

#yukyu .number .unit {
	font-size: 0.6rem;
	font-weight: 700;
	position: absolute;
	right: 0.3rem;
	top: 0.55rem;
	color: #FF7A59
}

@media screen and (max-width: 599px) {
	#yukyu .number .unit {
		font-size: 0.4rem;
		font-weight: 700;
		position: relative;
		right: auto;
		top: -0.10rem;
	}
}

/* 離職率 */
#rishoku .cont_title {
	margin-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#rishoku .cont_title {
		margin-bottom: 0.30rem;
	}
}

#rishoku .box {
	text-align: center;
	margin-bottom: 0.3rem;
}

@media screen and (max-width: 599px) {
	#rishoku .box {
		text-align: center;
		margin-bottom: 0.2rem;
	}
}

/* 年間休日 */
#nenkyu .cont_title {
	margin-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#nenkyu .cont_title {
		margin-bottom: 0.30rem;
	}
}

#nenkyu .box {
	display: flex;
	align-items: baseline;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 0.4rem;
	padding-left: 0.3rem;
	padding-top: 0.20rem;
}

@media screen and (max-width: 599px) {
	#nenkyu .box {
		justify-content: center;
		margin-bottom: 0.2rem;
		padding-left: 0.1rem;
		padding-top: 0;
	}
	#nenkyu .box .ph_wrap {
		width: 0.60rem;
	}
	#nenkyu .number {
		display: flex;
		align-items: end;
	}
}

#nenkyu .number .count-up {
	font-size: 1.03rem;
	box-sizing: border-box;
	padding-left: 0.30rem;
	color: #FF7A59;
}

@media screen and (max-width: 599px) {
	#nenkyu .number .count-up {
		font-size: 0.86rem;
		width: 1.60rem;
		display: block;
		text-align: center;
		box-sizing: border-box;
		padding-left: 0;
	}
}

#nenkyu .number .unit {
	font-size: 0.6rem;
	font-weight: 700;
	position: absolute;
	right: 0.55rem;
	top: 0.55rem;
	color: #FF7A59
}

@media screen and (max-width: 599px) {
	#nenkyu .number .unit {
		font-size: 0.4rem;
		font-weight: 700;
		position: relative;
		right: auto;
		top: -0.10rem;
	}
}

/* 休日の過ごし方 */
#kyujitu .cont_title {
	margin-bottom: 0.30rem;
}

#kyujitu dl.list{
	width:100%;
}

@media screen and (max-width: 599px) {
	#kyujitu dl.list{
		padding: 0;
	}
}

/* divにflexをかけdtとddを左右に配置しつつ
   position:relativeで点線配置の準備をする */
#kyujitu dl.list div{
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 5px 0;
	padding: 5px 0;
	font-size: 0.16rem;
	width: 100%;
}

@media screen and (max-width: 599px) {
	#kyujitu dl.list div{
		margin: 4px 0;
		padding: 4px 0;
		font-size: 0.14rem;
	}
}

/* 疑似要素でオブジェクトを生成、positionでdivの上下中央に配置し
   borderで点線を表現する */
#kyujitu dl.list div::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	z-index: 1;
	width: 100%;
	border-bottom: dotted 1px #000;
	}
/* dtとddはz-indexで点線よりも手前にし、なおかつ背景色を付けて点線を隠す */
#kyujitu dl.list dt{
	margin:0;
	padding: 0 5px 0 0;
	background-color: #ffffff;
	z-index: 2;
	text-align: left;
	}
#kyujitu dl.list dt span{
	color: #FF7A59;
}
	
#kyujitu dl.list dd{
	margin:0;
	padding: 0 0 0 5px;
	background-color: #ffffff;
	z-index: 2;
	text-align: right;
	color: #FF7A59;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
}

/* 社内の雰囲気 */
#funiki .cont_title {
	margin-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#funiki .cont_title {
		margin-bottom: 0.30rem;
	}
}

#funiki .box {
	padding-left: 0.30rem;
	margin-bottom: 0.3rem;
}

@media screen and (max-width: 599px) {
	#funiki .box {
		padding:0 0.40rem 0 0;
		margin-bottom: 0.2rem;
	}
}

/* 社員として大切にしていること */
#taisetsu {
	position: relative;
}

#taisetsu .cont_title {
	margin-bottom: 0.3rem;
}

/* 吹き出し */
#taisetsu .box .ph_wrap01 {
	padding-top: 0.40rem;
}

@media screen and (max-width: 599px) {
	#taisetsu .box .ph_wrap01 {
		padding: 0 0.30rem 0.20rem;
	}
}

#taisetsu .box .ph_wrap01 img {
	display: block;
	margin: auto;
}

/* 吹き出し02 - コミュニケーション能力 */
#taisetsu .box .ph_wrap02 {
	position: absolute;
	z-index: 1;
	bottom: 1.1rem;
	right: 1.5rem;
}

#taisetsu .box .ph_wrap03 {
	position: absolute;
	z-index: 0;
	bottom: 1.7rem;
	right: 0.9rem;
}

#taisetsu .box .ph_wrap04 {
	position: absolute;
	z-index: 0;
	bottom: 0.9rem;
	left: 0.8rem;
}