@charset "utf-8";
/*-----------------------------------------------
 * STAFFCAST
-------------------------------------------------*/
.staffcastCont{
	width: 100%;
	position: relative;
}
.staffcastCont:not(:first-child){
	padding-top: 96px;
}

.staffcast_h3{
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-eng);
	font-size: 56px;
	line-height: 1;
}
.staffcast_h3:before,
.staffcast_h3:after{
	content: '';
	width: 144px;
	height: 24px;
	background-repeat: no-repeat;
	background-size: contain;
}
.staffcast_h3:before{
	background-image: url(../img/staffcast/staffcast_h3__l.svg);
	background-position: left center;
}
.staffcast_h3 span{
	display: inline-block;
	padding: 0 32px;
	background: linear-gradient(#0d97c6, #1eb9ee);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.staffcast_h3:after{
	background-image: url(../img/staffcast/staffcast_h3__r.svg);
	background-position: left center;
}


.staffcastContIn{
	width: 100%;
	padding-top: 24px;
}
.staffcastLists{
	width: calc(100% + 4.8%);
	display: flex;
	flex-wrap: wrap;
	margin-left: -2.4%;
}
.staffcastList{
	width: calc(100% / 3);
	padding: 2.2901%;/* 24px */
}
.staffcastList.-w100{
	width: 100%;
}
.staffcastList.-w50{
	width: 50%;
}
.staffcastList.-flex{
	display: flex;
	flex-wrap: wrap;
}
.staffcastList.-flex dt{
	width: 100%;
}

.staffcastList dt{
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
	color: var(--color-blue);
}
.staffcastList dd{
	display: inline-flex;
	align-items: center;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.6364;
}
.staffcastList dd.-flexend{
	align-items: flex-end;
}
/* .staffcastList dd:not(:last-child){
	padding-right: 20px;
} */

.btn_comment{
	display: inline-block;
	margin-left: 10px;
	width: 25px;
	height: 22px;
	-webkit-mask: url(../img/common/icon_fukidashi.svg) no-repeat center / contain;
	mask: url(../img/common/icon_fukidashi.svg) no-repeat center / contain;
	background-color: var(--color-blue);
	transition: .3s ease;
}

@media (hover: hover) and (pointer: fine){
	.btn_comment:hover{
		background-color: var(--color-yellow);
		transform: scale(1.075);
	}
}

@media screen and (max-width: 767px){
	.staffcastCont:not(:first-child){
		padding-top: var(--sp-size-120);
	}
	.staffcast_h3{
		font-size: var(--sp-size-48);
	}
	.staffcast_h3:before,
	.staffcast_h3:after{
		width: min(19.2vw, 144px);
		height: var(--sp-size-24);
	}
	.staffcast_h3 span{
		padding: 0 var(--sp-size-32);
	}

	.staffcastContIn{
		padding-top: var(--sp-size-24);
	}
	.staffcastLists{
		width: calc(100% + var(--sp-size-48));
		margin-left: calc(var(--sp-size-24) * -1);
	}
	.staffcastList{
		width: calc(100% / 2);
		padding: var(--sp-size-24);
	}
	.staffcastList dt{
		font-size: var(--sp-size-20);
		margin-bottom: var(--sp-size-12);
	}
	.staffcastList dd{
		font-size: var(--sp-size-26);
		line-height: 1.84616;
	}
	/* .staffcastList dd:not(:last-child){
		padding-right: var(--sp-size-20);
	} */
	.staffcastList dd small{
		font-size: var(--sp-size-20);
		letter-spacing: 0;
	}

	.btn_comment{
		width: min(5.0667vw, 38px);
		height: min(4.5334vw, 34px);
		margin-left: var(--sp-size-8);
	}

	#cast .staffcastList{
		width: 100%;
		text-align: center;
	}
}



/** is-ani **/
.staffcast_h3:before{
	opacity: 0;
	transform: translateX(-12.5%);
	transition: .4s cubic-bezier(.24,.36,.13,1.14) .4s;
}
.staffcast_h3:after{
	opacity: 0;
	transform: translateX(12.5%);
	transition: .4s cubic-bezier(.24,.36,.13,1.14) .4s;
}
.staffcast_h3 span{
	opacity: 0;
	transform: translateY(10%);
	transition: .4s cubic-bezier(.24,.36,.13,1.14) .4s;
}

.staffcastCont.is-ani .staffcast_h3:before,
.staffcastCont.is-ani .staffcast_h3:after{
	opacity: 1;
	transform: translateX(0%);
}
.staffcastCont.is-ani .staffcast_h3 span{
	opacity: 1;
	transform: translateY(0%);
}

.staffcastList{
	opacity: 0;
	transform: translateY(24px);
	transition: .4s ease .6s;
}
.staffcastCont.is-ani .staffcastList{
	opacity: 1;
	transform: translateY(0%);
}