@charset "utf-8";
/* ===========================================================
 CSS information
 file name : contact.css
 style info : single page style
============================================================== */

@media print, screen and (min-width: 751px) {	
	#contact { padding: 32px 40px; }
	input[type="text"] {
		width: 100%;
		height: 2.4em;
		padding: 5px 10px;
		line-height: 2.4em;
		border: 1px solid #ccc;
		border-radius: 3px;
		background: #fff;
		font-size: 100%;
	}
	textarea {
		width: 100%;
		height: 10em;
		padding: 10px;
		border: 1px solid #ccc;
		border-radius: 3px;
		background: #fff;
		font-size: 100%;
	}
	input[type="submit"] {
		width: 200px;
		height: 4.8em;
		background: #333;
		text-align: center;
		line-height: 4.8em;
		border: none;
		color: #fff;
		cursor: pointer;
	}
	input[type="submit"]:hover { background: #808080; }
}

@media screen and (max-width: 750px) {
	#contact { padding: 2.4vw; }
	input[type="text"] {
		width: 100%;
		height: 2.4em;
		padding: 1.6vw;
		line-height: 2.4em;
		border: 0.24vw solid #ccc;
		border-radius: 0.8vw;
		background: #fff;
		font-size: 100%;
	}
	textarea {
		width: 100%;
		height: 10em;
		padding: 1.6vw;
		border: 1px solid #ccc;
		border-radius: 0.8vw;
		background: #fff;
		font-size: 100%;
	}
	input[type="submit"] {
		width: 56vw;
		height: 4.8em;
		background: #333;
		text-align: center;
		line-height: 4.8em;
		border: none;
		color: #fff;
		cursor: pointer;
	}
}
table,
tr:first-of-type th,
tr:first-of-type td { border-top: 0; }
table,
tr:last-of-type th,
tr:last-of-type td { border-bottom: 0; }
td.center { text-align: center; }
#none {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 8;
}



