@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600);

* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-o-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

body {
	font-family:"Open Sans", Helvetica, Arial, sans-serif;
	font-weight:300;
	font-size: 12px;
	line-height:30px;
	color:#3a405a;
	background:#f87666;
}

.container {
	max-width:400px;
	width:100%;
	margin:0 auto;
	position:relative;
}

.contents {
	max-width:750px;
	width:100%;
	margin:0 auto;
	position:relative;
	padding:10px;
	background:#FFF;
}

#contact input[type="number"], #contact input[type="text"], #contact input[type="password"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"], #contact button[type="reset"], #contact select { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
	background:#F9F9F9;
	padding:25px;
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 50px;
	margin-left: 0;
}

#contact h3, .contents h3 {
	color: #087e8b;
	display: block;
	font-size: 30px;
	font-weight: 400;
}

#contact h4 {
	margin:5px 0 15px;
	display:block;
	font-size:13px;
}

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

#contact input[type="number"] {
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="text"],#contact input[type="password"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact select {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="number"]:hover, #contact input[type="text"]:hover, #contact input[type="password"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover, #contact select:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:100px;
	max-width:100%;
  resize:none;
}

#contact button[type="submit"],.contact-submit {
	cursor:pointer;
	width:100%;
	border:none;
	background:#087e8b;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

#contact button[type="reset"] {
	cursor:pointer;
	width:100%;
	border:none;
	background:#777;
	color:#DDD;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

#contact button[type="submit"]:hover {
	background:#09C;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}
.container #contact fieldset span {
	font-size: 10px;
	line-height: normal;
}

/* !Table
---------------------------------------------------------- */
table{
	border-collapse: collapse;
}
th{
	/*width: 10%;*/
	padding: 6px;
	text-align: center;
	vertical-align: top;
	color: #333;
	background-color: #eee;
	border: 1px solid #b9b9b9;
}
td{
	padding: 6px;
	border: 1px solid #b9b9b9;
}

/* !ヘッダー部分
---------------------------------------------------------- */
.container h3 {
	font-size: 20px;
	color: #3a405a;
	font-weight: bold;
}
.container #head {
	text-align: right;
	color: #3a405a;
}
.container #head a {
	color: #3a405a;
	text-decoration: none;
}
.container #contact h2 {
	color: #087e8b;
	font-size: 13px;
}

