:root{
    --20px: 20px;
}

body{
    background: #000000;
    color: #ffffff;
    font-family:"Inter", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
}
a{
    text-decoration: none;
}

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

.main-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: unset;
}

.unit-block{
    margin: 50px 0 0;
    padding: 50px 0 0 200px;
    box-sizing: border-box;
}

.inner{
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}


.lf-navi{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 220px;
    /* background-color: rgba(0, 0, 0, 0.8); */
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: bottom;
    padding: 0 0 30px 30px;
}
.lfnav-list li{
    font-size: 20px;
}
.lfnav-list li .name-jp{
    display: block;
    color: #787878;
    font-size: 12px;
}

.lfnav-list li{
    margin: 0 0 10px;
}
.lfnav-list li a{
    transition: 0.3s;
}
.lfnav-list li a:hover{
    color: #fa0505;
}

.snsbox ul{
    display: flex;
    align-items: center;
    margin: 20px 0 0;
}

.snsbox ul li{
    width: 25%;
    margin: 0 10px 0 0;
}

.tp-lineupbox .lineup-title{
    font-size: 60px;
    margin: 0 0 40px;
}


.lineup-detial{
    width: 50%;
    line-height: 2;
    letter-spacing: 0.01em;
}

.tp-lineupbox .inner{
    background: url(../img/lineup-bk.png) no-repeat;
    background-position: right bottom;
    height: 100vh;
}

.movie{
    background-image: linear-gradient(0deg, #000 0%, #1c1c1c 40%);
    padding: 0 0 100px;
}

.movie-title{
    font-size: 60px;
    margin: 0 0 40px;
    text-align: center;
    padding: 50px 0 0;
}

.movie-box iframe { 
  aspect-ratio: 16 / 9; 
  width: 100%; 
  height: 100%; 
  border: none; 
}

.contact-box{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 100px;
}

.contact-box li:nth-child(1){
    width: 40%;
    background: url(../img/bk-line.svg) no-repeat right center;
}

.contact-box li:nth-child(1) .dec-txt{
    font-size: 20px;
    margin: 20px 0 0;
    text-align: center;
}

.contact-box li:nth-child(2){
    width: 60%;
    padding:40px 0 0;
    
}

.contact-box li:nth-child(2) p{
    padding: 30px;
    line-height: 1.8;
}

/*--btn--*/
.button-23{
    margin: 30px 0 0;
}
.button-23 a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 400;
  border: 1px solid #fff;
  background: #000;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 300px;
  text-align: center; 
  padding: 16px 64px;
  margin: 20px 0 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.button-23 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}

.button-23 a:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}

@keyframes OutIn-Line {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50.1% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}


/*--btn end--*/

.pc-hide{
    display: none;
}
@media screen and (max-width: 820px) {
    .pc-hide{
        display: block;
    }
    .sp-hide{
        display: none;
    }

    .unit-block{
        padding: 50px 10px 0;
    }
    .tp-lineupbox .inner{
        background-size: 80%;
    height: 80vh;
    }
    .lineup-detial{
        width: 100%;
    }
    

}

@media screen and (max-width: 500px) {
.contact-box li:nth-child(1){
    background: url(../img/bk-line.svg) no-repeat right -50%;
}
    .contact-box li:nth-child(1),
    .contact-box li:nth-child(2){
    width: 100%;
    
}

.contact-box li:nth-child(2) p{
    padding: 10px;
}

}

