@charset "UTF-8";
/* CSS Document */

body{
	*font-size:small;
	*font:x-small;
	font-size:13px;
	line-height:1.75;
	color: #3a4351;
	font-feature-settings:"palt";
  font-family: 'Noto Sans JP', sans-serif;
	text-align:center;
	width:100%;
	margin:0px;
	padding:0px;
	background:#fff;
	-webkit-text-size-adjust:100%;
}
body *,
body *::before,
bory *::after{
  box-sizing: border-box;
}
h1,h2,h3,h4,h5,p,ul,ol,li,img,table,th,td,dl,dt,dd{
	margin:0px;
	padding:0px;
	font-size:13px;
	line-height:1.75;
}
li{
	list-style-type:none;
}
table{
	border-collapse:collapse;
}
a:link,a:visited{
	cursor:pointer;
	color:#000;
	text-decoration:none;
}
a{
  outline:none;
	transition:opacity 0.2s;
	-webkit-tap-highlight-color:transparent;
}
img{
	vertical-align:top;
	border:0;
	max-width:100%;
	height:auto;
	backface-visibility:hidden;
}
input, 
textarea, 
select,
button,
label{
  font-family: 'Noto Sans JP', sans-serif;
	font-weight: normal;
  outline:none;
	-webkit-tap-highlight-color:transparent;
  padding: 0;
}

#wrap{
  display: grid;
  place-items: center;
  height: 100%;
  padding: 20px;
}
.box{
	width: 100%;
	max-width: 490px;
	margin: 0 auto;
  box-sizing: border-box;
  text-align: left;
}
.box form{
  max-width: 490px;
  margin: 0 auto;
}
.box h1{
	font-size: 28px;
	line-height: 1.2;
	color: #3A4351;
	margin-bottom: 20px;
	letter-spacing: 0.08em;
	text-align: center;
}
.box p{
  font-size: 14px;
}
.box p:not(:first-child){
  margin-top: 15px;
}
.box input{
	border: none;
	width: 100%;
	height: 55px;
	font-size: 20px;
	padding: 10px 20px 10px 20px;
	background: #f2f2f2;
  margin-top: 5px;
}
.box button{
  display: block;
	box-shadow: none;
	border-radius: 4px;
	width: 240px;
	height: 55px;
	background: #000;
	color: #fff;
	font-size: 14px;
	line-height: 55px;
	text-align: center;
	border: none;
  margin: 35px auto 0 auto;
  cursor: pointer;
}
.box .alert{
  display: block;
  color: #ff0000;
  margin-top: 10px;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .box{
    padding: 40px 20px;
  }
  .box h1{
    font-size: 22px;
  	margin-bottom: 10px;
  }
  .box input{
		font-size: 16px;
  	height: 45px;
  	padding: 10px 15px 10px 15px;
	}
  .box button{
    width: 180px;
  	height: 45px;
    line-height: 45px;
    margin: 25px auto 0 auto;
  }
}