@charset "utf-8";
/*-----------------------------------------------
 * Header
-------------------------------------------------*/
/**
 * storyHeader
 */
.storyHeader {
	width: 880px;
	margin: -90px auto 0;
}
@media screen and (max-width:767px){
	.storyHeader {
		width: 100%;
		margin: 10px auto 0;
	}
}

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

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

/* icon */
.storyNavLists__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;
}
.storyNavLists__item.is-intro:after,
.storyNavLists__item:last-child:after {
	content: none;
}
@media screen and (max-width:767px){
	.storyNavLists__item:after {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
	}
}

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

/* headerNavLists__textWrap */
.storyNavLists__textWrap {
	display: block;
	position: relative;
}
.storyNavLists__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;
}
.storyNavLists__item a:hover .storyNavLists__textWrap:before,
.storyNavLists__item a.is-active .storyNavLists__textWrap:before {
	transform-origin: left top;
    transform: scale(1, 1);
}

/* headerNavLists__text */
.storyNavLists__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;
}


/*-----------------------------------------------
 * Detail
-------------------------------------------------*/
/**
 * storyOneWrap
 */
.storyOneWrap {
	width: 720px;
	margin: 60px auto 0;
}
@media screen and (max-width:767px){
	.storyOneWrap {
		width: 100%;
		margin: 20px auto 0;
		padding: 0 20px;
	}
}

/* storyOne */
.storyOne {
	display: none;
}
.storyOne.is-intro {
	width: calc(100% + 160px);
	margin-left: -80px;
}
@media screen and (max-width:767px){
	.storyOne.is-intro {
		width: 100%;
		margin-left: 0;
	}
}

/**
 * storyOne__title
 */
.storyOne__title {
	display: flex;
	margin-bottom: 40px;
}
@media screen and (max-width:767px){
	.storyOne__title {
		margin-bottom: 20px;
	}
}

/* num */
.storyOne__title--num {
	flex: none;
	font-size: 120px;
	font-weight: 700;
	line-height: 1;
}
@media screen and (max-width:767px){
	.storyOne__title--num {
		font-size: 54px;
	}
}

/* text */
.storyOne__title--text {
	font-size: 24px;
	padding-top: 36px;
	padding-left: 20px;
}
@media screen and (max-width:767px){
	.storyOne__title--text {
		font-size: 14px;
		padding-top: 14px;
		padding-left: 14px;
	}
}

/**
 * storyImgListsWrap
 */
 .storyImgListsWrap {
	overflow: hidden;
}
.storyImgLists img {
	width: 100%;
}


/**
 * storyThumbLists
 */
.storyThumbLists {
	display: flex;
	align-items: center;
}
.storyThumbLists li {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    margin: 0 !important;
}
@media screen and (max-width:767px) {
	.storyThumbLists li {
		width: calc(100% / 3);
	}
}

/* storyThumb */
.storyThumb {
	opacity: .6;
	transition: opacity .3s ease;
}
.storyThumbLists li.swiper-pagination-bullet-active .storyThumb,
.storyThumbLists li:hover .storyThumb {
	opacity: 1;
}
.storyThumb img {
	width: 100%;
}


/**
 * storyText
 */
.storyTextWrap {
	margin-top: 60px;
}
@media screen and (max-width:767px) {
	.storyTextWrap {
		margin-top: 20px;
	}
}

/* text */
.storyText {
	font-size: 16px;
	line-height: 2;
}
.storyText:not(:first-child) {
	margin-top: 30px;
}
@media screen and (max-width:767px) {
	.storyText {
		font-size: 12px;
	}
	.storyText:not(:first-child) {
		margin-top: 20px;
	}
}

/**
 * storyMovieDl
 */
.storyMovieDl {
	margin-top: 60px;
}
@media screen and (max-width:767px) {
	.storyMovieDl {
		margin-top: 40px;
	}
}

/* dt */
.storyMovieDl > dt {
	border-bottom: 1px solid rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
@media screen and (max-width:767px) {
	.storyMovieDl > dt {
		font-size: 16px;
		margin-bottom: 20px;
		padding-bottom: 10px;
	}
}

/**
 * storyMovieWrap
 */
.storyMovieWrap {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}
.storyMovieWrap iframe {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/**
 * introText
 */
.introText {
	font-size: 20px;
	letter-spacing: 0.04em;
	line-height: 3;
	text-align: center;
}
@media screen and (max-width:767px) {
	.introText {
		font-size: 14px;
		line-height: 2;
	}
}


/*-----------------------------------------------
 * White ver. style
 * .bodyに「is-change」クラスを付与
-------------------------------------------------*/
/* storyNavLists__text */
body.body.is-change .storyNavLists__text {
	color: #000;
}

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

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

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

body.body.is-change .storyMovieDl > dt {
	border-bottom: 1px solid rgba(0,0,0,.4);
}

/**
 * movieLists
 */
 .movieListsWrap {
	width: 720px;
	margin-top: 60px;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width:767px){
	.movieListsWrap {
		width: 100%;
		margin-top: 26px;
		padding: 0 20px;
	}
}

/* lists */
.movieLists {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* item */
.movieLists__item {
	width: calc((100% - 40px) / 2);
	margin-bottom: 40px;
}
@media screen and (max-width:767px){
	.movieLists__item {
		width: 100%;
		margin-bottom: 30px;
	}
}

/* link */
.movieLists__link {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: block;
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}

/* icon */
.movieLists__link:before {
	content: "";
	background-color: rgba(255,255,255,.4);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	width: 120px;
	height: 80px;
	-webkit-mask-image: url(../img/common/icon_play.svg);
	mask-image: url(../img/common/icon_play.svg);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: -40px;
	z-index: 2;
	transition: background-color .2s ease;
}
.movieLists__link:hover:before {
	background-color: rgba(255,255,255,1);
	animation: flashAni .2s linear;
}

/* cover */
.movieLists__link:after {
	content: "";
	background-color: rgba(0,0,0,.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: opacity .4s ease;
}
.movieLists__link:hover:after {
	opacity: 0;
}

/* title */
.movieLists__title {
	font-size: 16px;
	margin-top: 20px;
	text-align: center;
}
@media screen and (max-width:767px){
	.movieLists__title {
		font-size: 14px;
		margin-top: 10px;
		text-align: center;
	}
}