* {
	box-sizing: border-box;
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif, Meiryo, sans-serif !important;
}

.guestArea {
	text-align: center;
}

.guestArea .inputArea {
	margin-top: 80px;
	display: inline-block;
}

.guestArea .inputArea h1 {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
}

.schoolArea .inputArea h1 .title{
	font-size: 20px;
}

.guestArea .inputArea p {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	color: #444;
}

.guestArea .inputBox {
	margin-top: 50px;
}

.guestArea .inputBox input {
	font-size: 20px;
	border: none;
	border-bottom: 1px solid #fa95ad;
	outline: none;
	width: 200px;
}

.guestArea .inputBox input::placeholder {
	font-size: 16px;
	color: #bbb;
}

.guestArea .inputBox input.enabled {
	color: #f85c81;
	pointer-events: auto;
}

.guestArea .inputBox button {
	margin-top: 30px;
	padding: 5px 50px;
	max-width: 200px;
	font-size: 20px;
	font-weight: 700;
	color: #eee;
	border: 1px solid #f85c81;
	border-radius: 50px;
	background: #fff;
	cursor: pointer;
	pointer-events: none;
}

.guestArea .inputBox button.enabled {
	display: block;
	position: relative;
	width: 100%;
	background: linear-gradient(90deg, rgba(248, 92, 129, 1) 0%, rgba(249, 124, 154, 1) 33%, rgba(255, 164, 186, 1) 66%, rgba(249, 124, 154, 1) 100%);
	background-size: 200% 50%;
	transform: translate(0, 0) scale(1, 1);
	transition: transform ease 0.4s;
	border-radius: 50px;
	color: #FFF;
	font-size: 21px;
	font-weight: bold;
	box-shadow: 2px 2px 5px #ccc;
	pointer-events: auto;
}

.schoolArea {
	text-align: center;
}

.schoolArea .inputArea {
	display: inline-block;
	margin-top: 80px;
	max-width: 360px;
}

.schoolArea .inputArea h1 {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2em;
}

.schoolArea .inputBox {
	margin-top: 50px;
	width: 100%;
}

.schoolArea .inputBox label {
	display: inline-block;
	width: 100%;
	font-size: 16px;
	text-align: left;
}

.schoolArea .inputBox .required {
	font-size: 16px;
	color: #ea3341;
}

.schoolArea .inputBox input {
	font-size: 20px;
	border: 1px solid #000;
	border-radius: 5px;
	outline: none;
	width: 100%;
	padding: 5px;
}

.schoolArea .inputBox input::placeholder {
	font-size: 16px;
	color: #bbb;
}

.schoolArea .buttonArea {
	text-align: center;
}

.schoolArea .buttonArea button {
	margin-top: 30px;
	padding: 5px 50px;
	max-width: 200px;
	font-size: 20px;
	font-weight: 700;
	color: #eee;
	border: 1px solid #f85c81;
	border-radius: 50px;
	background: #fff;
	cursor: pointer;
	pointer-events: none;
}

.schoolArea .buttonArea button.enabled {
	display: inline-block;
	position: relative;
	width: 100%;
	background: linear-gradient(90deg, rgba(248, 92, 129, 1) 0%, rgba(249, 124, 154, 1) 33%, rgba(255, 164, 186, 1) 66%, rgba(249, 124, 154, 1) 100%);
	background-size: 200% 50%;
	transform: translate(0, 0) scale(1, 1);
	transition: transform ease 0.4s;
	border-radius: 50px;
	color: #FFF;
	font-size: 21px;
	font-weight: bold;
	box-shadow: 2px 2px 5px #ccc;
	pointer-events: auto;
}

.message {
	margin: 0;
	width: 100%;
	font-size: 14px !important;
	font-weight: bold;
	text-align: center;
	color: #f40000 !important;
	visibility: hidden;
}

.message.visible {
	visibility: visible;
}

#history h1 {
	padding-left: 10px;
	font-size: 20px;
	font-weight: 500;
}

#history .listArea {
	padding: 20px 20px 0;
}

#history .listArea table {
	border-collapse: collapse;
}

#history .listArea thead th {
	padding: 5px 10px;
	color: #444;
	border: 1px #4f6eff solid;
	background: #e7f1ff;
}

#history .listArea thead input {
	transform: scale(1.5);
	cursor: pointer;
}

#history .listArea tbody td {
	padding: 5px 10px;
	color: #444;
	border: 1px #4f6eff solid;
}

#history .listArea .number {
	text-align: right;
	min-width: 45px;
}

#history .listArea .date {
	width: 250px;
}

#history .listArea .name {
	min-width: 250px;
	width: 250px;
}

@media screen and (max-width: 768px){
	.schoolArea .inputBox {
		padding: 0 20px;
	}
}