@charset "UTF-8";

/*============================
    Entrance
============================*/
.hd__entrance{
    padding: 0;
}
.entrance__logo{
    width: 25%;
    max-width:250px;
    background: #fff;
    padding: 1em 1.2em 1.2em;
    border: 2px solid #6F4343;
    border-radius: 5px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
.entrance{
    height: 100vh;
}
.ent__items{
    flex-wrap: wrap;
}
.ent__item{
    width: 50%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: grid;
    place-content: center;
}
.ent__item:nth-of-type(1){
    background: url(../entrance_asetts/img01.jpg) no-repeat center center / cover;
}
.ent__item:nth-of-type(2){
    background: url(../entrance_asetts/img02.jpg) no-repeat center center / cover;
}


.ent__item .tetx-wrap{
    background: #fff;
    border-radius: 15px;
    padding: 30px 4em;
    border: 3px solid #665241;
    margin-inline: auto;
    position: relative;
}
.ent__item .circle{
    width: 8px;
    height: 8px;
    border-radius: 50vh;
    background: #665241;
    position: absolute;
}
.ent__item .circle:nth-of-type(1){
    top: 10px;
    left: 10px;
}
.ent__item .circle:nth-of-type(2){
    top: 10px;
    right: 10px;
}
.ent__item .circle:nth-of-type(3){
    bottom: 10px;
    left: 10px;
}
.ent__item .circle:nth-of-type(4){
    bottom: 10px;
    right: 10px;
}

.ent__title{
    text-align: center;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 50px;
}
.ent__title .ff02{
    display: block;
    color: #ff9925;
    font-size: 5vw;
    margin-bottom: 20px;
}
.ent__title .ff01{
    display: block;
    font-size: 20px;
}

.ent__item:nth-of-type(2) .ff02{
    color: #E9C563;
}

.tetx-wrap img{
    display: block;
    width: 50%;
    position: absolute;
    top: -55%;
    left: 10%;
}





.ent__btn .link__btn{
    margin-inline: auto;
}



.ft__entrance{
    padding: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.ft__entrance .ft__copy,
.ft__entrance address{
    color: #fff;
    text-align: center;
}
.ft__entrance a,
address a{
    color: #fff!important;
}



@media screen and (max-width:1040px) {
    .ent__item{
        width: 100%;
        height: 50vh;
    }
    .entrance__logo{
        width: 200px;
        top: 10px;
        left: 10px;
        transform: none;
    }
    .ent__title{
        margin-bottom: 30px;
    }
    .ent__title .ff02{
        font-size: 7vw;
    }

    .ent__item:nth-of-type(1){
        background-position: top center;
    }
}


@media screen and (max-width:768px) {
    .entrance__logo{
        width: 180px;
        padding: 8px;
    }
    .entrance{
        height: 100%;
    }

    .ent__item{
        width: 100%;
        height: 50vh;
        overflow: hidden;
        position: relative;
    }


    .ent__title{
    }



}



@media screen and (max-width:540px) {

    .ent__item .tetx-wrap {
        padding: 20px 4em;
    }
    .ent__title{
        margin-bottom: 20px;
    }
    .ent__title .ff02{
        font-size: 40px;
        margin-bottom: 10px;
    }
    .ent__title .ff01{
        font-size: 16px;
    }
    .tetx-wrap img{
        top: -40%;
        width: 55%;
    }


}