@charset "utf-8";
.contentIn{
  padding-top:0;
}
/*-----------------------------------------------
 * story
-------------------------------------------------*/
#story {
  padding-bottom: 0;
}
#story .contentTitle__en {
  height: 78px;
}
#story .contentTitle__ja:before,
#story .contentTitle__ja:after {
  background-image: linear-gradient(var(--color-blue), var(--color-blue));
}
.storyContent {
  position: relative;
  width: 100%;
  margin-top: 48px;  
  /*padding: 0 0 80px;*/
}
@media screen and (max-width: 768px) {
  #story {
    padding-bottom: calc(200 / var(--vw-min) * 100vw);
    overflow: hidden;
  }
  #story .contentTitle__en {
    height: calc(84 / var(--vw-min) * 100vw);
  }
  .storyContent {
    margin-top: calc(96 / var(--vw-min) * 100vw);
    padding: 0;
  }
}
/*-----------------------------------------------
 * storyNav
-------------------------------------------------*/

/* storyNav */
@media screen and (max-width:767px){
  .storyNavBlock{
    padding: 0 calc(70 / var(--vw-min) * 100vw);;
  }
}
.storyNav{
    /*display: grid;
    width: fit-content;
    border-top: 2px solid #000;
    grid-template-columns: repeat(7, 1fr);*/
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
.storyNav__item {
  width: min(calc(100 / var(--vw-min) * 100vw),100px);
  height: min(calc(100 / var(--vw-min) * 100vw),100px);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  position: relative;
}
.storyNav__item:first-child {
    border-left: 2px solid #000;
}
@media screen and (max-width:767px){
  .storyNav{
    grid-template-columns: repeat(6, 1fr);
  }
  .storyNav__item {
    width: calc(120 / var(--vw-min) * 100vw);
    height: calc(120 / var(--vw-min) * 100vw);
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}
  .storyNav__item:nth-child(n+7){
    display: none;
  }
}
.storyNav__item a{
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: all .4s ease;
}
.storyNav__item a::before{
  position: absolute;
  top: 0;
  left: -2px;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: calc(100% + 4px);
  height:calc(100% + 4px);
  background-color: var(--color-pink);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.storyNav__item a:hover::before{
  background-color: transparent;
  border: 2px solid var(--color-pink);
  width: 100%;
  height: 100%;
}

.storyNav__item a:hover::before,
.storyNav__item.is-active a::before{
  opacity: 1;
}
.storyNav__item .item__num{
  position: relative;
  z-index: 1;
  font-size: 24px;
}
@media screen and (max-width:767px){
  .storyNav__item .item__num{
    font-size: calc(32 / var(--vw-min) * 100vw);
  }
}
.storyNav__item.is-active{
  color: #FFF;
}
.storyNav__item a:hover{
  color: var(--color-pink);
}
/* active a */
.storyNav__item.is-active a{
  pointer-events: none;
}

/*-----------------------------------------------
 * goodsContWrap
-------------------------------------------------*/
.storyContWrap{
}
@media screen and (min-width: 769px) {
  .storyContWrap{
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .storyContWrap{
    padding: 10vw 0;
  }
}
.storyContWrap > p{
  color: #fff;
  font-size: min(calc(36 / var(--vw-min) * 100vw), 36px);
}
@media screen and (max-width: 768px) {
  .storyContWrap > p{
    font-size: calc(48 / var(--vw-min) * 100vw);
  }
}



.storyBoxWrap{
  width: 100%;
  max-width: 1200px;
  margin:  0 auto;
  z-index: 10;
  position: relative;
}

@media screen and (max-width:767px){
  .storyArea{
      padding-top: 10vw;
  }
  .storyArea_inner{
      padding: 0 4.26vw;  
  }
  .storyBoxWrap{
      width: 100%;
      padding: 0 calc(24 / var(--vw-min) * 100vw);
  }
}

/*-------------
story detial
--------------*/
.storyBox{
  position: relative;
  padding-top: 80px;
  margin-bottom: 42px;
}
.storyBox_inner{
  background: url(../img/common/bg_storypage_pt.png);
  border-radius: 20px;
  padding: 70px;
}
@media screen and (max-width:767px){
  .storyBox{
      margin-bottom:calc(40 / var(--vw-min) * 100vw);
      position: relative;
      padding: 17vw 0 calc(24 / var(--vw-min) * 100vw) ;
  }
  .storyBox_inner{
      padding:  calc(90 / var(--vw-min) * 100vw)  calc(40 / var(--vw-min) * 100vw) calc(130 / var(--vw-min) * 100vw);
  }
}

/* number */
.storyBox_num{
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: max(calc(-100 / 375 * 100vw),-100px);
}
.deco_ribon .item__num{
  font-size: 26px;
}
@media screen and (max-width:767px){
  .storyBox_num{
      margin-top: max(calc(-120 / var(--vw-min) * 100vw), -120px);
      font-size:calc(30 / var(--vw-min) * 100vw);
  }
  .deco_ribon .item__num{
      font-size:calc(40 / var(--vw-min) * 100vw);
  }
}
.item__num_aft{
  position: relative;
  z-index: 1;
}
.en .item__num_aft{
  display: none;
}
/*ttl*/

.story_ttl{
  display: block;
  text-align: center;
  margin-bottom: 60px;
  font-size: 20px;
  margin-top: 40px;
}
@media screen and (max-width:767px){
  .story_ttl{
      font-size: calc(28 / var(--vw-min) * 100vw);
      margin-bottom: 6.93vw;
      padding:0;
      margin-top: calc(60 / var(--vw-min) * 100vw);
  }
}

/* deco line*/
.ttlLine{
  position: relative;
  padding-bottom: 30px;
}
.ttlLine::before{
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-pink);
}
.ttlLine_deco{
  position: absolute;
  left: 0;
  bottom: -2px;
  margin: auto;
  z-index: 0;
  content: "";
  width: 100%;
  height: 2px;
}
.ttlLine_deco::before,
.ttlLine_deco::after{
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  background-color: var(--color-pink);
  border-radius: 50%;
}
.ttlLine_deco::after{
  left: unset;
  right: 0;
}
@media screen and (max-width: 768px) {
  .ttlLine{
  padding-bottom:calc(42 / var(--vw-min) * 100vw);

}
  .ttlLine::before{
    height: calc(4 / var(--vw-min) * 100vw);
  }
  .ttlLine_deco{
    height: calc(4 / var(--vw-min) * 100vw);
      bottom: 0;
  }
  .ttlLine_deco::before,
  .ttlLine_deco::after{
    width: calc(15 / var(--vw-min) * 100vw);
    height: calc(15 / var(--vw-min) * 100vw);
    top: 0;
  }
}



/* text */
.storyBox_detail_textWrap{
  margin: min(calc(30 / var(--vw-min) * 100vw),30px) 0 0;
}
.storyBox_detail_text{
  font-size: 16px;
  margin-bottom: min(calc(30 / var(--vw-min) * 100vw),30px);

}
@media screen and (max-width:767px){
  .storyBox_detail_text{
      font-size: calc(32 / var(--vw-min) * 100vw);
      margin-bottom: calc(70 / var(--vw-min) * 100vw);
  }
}

/*staffList*/

.staffcast__ttl{
  width:  min(calc(128 / var(--vw-min) * 100vw), 128px);
  display: block;
  margin-bottom: min(calc(24 / var(--vw-min) * 100vw),24px);
}
.staffcast__ttl img{
  width: 100%;
  height: auto;
}
@media screen and (max-width:767px){
  .staffcast__ttl{
      width: calc(190 / var(--vw-min) * 100vw);
  }
}
.staffListWrap{
    font-size: 16px;
    line-height: 1.5;
}
.staffList{
  display: flex;
  margin-bottom: min(calc(10 / var(--vw-min) * 100vw),10px);
}
.staffList_ttl{
  display: block;
  color: var(--color-pink);
  width: 80px;
}
@media screen and (max-width:767px){
  .staffList{
      font-size: calc(32 / var(--vw-min) * 100vw);
      margin-bottom:calc(15 / var(--vw-min) * 100vw);
      flex-direction: column;
  }
  .staffList:last-child{
      margin-bottom:0;
  }
  .staffList_ttl{
    width: 100%;
  }
}
/* img */
.storyBox_imgList{
  position: relative; 
  overflow: hidden;
  width:1000px;
}
.imgList__item img{
  width: 100%;
  height: auto;
}
@media screen and (max-width:767px){
   .storyBox_imgList{
       width:80.86vw;
    }
}


/* deco ribon */
.deco_ribon{
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/common/subttl_ribon_pink.png) no-repeat center center / contain;
  width: 137px;
  height: 54px;
  color: #FFF;
  position: relative;
  z-index: 1;
  padding-top: 2px;
}
@media screen and (max-width:767px){
  .deco_ribon{
    width: calc(184 / var(--vw-min) * 100vw);
    height: calc(74 / var(--vw-min) * 100vw);
  }
}



/*
* Image
*/
.storyImageList{
	padding: 0 4px;
}
.storyImageList__img{
	width: 100%;
	padding-top: 56.25%;
	position: relative;
	margin-bottom: 18px;
}
@media screen and (max-width: 768px){
	.storyImageList{
		padding: 0 calc(4 / var(--vw-min) * 100vw);
	}
	.storyImageList__img{
		margin-bottom: calc(12 / var(--vw-min) * 100vw);
	}
}
.storyImageList__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

/*
* THUMB
*/
.storyThumbBlock{
	margin:  calc(10 / var(--vw-min) * 100vw) auto 0;
	position: relative;
}
@media screen and (max-width: 768px){
	.storyThumbBlock{
		width: 100%;
		margin:  0 auto;
		position: relative;
	}
}

/* storyThumb */
.storyThumbWrap{
	display: flex;
	margin:0 auto;
}
.storyThumbList{
	width: calc((100% - calc(30 / var(--vw-min) * 100vw)) / 4)!important;
	position: relative;
	pointer-events: none;
	margin-right: 5px;
	margin-bottom: 5px;
}
.storyThumbList:nth-child(7n){
	margin-right: 0;

}
@media screen and (max-width: 768px){
	.storyThumbWrap{
		width: 100%!important;
	}
	.storyThumbList{
		width: calc(100% / 5);
	}
}
.storyThumbList__img{
	width: 100%;
	padding-top: 56.25%;
	position: relative;
	pointer-events: auto;
	cursor: pointer;
	overflow: hidden;
}
.storyThumbList__imgIn{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.storyThumbList__img:after{
  background: linear-gradient(90deg,rgba(249, 125, 58, 1) 37%, rgba(248, 195, 218, 1) 100%);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.5;
	transition: .3s ease;
}
.storyThumbList__imgIn img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: .3s ease;
}
.storyThumbLists{
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0 0;
	transform:none!important;
}
@media screen and (max-width: 768px){
	.storyThumbWrap{
		width: calc(100% + (16 / var(--vw-min) * 100vw));
	}
	.storyThumbList,
	.storyThumbList:nth-child(7n){
		width: calc((100% - (20 / var(--vw-min) * 100vw)) / 5)!important;
		margin-right: calc(5 / var(--vw-min) * 100vw);
	}
	.storyThumbList:nth-child(5n){
		margin-right: 0;
	}
	.storyThumbLists{
		flex-wrap: wrap;
		justify-content: flex-start;
		padding: 0 0;
		transform:none!important;
	}
}

/* hover */
@media (hover: hover) and (pointer: fine){
	.storyThumbList__img:hover::after{
		opacity: 0;
	}
}


/* is-active */
.storyThumbList.swiper-slide-thumb-active .storyThumbList__img:after{
	opacity: 0;
}
