@charset "UTF-8";
.anq_required {
	background-image: url(../image/required.gif);
	background-repeat: no-repeat;
	background-position: right top;
	padding-right: 35px;
	padding-bottom: 5px;
}
.form-area {
	width: 800px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-top: 0px;
	padding-bottom: 60px;
}
.form-area table {
	margin-bottom: 20px;
	margin-top: 20px;
}
.form-area th {
	text-align: left;
	font-size: 14px;
	line-height: 1.5em;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 12px;
	padding-left: 10px;
	background-color: rgba(255,255,255,0.7);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	width: 200px;
	box-shadow:1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.form-area td {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-top: 18px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 15px;
	text-align: left;
	font-size: 16px;
	line-height: 1.5em;
	color: #000;
}
.form-area input[type="text"],
.form-area input[type="tel"],
.form-area textarea {
	font-size: 16px;
	line-height: 1.5em;
	padding-left: 5px;
	border: 1px solid #999999;
	border-radius: 4px;
	box-sizing:border-box;
	box-shadow:1px 1px 1px 1px rgba(0, 0, 0, 0.2);
	padding-top: 3px;
	padding-bottom: 3px;
}
.form-area input[type="text"]:focus,
.form-area textarea:focus {
background-color: #ffffcc;
border: 1px solid #333333;
}
.form-area select {
	border: 1px solid #999999;  /* 必要 */
	font-size: 16px;
}
.form-area label {
	cursor: pointer;
	margin-right: 15px;
}
/******************************************************** チェック・セレクトボックス設定 */
input[type=radio], input[type=checkbox] {
  display: none;
}
.radio, .checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 20px 8px 0;
  padding: 12px 12px 12px 42px;
  border-radius: 8px;
  background-color: #f6f7f8;
  vertical-align: middle;
  cursor: pointer;
  box-shadow:1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.radio:hover, .checkbox:hover {
  background-color: #FFD1D9;
}
.radio:hover:after, .checkbox:hover:after {
	border-color: #FF6600;
}
.radio:after, .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}

.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #FF3808;
	content: '';
	opacity: 0;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}

.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #FF3808;
  border-bottom: 3px solid #FF3808;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}
/******************************************************** チェック・セレクトボックス設定 */
#submit {
	text-align: center;
}
#submit input[type="submit"] {
	font-size: 18px;
	line-height: 1.5em;
	padding-left: 50px;
	font-weight: bold;
	margin-top: 10px;
	padding-top: 12px;
	padding-right: 50px;
	padding-bottom: 10px;
	border-radius: 6px;
	box-shadow: 0px 0px 6px #898989;
	background-image: -moz-linear-gradient(top, #24de2c, #057a02);
	background-image: -webkit-linear-gradient(top, #24de2c, #057a02);
	background-image: linear-gradient(top, #24de2c, #057a02);
	background-clip: padding-box;
	cursor: pointer;
	color: #FFF;
	background-color: #057a02;
}
#submit input[type="submit"]:hover {
background-image: -webkit-linear-gradient(top, #ff3a30, #d91400);
background-image: linear-gradient(top, #ff3a30, #d91400);
}
/* THANKS */
#thanks {
	padding-top: 15px;
}
#thanks p.thanks {
	font-size: 18px;
	line-height: 1.5em;
	font-weight: bold;
	color: #F00;
	margin-bottom: 15px;
}
#thanks p.ad {
	font-size: 14px;
	line-height: 1.5em;
	color: #000;
	padding-top: 10px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	margin-top: 10px;
}
::-webkit-input-placeholder {
    color: #ACACAC; }
	
/******************************************************** スマホ用設定 */

@media screen and (min-width: 0px) and (max-width: 640px) {

.anq_required {
	background-image: url(../image/required.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 16px;
	padding-left: 0px;
}
.form-area {
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-top: 0px;
	padding-bottom: 60px;
}
.form-area table {
	margin-bottom: 20px;
}
.form-area th {
	text-align: left;
	font-size: 12px;
	line-height: 1.5em;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	background-color: #EAEAEA;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #FFF;
	width: 25%;
}
.form-area td {
	border-bottom-width: 2px;
	border-bottom-style: dashed;
	border-bottom-color: #CCCCCC;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 13px;
	padding-left: 10px;
	text-align: left;
	font-size: 16px;
	line-height: 1.5em;
	color: #000;
}
.form-area input[type="text"],
.form-area input[type="tel"],
.form-area textarea {
	font-size: 16px;
	line-height: 1.5em;
	padding-left: 5px;
	border: 1px solid #999999;
	border-radius: 4px;
    box-sizing:border-box;
}
.form-area select {
	border: 1px solid #999999;  /* 必要 */
	font-size: 14px;
}
::-webkit-input-placeholder {
    color: #ACACAC;
	font-size: 14px;
	width:80%;
}
.radio,
.checkbox {
	width: 100%;
}

}
