@charset "UTF-8";

#contents input[type="text"]:hover,
#contents textarea:hover {
border: 1px solid #666666;
}
#contents input[type="text"]:focus,
#contents textarea:focus {
background-color: #ffffcc;
border: 1px solid #333333;
}
#contents input[type="text"],
#contents textarea {
	border: 1px solid #999999;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 5px;
	font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}
#contents input[type="submit"] {
	border: 1px solid #C69;
	font-size: 13px;
	font-weight: normal;
	color: #000;
	background-color: #FFE7F5;
	padding-top: 7px;
	padding-right: 10px;
	padding-bottom: 7px;
	padding-left: 10px;
	line-height: 18px;
}
#contents input[type="submit"]:hover {
background-color: #FFCCCC;
}

.anq_required {
}
.anq_required:after {
	content:"必須";
	font-size: 11px;
	color: #FFF;
	background-color: #F60;
	border-radius: 3px;
	padding-top: 3px;
	padding-bottom: 2px;
	text-align: center;
	line-height: 1em;
	width: 3em;
	margin-left: 10px;
	padding-right: 5px;
	padding-left: 5px;
}
.form-area {
	width: 1000px;
	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: 2em;
    border: 1px solid #ccc;
    border-collapse: collapse;
}
.form-area th {
	text-align: left;
	font-size: 18px;
	line-height: 1.5em;
	padding: 1em;
	background-color: #EAEAEA;
	width: 240px;
    border: 1px solid #ccc;
    border-collapse: collapse;
}
.form-area td {
	border: 1px solid #ccc;
    border-collapse: collapse;
	padding-top: 1em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	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 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;
}
.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"] {
width: 400px;
font-size: 20px;
line-height: 1.5em;
font-weight: bold;
margin-top: 1em;
padding-top: 1.3em;
padding-bottom: 1.3em;
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;
    width: 1000px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#thanks p {
	font-size: 18px;
	line-height: 2em;
	color: #000;
}
#thanks p.thanks {
	font-size: 30px;
	line-height: 1.5em;
	font-weight: bold;
	color: #048c00;
	margin-bottom: 2em;
}

::-webkit-input-placeholder {
    color: #ACACAC;
}


    
    
/******************************************************** スマホ用設定 */

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

.form-area {
	width: 92%;
	margin-top: 50px;
	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: 6px;
	padding-right: 0%;
	padding-bottom: 4px;
	padding-left: 2%;
	width: 98%;
	display: block;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.form-area td {
	padding-top: 8px;
	padding-right: 2%;
	padding-bottom: 10px;
	padding-left: 2%;
	text-align: left;
	font-size: 16px;
	line-height: 1.5em;
	color: #000;
	display: block;
	width: 96%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.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: 12px;
}
::-webkit-input-placeholder {
    color: #ACACAC;
	font-size: 12px;
	width:80%;
}
.radio,
.checkbox {
	width: 100%;
}
#submit input[type="submit"] {
width: 80%;
font-size: 16px;
line-height: 1.5em;
font-weight: bold;
margin-top: 1em;
padding-top: 1em;
padding-bottom: 1em;
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;
}

/* THANKS */
#thanks {
	padding-top: 15px;
    width: 96%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#thanks p {
	font-size: 16px;
	line-height: 1.3em;
	color: #000;
}
#thanks p.thanks {
	font-size: 22px;
	line-height: 1.5em;
	font-weight: bold;
	color: #048c00;
	margin-bottom: 2em;
}


}
