/*エンターページ用*/
#index_mv {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background: #000;
}
.pattern {
    width: 100%;
    height: 100%;
    background: url(../images/line_bk.webp);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.index-header-movie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: .4;
}

.index-contents {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
   /* padding-top: 50px;*/
    transform: translate(-50%, -50%);
}

.index-contents::after {
    position: absolute;
    border: 1px solid #fff;
    content: "";
    top: 4vh;
    bottom: 4vh;
    left: 4vh;
    right: 4vh;
    pointer-events: none;
}

img.logo {
   /*width: clamp(800px, 31.25rem + 31.25vw, 1000px);*/
    width:550px;
}

img.kin18 {
    width: 55px;
    margin-top: 60px;
}

p.enter-text-j {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 1.6rem;
    margin-top: 35px;
    text-align: center;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.4rem;
}

p.enter-text-e {
    font-family: "EB Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.7rem;
    margin-top: 15px;
    text-align: center;
    color: #fff;
    line-height: 1.6;
}

a.enter-btn {
    width: 500px;
    margin-top: 50px;
    font-family: "Cinzel", serif;
    font-weight: 400;
    letter-spacing: 0.2rem;
    font-size: 3rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3.1rem 0;
    border-radius: 80px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}

a.enter-btn:hover {
    color: #a28870;
}


#banner_area_1 {
    width: 870px;
    margin: 120px auto 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 70px;
}

#banner_area_1.flex-jc-center{
    justify-content:center;
    }

.bn {
    width: 400px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1;
    color: #3f3f3f;
}

.bn img {
    width: 400px;
    display: inline-block;
    margin: 0.5rem 0;
}

.bn span.bnr_txt {
    font-size: 1.4rem;
}

.bn a {
    text-decoration: none;
    color: #3f3f3f;
}

#banner_area_2 {
    width: 670px;
    margin: 120px auto 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 70px;
}

#banner_area_2.flex-jc-center{
justify-content:center;
}

#banner_area_2 .bn {
    width: 300px;

}

#banner_area_2 .bn img {
    width: 300px;
}

.copyright {
    display: block;
    margin: 120px auto 0;
    padding-bottom: 20px;
    text-align: center;
    font-size: 1.6rem;
    color: #3f3f3f;
}

.for_outcalls{
    margin-top:60px;
    transition: opacity 0.2s ease;
}

.for_outcalls:hover {
    opacity: 0.7;
}


@media screen and (max-height: 780px) {
    
    img.logo{
        width: 400px;
    }
    img.kin18{
        margin-top: 40px;
    }
    a.enter-btn{
        width: 400px;
        margin-top: 30px;
        padding: 1.5rem 0;
    }
    .for_outcalls{
        display: none;
    }
}