:root {
  --f-en: "YakuHanJP", "din-2014", sans-serif;
  --f-ja: "YakuHanJP", "Noto Sans JP", sans-serif;
}

.movie_wrapp {
    font-family: var(--f-ja);
    padding-top: 80px;
    width: 100%;
    overflow: hidden;
}
.movie_wrapp img {
    width: 100%;
    max-width: inherit;
    height: auto;
}


.movie_wrapp .en_title {
        font-family: din-2014, sans-serif, 'YakuHanJP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
    color: #525D63;
    text-align: center;
    font-size: min(3.5vw, 35px);
    line-height: 140%;
    letter-spacing:0;
    font-weight: 900;
    margin-bottom: 40px;
}


.movie_wrapp .read_text {
   margin-bottom: 80px;
text-align: center;
    position: relative;
}

.movie_wrapp .read_text h3 {
    display: inline-block;
    text-align: center;
    color: #363691;
    font-size: min(3.3vw, 33px);
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}
.movie_wrapp .read_text h3 sup {
    font-size: 50%;
}
.movie_wrapp .read_text h3 small {
      font-size: 12px;
    color: #333;
    display: block;
    text-align: right;
    line-height: 100%;
}

.movie_wrapp .read_text p {
    text-align: center;
     width: 70%;
    margin: 0 auto;
    font-size: min(1.5vw, 16px);
}

.movie_wrapp .read_text .image_illust.illust_1 {
    position: absolute;
    width: calc((193/1280)*100%);
    max-width: 193px;
    top: 40%;
    right: 6vw;
}
.movie_wrapp .read_text .image_illust.illust_2 {
    position: absolute;
    width: calc((166/1280)*100%);
    max-width: 166px;
    top: 40%;
    left: 6vw;
}

.mov_wrapp {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 60px;
}
.mov_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}
.mov_item h4 {
    margin-bottom: 1em;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-size: min(2.5vw, 20px);
    line-height: 2;
}
.mov_player {
    aspect-ratio: 16 / 9;
}
.mov_player iframe {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}


@media only screen and (max-width: 768px) {
    .mv_wrapp {
        margin-bottom: calc((236/700)*100vw);
    }
        
    .movie_wrapp .en_title {
        font-size: min(5.8vw, 35px);
        margin-bottom: 20px;
    }
        
        
    .movie_wrapp .read_text h3 {
        font-size: min(5.5vw, 36px);
    }
        
    .movie_wrapp .read_text h3 small {
        font-size: 11px;
        width: 80%;
    }  
        
    .movie_wrapp .read_text p {
        text-align: center;
        width: 90%;
        margin: 0 auto;
        font-size: min(3.2vw, 16px);
    }

    .movie_wrapp .read_text {
        margin-bottom: 80px;
    }  
        
    .movie_wrapp .read_text.sp_btm {
        margin-bottom: 20px;
        padding-bottom: 10px;
    } 
        
    .movie_wrapp .read_text .image_illust.illust_1 {
        width: calc((193/700)*100%);
        max-width: inherit;
        top: calc((-153/700)*100vw);
        bottom: auto;
        right: 6vw;
    }
    .movie_wrapp .read_text .image_illust.illust_2 {
        width: calc((166/700)*100%);
        max-width: inherit;
        top: calc((-172/700)*100vw);
        bottom: auto;
        right: 9vw;
    }
    .mov_grid {
        grid-template-columns: auto;
        gap: 30px;
    }
    .mov_item h4 {
        font-size: min(3.2vw, 16px);
    }
}




/***アニメーション***/
.flat_in {
    display: block;
    transition: all 1.6s;
    opacity: 0;
    transform: scale(1.1);
}
.flat_in.on {
    opacity: 1;
    transform: scale(1.0);
}


.fadein_bl {
     -ms-filter: blur(16px);
  filter: blur(16px);
    transform: scale(1.05);
    opacity: 0;
    transition: all 1s ease-out;
}
.fadein_bl.on {
    -ms-filter: blur(0px);
  filter: blur(0px);
    transform: scale(1);
    opacity: 1;
}


.fadein_up {
    -webkit-transform: translateY(6%);
    -ms-transform: translateY(6%);
    transform: translateY(6%);
    opacity: 0;
    transition: all 1s ease-out;
}
.fadein_up.on {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
}

.cliper span {
    display: block;
    -webkit-clip-path: circle(0);
    clip-path: circle(0);
    transition: 1.6s cubic-bezier(0.075, 0.82, 0.165, 1)
}


.cliper.on span {
    -webkit-clip-path: circle(73%);
    clip-path: circle(73%)
}

