@charset "UTF-8";

/* ---- reset ----- */

body {
    margin: 0;
    padding: 0 !important;
    border: 0;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
    word-wrap: break-word;
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Noto Sans JP", sans-serif;
}

ol,
ul,
li {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

a,
a img {
    display: block;
    overflow: hidden;
    color: #f144b6;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
}

h1 {
    font-weight: bold;
}

h2 {
    font-weight: bold;
}

h3 {
    font-weight: bold;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    touch-callout: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    box-sizing: border-box;
    outline: none;
}

main:after,
article:after,
section:after,
div:after,
ul:after,
li:after,
dl:after {
    content: "" "";
    display: block;
    clear: both;
}

table {
    border-collapse: collapse;
    /* テーブルのセルの境界線を重ねる */
    border-spacing: 0;
    /* セル間のスペースをなくす */
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    /* セルの幅を固定 */
}

td,
th {
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: top;
    /* セル内のコンテンツの縦揃えをトップに */
}

tr {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: none;
    vertical-align: inherit;
}

/* ---- reset ----- */


html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    scrollbar-width: none;
}

body {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: 0.05rem;
    color: #fff;
    background-color: #111;
}
body::-webkit-scrollbar {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

a {
    color: #fff;
    transition: 0.3s;
}
a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

img {
    vertical-align:top;
}

strong {
    font-weight: bolder;
}


.sp {
    display: block;
}

.pc {
    display: none;
}


/* common */

#wrap {
    overflow-x: hidden;
}

/* header */

.fix_menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    z-index: 1000;
}
.menu-trigger {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.menu-trigger span {
    position: absolute;
    display: block;
    width: 1.5rem;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
}
.menu-trigger span:nth-child(1) {
    top: 42.5%;
    left: 50%;
    transform: translate(-50%, 0);
}
.menu-trigger span:nth-child(2) {
    top: 57.5%;
    left: 50%;
    transform: translate(-50%, 0);
}
.menu-trigger.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: 0.3s;
}
.menu-trigger.active span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: 0.3s;
}

.gnavi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    text-align: center;
    background-color: rgba(17, 17, 17, 0.95);
}
.gnavi .gnavi_in {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.gnavi_wrap {
    margin-bottom: 5rem;
}
.gnavi_wrap li {
    margin-bottom: 4rem;
}
.gnavi_wrap li:last-of-type {
    margin-bottom: 0;
}
.gnavi_wrap li a {
    font-size: 1rem;
    font-family: "georgia", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.gnavi_sns_wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 30%;
}
.gnavi_sns_wrap li {
    width: calc((100% - 2rem) / 2);
    margin-right: 2rem;
}
.gnavi_sns_wrap li:last-child {
    margin-right: 0;
}
.gnavi_sns_wrap li a img {
    width: auto;
    height: 1.5rem;
}
.gnavi_sns_wrap li a img.youtube {
    aspect-ratio: 256 / 180;
}
.gnavi_sns_wrap li a img.x {
    aspect-ratio: 172 / 180;
}

/* header */

/* main */

.main {
    margin-top: 5rem;
}

.common_wrapper {
    max-width: 1000px;
    padding: 5rem 1.25rem 0;
    margin: 0 auto;
}

.common_heading {
    width: 90%;
    margin: 0 auto 2.5rem;
}

/* main */

/* footer */

.footer {
    padding: 5rem 0 0;
    background-color: #fff;
    position: relative;
}

.share {
    color: #000;
    font-weight: bold;
    text-align: center;
}

.snslist {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 2rem;
}

.snslist li {
    width: 2.1rem;
    margin-right: 2.5rem;
}

.snslist li:last-child {
    margin-right: 0;
}


.footer_logoarea {
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fooerlogo {
    width: 14%;
    max-width: 80px;
    margin: 0 auto;
}

.copy {
    padding: 1rem 1rem 1.5rem;
    text-align: center;
    font-size: 10px;
    color: #000;
}

/* footer */

/* common */


/* TOP */

.top_container {
    margin-bottom: 1.25rem;
}
.top_container .top_kv_area {
    position: relative;
}

.introduction_container .introduction_area {
    text-align: center;
}
.introduction_container .introduction_area p {
    font-size: 0.9rem;
}

.story_container .story_article_area .story_article_title {
    position: relative;
    border: 1px solid #fff;
    border-left: 5px solid #fff;
    padding: 1rem 1.75rem 1rem 0.75rem;
    cursor: pointer;
}
.story_container .story_article_area .story_article_title::after {
    content: "";
    background-image: url(../images/arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    aspect-ratio: 1 / 1;
    width: 1rem;
    height: auto;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%) rotate(-180deg);
}
.story_container .story_article_area .story_article_title.active::after {
    transform: translateY(-50%) rotate(0deg);
}
.story_container .story_article_area .story_article_title h3 {
    font-size: 0.9rem;
    font-weight: 500;
}
.story_container .story_article_area .story_article_text {
    display: block;
    border-bottom: 1px solid #fff;
    padding: 2.5rem 0;
}
.story_container .story_article_area .story_article_text .story_episode {
    margin-bottom: 2.5rem;
}
.story_container .story_article_area .story_article_text .story_episode:last-of-type {
    margin-bottom: 0;
}
.story_container .story_article_area .story_article_text .story_episode h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.story_container .story_article_area .story_article_text .story_episode p {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
}
.story_container .story_article_area .story_article_text .story_episode img {
    width: 100%;
}

.teaser_container {
    margin-bottom: 6rem;
}

.teaser_container .teaser_movie_area {
    margin-bottom: 5rem;
}
.teaser_container .teaser_movie_area .teaser_movie {
    display: none;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 1rem;
    opacity: 0;
}
.teaser_container .teaser_movie_area .teaser_movie.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.teaser_container .teaser_movie_area .teaser_movie iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    border: none;
}

.teaser_container .teaser_movie_area .teaser_movie_tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li {
    text-align: center;
    margin-bottom: 0.5rem;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.shortclip {
    width: calc((100% - 0.5rem) / 2);
    margin-right: 0.5rem;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.teaser {
    width: calc((100% - 0.5rem) / 2);
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.expanded-teaser {
    width: 100%;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li a {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    padding: 0.5rem;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.shortclip a {
    border: 1px solid rgba(242, 84, 247, 0.4);
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.teaser a {
    border: 1px solid rgba(0, 192, 245, 0.4);
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.expanded-teaser a {
    border: 1px solid rgba(52, 254, 234, 0.4);
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.active a {
    color: #111;
    background-color: #fff;
    opacity: 1;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.active.shortclip a {
    border: 1px solid #f356f8;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.active.teaser a {
    border: 1px solid #00bef3;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li.active.expanded-teaser a {
    border: 1px solid #32fee8;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li a.no-link {
    pointer-events: none;
}
.teaser_container .teaser_movie_area .teaser_movie_tab li a.no-link:hover {
    opacity: 1;
}


.teaser_container .teaser_btn_area {
    text-align: center;
    margin-bottom: 2rem;
}
.teaser_container .teaser_btn_area:last-child {
    margin-bottom: 0;
}
.teaser_container .teaser_btn_area h3.teaser_btn_logo {
    margin: 0 auto 1rem;
}
.teaser_container .teaser_btn_area.netflix h3.teaser_btn_logo {
    width: 32.5%;
    max-width: 200px;
}
.teaser_container .teaser_btn_area.prime-video h3.teaser_btn_logo {
    width: 40%;
    max-width: 240px;
}
.teaser_container .teaser_btn_area a.teaser_btn {
    width: 85%;
    max-width: 380px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 40px;
    padding: 0.5rem;
    margin: 0 auto;
}
.teaser_container .teaser_btn_area.netflix a.teaser_btn {
    background-color: #e50914;
}
.teaser_container .teaser_btn_area.prime-video a.teaser_btn {
    background-color: #3678f4;
}

/* TOP */


@media screen and (min-width: 1024px) {

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* common */

    #wrap::before {
        content: "";
        background-image: url(../images/bg_pc_green.jpg);
    }

    /* header */

    .gnavi {
        display: block !important;
        position: absolute;
        width: 100%;
        height: 100px;
        background: none;
    }
    .gnavi_wrap {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 0;
    }
    .gnavi_wrap li {
        margin: 0 1.5rem 0;
    }
    .gnavi_wrap li a {
        font-size: 1.25rem;
    }
    .gnavi_sns_wrap {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 12.5%;
        height: auto;
        z-index: 1;
    }
    .gnavi_sns_wrap li {
        width: calc((100% - 4rem) / 2);
        margin-right: 2rem;
    }
    .gnavi_sns_wrap li:last-child {
        margin-right: 2rem;
    }
    .gnavi_sns_wrap li a img {
        width: auto;
        height: 1.75rem;
    }
    .gnavi_sns_wrap li a img.youtube {
        aspect-ratio: 256 / 180;
    }
    .gnavi_sns_wrap li a img.x {
        aspect-ratio: 172 / 180;
    }

    /* header */

    /* main */

    .main {
        margin-top: 100px;
    }

    .common_wrapper {
        padding: 7.5rem 1.25rem 0;
        margin: 0 auto;
    }

    .common_heading {
        width: 60%;
        margin: 0 auto 5rem;
    }

    /* main */

    /* footer */

    .sec.footer {
        padding-bottom: 1rem;
    }

    .footer_menu ul {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .footer_menu ul li {
        margin-bottom: 0;
        margin-right: 2rem;
    }

    .footer_menu ul li:last-child {
        margin-right: 0;
    }

    .footer_logoarea {
        margin-top: 3rem;
    }

    .copy {
        padding-top: 2rem;
    }

    /* footer */

    /* common */

    /* TOP */

    .top_container {
        margin-bottom: 2.5rem;
    }

    .introduction_container .introduction_area p {
        font-size: 1rem;
    }

    .story_container .story_article_area .story_article_title {
        border: 2px solid #fff;
        border-left: 10px solid #fff;
        padding: 1.5rem 2.75rem 1.5rem 1.75rem;
    }
    .story_container .story_article_area .story_article_title::after {
        width: 1.25rem;
        height: auto;
        right: 1rem;
    }
    .story_container .story_article_area .story_article_title h3 {
        font-size: 1.25rem;
    }
    .story_container .story_article_area .story_article_text {
        border-bottom: 1px solid #fff;
        padding: 5rem 0;
    }
    .story_container .story_article_area .story_article_text .story_episode {
        margin-bottom: 4rem;
    }
    .story_container .story_article_area .story_article_text .story_episode:last-of-type {
        margin-bottom: 0;
    }
    .story_container .story_article_area .story_article_text .story_episode h4 {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    .story_container .story_article_area .story_article_text .story_episode .story_episode_column {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .story_container .story_article_area .story_article_text .story_episode:nth-of-type(2n) .story_episode_column {
        flex-direction: row-reverse;
    }
    .story_container .story_article_area .story_article_text .story_episode p {
        width: calc((100% - 2.5rem) / 2);
        font-size: 1rem;
        margin-bottom: 0;
        margin-right: 2.5rem;
    }
    .story_container .story_article_area .story_article_text .story_episode:nth-of-type(2n) p {
        margin-left: 2.5rem;
        margin-right: 0;
    }
    .story_container .story_article_area .story_article_text .story_episode img {
        width: calc((100% - 2.5rem) / 2);
    }

    .teaser_container {
        margin-bottom: 15rem;
    }
    .teaser_container .teaser_movie_area {
        margin-bottom: 10rem;
    }
    .teaser_container .teaser_movie_area .teaser_movie_tab li a {
        font-size: 1.1rem;
        padding: 1rem;
    }
    .teaser_container .teaser_btn_list {
        /* display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-end; */
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    /* .teaser_container .teaser_btn_area {
        width: calc((100% - 2.5rem) / 2);
        margin-bottom: 0;
        margin-right: 2.5rem;
    } */
     .teaser_container .teaser_btn_area {
        margin-bottom: 4rem;
    }
    .teaser_container .teaser_btn_area:last-child {
        margin-right: 0;
    }
    .teaser_container .teaser_btn_area h3.teaser_btn_logo {
        margin: 0 auto 2rem;
    }
    .teaser_container .teaser_btn_area.netflix h3.teaser_btn_logo {
        width: 52.5%;
    }
    .teaser_container .teaser_btn_area.prime-video h3.teaser_btn_logo {
        width: 60%;
    }
    .teaser_container .teaser_btn_area a.teaser_btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 1.25rem;
    }

    /* TOP */

}


@media screen and (min-width: 1300px) {

    /* header */

    .gnavi .gnavi_in {
        width: 95%;
    }
    .gnavi_wrap li {
        margin-left: 1.5rem;
    }
    .gnavi_wrap li a {
        font-size: 1.3rem;
    }

    /* header */

}



/* remodal */

.remodal-overlay {
    background-color: rgba(17, 17, 17, 0.95);
}
.remodal {
    padding: 0;
    background: transparent;
}
.remodal-close {
    top: -35px;
    left: auto;
    right: 0;
    color: #fff;
}
.remodal-close::before {
    content: "\2715";
    font-size: 1.5rem;
}
.remodal_inner .teaser_movie {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.remodal_inner .teaser_movie iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    border: none;
}
@media screen and (min-width: 1024px) {
    .remodal-close::before {
        content: "\2715";
        font-size: 2rem;
        transition: 0.3s;
    }
    .remodal-close:hover {
        color: #fff;
        opacity: 0.7;
        transition: 0.3s;
    }
}

/* remodal */


/* inview */

.fadeup {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s, transform .8s;
}
.fadeup.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.common_heading.fadeup {
    opacity: 0;
    transform: translateY(0);
}
.common_heading.fadeup.is-inview {
    animation: blurFadeIn 2.0s ease-out forwards;
}
@keyframes blurFadeIn {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

/* inview */

/* teaser-テキスト非表示（公開時のみ） */
.teaser_movie_tab {
    display: none !important;
}