@charset "utf-8";
/**
 * scHeader
 */
 .scHeader {
	width: 880px;
	margin: -115px auto 80px;
}
@media screen and (max-width:767px){
	.scHeader {
		width: 100%;
		margin: 30px auto;
	}
}

/**
 * scNavLists
 */
.scNavLists {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

/* item */
.scNavLists__item {
	display: flex;
	justify-content: center;
	position: relative;
}
@media screen and (max-width:767px){
	.scNavLists__item {
		height: auto;
	}
}

/* icon */
.scNavLists__item:after {
	content: "";
	background-color: #fff;
	display: block;
	width: 15px;
	height: 24px;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	-webkit-mask-image: url(../img/common/icon_slash.svg);
	mask-image: url(../img/common/icon_slash.svg);
	margin: auto;
	position: absolute;
	top: 0;
	right: -8px;
	bottom: 0;
}
.scNavLists__item.is-intro:after,
.scNavLists__item:last-child:after {
	content: none;
}
@media screen and (max-width:767px){
	.scNavLists__item:after {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
	}
}

/* a */
.scNavLists__item a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 18px 26px;
	position: relative;
}
.scNavLists__item.is-intro a {
	display: inline-flex;
}
@media screen and (max-width:767px){
	.scNavLists__item a {
		padding: 14px 12px;
	}
}

/* headerNavLists__textWrap */
.scNavLists__textWrap {
	display: block;
	position: relative;
}
.scNavLists__textWrap:before {
	content: "";
	background-color: rgb(var(--main-color-red));
	width: 100%;
	height: 100%;
	position: absolute;
	top: -1px;
	left: 0;
	z-index: 0;
	transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s ease;
}
.scNavLists__item a:hover .scNavLists__textWrap:before,
.scNavLists__item a.is-active .scNavLists__textWrap:before {
	transform-origin: left top;
    transform: scale(1, 1);
}

/* headerNavLists__text */
.scNavLists__text {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	position: relative;
	z-index: 1;
	transition: color .3s ease;
	text-align: center;
}


/**
 * scListsWrap
 */
.scListsWrap {
	width: var(--common-incont-width);
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 120px;
}
.scListsWrap:nth-last-child(2) {
	margin-bottom: 0;
}
@media screen and (max-width:767px){
	.scListsWrap {
		margin-bottom: 60px;
	}
}

/* title */
.scLists__title {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}
@media screen and (max-width:767px){
	.scLists__title {
		margin-bottom: 0;
	}
}

/* title in */
.scLists__title__in {
	color: #fff;
	font-size: 24px;
	line-height: 1;
	padding: 0 20px;
}
@media screen and (max-width:767px){
	.scLists__title__in {
		font-size: 16px;
	}
}

/* lists */
.scLists {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width:767px){
	.scLists {
		flex-direction: column;
	}
}

/* item */
.scLists__item {
    width: 480px;
    padding-left: 80px;
    position: relative;
    margin: 28px 0;
    padding-top: 10px;
}
.scLists__item:nth-of-type(4n + 3) {
	/* margin-left: 80px; */
}
@media screen and (max-width:767px){
	.scLists__item {
		width: calc(100% - 90px);
		padding-left: 0;
		margin-left: 20px;
	}
	.scLists__item:nth-of-type(4n + 3) {
		/* margin-left: 30px; */
	}
	.scLists__item:nth-child(even) {
		/* margin-left: 60px; */
	}
}

/* job */
.scJ__job{
	width: 100%;
	font-size: 16px;
	line-height: 1.4;
	-moz-transform: scale(1, 0.7);
	-webkit-transform: scale(1, 0.7);
	-ms-transform: scale(1, 0.7);
	transform:
	scale(1, 0.7);
	transform-origin: center left;
	margin-bottom: 10px;
}
@media screen and (max-width:767px){
	.scJ__job{
		font-size: 12px;
	}
}

/* name */
.scJ__name {
	display: flex;
	align-items: center;
	width: 142.86%;
	font-size: 24px;
	line-height: 1;
	transform:
	scale(0.7, 1);
	transform-origin: center left;
}
@media screen and (max-width:767px){
	.scJ__name {
		font-size: 24px;
	}
}

/* commentBtn */
.commentBtn {
	display: block;
	width: 32px;
	height: 29px;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-image: url(../img/common/btn_comment.svg);
	mask-image: url(../img/common/btn_comment.svg);
	background-color: rgb(var(--main-color-red));
	margin-left: 20px;
	transform: scale(1.3,1);
}
@media screen and (max-width:767px){
	.commentBtn {
		width: 26px;
		height: 22px;
	}
}

/* min */
.sc_min{
	margin-top: 16px;
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: 0.25px;
}
@media screen and (max-width:767px){
	.sc_min{
		font-size: 10px;
	}
}

/* en */
.scDetail--en{
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	transform: scale(.8);
}

/* job */
.scE__job{
	order: 2;
	font-size: 10px;
	font-weight: 700;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}
@media screen and (max-width:767px){
	.scE__job{
		transform: scale(.8);
	}
}

/* name */
.scE__name{
	order: 1;
	font-size: 12px;
	font-weight: 700;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
	line-height: 1.4;
}
@media screen and (max-width:767px){
	.scE__name{
		transform: scale(.8);
	}
}


/**
 * comment modal
 */
.commentWrap {
	display: flex;
	width: var(--common-incont-width);
}
@media screen and (max-width:767px){
	.commentWrap {
		display: block;
		padding: 60px 20px;
	}
}

/* commentImg */
.commentImg {
	width: 320px;
	flex: none;
}
.commentImg img {
	width: 100%;
}
@media screen and (max-width:767px){
	.commentImg {
		width: 200px;
		margin: 0 auto;
	}
}

/**
 * commentTextWrap
 */
.commentTextWrap {
	color: #fff;
	font-size: 16px;
	padding-left: 50px;
}
@media screen and (max-width:767px){
	.commentTextWrap {
		font-size: 12px;
		margin-top: 20px;
		padding-left: 0;
	}
}

/**
 * commentName
 */
.commentName {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
}
.commentName_job {
	color: rgb(var(--main-color-red));
	font-size: 70%;
}
@media screen and (max-width:767px){
	.commentName {
		font-size: 18px;
		margin-bottom: 20px;
		text-align: center;
	}
}

/* text */
.commentTxt {
	line-height: 2;
}


/*-----------------------------------------------
 * White ver. style
 * .bodyに「is-change」クラスを付与
-------------------------------------------------*/
body.body.is-change .commentBtn {
	background-color: rgb(var(--main-color-lightblue));
}

/* scNavLists__text */
body.body.is-change .scNavLists__text {
	color: #000;
}

/* .scNavLists__textWrap:before */
body.body.is-change .scNavLists__textWrap:before {
	background-color: rgb(var(--main-color-lightblue));
}

/* .scNavLists__item a */
body.body.is-change .scNavLists__item a:hover .scNavLists__text,
body.body.is-change .scNavLists__item a.is-active .scNavLists__text {
	color: #fff;
}

/* .scNavLists__item:after */
body.body.is-change .scNavLists__item:after {
	background-color: #000;
}
