@charset "utf-8";
/*-----------------------------------------------
 * First
 * BnrLists
 * News
 * Movie
 * Introduction Story
 * Character
 * Staff Cast
-------------------------------------------------*/
/* loading */
.loading {
	background-color: #000;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
}
.loading:before {
	content: "";
	background: url(../img/common/logo/logo_emeraldwitch.svg) no-repeat center / contain;
	width: 374px;
	height: 237px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-filter: blur(15px);
	-moz-filter: blur(15px);
	filter: blur(15px);
	opacity: 0;
	transition: all 1.5s ease-in-out;
}
.loading.is-active:before {
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	filter: blur(0);
	opacity: 1;
}
@media screen and (max-width:767px){
	.loading:before {
		width: calc(374 / var(--vw-min) * 100vw);
		height: calc(237 / var(--vw-min) * 100vw);
	}
}
/*-----------------------------------------------
 * TOP > HEADER
-------------------------------------------------*/
@media screen and (min-width:768px){
	.header{
		pointer-events: none;
		opacity: 0;
		transition: opacity .4s ease;
		
	}
	.in-contents .header{
		opacity: 1;
		transition-delay: .4s;
	}
	.headerNavLists,
	.header__inner {
		pointer-events: none;
	}
	.in-contents .headerNavLists,
	.in-contents .header__inner {
		pointer-events: all;
	}
}
/*-----------------------------------------------
 * First
-------------------------------------------------*/
/* fv */
.fv{
	position: relative;
	height: 100vh;
	min-width: 640px;
}
@media screen and (max-width:767px){
	.fv{
		height: 100%;
		min-width: 100%;
	}
}

/*--------------
 fv__inner
-------------- */
.fv__inner{
	height: 100vh;
	width: 100%;
	position: relative;
}
.fv_logo{
	position: absolute;
	left: 40px;
	top: 40px;
	width: 240px;
	height: 151px;
	z-index: 100;
	transition: .4s ease;
}
.fv_logo img{
	width: 100%;
	height: auto;
}
.fv_onair{
	position: absolute;
	left: 40px;
	top: 232px;
	width: 240px;
	height: auto;
	z-index: 100;
	transition: .4s ease;
}
.fv_onair img{
	width: 100%;
	height: auto;
}
@media screen and (max-width:767px){
	.fv__inner{
		height: auto;
	}
	.fv_logo{
		position: relative;
		left: unset;
		top: unset;
		width: calc(365 / var(--vw-min)* 100vw);
		height: calc(230 / var(--vw-min)* 100vw);
		margin: auto;
		margin-top: calc(-102 / var(--vw-min)* 100vw);
		filter: drop-shadow(0px 0px 10px #000);
	}
	.fv_onair{
		position: relative;
		left: unset;
		top: unset;
		width: calc(365 / var(--vw-min)* 100vw);
		height: calc(50 / var(--vw-min)* 100vw);
		margin: auto;
		margin-top: calc(48 / var(--vw-min)* 100vw);
		filter: drop-shadow(0px 0px 10px #000);
	}
}

/*--------------
 visualArea
-------------- */
.visualArea{
	width: 100%;
	overflow: hidden;
}
@media screen and (max-width:767px){
	.visualArea{
		height: calc(1000 / var(--vw-min)* 100vw);
		position: relative;
	}
}

/* SP */
@media screen and (max-width:767px){
	/* visualArea_spWrap */
	.visualArea_spWrap{
		opacity: 0;
		transition: none;
		transition: opacity 1s;
	}
	.visualArea_spWrap:before {
		transition: none;
		content: '';
		position: absolute;
		pointer-events: none;
		z-index: 1;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		box-shadow: 0px 0px min(calc(200 / var(--vw-min)* 100vw), 200px) 0px #000 inset;
	}

	.visualArea_sp{
		width: 100%;
		height: calc(1000 / var(--vw-min)* 100vw);
		overflow-x: scroll;
		display: flex;
	}
	.visualArea_sp img{
		height: 100%;
		width: auto;
	}
	/* scrollbar */
	.visualArea_sp::-webkit-scrollbar{
		display: none;
	}

	.visualArea_sp__layers{
		position: absolute;
		height: 100%;
		width: 100%;
		pointer-events: none;
		bottom: 0;
		background: url(../img/top/kv_moya_sp.png) repeat-x center bottom;
		background-size: auto calc(350 / var(--vw-min)* 100vw);
		animation: ani_moya_sp 50s linear infinite;
		opacity: .2;
	}
}
@keyframes ani_moya_sp {
	0% {
		background-position: 0 bottom;
	}
	100% {
		background-position: 350px bottom;
	}
}


/*--------------
 visualArea > kvBlock
-------------- */
.kvBlock{
	height: 100%;
	width: 100%;
	position: fixed;
	pointer-events: none;
}
@media screen and (max-width:767px){
	.kvBlock{
		z-index: 100;
	}
}

.kvBlock:before {
    content: '';
    position: absolute;
	pointer-events: none;
	z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0px 0px min(calc(200 / var(--vw-min)* 100vw), 200px) 0px #000 inset;
}
/*--------------
 kvBlock > kv_layers
-------------- */
.kv_layers{
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .4s ease;

}
/* kv_layers bg */
.kv_layers._bg{
	z-index: -1;
	background: url(../img/top/kv_visual_pc.jpg) no-repeat center top / cover;
}
@media screen and (max-width:767px){
	.kv_layers._bg{
		z-index: -2;
		background: url(../img/top/kv_visual_pc.jpg) no-repeat center top;
		background-size: auto 100%;
	}
}
/* kv_layers moya */
.kv_layers._moya{
	top: unset;
	bottom: 0;
	background: url(../img/top/kv_moya.png) repeat-x center bottom;
	background-size: auto 526px;
	animation: ani_moya 50s linear infinite;
	opacity: .2;
}
@keyframes ani_moya {
	0% {
		background-position: 0 bottom;
	}
	100% {
		background-position: 1216px bottom;
	}
}

/*-----------------
 * first animation
 -----------------*/
 .kvBlock{
	transform: scale(130%);
	-webkit-transform-origin-y: top;
	-webkit-transform-origin-x: right;
	transition: all 1.5s ease-in-out;
}
.--allAni .kvBlock{
	transform: scale(0);
	-webkit-transform-origin-x: left;
	transition: none;
}
 .fv_logo {
	-webkit-filter: blur(15px);
	-moz-filter: blur(15px);
	filter: blur(15px);
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
 .fv_onair {
	-webkit-filter: blur(15px);
	-moz-filter: blur(15px);
	filter: blur(15px);
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
@media screen and (max-width:767px){
	.fv_logo img{
		-webkit-filter: drop-shadow(0px 0px 10px #000);
		-moz-filter:drop-shadow(0px 0px 10px #000);
		filter: drop-shadow(0px 0px 10px #000);
	}
	.fv_onair img{
		-webkit-filter: drop-shadow(0px 0px 10px #000);
		-moz-filter:drop-shadow(0px 0px 10px #000);
		filter: drop-shadow(0px 0px 10px #000);
	}
}

/* --afin */
.--allAni .kvBlock,
.--afin .kvBlock{
	-webkit-transform-origin-x: left;	
}

/* --afin2 */
.--allAni .kvBlock,
.--afin2 .kvBlock{
	transform: scale(1);
}

/* --afin3 */
.--allAni .fv_logo,
.--afin3 .fv_logo{
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	filter: blur(0);
	opacity: 1;
}
/* --afin3 */
.--allAni .fv_onair,
.--afin3 .fv_onair{
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	filter: blur(0);
	opacity: 1;
}

@media screen and (max-width:767px){
	/* --afin2 */
	.--allAni .kvBlock,
	.--afin2 .kvBlock{
		height: calc(1000 / var(--vw-min)* 100vw);
		transition:1.5s;
		z-index: -10;
	}
	/* --afin3 */
	.--allAni .kvBlock,
	.--afin3 .kvBlock{
		opacity: 0;
		transition: 1s;
	}
	.--allAni .contents_bg,
	.--afin3 .contents_bg{
		opacity: 1;
		transition: all 1.5s ease;
		z-index: -9;
	}
	.--allAni .visualArea_spWrap,
	.--afin3 .visualArea_spWrap{
		opacity: 1;
	}
	/* --afin4 */
	/*
	.--allAni .kvBlock,
	.--afin4 .kvBlock{
		opacity: 1;
		height: 100vh;
		filter: blur(8px);
		transition: opacity .4s;
		z-index: -10;
	}*/
	.--allAni .fv_logo,
	.--afin4 .fv_logo {
		-webkit-filter: blur(0);
		-moz-filter: blur(0);
		filter: blur(0);
	}

	.--allAni {
		transition:unset !important;
	}

}

/*-----------------------------------------------
 * BnrLists
-------------------------------------------------*/
.bnrListsArea {
	width: 700px;
	margin: 60px auto 0;
	position: relative;
}
.bnrListsWrap {
	width: 620px;
}
@media screen and (max-width:767px){
	.bnrListsArea {
		width: 100%;
		padding: 0 calc(48 / var(--vw-min)* 100vw);
		margin: calc(60 / var(--vw-min) * 100vw) auto 0;
	}
	.bnrListsWrap {
		width: 100%;
		margin-bottom: calc(32 / var(--vw-min)* 100vw);
	}
}

/* li */
.bnrLists > li {
	width: 300px;
	
}
.bnrLists > li img {
	width: 100%;
}
@media screen and (max-width:767px){
	.bnrLists > li {
		width: 50%;
		border: 1px solid #FFF;
	}
}

/* pager */
.bnrListsPager {
	display: none;
	width: 30px;
	height: 30px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
}
@media screen and (max-width:767px){
	.bnrListsPager {
		width: calc(23 / var(--vw-min)* 100vw);
		height: calc(48 / var(--vw-min)* 100vw);
		top: unset;
		bottom: calc(-16 / var(--vw-min) * 100vw);
	}
}

.bnrListsPager.is-next { right: 0px; }
.bnrListsPager.is-prev { left: 0px; }
@media screen and (max-width:767px){
	.bnrListsPager.is-next { right:calc(48 / var(--vw-min)* 100vw); }
	.bnrListsPager.is-prev { left:calc(48 / var(--vw-min)* 100vw); }
}

.bnrListsPager > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}
.bnrListsPager > a:before {
    content: "";
    background: no-repeat center / contain;
    display: block;
    width: 13px;
    height: 27px;
}
@media screen and (max-width:767px){
	.bnrListsPager > a:before {
		width: calc(23 / var(--vw-min)* 100vw);
        height: calc(48 / var(--vw-min)* 100vw);
	}
}

.bnrListsPager.is-next > a:before { background-image: url(../img/common/icon/icon_arrow_right.svg); }
.bnrListsPager.is-prev > a:before { background-image: url(../img/common/icon/icon_arrow_left.svg); }

/* hover */
.bnrListsPager > a:before {
    transition: transform .3s ease;
}
.bnrListsPager.is-next > a:hover:before { transform: translate(40%); }
.bnrListsPager.is-prev > a:hover:before { transform: translate(-40%); }


.js-bnrSwiper-pagination{
	display: none!important;
}
@media screen and (max-width:767px){
	.js-bnrSwiper-pagination{
		position: relative!important;
		top: unset!important;
		bottom: unset!important;
		display: flex!important;
	}
}
/*-----------------------------------------------
 * CONTENTS
-------------------------------------------------*/
.contents_bg{
	opacity: 0;
	transition: opacity .4s ease;
	width: 100%;
	height: 100vh;
	position: fixed;
    pointer-events: none;
    z-index: 0;
    left: 0;
    top: 0;
	background-color: rgba(0, 0, 0, 1);
}
/*contents_bg*/
.in-contents .contents_bg{
	opacity: 1;
}
.in-contents .kv_layers{
	filter: blur(16px);
	transition: filter .4s ease;
	transition-delay: .2s;
}
@media screen and (max-width:767px){
	.contents_bg{
		width: 100%;
		height: 100%;
		z-index: -1;
	}
}

/* kana */
span.kana {
	position: relative;
}
span.kana:before{
    content: attr(data-kana);
    font-size: 60%;
    font-weight: 500;
    letter-spacing: -.07em;
    text-align: center;
    position: absolute;
    top: -1.6em;
    left: 50%;
    white-space: nowrap;
    transform: translateX(-50%);
}

/* CONTENTS */
#bottomCont{
	position: relative;
	clip-path: inset(0);
	z-index: 2;
	overflow: hidden;
}

.introstory{
	background: #000;
	position: relative;
	clip-path: inset(0);
}
.introstory::after{
	position: absolute;
	left: 0;
	top:0;
	content: "";
	width: 100%;
	height: 100%;
	/*background: url(../img/top/bg_ptn.svg) left top;*/
	background-size:min(calc(500 / var(--vw-min)* 100vw), 500px) auto;
	position: fixed;
	opacity: 0.08;
}

.staffcast{
	background: #000;
	position: relative;
	clip-path: inset(0);
}
.staffcast::after{
	position: absolute;
	left: 0;
	top:0;
	content: "";
	width: 100%;
	height: 100%;
	/*background: url(../img/top/bg_ptn.svg) left top;*/
	background-size:min(calc(500 / var(--vw-min)* 100vw), 500px) auto;
	position: fixed;
	opacity: 0.08;
	pointer-events: none;
}
.character{
	clip-path: inset(0);
}

.character::after{
	position: absolute;
	left: 0;
	top:0;
	content: "";
	width: 100%;
	height: 100vh;
	background: url(../img/top/bg_ptn.svg) left top;
	background-size:min(calc(481 / var(--vw-min)* 100vw), 481px) auto;
	/*background-attachment: fixed;*/
	position: fixed;
	opacity: 0.16;
	z-index: -2; 
}

/*bg_txtFlowingBlock*/
.bg_txtFlowingBlock{
	position: relative;
	overflow: hidden;
    clip-path: inset(0);
	background-color: #000;
}

.bg_txtFlowing {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
	z-index: -1;
}
.bg_txtFlowing span{
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	position: fixed;
	z-index: 11;
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 1) 100%);
}
.bg_txtFlowing:before {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    top: max(calc(-118 / var(--vw-min)* 100vw), -118px);
    height: min(calc(236 / var(--vw-min)* 100vw), 236px);
    background: url(../img/common/deco/deco_bg_txt.svg) repeat 0 0 / auto 100%;
    clip-path: inset(0);
    z-index: 10;
    animation: bg_decotext 80s linear infinite;
	opacity: .2;
}
.bg_txtFlowing:after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    bottom: max(calc(-118 / var(--vw-min)* 100vw), -118px);
    height: min(calc(236 / var(--vw-min)* 100vw), 236px);
    background: url(../img/common/deco/deco_bg_txt.svg) repeat 0 0 / auto 100%;
    clip-path: inset(0);
    z-index: 10;
    animation: bg_decotext 80s linear infinite reverse;
	opacity: .2;
}
@media screen and (max-width:767px){
	.bg_txtFlowing:before{
		top: max(calc(-68 / var(--vw-min)* 100vw), -68px);
		height: min(calc(136 / var(--vw-min)* 100vw), 136px);
		background: url(../img/common/deco/deco_bg_txt.svg) repeat 0 0 / auto 100%;
		animation: bg_decotext 180s linear infinite;
		opacity: .3;
	}
	.bg_txtFlowing:after {
		bottom: max(calc(-68 / var(--vw-min)* 100vw), -68px);
		height: min(calc(136 / var(--vw-min)* 100vw), 136px);
		background: url(../img/common/deco/deco_bg_txt.svg) repeat 0 0 / auto 100%;
		animation: bg_decotext 180s linear infinite reverse;
		opacity: .3;
	}
}


/*-----------------------------------------------
 * News
-------------------------------------------------*/
.news {
	padding-top: 200px;
	position: relative;
}
.news__inner {
	width: var(--common-in-width);
	max-width: var(--common-in-maxwidth);
	margin: 0 auto;
}
@media screen and (max-width:767px){
	.news {
		padding-top: calc(180 / var(--vw-min) * 100vw);
	}
}


/**
 * lists
 */
.newsLists {
	margin-top: 50px;
}
@media screen and (max-width:767px){
	.newsLists {
		margin-top: calc(80 / var(--vw-min) * 100vw);
		padding: 0 calc(40 / var(--vw-min) * 100vw);
	}
}

/* item */
.newsLists__item {
	border-top: 1px solid rgba(255, 255, 255, .2);
	height: 100px;
}
.newsLists__item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}
@media screen and (max-width:767px){
	.newsLists__item {
		height: auto;
	}
}

/* a */
.newsLists__item a {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.newsLists__item__inner {
	display: flex;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.newsLists__item a {
		padding: calc(30 / var(--vw-min) * 100vw) 0;
		font-size: calc(24 / var(--vw-min) * 100vw);
	}
}

/* time */
.newsLists__time {
	display: flex;
	align-items: center;
	font-family: var(--font-en);
}
.newsLists__time:after {
	content: "";
	background-color: rgb(var(--color-sub));
	-webkit-mask: url(../img/common/new_deco/deco_ttl_star.svg) no-repeat center / contain;
	mask: url(../img/common/new_deco/deco_ttl_star.svg) no-repeat center / contain;
	width: 17px;
	height: 17px;
	margin: 0 14px;
}
@media screen and (max-width:767px){
	.newsLists__time {
		flex-direction: column;
		position: relative;
		padding-right: calc(50 / var(--vw-min) * 100vw);
		line-height: 1.5;
		justify-content: center;
	}
	.newsLists__time:after {
		width: calc(30 / var(--vw-min) * 100vw);
		height: calc(30 / var(--vw-min) * 100vw);
		margin: auto;
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
	}


}

/* title */
.newsLists__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
@media screen and (max-width:767px){
	.newsLists__title {
		-webkit-line-clamp: 2;
		padding-left: calc(20 / var(--vw-min) * 100vw);
	}
}

/**
 * xLink
 */
.news__xLink {
	width: 100%;
	height: 100px;
	margin-top: 50px;
}
@media screen and (max-width:767px){
	.news__xLink {
		height: calc(120 / var(--vw-min) * 100vw);
		margin-top: calc(80 / var(--vw-min) * 100vw);
		padding: 0 calc(40 / var(--vw-min) * 100vw);
	}
}

.news__xLink > a {
	border: 1px solid rgba(var(--color-main),.4);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 0 40px;
	position: relative;
	text-decoration: none;
}
.news__xLink > a:before {
	content: "";
	width: 100%;
	height: 100%;
	margin: auto;
	pointer-events: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url(../img/common/deco/frame_left_top.png), url(../img/common/deco/frame_left_btm.png),url(../img/common/deco/frame_right_top.png), url(../img/common/deco/frame_right_btm.png);
	background-repeat: no-repeat;
	background-size: 40px 40px;
	background-position: left -1px top -1px, left -1px bottom -1px, right -1px top -1px, right -1px bottom -1px;
	opacity: .4;
}
@media screen and (max-width:767px){
	.news__xLink > a {
		padding: 0 calc(40 / var(--vw-min) * 100vw);
	}
	.news__xLink > a:before {
		background-size: calc(40 / var(--vw-min) * 100vw) calc(40 / var(--vw-min) * 100vw);
	}
}

/* of */
.news__xLink__ofWrap {
	display: flex;
	align-items: center;
	flex: none;
}
.news__xLink__ofWrap:after {
	content: "";
	background-color: rgb(var(--color-main));
	display: block;
	-webkit-mask: url(../img/common/sns/icon_x.svg) no-repeat center / contain;
	mask: url(../img/common/sns/icon_x.svg) no-repeat center / contain;
	width: 20px;
	height: 20px;
}
.news__xLink__of {
	color: rgb(var(--color-main));
	font-size: 27px;
	letter-spacing: 0.2em;
	line-height: 1;
	margin-right:20px;
	font-family: var(--font-en);
}
@media screen and (max-width:767px){
	.news__xLink__of {
		font-size: calc(32 / var(--vw-min) * 100vw);
		margin-right:calc(15 / var(--vw-min) * 100vw);

	}
	.news__xLink__ofWrap:after {
		width: calc(32 / var(--vw-min) * 100vw);
		height: calc(32 / var(--vw-min) * 100vw);
	}
}

/* pr */
.news__xLink__prWrap {
	display: flex;
	align-items: center;
	flex: none;
}
.news__xLink__prWrap:after {
	content: "";
	background-color: #fff;
	display: block;
	-webkit-mask: url(../img/common/icon/icon_blank.svg) no-repeat center / contain;
	mask: url(../img/common/icon/icon_blank.svg) no-repeat center / contain;
	width: 12px;
	height: 12px;
}
.news__xLink__pr {
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 1;
	margin-right: 15px;
	font-family: var(--font-en);
}
@media screen and (max-width:767px){
	.news__xLink__prWrap:after {
		width: calc(22 / var(--vw-min) * 100vw);
		height: calc(24 / var(--vw-min) * 100vw);
	}
	.news__xLink__pr {
		font-size: calc(20 / var(--vw-min) * 100vw);
		margin-right:calc(15 / var(--vw-min) * 100vw);
	}
}

/* line */
.news__xLink__line {
	background-color: rgba(var(--color-main),.4);
	display: block;
	width: 100%;
	height: 1px;
	margin: 0 40px;
}
@media screen and (max-width:767px){
	.news__xLink__line {
		margin: 0 calc(15 / var(--vw-min) * 100vw);
	}
}

/**
 * more
 */
.news__more {
	display: flex;
	justify-content: flex-end;
	width: var(--common-in-width);
	max-width: var(--common-in-maxwidth);
	margin: auto;
	position: absolute;
	top: 195px;
	right: 0;
	left: 0;
}
@media screen and (max-width:767px){
	.news__more {
		margin-top: calc(48 / var(--vw-min) * 100vw);
		position: relative;
		top: auto;
		right: auto;
		left: auto;
		padding-right: calc(48 / var(--vw-min) * 100vw);
	}
}

/*-----------------------------------------------
 * Movie
-------------------------------------------------*/
.movie {
	padding: 200px 0;
	position: relative;
}
@media screen and (max-width:767px){
	.movie {
		padding: calc(94 / var(--vw-min) * 100vw) 0;
	}
}

/**
 * movieLists
 */
.movieListsArea {
	margin-top: 50px;
	position: relative;
}
@media screen and (max-width:767px){
	.movieListsArea {
		margin-top: calc(80 / var(--vw-min) * 100vw);
	}
}

.movieListsArea:before,
.movieListsArea:after {
	content: "";
	background: rgb(0,0,0);
	width: 20%;
	height: calc(100% + 2px);
    pointer-events: none;
	position: absolute;
	top: -1px;
	z-index: 2;
}
.movieListsArea:before { left: 0; background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);}
.movieListsArea:after { right: 0; background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); }
@media screen and (max-width:767px){
	.movieListsArea:before,
	.movieListsArea:after {
		content: none;
	}
}

/* wrap */
.movieListsWrap {
	border-top: 1px solid rgba(var(--color-main),.4);
	border-bottom: 1px solid rgba(var(--color-main),.4);
	position: relative;
	z-index: 1;
}

/* li */
.movieLists > li {
	border-right: 1px solid rgba(var(--color-main),.4);
	border-left: 1px solid rgba(var(--color-main),.4);
	width: min(66.66666vw, 1000px);
	height: min(37.5vw, 564px);
	position: relative;
}
@media screen and (max-width:767px){
	.movieLists > li {
		width: calc(590 / var(--vw-min) * 100vw);
		height: calc(332 / var(--vw-min) * 100vw);
	}
}

/* a */
.movieLists > li > a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
}
.movieLists > li > a:before {
	content: "";
	background-color: #000;
	width: 100%;
	height: 100%;
	opacity: .4;
	position: absolute;
	top: 0;
	z-index: 2;
}

/* thumb */
.movieLists__thumb {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 1;
}

/* text */
.movieLists__text {
	color: #fff;
	display: block;
	width: 100%;
	font-size: 16px;
	letter-spacing: 0;
	text-align: center;
	position: absolute;
	bottom: 1em;
	z-index: 10;
}
@media screen and (max-width:767px){
	.movieLists__text {
		font-size: calc(20 / var(--vw-min) * 100vw);
	}
}

/* icon */
.movieLists__icon {
	border: 1px solid rgb(var(--color-main));
	border-radius: 50%;
	width: 120px;
	height: 120px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
}
.movieLists__icon:before {
	content: "";
	border: 1px solid rgb(var(--color-main));
	border-radius: 50%;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.movieLists__icon:after {
	content: "";
	background-color: rgb(var(--color-main));
	-webkit-mask: url(../img/common/icon/icon_movie_play.svg) no-repeat center / contain;
	mask: url(../img/common/icon/icon_movie_play.svg) no-repeat center / contain;
	width: 38px;
	height: 15px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 8px;
}
@media screen and (max-width:767px){
	.movieLists__icon {
		width: calc(120 / var(--vw-min) * 100vw);
		height: calc(120 / var(--vw-min) * 100vw);
	}
	.movieLists__icon:before {
		width: calc(100% - 6px);
		height: calc(100% - 6px);
	}
	.movieLists__icon:after {
		width: calc(38 / var(--vw-min) * 100vw);
		height: calc(15 / var(--vw-min) * 100vw);
		left: calc(8 / var(--vw-min) * 100vw);
	}
}

/* active */
.movieLists > li > a:after {
	content: "";
	background-color: #000;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 3;
	mix-blend-mode: color;
	transition: opacity .4s ease;
}
.movieLists > li.swiper-slide-active > a:after {
	opacity: 0;
}

/* hover */
.movieLists > li > a:before {
	transition: opacity .4s ease;
}
.movieLists > li > a:hover:before {
	opacity: 0;
}
.movieLists__thumb {
	transition: transform .5s var(--easing-outquart);
}
.movieLists > li > a:hover .movieLists__thumb {
	transform: scale(1.15);
}


/**
 * more
 */
 .movie__more {
	display: flex;
	justify-content: flex-end;
	width: var(--common-in-width);
	max-width: var(--common-in-maxwidth);
	margin: auto;
	position: absolute;
	top: 195px;
	right: 0;
	left: 0;
}
@media screen and (max-width:767px){
	.movie__more {
		margin-top: calc(60 / var(--vw-min) * 100vw);
		position: relative;
		top: auto;
		right: auto;
		left: auto;
		padding-right: calc(100 / var(--vw-min) * 100vw);
	}
}


/*-----------------------------------------------
 * Introduction Story
-------------------------------------------------*/
/* .introstory {
	margin-top: 160px;
    padding-top: calc(50vh - 160px);
    padding-bottom: 160px;
	position: relative;
}
@media screen and (max-width:767px){
	.introstory {
		margin-top: calc(180 / var(--vw-min) * 100vw);
		padding-top: calc(180 / var(--vw-min) * 100vw);
		padding-bottom: calc(180 / var(--vw-min) * 100vw);
	}
} */

/* bg */
.introstory__bgWrap {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 1;
}
.introstory__bg {
	width: 100%;
	height: max(100vh, 640px);
	max-height: 100%;
	position: sticky;
	top: 0;
}
@media screen and (max-width:767px){
	.introstory__bg {
		height: 100vh;
	}
}

/**
 * Introduction
 */
.introduction {
    padding-top: 160px;
	padding-bottom: 160px;
    position: relative;
    z-index: 2;
}
.introduction__text {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 40px;
    transform: scaleX(0.8);
    transform-origin: top left;
    text-align: center;
	width: 125%;
}
@media screen and (max-width:767px){
	.introduction {
		padding-top: calc(96 / var(--vw-min) * 100vw);
		padding-bottom: 0;
	}
	.introduction__text {
		font-size: calc(26 / var(--vw-min) * 100vw);
		margin-top: calc(80 / var(--vw-min) * 100vw);
	}
}

/**
 * Story
 */
.story {
    position: relative;
	padding-bottom: 200px;
    z-index: 2;
}
.story__text {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 40px;
    transform: scaleX(0.8);
    transform-origin: top left;
    text-align: center;
	width: 125%;
}
@media screen and (max-width:767px){
	.story {
		padding-top: calc(96 / var(--vw-min) * 100vw);
		padding-bottom: calc(96 / var(--vw-min) * 100vw);
	}
	.story__text {
		font-size: calc(26 / var(--vw-min) * 100vw);
		margin-top: 0;
		padding: 0 calc(24 / var(--vw-min) * 100vw);
	}
}

/*-----------------------------------------------
 * Character
-------------------------------------------------*/
.character {
	padding: 160px 0;
	position: relative;
}
.character:before {
	content: "";
	background: rgb(131,247,118);
	background: linear-gradient(0deg, rgba(131,247,118,.2) 0%, rgba(0,0,0,1) 100%);
	width: 100%;
	height: 240px;
	opacity: .8;
	position: absolute;
	top: 318px;
	pointer-events: none;
}
@media screen and (max-width:767px){
	.character {
		padding-top: calc(180 / var(--vw-min) * 100vw);
	}
	.character:before {
		height: calc(594 / var(--vw-min) * 100vw);
		top: calc(224 / var(--vw-min) * 100vw);
	}
}


/*-----------------------------------------------
 * Staff Cast
-------------------------------------------------*/
.staffcast {
	padding: 160px 0;
	position: relative;
}
@media screen and (max-width:767px){
	.staffcast {
		overflow: hidden;
		padding-top: calc(180 / var(--vw-min) * 100vw);
	}
}

.staffcast__inner {
	width: var(--common-in-width);
	max-width: var(--common-in-maxwidth);
	margin: 0 auto;
}

/**
 * scContWrap
 */
.scContWrap {
    display: flex;
	max-width: 720px;
    margin: 50px auto 0;
}
.scCont {
    width: 50%;
    padding-left: 40px;
}
@media screen and (max-width:767px){
	.scContWrap {
		display: block;
		max-width: unset;
		margin-top: calc(80 / var(--vw-min) * 100vw);
		padding: 0 calc(40 / var(--vw-min) * 100vw);
	}
	.scCont {
		width: 100%;
		padding-left: 0;
	}
	.scCont:not(:first-of-type) {
		margin-top: calc(100 / var(--vw-min) * 100vw);
	}
}

/* title */
.scCont__title {
    color: rgb(var(--color-main));
	font-family: var(--font-en);
    font-size: 32px;
    letter-spacing: 0.2em;
    line-height: 1;
    margin-bottom: 40px;
}
@media screen and (max-width:767px){
	.scCont__title {
		font-size: calc(32 / var(--vw-min)* 100vw);
    	margin-bottom: calc(72 / var(--vw-min)* 100vw);
		text-align: center;
	}
}

/**
 * scLists
 */
.scLists__item:not(:first-child) {
    margin-top: 30px;
}
@media screen and (max-width:767px){
	.scLists {
		display: flex;
		flex-wrap: wrap;
	}
	.scLists__item {
		width: 50%;
	}
	.scLists__item.is-w100 {
		width: 100%;
	}
	.scLists__item:not(:first-child) {
		margin-top: 0;
	}
	.scLists__item:nth-child(n+3),
	.scLists__item.is-w100 + .scLists__item {
		margin-top: calc(40 / var(--vw-min) * 100vw);
	}
}

/* dt, dd */
.scLists__item > dt {
    color: rgb(var(--color-sub));
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
}
.scLists__item > dd {
    display: flex;
	align-items: flex-end;
    font-size: 20px;
}
.scLists__item > dd .is-font-min {
	font-size: 80%;
	margin-bottom: 0.1em;
}
.scLists__item > dd.is-add {
    font-size: 12px;
    letter-spacing: 0;
}
@media screen and (max-width:767px){
	.scLists__item > dt {
		font-size: calc(24 / var(--vw-min) * 100vw);
	}
	.scLists__item > dd {
		font-size: calc(32 / var(--vw-min) * 100vw);
	}
	.scLists__item > dd.is-add {
		font-size: 80%;
	}
}

/* comment btn */
.scLists__btn {
    display: block;
    background-color: rgb(var(--color-main));
    -webkit-mask: url(../img/common/icon/icon_fukidashi.svg) no-repeat center / contain;
    mask: url(../img/common/icon/icon_fukidashi.svg) no-repeat center / contain;
    width: 25px;
    height: 22px;
    margin-bottom: 8px;
    margin-left: 8px;
}
@media screen and (max-width:767px){
	.scLists__btn {
		width: calc(38 / var(--vw-min) * 100vw);
		height: calc(38 / var(--vw-min) * 100vw);
		margin-bottom: calc(6 / var(--vw-min) * 100vw);
	}
}



/**/

/* li */
.charaLists > li {
	position: relative;
}


/* inner */
.charaLists__inner {
	display: flex;
	width: var(--common-in-width);
	max-width: var(--common-in-maxwidth);
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
@media screen and (max-width:767px){
	.charaLists__inner {
		display: block;
	}
}

/* img */
.charaLists__imgWrap {
	width: 70%;
}
.charaLists__imgWrap img {
	width: 100%;
	margin: 0 auto;
	margin-left: -50px;
}
@media screen and (max-width:767px){
	.charaLists__imgWrap {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	.charaLists__imgWrap img {
		width: 90%;
		margin-left: auto;
	}
}

/* detail */
.charaLists__detail {
	width: 50%;
	padding-top: 60px;
	position: absolute;
	right: 0;
}
@media screen and (max-width:767px){
	.charaLists__detail {
		position: relative;
		right: unset;
		width: 100%;
		padding-top: calc(60 / var(--vw-min) * 100vw);
		padding-left: calc(40 / var(--vw-min) * 100vw);
		padding-right: calc(40 / var(--vw-min) * 100vw);
	}
}

/* name */
.charaLists__name {
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 34px;
	letter-spacing: -.07em;
	width: 100%;
	z-index: 10;
	white-space: nowrap;
}
.charaLists__name > span {
	color: rgb(var(--color-sub));
	font-size: 18px;
	letter-spacing: 0;
}
@media screen and (max-width:767px){
	.charaLists__name {
		align-items: center;
		font-size: calc(40 / var(--vw-min) * 100vw);
		text-align: center;
	}
	.charaLists__name > span {
		font-size: calc(30 / var(--vw-min) * 100vw);
	}
}

/* dl */
.charaLists__dl {
	display: flex;
	align-items:center;
	margin-top: 20px;
}
.charaLists__dl > dt {
	border: 1px solid rgba(var(--color-main));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-right: 14px;
	background-color: #000;
}
.charaLists__dl > dt > span {
	color: rgba(var(--color-main));
	font-size: 12px;
	line-height: 1;
	margin-top: 3px;
}
.charaLists__dl > dd {
	font-size: 20px;
}
@media screen and (max-width:767px){
	.charaLists__dl {
		justify-content: center;
		margin-top: calc(14 / var(--vw-min) * 100vw);
	}
	.charaLists__dl > dt {
		width: calc(48 / var(--vw-min) * 100vw);
		height: calc(48 / var(--vw-min) * 100vw);
		margin-right: calc(20 / var(--vw-min) * 100vw);
	}
	.charaLists__dl > dt > span {
		font-size: calc(18 / var(--vw-min) * 100vw);
	}
	.charaLists__dl > dd {
		font-size: calc(28 / var(--vw-min) * 100vw);
	}
}

/* text */
.charaLists__textWrap {
	margin-top: 34px;
	padding-top: 40px;
	position: relative;
}
.charaLists__text {
	font-size: 16px;
	line-height: 2;
}
.charaLists__text > span {
	position: relative;
}
.charaLists__text > span:before{
    content: attr(data-kana);
    font-size: 60%;
    font-weight: 500;
    letter-spacing: -.07em;
    text-align: center;
    position: absolute;
    top: -1.6em;
    left: 50%;
    white-space: nowrap;
    transform: translateX(-50%);
}
@media screen and (max-width:767px){
	.charaLists__textWrap {
		margin-top: calc(48 / var(--vw-min) * 100vw);
		padding-top: calc(48 / var(--vw-min) * 100vw);
	}
	.charaLists__text {
		font-size: calc(24 / var(--vw-min) * 100vw);
	}
}

/* deco */
.charaLists__text--deco {
	background-color: rgb(var(--color-main));
	width: 100%;
	height: 1px;
	position: absolute;
	top: 1px;
	left: 0;
}
.charaLists__text--deco:before,
.charaLists__text--deco:after {
	content: "";
	background: rgb(0,0,0);
	width: 20%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 2;
}
.charaLists__text--deco:before {
	width: 18px;
	height: 19px;
	background: url(../img/common/deco/deco_line_left.svg) no-repeat center center / contain;
}
.charaLists__text--deco:after {
	width: 18px;
	height: 19px;
	right: 0;
	background: url(../img/common/deco/deco_line_right.svg) no-repeat center center / contain;
}
/**
 * charaThumbListsWrap
 */
.charaThumbListsWrap {
	width: var(--common-in-width);
	max-width: var(--common-in-maxwidth);
	margin: 80px auto 0;
}
.charaThumbLists {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
@media screen and (max-width:767px){
	.charaThumbListsWrap {
		margin: calc(60 / var(--vw-min) * 100vw) auto 0;
	}
	.charaThumbLists {
		padding: 0 calc(40 / var(--vw-min) * 100vw);
	}
}

/* item */
.charaThumbLists > li {
	width: calc((100% - 100px) / 6);
	margin-bottom: 20px;
}
.charaThumbLists > li:not(:nth-child(6n + 1)) {
	margin-left: 20px;
}
@media screen and (max-width:767px){
	.charaThumbLists > li {
		width: calc((100% - calc(50 / var(--vw-min) * 100vw)) / 6);
	}
	.charaThumbLists > li:not(:nth-child(6n + 1)) {
		margin-left:calc(10 / var(--vw-min) * 100vw);
	}
}

/* a */
.charaThumbLists > li > a {
	border: 1px solid rgba(255, 255, 255, .6);
	display: block;
	overflow: hidden;
	position: relative;
	background: #000;
}

/* img */
.charaThumbLists > li img {
	width: 100%;
	position: relative;
	z-index: 1;
}

/* grd */
.charaThumbLists > li > a:before {
	content: "";
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(45,45,45,1) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background: rgb(131,247,118);
	background: linear-gradient(0deg, rgba(131,247,118,.2) 0%, rgba(131,247,118,0) 100%);
}


/* hover */
.charaThumbLists > li > a,
.charaThumbLists > li img {
	transition: transform .5s var(--easing-outquart);
}
.charaThumbLists > li > a.is-active,
.charaThumbLists > li > a:hover {
	border: 1px solid rgb(var(--color-main));
}
.charaThumbLists > li > a.is-active img,
.charaThumbLists > li > a:hover img {
	transform: scale(1.15);
}


.charaThumbLists > li > a:before {
	opacity: 0;
	transition: opacity .4s ease;
}
.charaThumbLists > li > a:is(:hover, .is-active):before {
	opacity: 1;
}

/**
 * pager
 */
.charaPagerWrap {
	display: none;
}

@media screen and (max-width:767px){
	.charaPagerWrap {
		display: flex;
		justify-content: flex-end;
		width: var(--common-in-width);
		max-width: var(--common-in-maxwidth);
		pointer-events: none;
		margin: auto;
		position: absolute;
		top: 480px;
		left: 0;
		right: 0;
		z-index: 10;
	}
	.charaPagerWrap__inner {
		display: flex;
		justify-content: space-between;
		width: 50%;
	}
	.charaPagerWrap {
		top: 0;
		padding: 0 calc(40 / var(--vw-min) * 100vw);
		width: calc(100% - calc(48 / var(--vw-min) * 100vw) );
	}
	.charaPagerWrap__inner {
		width: 100%;
	}
}

.charaPager {
	width: 64px;
	height: 64px;
	pointer-events: auto;
}
.charaPager > a {
	border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
@media screen and (max-width:767px){
	.charaPager {
		width: calc(100 / var(--vw-min) * 100vw);
		height: calc(100 / var(--vw-min) * 100vw);
	}
}

/* text */
.charaPager__textWrap {
	background-color: #000;
    color: rgb(var(--color-main));
    font-size: 20px;
    line-height: 1;
    position: relative;
    z-index: 2;
    padding-bottom: 5px;
	transition: transform .3s ease;
}
.charaPager__textWrap > span {
	display: inline-block;
}
.charaPager.is-next .charaPager__textWrap{
	margin-left: 44px;
}
.charaPager.is-next > a:hover .charaPager__textWrap {
	transform: translateX(10%);
}
.charaPager.is-prev .charaPager__textWrap{
	margin-right: 52px;
}
.charaPager.is-prev > a:hover .charaPager__textWrap {
	transform: translateX(-10%);
}
@media screen and (max-width:767px){
	.charaPager__textWrap {
		font-size: calc(24 / var(--vw-min) * 100vw);
	}
	.charaPager.is-next .charaPager__textWrap{
		margin-left: calc(48 / var(--vw-min) * 100vw);
	}
	.charaPager.is-prev .charaPager__textWrap{
		margin-right: calc(58 / var(--vw-min) * 100vw);
	}
}

/* svg */
.charaPager > a svg {
    margin-top: -1px;
    margin-left: -1px;
    transform: rotate(-90deg);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
@media screen and (max-width:767px){
	.charaPager > a svg {
		display: none;
	}
}
.charaPager > a svg circle {
    fill: transparent;
    stroke: rgb(var(--color-main));
    stroke-width: 1;
    animation: bCircle-out .8s forwards;
}
.charaPager > a:hover svg circle {
    animation: bCircle .8s forwards;
}
@keyframes bCircle {
    0% {
        stroke-dasharray: 0 200; /*-- 円の直径(64)x3.14 --*/
    }
    26% {
        stroke-dasharray: 0 200;
    }
    100% {
        stroke-dasharray: 200 200;
    }
}
@keyframes bCircle-out {
    0% {
        stroke-dasharray: 200 200; /*-- 円の直径(64)x3.14 --*/
    }
    26% {
        stroke-dasharray: 200 200;
    }
    100% {
        stroke-dasharray: 0 200;
    }
}

/**
 * swiper animation
 */
/* img */
.charaLists__imgWrap img {
	-webkit-filter: blur(15px);
	-moz-filter: blur(15px);
	filter: blur(15px);
	opacity: 0;
	transition: all .7s ease-in-out;
}
.charaLists > li.swiper-slide-active .charaLists__imgWrap img {
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	filter: blur(0);
	opacity: 1;
}

/* name, cv, text */
.charaLists__name,
.charaLists__dl,
.charaLists__text {
	opacity: 0;
	transform: translateX(10%);
	transition: opacity .4s ease,
				transform 1s var(--easing-outquart);
}
.charaLists > li.swiper-slide-active .charaLists__name,
.charaLists > li.swiper-slide-active .charaLists__dl,
.charaLists > li.swiper-slide-active .charaLists__text,
.subCharaLists > li.subCharaList .charaLists__name,
.subCharaLists > li.subCharaList .charaLists__dl,
.subCharaLists > li.subCharaList .charaLists__text {
	opacity: 1;
	transform: translateX(0);
}
.charaLists > li.swiper-slide-active .charaLists__dl,
.charaLists > li.subCharaList .charaLists__dl {
	transition-delay: .1s;
}
.charaLists > li.swiper-slide-active .charaLists__text,
.charaLists > li.subCharaList .charaLists__text {
	transition-delay: .2s;
}



/**
 * charaThumb__sub
 */
 .charaThumb__sub {
	width: 100%;
	height: 60px;
	margin: 50px auto 0;
}
@media screen and (max-width:767px){
	.charaThumb__sub {
		height: calc(100 / var(--vw-min) * 100vw);
		margin: calc(60 / var(--vw-min) * 100vw) auto 0;
		padding: 0 calc(40 / var(--vw-min)* 100vw);
	}
}

/* a */
.charaThumb__sub > a {
	border: 1px solid rgba(var(--color-sub), .4);
	color: rgb(var(--color-sub));
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

/* span */
.charaThumb__sub > a > span {
	display: flex;
	align-items: center;
	font-size: 16px;
	letter-spacing: 0;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.charaThumb__sub > a > span {
		font-size: calc(26 / var(--vw-min) * 100vw);
	}
}

/* hover & current */
.charaThumb__sub > a {
	transition: border .4s ease;
}
.charaThumb__sub > a:hover,
.charaThumb__sub > a.is-current {
	border: 1px solid rgb(var(--color-sub));
}
.charaThumb__sub > a:before {
	content: "";
	background: rgb(0, 0, 0);
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(45, 45, 45, 1) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0;
	transition: opacity .4s ease;
}
.charaThumb__sub > a:hover:before,
.charaThumb__sub > a.is-current:before {
	opacity: 1;
}



/*-----------------------------------------------
 * sub
-------------------------------------------------*/
.subCharaLists{
	padding: 40px 0 80px;
}
.subCharaList{
	display: flex;
    width: var(--common-in-width);
    max-width: var(--common-in-maxwidth);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.subCharaList:not(:first-child){
	padding-top: 96px;
}
.subCharaLists__image{
	width: 50%;
}
.subCharaLists__image img{
	width: 100%;
}

@media screen and (min-width: 768px){
	.charaLists__detailWrap{
		width: 50%;
	}
	.subCharaList .charaLists__detail,
	.subCharaList .charaLists__detailWrap{
		padding-top: 20px;
		padding-left: 4.4445%;
	}
	.subCharaList .charaLists__name{
		font-size: 26px;
	}
	.subCharaList .charaLists__dl{
		margin-top: 12px;
	}
	.subCharaList .charaLists__dl > dd{
		font-size: 18px;
	}
	.subCharaList .charaLists__textWrap{
		margin-top: 24px;
		padding-top: 32px;
	}

	/** even **/
	.subCharaList:nth-of-type(even) .subCharaLists__image{
		order: 2;
	}
	.subCharaList:nth-of-type(even) .charaLists__detail,
	.subCharaList:nth-of-type(even) .charaLists__detailWrap{
		padding-left: 0;
		padding-right: 4.4445%;
	}

	.subCharaList .charaLists__detailWrap .charaLists__detail,
	.subCharaList:nth-of-type(even) .charaLists__detailWrap .charaLists__detail{
		width: 100%;
		padding-top: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.subCharaList .charaLists__detailWrap .charaLists__detail:not(:first-child){
		padding-top: 40px;
	}
}


@media screen and (max-width: 767px){
	.subCharaLists{
		padding-top: calc(40 / var(--vw-min) * 100vw);
		padding-bottom: calc(80 / var(--vw-min) * 100vw);
	}
	.subCharaList{
		flex-direction: column;
	}
	.subCharaList:not(:first-child){
		padding-top: calc(96 / var(--vw-min) * 100vw);
	}
	.charaLists__detailWrap{
		width: 100%;
	}

	.subCharaLists__image{
		width: 100%;
		padding-left: calc(40 / var(--vw-min)* 100vw);
		padding-right: calc(40 / var(--vw-min)* 100vw);
	}
}