html{
    font-size: 16px;
    font-family: sans-serif;
    background-color: rgb(255, 255, 255);
    margin: 0 auto 0 auto;	/* 中央揃え */
    background-position: center; /* 中央に配置 */
}

*{
    box-sizing: border-box;
}

body{
    height: 100%;
    margin: 0 0 0 0;
}
a:link{
    color: #0000FF;
    text-decoration: none;
}
a:visited{
    color: #0000FF;
    text-decoration: none;
}
a:hover{
    color: #0000FF;
    text-decoration: underline;
}
a:active{
    color: #0000FF;
    text-decoration: underline;
}
main{
    margin: 0px auto 0px auto;
    max-width: 2000px;
    padding: 0 4% 0 4%;
    min-height: 75vh; 		/*最低表示のサイズ(表示画面75%のサイズでmainを表示)*/
}

img{
    max-width: 100%;
}

.header-logo{
  text-align: center;
}

.nav{
  text-align: center;
  border-bottom: 5px solid #ffd501;
  margin:25px;
}

/*main内*/
form{
  text-align: center;
}

.box{
  border-radius: 4px;
  border-color: #ffd501;
  background-color: #fffdce;
}

.regist{
  text-align: center;
}

.email{
  position: relative;  /*場所調整*/
  right: 30px;    /* 左に動く */
}

.pass{
  position: relative;
  right: 45px;
}

.button-area{
	display: flex;
	justify-content: center;
	gap: 15px;
	
}
.reset{
  margin-top: 10px;
  width: 6em;
  border-color: #EA9C80;
  color: #ff4f34; 
  background-color: #ffc6bd;
}

.login{
  margin-top: 10px;
  width: 6em;
  border-color: #ffd501;
  color: #ffd501;  
  background-color: rgb(133, 133, 236);
  
}



/*フッター*/
.copyright{
	position: fixed;
    bottom:0;
    left:0;
    width:100%;
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffd501;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 14px;
    
}
/* モバイル対応 */
@media(max-width:767px){

}