*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

html {
    font-size: 100%;
    scrollbar-gutter: stable;
}

body {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #9fa0a0;
    background-color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    overflow-x: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border-style: none;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

@media (max-width: 767px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}

/*default*/
.hidden {
    display: none !important;
}

/*header, */
footer,
#lp-main {
    opacity: 0;
    overflow: hidden;
    position: relative;
    transition: opacity 0.8s ease;

}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    font-family: Arial, sans-serif;
}

.loading-text {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.modal-content {
    width: 52vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: auto;
    cursor: default;
}

.modal-content button {
    color: #fff;
}

.entry-btn {
    position: absolute;
    right: -50px;
    top: -50px;
}

.entry-btn span {
    width: 3.125rem;
    height: 0;
    padding-top: 3.125rem;
    overflow: hidden;
    line-height: 2;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    display: block;
}

.entry-btn span::before,
.entry-btn span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.entry-btn span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.entry-btn span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#video-modal.hidden {
    display: none;
}

#video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9998;
    display: flex;
    /*align-items: center;*/
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow-y: auto;
}

#video-modal.is-show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    transform: translateY(20px);
    transition: transform 0.8s ease;
}

#video-modal.is-show .modal-content {
    transform: translateY(0);
}

#video-modal.is-closing {
    opacity: 0 !important;
    pointer-events: none;
}

.video-area {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.video-area iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#video-nav,
#page-video-nav {
    display: none;
    /*width: 100%;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: "Noto Sans JP", sans-serif;*/
}

/*
#page-video-nav {
    width: 80%;
}

#video-nav button,
#page-video-nav button {
    width: 47.62%;
    background-color: #bebebe;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    padding: 0.75em;
    text-align: center;
}

#video-nav button:nth-child(n+3),
#page-video-nav button:nth-child(n+3) {
    margin-top: 1rem;
}

#video-nav button.active,
#page-video-nav button.active {
    background-color: #d3500a;
    color: #fff;
}*/

ul.sns {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0 auto;
    gap: 0 1.5rem;
    margin: 0 auto 60px;
}


ul.sns>li>a {
    display: block;
    width: 1.875rem;
    height: 0;
    padding-top: 1.875rem;
    overflow: hidden;
    line-height: 1.5;
    background-image: url(../img/icon_x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

ul.sns li.sns-tt>a {
    background-image: url(../img/icon_tt.png);
}

ul.sns li.sns-insta>a {
    background-image: url(../img/icon_insta.png);
}

ul.sns li.sns-fb>a {
    background-image: url(../img/icon_fb.png);
}

ul.sns li.sns-line>a {
    background-image: url(../img/icon_line.png);
}

ul.sns li.sns-yt>a {
    background-image: url(../img/icon_yt.png);
}

ul.sns li.sns-share>a {
    background-image: url(../img/icon_share.png);
}

ul.sns li.sns-share {
    position: relative;
    line-height: 1;
    height: 1.2em;
    display: inline-block;
    vertical-align: middle;
}

.share-btn {
    display: flex;
    position: absolute;
    right: -1em;
    top: calc(100% + 2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    overflow: visible;
}

.sns-share.active .share-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.share-btn li {
    display: inline-flex;
    align-items: center;
    min-width: 80px;
    min-height: 20px;
    vertical-align: top;
    overflow: visible !important;
    margin-right: 10px;
}

.share-btn li:first-child {
    padding-right: 1.3rem;
    overflow: hidden !important;
}

.fb-share-button span,
.fb-share-button iframe {
    min-width: 80px !important;
    min-height: 20px !important;
    width: auto !important;
}

#twitter-widget-0,
.twitter-share-button {
    width: 76px !important;
    height: 20px !important;
    visibility: visible !important;
}

/*Xオリジナルボタン*/
.custom-x-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff !important;
    height: 22px;
    min-width: 76px;
    padding: 0 12px;
    box-sizing: border-box;
    border-radius: 9999px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: normal;
    text-decoration: none;
    transition: background-color 0.2s;
}

@media (hover: hover) {
    .custom-x-btn:hover {
        background-color: #272c30;
        opacity: 1 !important;
    }
}

.x-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    flex-shrink: 0;
}

.x-text {
    line-height: 1;
    white-space: nowrap;
}
#wrapper {
    position: relative;
}

.mv-wrapper {
    width: 100%;
    background-image: url(../img/mv_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    aspect-ratio: 1400 / 940;
}
.mv-wrapper h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.mv-wrapper img {
    width: 100% !important;
    height: auto;
    display: block;
}
.staff li {
    position: absolute;
    line-height: 1;
}
.staff li.cast1 {
    width: 12.64%;
    top: 34%;
    left: 26.14%;    
}
.staff li.cast2 {
    width: 14.64%;
    top: 34%;
    left: 65.14%;   
}
.staff li.producer {
    width: 16.71%;
    top: 40.42%;
    left: 41.71%;
}
.staff li.director {
    width: 27.64%;
    top: 56.38%;
    left: 36.42%;
}
.copy-date {
    width: 100%;
    position: absolute;
    top: 79.25%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.copy_pc {
    width: 31.42%;
    margin-bottom: 2.6%;
}
.copy1,
.copy2 {
    display: none;
}
.date {
    width: 15%;
}
.content-wrapper {
    background-image: url(../img/contentbg_pc.jpg);
    background-size: cover;
    background-position: center;
    padding: 70px 0 0;
    text-align: center;
}
.loadshow {
    text-align: center;
    margin: 45px auto 65px;
}
.mov-wrap {
    width: 930px;
    margin: 0 auto 100px;
}

.movie-box {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
    background-color: #000;
}

.movie-box iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.video-poster {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-play-button {
    width: 68px; 
    height: 48px;
    background-color: #ff0000;
    border-radius: 12px;
    position: relative;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.play-arrow {
    position: absolute; top: 50%; left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #ffffff;
}
.distribution {
    font-size: 15px;
    text-align: right;
    margin-right: 1.5em;
    padding-bottom: 1.5em;
}

footer {    
    background-color: #000;
    padding: 1.8rem;
    color: #aaabab;
}

.f_copyright {
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.1em;
}
.fadein-up {
    opacity: 0;
}

@media (max-width: 1000px) {
    .modal-content {
        width: 80vw;
    } 
    .distribution {
        font-size: clamp(10px, 1.2vw, 12px);
    }
    .f_copyright {
        font-size: clamp(11px, 1.6vw, 16px);
    }
    .mov-wrap {
        width: 90%;
    }
}

@media (max-width: 767px) {

    ul.sns {
        margin-bottom: 12.96vw;
    }
    ul.sns>li>a {
        width: 1.45rem;
        padding-top: 1.45rem;
    }
    
    #video-nav,
    #page-video-nav {
        width: 100%;
    }

    #video-nav button,
    #page-video-nav button {
        padding: 0.5rem 0.25rem;
    }
    .entry-btn {
        right: 0;
    }
    .mv-wrapper {
        background-image: url(../img/mv_sp.jpg);
        aspect-ratio: 1080 / 1536;
    }
    .staff li.cast1 {
        width: 13.05%;
        top: 2.08%;
        left: 19.44%;
    }
    .staff li.cast2 {
        width: 15.09%;
        top: 2.08%;
        left: 66.11%;
    }
    .staff li.producer {
        width: 13.33%;
        top: 0.914%;
        left: 43.33%;
    }
    .staff li.director {
        width: 21.66%;
        top: 4.29%;
        left: 39.25%;
    }
    .copy-date {
        flex-direction: row;
        top: 91.145%;
        gap: 0 5.5%;
    }
    .copy_pc {
        display: none;
    }
    .copy1 {
        display: block;
        width: 19.25%;
    }
    .copy2 {
        display: block;
        width: 24.16%;
    }
    .date {
        width: 19.25%;
        margin-left: 3.7%;
    }
    .cast {
        display: block;
        width: 90.09%;
        margin: 0 auto;
    }
    .content-wrapper {
        padding-top: 7.87vw;
        background-image: url(../img/contentbg_sp.jpg);
    }
    .loadshow {
        width: 24.35%;
        margin: 6.66vw auto 7.77vw;
    }
    .loadshow img {
        width: 100%;
    }
    .mov-wrap {
        width: 82.59%;
        margin: 0 auto 10.18vw;
    }


}
