@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*共通----------*/
* {
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    list-style: none;
}

body {
    font-size: 15px;
    color: #fff;
    background: #0A0A0B;
}


img {
    max-width: 100%;
    height: auto;
}

header, footer {
    text-align: center;
    font-weight: bold;
}

header {
    position: fixed;
    width: 100%;
    height: 50px;
    line-height: 50px;
    top: 0;
    left: 0;
    z-index:99;
    background: #0A0A0B;
}

.content {
    width: 100%;
    margin: 0;
    padding: 50px 0 0;
}

.fv {
    position: relative;
    width: 100%;
}

.fv_txt {
    position: absolute;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    padding: 0 10px;
    color: #fff;
    border-bottom:3px solid #fff;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

h2  {
    font-weight: bold;
    border-bottom: 2px solid #fff;
    padding: 0 10px;
    font-size: 16px;
    letter-spacing: 3px;
    margin: 30px 10px;
}

.movie {
    background: #1C1E21;
    border-radius: 10px;
    padding: 0 10px;
    margin: 10px 20px 50px;
}

.item {
    border-bottom: 1px solid #fff;
    display: flex;
}

.item dt {
    width: 250px;
    text-align: center;
}
    
.item dt img {
    width: 75%;
    margin: 20px auto;
}

.item dd {
    width: calc(100vh - 250px);
    padding: 35px 0px;
    font-weight: bold;
}

.item:last-child {
    border: none;
}

footer {
    position: relative;
    height: 250px;
    padding-top: 50px;
    background-image: url('../img/footer.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.insta {
    margin-bottom: 60px;
}

footer a {
    color: #fff;
    font-size: 18px;
}

.footer_txt {
    position: absolute;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    padding: 0 10px;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
}

.none {
    display: none;
}
    
iframe {
    width: 90vw;
    height: 50vw;
}

#dialog {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 70%);
    overflow: hidden;
}

#dialog_body {
    background: #000;
    width: 90vw;
    height: 55vw;
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
}

#dialog_content {
    text-align: left;
}

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

    h2  {
        font-weight: bold;
        border-bottom: 2px solid #fff;
        padding: 0 10px;
        font-size: 16px;
        letter-spacing: 3px;
        margin: 30px auto;
        max-width: 800px;
    }
    
    .movie {
        background: #1C1E21;
        border-radius: 10px;
        padding: 0 10px;
        margin: 10px auto 50px;
        max-width: 800px;
    }
    
    .item dt {
        width: 340px;
        padding: 10px;
    }
    
    .item dd {
        width: calc(100vh - 340px);
        padding-top: 70px;
        font-size: 20px;
    }

    .sp {
        display: none;
    }
}