/*-----------------------------------------------
 *STORY PAGE
-------------------------------------------------*/
/* storyArea */
.storyArea{
    position: relative;
    padding-top: 50px;
}
.storyArea_inner{
    position: relative;
}
.storyBoxWrap{
    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%;
    }
}


/*story link list*/
.storyLinkListWrap{
    position: sticky;
    height: 0;
    left: 0;
    /*top: 460px;*/
    top: 265px;
    padding-left: 150px;
    pointer-events: none;
}

.storyLinkList{
    display: flex;
    flex-direction: column;
}
.storyLinkList__item{
    /*margin-bottom: 30px;*/
    margin-bottom: 15px;
}
.storyLinkList__item span::after{
    content: "";
    display: block;
    background: #0395eb;
    width: 0%;
    height: 2px;
    transition: all 0.3s ease;
}
.storyLinkList__item a:hover span::after,
.storyLinkList__item a.is-active span::after{
    width: 100%;
}
.storyLinkList a{
    display: inline-block;
    pointer-events: all;
    font-size: 20px;
    position: relative;
    padding-left: 45px;
    text-decoration: none;
}

.storyLinkList a::after,
.storyLinkList a::before{
    width: 26px;
    height: 36px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
}
.storyLinkList a::after{
    background: url(/wp-content/themes/mobkara/assets/img/story/slider_icon_off.png) no-repeat center center;  
    background-size: contain;  
    transition: opacity .3s ease;
}
.storyLinkList a::before{
    background: url(/wp-content/themes/mobkara/assets/img/story/slider_icon_on.png) no-repeat center center;  
    background-size: contain;   
    opacity: 0;
    transition: opacity .3s ease;
}
.storyLinkList a:hover::before,
.storyLinkList a.is-active::before{
    opacity: 1;
}
.storyLinkList a:hover::after,
.storyLinkList a.is-active::after{
    opacity: 0;
}
@media screen and (max-width:1790px){
    .storyLinkListWrap{
        position: relative;
        left: unset;
        top: unset;
        padding:80px 0;
        pointer-events: all;
        width: 100%;
        padding-left: 0;
    }
    .storyLinkList{
        flex-direction: row;
        justify-content: center;
        overflow-x: auto;
    }
    .storyLinkList__item{
        margin: 20px;
    }
}
@media screen and (max-width:767px){

    .storyLinkListWrap{
        position: relative;
        left: unset;
        top: unset;
        padding:0;
        pointer-events: all;
        width: 100%;
        height: auto;
    }
    .storyLinkList{
        flex-direction: row;
        justify-content: flex-start;
    }
    .storyLinkList__item{
        width: 25%;
        margin: 0 0 3vw;
    }
    .storyLinkList a{
        font-size: min(calc(18 / 375 * 100vw),18px);
        padding-left: min(calc(20 / 375 * 100vw),20px);
        text-decoration: none;
    }
    .storyLinkList a::after,
    .storyLinkList a::before{
        width: min(calc(18 / 375 * 100vw),18px);
        height: min(calc(21 / 375 * 100vw),21px);
    }

}
/*-------------
story detial
--------------*/
.storyBox{
    position: relative;
    padding-top: 50px;
    margin-bottom: 42px;
}
.storyBox_inner{
    background: #FFF;
	border: 1px solid #d8c38a;
	border-radius: 20px;
    padding: 4.16%;
    box-shadow: 0px 0px 15px 10px rgba(213,213,205,0.4);
}
@media screen and (max-width:767px){
    .storyBox{
        padding-top: 17vw;
        margin-bottom: 42px;
        position: relative;
    }
    .storyBox_inner{
        padding: 10.6vw 4.26vw;
    }
}

/* number */
.storyBox_numWrap{
    background: url(/wp-content/themes/mobkara/assets/img/story/story_num_bg.png) no-repeat center center;
    background-size: contain;
    width: 117px;
    height: 154px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 18px;
    position: absolute;
    top: 0;
    left: -15px;
}
.storyBox_num{
    font-size: 24px;
}
@media screen and (max-width:767px){
    .storyBox_numWrap{
        width: 18.6vw;
        height: 25.6vw;
        font-size: min(calc(12 / 375 * 100vw),12px);
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .storyBox_num{
        font-size: min(calc(16 / 375 * 100vw),16px);
    }
}
/*ttl*/
.storyBox_ttlWrap{
    margin-bottom: 70px;
    padding: 0 60px 30px 60px;
    background: url(/wp-content/themes/mobkara/assets/img/news/news_detial_line.png) no-repeat center bottom;
    background-size: 100% auto;
}
.story_ttl{
    font-size: 26px;
    line-height: 1.5;
    margin-top: 20px;
}
@media screen and (max-width:767px){
    .storyBox_ttlWrap{
        margin-bottom: 6.93vw;
        padding: 0 0 4.26vw 0;
    }
    .story_ttl{
        font-size: min(calc(20 / 375 * 100vw),20px);
        margin-top: 0;
    }
}
/* text */
.storyBox_detail_textWrap{
    margin: 60px 0 0;
}
.storyBox_detail_text{
    font-size: 16px;
    margin-bottom: 60px;

}
@media screen and (max-width:767px){
    .storyBox_detail_text{
        font-size: min(calc(16 / 375 * 100vw),16px);
    }
}

/*staffList*/
.staffListWrap{
    border-left: 1px solid #269ff4;
    padding-left: 26px;
}
.staffList{
    display: flex;
    font-size: 14px;
    margin-bottom: 5px;
}
@media screen and (max-width:767px){
    .staffListWrap{
        padding-left: 4vw;
    }
    .staffList{
        font-size: min(calc(14 / 375 * 100vw),14px);
        margin-bottom: 0;
    }
}
/* 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;
      }
 }
/*imgList nav*/
.imgList_nav{
position: relative;
display: flex;
justify-content: center;
margin-top: 13px;
}
@media screen and (max-width:767px){
    .imgList_nav{
        margin-top: 3vw;
        justify-content: space-between;
    }
}
/* swiper-pagination */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 11px;
  opacity: 1;
}
.swiper-pagination-bullet {
  background-color: #99abbb;
  height: 8px;
  width:8px;
}
.swiper-pagination-bullet-active{
    width: 20px;
    height: 22px;
    background: url(/wp-content/themes/mobkara/assets/img/story/ic_active.png) no-repeat center center;
    background-size: contain;
}
.swiper-pagination{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-next, .swiper-button-prev {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    margin: 0;
    background: none;
    transition: opacity .3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: .8;
}
.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom:unset; 
    left:unset; 
    width: unset;
    margin: 0 100px;
}
@media screen and (max-width:767px){
    .swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
            margin: 0;
    }
}
/*swiper-button*/
.swiper-button-next::after{
    width: 36px;
    height: 36px;
    background: url(/wp-content/themes/mobkara/assets/img/story/ic_arrow_next.png) no-repeat center center;
    background-size: contain;
    content: "";
}
.swiper-button-prev::after{
    width: 36px;
    height: 36px;
    background: url(/wp-content/themes/mobkara/assets/img/story/ic_arrow_prev.png) no-repeat center center;
    background-size: contain;
    content: "";
}

/*INTRO追加*/
.sub .contentAreaWrap {
    padding: 0 0 0 0;
}
.introArea .sec_bg {
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 calc(100% - 20vw));
}
.introArea{
    text-align: center;
    padding: 160px 0 200px 0;
    position: relative;
}
@media screen and (max-width: 767px) {
    .introArea {
        padding: 0% 0 0% 0;
        overflow: unset;
    }
}
.introArea .inner::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: url(/wp-content/themes/mobkara/assets/img/top/intro_hoseki.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition-delay: 1s;
    transition: none;
}
@media screen and (max-width: 767px) {
    .introArea .inner {
        padding: 30vw 0 15vw;
    }
    .introArea .inner::after {
        background-image: url(/wp-content/themes/mobkara/assets/img/top/intro_hoseki_sp_top.png), url(/wp-content/themes/mobkara/assets/img/top/intro_hoseki_sp_btm.png);
        background-size: 100% auto, 100% auto;
        background-repeat: no-repeat, no-repeat;
        background-position: top 8% center, bottom 10% center;
        opacity: 0;
        transform: scale(1);
        transition: none;
    }
}
.introArea.animated .inner::after {
    opacity: 1;
    transform: scale(1);
}
.introArea .contents_ttl {
    color: #b9c1cb;
    margin-bottom: 0;
}
.introArea .section_ttl {
    z-index: 10;
    font-family: var(--font-en);
    font-weight: 200;
    position: absolute;
    width: 80px;
    left: unset;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    overflow: hidden;
    writing-mode: vertical-lr;
}
.introArea .section_ttl span {
    font-size: 98px;
    line-height: 1;
    transform: rotate(-180deg) translateX(-10px);
    color: #FFF;
    display: block;
}
.introArea .contents_ttl span::before, .introArea .contents_ttl span::after {
    background-color: #b9c1cb;
}