body{
    background-image: url(../img/top/back.webp);
    background-size: cover;
}
header{
    width: 100%;
    color: #fff;
    position: absolute;
    top:0;
    text-align: center;
    padding: 0 10px;
}
header h1{
    font-size: 1.2rem;
    font-weight: normal;
}
footer{
    width: 100%;
    color: #fff;
    position: absolute;
    bottom:0;
    text-align: center;
    padding: 0 10px;
}
.top__wrap{
    width: 100%;
    max-width: 1000px;
    height: 100vh;
    background-color: rgba(0,0,0,.5);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.top__wrap__logo{
    display: block;
    margin-bottom: 10px;
}
.top__wrap__logo img{
    width: 200px;
}
.top__wrap__h2{
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
}
.top__wrap__p{
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.3;
}
.enter{
    width: 100%;
    max-width: 300px;
    background: #F7971D;
    border-radius: 5px;
    font-weight: bold;
    color: #333;
    font-size: 3.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.enter:first-of-type{
    margin-bottom: 10px;
}
.enter:hover{
    text-decoration: none;
}

.top__banner{
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}
.top__lang{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.top__lang a{
    width: 50px;
    margin-right: 5px;
}
.top__lang img{
    max-width: 100%;
}
/**************************************************************************/
/**************************************************************************/
/*タブレット*/
@media screen and (min-width:600px) {
}
/**************************************************************************/
/**************************************************************************/
/*PC*/
@media screen and (min-width:1025px) {
    header h1{
        font-size: 1.4rem;
    }
    .top__wrap{
        padding: 0;
    }
    .top__wrap__logo img{
        width: 300px;
    }
    .enter{
        transition: .3s;
    }
    .enter:first-of-type{
        margin-bottom: 20px;
    }
    .enter:hover{
        opacity: .7;
        text-decoration: none;
    }
    .top__banner{
        padding: 0;
    }
    .top__wrap__p{
        font-size: 1.6rem;
        line-height: 1.7;
    }
}
