@charset "UTF-8";

/* UNIT FORM
--------------------------------------------- */

.unit-form table,
.unit-form th,
.unit-form td {
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
}

.unit-form table {
	width: 100%;
	margin-bottom: 30px;
}

.unit-form tr {
	border-top: 1px dotted #cacaca;
	border-bottom: 1px dotted #cacaca;
}

.unit-form th {
	width:100%;
	display: block;
	padding:20px 0 0 0;
	font-weight:bold;
	text-align:left;
	vertical-align: top;
}

.unit-form td {
	width:100%;
	display: block;
	padding:10px 0 20px 0;
	text-align:left;
	vertical-align: top;
}

.unit-form input[type="check"],
.unit-form input[type="radio"],
.unit-form input[type="checkbox"],
.unit-form input[type="submit"],
.unit-form input[type="reset"],
.unit-form input[type="button"] {
	cursor: pointer;
}

.unit-form input[type="radio"],
.unit-form input[type="checkbox"] {
	position: relative;
	top: -2px;
	margin-right: 5px;
}

.unit-form input[type="text"],
.unit-form textarea {
	width: 95%;
	padding: 15px 10px;
	border: 1px solid #AAA;
	border-radius: 3px;
	box-sizing:border-box;
}

.unit-form input[type="text"]:hover,
.unit-form textarea:hover,
.unit-form input[type="text"]:focus,
.unit-form textarea:focus {
	background-color: #ECFBFF;
}

.unit-form-req:after {
	content: "必須";
	width: 54px;
	height: 20px;
	line-height: 20px;
	margin-left: 20px;
	padding: 4px 16px;
	font-size: 12px;
	color: #DF4440;
	font-weight: bold;
	text-align: center;
	background-color: #FFF;
	border: 1px solid #DF4440;
	border-radius: 3px;
}

.unit-form-button {
	text-align: center;
}

.unit-form input[type="submit"] {
	width: 250px;
	font-size: 16px;
	color: #FFF;
	display: block;
	text-align: center;
	padding: 12px 15px;
	margin: 0 auto;
	background-color: #000;
	border: 1px solid #000;
	border-radius: 3px;
}

.unit-form input[type="submit"]:hover {
	background-color: #666;
	border: 1px solid #666;
}

.unit-form input[type="reset"],
.unit-form input[type="button"] {
	width: 250px;
	font-size: 16px;
	color: #FFF;
	display: block;
	text-align: center;
	padding: 12px 15px;
	margin: 20px auto 0 auto;
	background-color: #999;
	border: 1px solid #999;
	border-radius: 3px;
}

.unit-form input[type="reset"]:hover,
.unit-form input[type="button"]:hover {
	background-color: #CCC;
	border: 1px solid #CCC;
}

.unit-form-flw-md {
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.unit-form-flw-error {
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.unit-form-flw-txt {
	text-align: center;
	padding-bottom: 30px;
}

.unit-form-flw-tks {
	text-align: center;
	margin-bottom: 30px;
}

.unit-form-flw-link {
	text-align: center;
}

.section-form-flw {
	padding: 95px 20px 60px 20px;
}

p.error_messe {
	color: red;
	margin-bottom: 20px;
}





/*media Queries PCサイズ
----------------------------------------------------*/
@media all and (min-width: 600px) {

/* UNIT FORM
--------------------------------------------- */

.unit-form input[type="submit"] {
	display: inline-block;
	margin: 0 0;
}

.unit-form input[type="reset"],
.unit-form input[type="button"] {
	display: inline-block;
	margin: 0 0 0 20px;
}





}




/*media Queries PCサイズ
----------------------------------------------------*/
@media all and (min-width: 1024px) {

/* UNIT FORM
--------------------------------------------- */

.unit-form {
	max-width: 1000px;
	margin: 0 auto;
}

.unit-form th {
	width: 37%;
	display: table-cell;
	padding: 15px;
}

.unit-form td {
	width: 63%;
	display: table-cell;
	padding: 15px;
}

.section-form-flw {
	max-width: 1200px;
	padding: 105px 20px 60px 20px;
	margin: 0 auto;
}





}