@charset "utf-8";
/*-----------------------------------------------
 * CHARACTER
-------------------------------------------------*/
.story__bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	pointer-events: none;
	/* overflow: hidden; */
}
@media screen and (max-width:768px){
	.story__bg{
		z-index: 0;
	}
}
.story__bg-clip {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.story__bg-clip-in {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}
.story__bg-clip-in {
	background: url(../img/common/bg/bg_bnr.jpg)no-repeat top/cover;
}
@supports (background-image: url(../img/common/bg/bg_bnr.webp)){
	.story__bg-clip-in {
		background-image: url(../img/common/bg/bg_bnr.webp);
	}
}
.subSecWrap {
	position: relative;
	margin-top: max(calc(-176 / var(--vw-min) * 100vw),-176px);
}
@media screen and (max-width:768px){
	.subSecWrap {
		margin-top: 0;
	}
}
.subSec .cont-titWrap {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: calc(100% - 85.7143%);
	z-index: 2;
	padding-left: 0;
	margin-top: -80px;
}
@media screen and (max-width:768px){
	.subSec .cont-titWrap {
		position: relative;
		width: 100%;
		margin-top: 0;
	}
}
.cont-tit {
	height: min(calc(323 / var(--vw-min) * 100vw),323px);
	background: url(../img/common/tit/tit_story.svg)no-repeat center/contain;
}
@media screen and (max-width:768px){
	.cont-tit {
		width: calc(414 / var(--vw-min) * 100vw);
		height: calc(140 / var(--vw-min) * 100vw);
		background-image: url(../img/common/tit/tit_story-s.svg);
	}
}
.subCont {
	width: 100%;
	padding-top: 0;
}
@media screen and (max-width:768px){
	.subCont {
		width: 100%;
		max-width: 100%;
		padding: calc(80 / var(--vw-min) * 100vw) 0 0;
	}
}
/**
* thumb
**/
.story__thumbWrap {
    width: 100%;
	position: relative;
	padding-bottom: min(calc(76 / var(--vw-min) * 100vw),76px);
	margin-top: min(calc(96 / var(--vw-min) * 100vw),96px);
}
@media screen and (max-width:768px){
	.story__thumbWrap {
		padding-bottom: calc(50 / var(--vw-min) * 100vw);
		padding-bottom: 0;
		margin-top: calc(78 / var(--vw-min) * 100vw);
	}
}
.story__thumbLists {
	width: min(calc(745 / var(--vw-min) * 100vw),745px);
	position: relative;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: center;
	gap: min(calc(8 / var(--vw-min) * 100vw),8px);
	padding: min(calc(8 / var(--vw-min) * 100vw),8px) 0;
	margin: 0 auto;
}
@media screen and (max-width:768px){
	.story__thumbLists {
		width: 100%;
		padding: calc(12 / var(--vw-min) * 100vw) calc(12 / var(--vw-min) * 100vw);
		gap: calc(16 / var(--vw-min) * 100vw);
	}
}
.story__thumbItem {
	width: min(calc(28 / var(--vw-min) * 100vw),28px);
	height: min(calc(80 / var(--vw-min) * 100vw),80px);
	background-color: #000;
	border: 1px solid #fff;
	box-shadow: 0 0 0 2px #000;
	writing-mode: vertical-lr
}
@media screen and (max-width:768px){
	.story__thumbItem {
		width: calc(56 / var(--vw-min) * 100vw);
		height: calc(120 / var(--vw-min) * 100vw);
	}
}
.story__thumbItem a {
	color: #fff;
	text-decoration: none;
	transition: .3s var(--cubic-bezier01);
}
.story__thumbItem a:hover,
.story__thumbItem .--is-current {
	background-color: #d44248;
	border: 1px solid #fff;
	box-shadow: 0 0 0 2px #d44248;
}
.story__thumbLink {
	width: 100%;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
}
.story__thumb-img {
	width: min(calc(60 / var(--vw-min) * 100vw),60px);
	border: min(calc(1 / var(--vw-min) * 100vw),1px) solid var(--color-khaki4F4);
	transition: .3s var(--cubic-bezier01);
}
@media screen and (max-width:768px){
	.story__thumb-img {
		width: calc(72 / var(--vw-min) * 100vw);
		border-width: calc(2 / var(--vw-min) * 100vw);
	}
}
.story__thumb-img img {
	width: 100%;
	pointer-events: none;
}
@media (hover: hover) and (pointer: fine){
	.story__thumbLink:hover .story__thumb-img  {
		background-color: var(--color-redD44);
	}
}
.story__thumbLink.is-active .story__thumb-img {
	background-color: var(--color-redD44);
}
/**
* deco
**/
.charaTopBg.--left,
.charaTopBg.--right {
	width: min(calc(560 / var(--vw-min) * 100vw),560px);
    height: min(calc(76 / var(--vw-min) * 100vw),76px);
    position: absolute;
	bottom: 2px;
	z-index: 2;
	background-color: var(--color-khaki4F4);
}
.charaTopBg.--left {
	left: 0;
	clip-path: polygon(100% 0, 0% 100%, 0 0);
}
.charaTopBg.--right {
	right: 0;
	clip-path: polygon(0 0, 100% 100%, 100% 0);
}
@media screen and (max-width:768px){
	.charaTopBg.--left,
	.charaTopBg.--right {
		width: 50%;
		height: calc(50 / var(--vw-min) * 100vw);
		bottom: calc(-48 / var(--vw-min) * 100vw);
	}
}
.subSec .deco__chochinParts {
	position: absolute;
	top: unset;
	bottom: max(calc(-76 / var(--vw-min) * 100vw),-76px);
}
@media screen and (max-width:768px){
	.subSec .deco__chochinParts {
		/* bottom: calc(-90 / var(--vw-min) * 100vw); */
		bottom: calc(-132 / var(--vw-min) * 100vw);
	}
}
.charaCont {
	padding-top: min(calc(300 / var(--vw-min) * 100vw),300px);
}
@media screen and (max-width:768px){
	.charaCont {
		padding-top: 0;
	}
}
.story__item {
	height: 100%;
	min-height: min(calc(800 / var(--vw-min) * 100vw),800px);
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-direction: row-reverse;
	justify-content: space-between;
}
@media screen and (max-width:768px){
	.story__item {
		display: block;
		min-height: calc(1268 / var(--vw-min) * 100vw);
	}
}
.story__imgLists {
	width: min(calc(360 / var(--vw-min) * 100vw),360px);
	min-height: min(calc(800 / var(--vw-min) * 100vw),800px);
	position: relative;
	top: max(calc(-110 / var(--vw-min) * 100vw),-110px);
	right: 0;
	left: 0;
	pointer-events: none;
}
@media screen and (max-width:768px){
	.story__imgLists {
		width: calc(550 / var(--vw-min) * 100vw);
		min-height: calc(1222 / var(--vw-min) * 100vw);
		position: absolute;
		right: 0;
		left: 0;
	}
}
.story__img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}
.story__img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	object-fit: cover;
	pointer-events: none;
}
@media screen and (max-width:768px){
	.story__item.--chara2 .story__img.c-normal {
		left: calc(68 / var(--vw-min) * 100vw);
	}
}
/** name **/
.story__nameWrap {
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	font-feature-settings:initial;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	text-shadow: var(--text-shadow);
}
@media screen and (max-width:768px){
	.story__nameWrap {
		margin: calc(350 / var(--vw-min) * 100vw) 0 0 auto;
	}
}
.story__ruby {
	font-size: min(calc(16 / var(--vw-min) * 100vw),16px);
	line-height: 1;
	font-weight: 700;
}
@media screen and (max-width:768px){
	.story__ruby {
		font-size: calc(20 / var(--vw-min) * 100vw);
	}
}
.story__name {
	font-size: min(calc(48 / var(--vw-min) * 100vw),48px);
	line-height: 1;
	font-weight: 900;
	margin: 0 min(calc(15 / var(--vw-min) * 100vw),15px);
}
@media screen and (max-width:768px){
	.story__name {
		font-size: calc(56 / var(--vw-min) * 100vw);
		margin: 0 calc(24 / var(--vw-min) * 100vw);
	}
}
.story__cvWrap {
	margin-top: min(calc(25 / var(--vw-min) * 100vw),25px);
}
@media screen and (max-width:768px){
	.story__cvWrap {
		margin-top: 0;
	}
}
.story__cv {
	font-size: min(calc(16 / var(--vw-min) * 100vw),16px);
	color: var(--color-redD44);
	font-weight: 700;
}
@media screen and (max-width:768px){
	.story__cv  {
		font-size: calc(20 / var(--vw-min) * 100vw);
	}
}
.story__cvName {
	font-size: min(calc(20 / var(--vw-min) * 100vw),20px);
	font-weight: 700;
}
@media screen and (max-width:768px){
	.story__cvName {
		font-size: calc(28 / var(--vw-min) * 100vw);
	}
}

/** txt **/
.story__txtWrap {
	width: 57.1429%;/* 640 */
	/* max-width: calc(640px * 1.6); */
	max-width: 1200px;
	position: relative;
	padding: min(calc(40 / var(--vw-min) * 100vw),40px);
	background-color: rgba(255, 255, 255, .8);
}
@media screen and (max-width:768px){
	.story__txtWrap {
		width: 100%;
		max-width: 100%;
		padding: calc(32 / var(--vw-min) * 100vw);
	}
}
.story__txt {
	font-size: min(calc(16 / var(--vw-min) * 100vw),16px);
	line-height: 2;
	font-weight: 600;
	text-shadow: var(--text-shadow);
}
@media screen and (max-width:768px){
	.story__txt {
		font-size: calc(24 / var(--vw-min) * 100vw);
	}
}
/**
* changeBtn
**/
.story__changeBtn {
	width: min(calc(100 / var(--vw-min) * 100vw),100px);
	height: min(calc(100 / var(--vw-min) * 100vw),100px);
	position: absolute;
	top: min(calc(360 / var(--vw-min) * 100vw),360px);
	right: 0;
	margin: auto;
	z-index: 1;
}
@media screen and (max-width:768px){
	.story__changeBtn {
		width: calc(124 / var(--vw-min) * 100vw);
		height: calc(124 / var(--vw-min) * 100vw);
		top: calc(72 / var(--vw-min) * 100vw);
		right: unset;
		left: 0;
	}
}
.story__changeBtn::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	inset: 0;
	margin: auto;
	-webkit-mask: url(../img/common/deco/deco_change-txt.svg)no-repeat center/contain;
	mask: url(../img/common/deco/deco_change-txt.svg)no-repeat center/contain;
	background-color: #000;
	animation: 32s ani_rotate01 linear infinite;
}
.story__changeBtn::after {
	content: "";
	width: min(calc(64 / var(--vw-min) * 100vw),64px);
	height: min(calc(64 / var(--vw-min) * 100vw),64px);
	display: block;
	position: absolute;
	inset: 0;
	margin: auto;
	-webkit-mask: url(../img/common/deco/deco_change.svg)no-repeat center/contain;
	mask: url(../img/common/deco/deco_change.svg)no-repeat center/contain;
	background-color: #000;
	transition: .3s var(--cubic-bezier01);
}
@media screen and (max-width:768px){
	.story__changeBtn::after {
		width: calc(80 / var(--vw-min) * 100vw);
		height: calc(80 / var(--vw-min) * 100vw);
	}
}
@media (hover: hover) and (pointer: fine){
	.story__changeBtn:hover::after {
		transform: rotate(-180deg);
	}
}
.story__item .c-active {
	display: none;
	opacity: 0;
	transform: scale(0.5);
	transition: .3s var(--cubic-bezier01);
	animation: fadeIn .4s forwards;
}
.story__item.c-change .c-active {
	transform: scale(1);
	display: block;
	opacity: 1;
}
.story__item .c-normal {
	transform: scale(1);
	display: block;
	opacity: 1;
	transition: .3s var(--cubic-bezier01);
	animation: fadeIn .4s forwards;
}
.story__item.c-change .c-normal {
	transform: scale(0.5);
	display: none;
	opacity: 0;	
}
@keyframes fadeIn{
    0% {
		opacity: 0;
		transform: scale(0.5);
    }

    100% {
      opacity: 1;
	  transform: scale(1);
    }
}
body.--noBtn .js-story__changeBtn {
	display: none; 
}
/**
* bg 
**/
.storyBg {
	width: 100%;
	height: calc(100% - min(calc(96 / var(--vw-min) * 100vw),96px));
	position: absolute;
	top: min(calc(98 / var(--vw-min) * 100vw),98px);
	left: 0;
	z-index: -1;
	margin: auto;
	background-color: #fefdfa;
	border-bottom: min(calc(1 / var(--vw-min) * 100vw),1px) solid rgba(0, 0, 0, .2);
}
@media screen and (max-width:768px){
	.storyBg {
		height: calc(100% - calc(-160 / var(--vw-min) * 100vw));
		top: min(calc(-40 / var(--vw-min) * 100vw),-40px);
		
	}
}
/**
 * storyArticleTitle
 **/
.storyArticle {
	padding-top: min(calc(300 / var(--vw-min) * 100vw),160px);
}
@media screen and (max-width:768px){
	.storyArticle{
		padding-top: 0;
	}
}


.storyArticleTitle {
    display: flex;
    align-items: center;
	gap: min(calc(24 / var(--vw-min) * 100vw),24px);
	justify-content: center;
    margin: 0 auto;
	padding-top: min(calc(72 / var(--vw-min) * 100vw),72px);	
}
.storyArtileTitle__no {
	font-size: min(calc(32 / var(--vw-min) * 100vw), 32px);
	color: #d44248;
    font-weight: 700;
    line-height: 1.3334;
    position: relative;
	align-items: center;
    display: flex;
	flex-direction: column;
	justify-content: center;
	flex-shrink: 0;
}
.storyArtileTitle__title {
	font-size: min(calc(32 / var(--vw-min) * 100vw),32px);
    font-weight: 700;
    line-height: 1.3334;
    position: relative;
}

@media screen and (max-width:768px){
	.storyArticleTitle {
		padding: calc(96 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw) 0;
	}
	.storyArtileTitle__no {
		font-size: calc(32 / var(--vw-min) * 100vw);
	}
	.storyArtileTitle__title {
		font-size: calc(32 / var(--vw-min) * 100vw);
	}
}





/**
 * story__imageArea
 **/
.story__imageArea {
	padding: min(calc(36 / var(--vw-min) * 100vw),36px) 0 calc(12 / var(--vw-min) * 100vw);
	position: relative;
}
.story__imageSwiper{
	width: 100%;
}
.story__imageList{
	width: 57.1429%;/* 640 */
	/* max-width: calc(640px * 1.6); */
	max-width: 1200px;
}
.story__imageList img{
	width: 100%;
}

@media screen and (max-width:768px){
	.story__imageArea {
		padding-top: calc(24 / var(--vw-min) * 100vw);
		padding-bottom: calc(24 / var(--vw-min) * 100vw);
	}
	.story__imageList{
		width: calc(654 / var(--vw-min) * 100vw);
		max-width: 100%;
	}
}
.story__imageList:not(.swiper-slide-active) img {
	filter: grayscale(1);
	transition: filter .4s ease;
}
.story__imageList.swiper-slide-active img {
	filter: grayscale(0);
	transition: filter .4s ease;
}
.story__imageList:not(.swiper-slide-active) {
	position: relative;
}
.story__imageList:not(.swiper-slide-active)::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, .4);
	transition: opacity .4s ease;
	pointer-events: none;
}
.story__imageList.swiper-slide-active::after {
	content: none;
}



/**
* swipter
**/
.story__paginations{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: min(calc(24 / var(--vw-min) * 100vw), calc(24px * 1.875));
	z-index: 2;
	display: flex;
	justify-content: center;
}
.story__paginationsIn{
	height: min(calc(24 / var(--vw-min) * 100vw),24px);
	position: relative;
	padding: 0 min(calc(16 / var(--vw-min) * 100vw),16px);
}
.story__paginationsIn:before,
.story__paginationsIn:after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(calc(16 / var(--vw-min) * 100vw),16px);
	height: min(calc(24 / var(--vw-min) * 100vw),24px);
	background: url(../img/common/deco/deco_m-tit.svg)no-repeat center / contain;
}
.story__paginationsIn:before{
	left: min(calc(2 / var(--vw-min) * 100vw), calc(2px * 1.875));
}
.story__paginationsIn:after{
	right: min(calc(2 / var(--vw-min) * 100vw), calc(2px * 1.875));
	transform: scale(-1, 1);
}
.story__paginationLists{
	display: flex;
	align-items: center;
	gap: min(calc(16 / var(--vw-min) * 100vw),16px);
	height: min(calc(24 / var(--vw-min) * 100vw),24px);
	background-color: #000;
	padding: 0 min(calc(16 / var(--vw-min) * 100vw),16px);
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.btn_story__pagination,
.btn_story__pagination{
	width: min(calc(8 / var(--vw-min) * 100vw), calc(8px * 1.875));
	height: min(calc(8 / var(--vw-min) * 100vw), calc(8px * 1.875));
	position: relative;
    inset: 0;
    margin: auto;
    border-radius: 50%;
    border: min(calc(2 / var(--vw-min) * 100vw), calc(2px * 1.875)) solid rgba(255, 255, 255, .6);
    pointer-events: auto;
	opacity: 1;
    transition: .3s var(--cubic-bezier01);

}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.btn_story__pagination.swiper-pagination-bullet-active{
	border-color: var(--color-redD44);
	background-color: unset;
}


@media screen and (max-width:768px){
	.story__paginations{
		height: calc(48 / var(--vw-min) * 100vw);
	}
	.story__paginationsIn{
		height: calc(48 / var(--vw-min) * 100vw);
		padding: 0 calc(32 / var(--vw-min) * 100vw);
	}
	.story__paginationsIn:before,
	.story__paginationsIn:after{
		width: calc(32 / var(--vw-min) * 100vw);
		height: calc(48 / var(--vw-min) * 100vw);
	}
	.story__paginationsIn:before{
		left: calc(4 / var(--vw-min) * 100vw);
	}
	.story__paginationsIn:after{
		right: calc(4 / var(--vw-min) * 100vw);
	}
	.story__paginationLists{
		gap: calc(32 / var(--vw-min) * 100vw);
		height: calc(48 / var(--vw-min) * 100vw);
	}
	.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.btn_story__pagination,
	.btn_story__pagination{
		width: calc(16 / var(--vw-min) * 100vw);
		height: calc(16 / var(--vw-min) * 100vw);
		border-width: calc(4 / var(--vw-min) * 100vw);
	}
}



/**
* detailCont
**/
.storyContIn {
    display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding: min(calc(40 / var(--vw-min) * 100vw),40px) 0 min(calc(80 / var(--vw-min) * 100vw), 80px);
}
.story__detailArea {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: min(calc(40 / var(--vw-min) * 100vw),40px);
}
@media screen and (max-width:768px){
	.storyContIn {
		width: 100%;
		max-width: 100%;
		display: block;
		padding: calc(48 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw) calc(40 / var(--vw-min) * 100vw);
	}
	.story__detailArea {
		gap: calc(48 / var(--vw-min) * 100vw);
	}
}
.story__detailCont {
	font-weight: 600;
}
.story__detailCont {
	width: 57.1429%;/* 640 */
	/* max-width: calc(640px * 1.6); */
	max-width: 1200px;
	position: relative;
	border: min(calc(2 / var(--vw-min) * 100vw),2px) solid #000;
	padding: min(calc(40 / var(--vw-min) * 100vw),40px);
	background-color: rgba(255, 255, 255, .8);
}
@media screen and (max-width:768px){
	.story__detailCont {
		width: 100%;
		max-width: 100%;
		border-width: calc(4 / var(--vw-min) * 100vw);
	}
}
.story__detailCont::before {
	content: "";
	width: calc(100% - min(calc(8 / var(--vw-min) * 100vw),8px));
	height: calc(100% - min(calc(8 / var(--vw-min) * 100vw),8px));
	display: block;
	position: absolute;
	inset: 0;
	margin: auto;
	border: min(calc(1 / var(--vw-min) * 100vw),1px) solid #000;
}

@media screen and (max-width:768px){
	.story__detailCont::before {
		width: calc(100% - calc(10 / var(--vw-min) * 100vw));
		height: calc(100% - calc(10 / var(--vw-min) * 100vw));
		border-width: calc(2 / var(--vw-min) * 100vw);
	}
}
.story__detailContTit {
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
    color: #fff;
    line-height: 1;
    display: inline-block;
    padding: min(calc(2 / var(--vw-min) * 100vw), 2px);
    background-color: #000;
}
.story__detailContTxt {
	font-size: min(calc(16 / var(--vw-min) * 100vw),16px);
	line-height: 2;
	margin-top: min(calc(10 / var(--vw-min) * 100vw),10px);
	text-shadow: var(--text-shadow);
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: calc(8 / var(--vw-min) * 100vw) calc(24 / var(--vw-min) * 100vw);
}
.storyArticle__staffList:not(:last-child)  {
	margin-bottom: min(calc(16 / var(--vw-min) * 100vw),16px) auto 0;
}
.storyArticle__staffList {
	display: flex;
	justify-content: flex-start;
}
.storyArticle__staffList--dt {
	color: var(--color-redD44);
	flex-shrink: 0;
    padding-right: 0.6em;
}

.storyYt {
	width: min(calc(600 / var(--vw-min) * 100vw),600px);
	margin: auto;
	position: relative;
}
@media screen and (max-width:768px){
	.story__detailContTit {
		font-size: calc(24 / var(--vw-min) * 100vw);
        padding: calc(4 / var(--vw-min) * 100vw);
	}
	.story__detailContTxt {
		font-size: calc(28 / var(--vw-min) * 100vw);
	}
	.storyArticle__staffList--dt {
		padding-right: 0.4em;
	}
}
@media screen and (max-width:768px){
	.storyYt {
		width: 100%;
	}
}
.storyYt img {
	opacity: 1;
}
.storyYt::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    margin: auto;
    -webkit-mask: url(../img/common/deco/deco_movieframe.svg) no-repeat center / contain;
    mask: url(../img/common/deco/deco_movieframe.svg) no-repeat center / contain;
    background-color: #000;
    pointer-events: none;
}