@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=M+PLUS+1p');
a{
    color: orange;
    text-decoration: none;
}
li{
    list-style:none
}
html{
    height: 100%;
    font-family: 'M PLUS 1p', sans-serif;
}
body{
    margin: 0;
    background-color: #fff1a454;
}
header{
    height:80px;
    background-color:white;
    display: flex;
    align-items: center;
    padding: 0 24px;
}
header nav{
    margin:0 0 0 auto;
}
.logo img{
    height:80px;
}
.nav_header{
    display:flex;
    align-items: center;
    gap:40px;
}
.nav_header{
    font-size: 20px;
}
.menu{
    width: 40px;
    height: 40px;
    background-image: url(../img/menu.svg);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 0 0 60px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: none;
}
.menu_contents li{
    text-align: center;
    margin-bottom: 50px;
    margin: 0 auto 50 auto;
    font-size: 20px;
    opacity: 1;
    color: white;
}
.menu:hover{
    background-color: #ddd;
    border-radius: 4px;
}
.menu.active{
    background-image: url(../img/close.svg);
}
.menu.active:hover{
    background-color: #ddd;
    border-radius: 4px;
}
.menu_contents{
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: black;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
}
.menu_contents.active{
    display:flex;
}
#contents{
    margin: 200px auto 0 auto;
    border: lightblue;
    text-align: center;
}
.signup{
    color:rgb(226, 147, 0);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
   
}
input{
    width: 900px;
    height: 50px;
    margin-bottom: 25px;
}

button{
    width: 200px;
    margin:15px auto 0 auto;
    display: block;
    background-color: rgb(255, 166, 0);
    color: white;
    border-radius: 4px;
    padding: 8px 24px;
    border: solid 4px rgb(255, 166, 0);
}
.inputForm input{
    margin-left: 0;
    width: 550px;
}
button:hover{
    width: 200px;
    margin:15px auto 0 auto;
    display: block;
    background-color: rgb(226, 147, 0);
    color: white;
    border-radius: 4px;
    padding: 8px 24px;
    border: solid 4px rgb(226, 147, 0);
}

#alert{
    color: red;
}

.hide{
    display: none;
}

.show{
    display: block;

}
#registerBtn{
    margin-bottom: 200px;
}
/* フッター */
footer{
    box-sizing: border-box;
    height: 50px;
    width:100%;
    background-color:#918d8b;
    color:white;
    /*padding:10px;
    bottom:0;*/
    bottom:0; 
}
#copy{
    margin:10px;
    float:right;
}
@media screen and (max-width: 767px){
    .inputForm input{
        margin-left: 0;
        width: 320px;
    }
    .nav_header{
        display:none;
    }
    .menu{
        display: flex;
    }

}
@media screen and (max-width: 480px){
    .inputForm input{
        margin-left: 0;
        width: 320px;
    }
    .contents{
        width:350px;
    }
    .nav_header{
        display:none;
    }
    .menu{
        display: flex;
    }


}