@charset "utf-8";
/* CSS Document */

#entry {
	display: none;
}

.inputform dd input,
.inputform dd select,
.inputform dd textarea {
	box-sizing: border-box;
	width: 100%;
	border: 1px #333 solid;
	padding: 3px;
	border-radius: 3px;
}

.required {
	display: inline-block;
	padding: 2px 5px;
	background: #F00;
	color: #FFF;
	font-size: 1.4rem;
	font-size: 14px;
}

.submit_btn,
.back_btn,
.policy {
	text-align: center;
	margin: 10px 0;
}

.submit_btn button {
	padding: 10px 15px;
	background: #FF0000;
	border: none;
	color: #FFF;
}


.back_btn button {
	padding: 10px 15px;
	background: #999;
	border: none;
	color: #000;
}

.error {
	color: #FF0000;
	font-weight: bold;
}

.error::before {
	content: "●";
}

strong {
	font-size: 2.4rem;
	font-size: 24px
}

#birth_year {
	width: 50px;
}

#birth_month,
#birth_day {
	width: 30px;
}

@media screen and (max-width:767.98px) {
/* ここにSP向けのCSS指定 */
	
	.inputform dl {
		border-bottom: 1px #333 solid;
		padding: 15px 0;
	}
	
	
	.inputform dt {
		font-weight: bold;
	}
}

@media screen and (min-width:768px) {
/* ここにPC向けのCSS指定 */
	
	#content {
		width: 768px;
		margin: 40px auto;
	}
	
	.inputform {
		display: table;
		width: 100%;
	}
	
	.inputform dl {
		display: table-row;
	}
	
	.inputform dt,
	.inputform dd {
		display: table-cell;
		padding:  15px 0;
		border-bottom: 1px #333 solid;
	}
	
	.inputform dt {
		width: 200px;
		vertical-align: middle;
	}
}