@charset "UTF-8";
#formWrap {
	width: 100%;
	font-size:16px;
	margin:0 auto;
}

table.formTable {
	width: 100%;
	margin: 3rem 0;
	border-collapse: collapse;
	font-size:16px;
}

table.formTable td,
table.formTable th {
	border: 1px solid #ccc;
	padding: 15px;
}

table.formTable th {
	width: 35%;
	font-weight: normal;
	background: #efefef;
	text-align: left;
	position:relative;
}

table.formTable td p {
font-size:12px;
margin-top:0.5rem;
}

form input[type="text"],
form textarea {
	margin: 5px 0;
	}

input[type="submit"],
input[type="reset"],
input[type="button"] {
	appearance: none;
	-webkit-appearance: none;
	margin-top: 2rem;
	width: 200px;
	padding:1rem;
	font-size:18px;
	background-color:#eceaea;
	border:1px solid #ddd;
	border-radius:3px;
}
input[type="submit"]{
	background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(36,118,247,1) 0%, rgba(3,163,252,1) 100%);
	color:#fff;
}

.sub_hover:hover {
background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(36,118,247,1) 0%, rgba(3,163,252,1) 100%);
}

.btn_hover:hover {
background: #cfcdcd;
}

.form-select {
		margin-top: 5px;
	}
	
input[type=text], input[type=email], form textarea {
	width: 100%;
	padding:0.5rem;
	border:1px solid #ddd;
	font-size:16px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
border-radius:3px;
}

select {
	padding:0.5rem;
	border:1px solid #ddd;
	font-size:16px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
border-radius:3px;
}


.required{
	display: inline-block;
	position:absolute;
	top:0;
	right:0;
	color: #ffffff;
	background-color: #e8383d;
	padding: 2px 4px;
	font-size:11px;
}

p.error_messe{
	margin:1rem 0;
	color:red;
	font-size: 16px;
}

.fs14{
	font-size: 15px;
	margin-bottom: 14px;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:640px) {
	table.formTable {
	border: none;
}

	table.formTable th,
	table.formTable td {
		width: auto;
		display: block;
		overflow:hidden;
	}

	table.formTable th {
		margin-top: 5px;
		border-bottom: 0;
		white-space: normal;
	}

	form input[type="submit"],
	form input[type="reset"],
	form input[type="button"] {
		display: block;
		width: 90%;
	}
}


