
span
{
	color: #f33;
	font-size: 12px;
	font-weight: 100;
}

.err
{
  background-color:#ffc;
}

.p-5px{padding: 15px;
}

.m-30px{margin-top: 30px;}

input{
	width: 100%;
	border: 1px solid #ccc;
	font-size: 0.75em;
	color:rgba(81, 85, 89, 1.0);
}

input::placeholder {
	color:rgba(137, 141, 146, 1.0);
}


textarea{
	width: 100%;
	border: 1px solid #ccc;
}

table{
	margin-bottom: 20px;
	width: 100%;
	text-align: left; 
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
}

th{
	font-size: 1em;
	display: block;
	width: 100%;
	padding: 10px 0px 5px 0px;
	box-sizing: border-box;
	font-weight: 500;
	color: rgba(137, 141, 146, 1.0);
}

td{
	font-size: 1.5em;
	display: block;
	width: 100%;
	padding: 0px 0px 25px 0px;
	background: #fff;
	font-weight: 300;
	color: rgba(81, 85, 89, 1.0);
}

.buttom-area{
	width: 100%;
	padding: 15px;
	text-align: center;
}

@media screen and (max-width: 980px){ 
	form{
		margin-bottom: 30px;
	}

	table{
		margin-bottom: 0px;
	}
}

/*-----ボタン制御-----*/

.button {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	outline: none;
	/*font-size: 1.5em;
	font-weight: 300;
	line-height: 1.2em;*/
}

.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.n-button{
	display: inline-block;
	margin: 0px 10px;
	width: 200px;
	height: 50px;
	border-radius: 25px;
	border: none;
	font-size: 1rem;
	font-weight: 300;
	line-height: 48px;
	text-align: center;
	background-color: rgba(234, 164, 157 , 1.0);
	box-shadow:  rgba(0,0,0,0.5) 4px 4px 10px;
	color: rgba(255,255,255,1.0);
}

.n-button:hover {
	background-color:  rgba(242, 200, 196, 1.0);
	box-shadow:  rgba(0,0,0,0.0) 2px 2px 5px;
	color:  rgba(234, 164, 157 , 1.0);
}

.g-button{
	display: inline-block;
	margin: 0px 10px;
	width: 200px;
	height: 50px;
	border-radius: 25px;
	border: none;
	font-size: 1rem;
	font-weight: 300;
	line-height: 48px;
	text-align: center;
	background-color: rgba(100,100,100,0.9);
	box-shadow:  rgba(0,0,0,0.5) 4px 4px 10px;
	color: rgba(255,255,255,1.0);
}

.g-button:hover {
	background-color:  rgba(100,100,100,0.2);
	box-shadow:  rgba(0,0,0,0.0) 2px 2px 5px;
	color:  rgba(81, 85, 89, 1.0);
}