@charset "UTF-8";


.anq_required {
	background-image: url(../image/nes.gif);
	background-repeat: no-repeat;
	background-position: right 7px;
	padding-right: 35px;
	padding-bottom: 5px;
}
.form-area {
	width: 100%;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-top: 0px;
	padding-bottom: 10px;
}
.form-area .cap {
	font-size: 20px;
	margin-bottom: 20px;
	text-align: center;
}
.form-area .tit2 {
	color: #A49067;
	font-weight: bold;
	font-size: 18px;
	border-bottom: 2px solid #A49067;
	padding-bottom: 5px;
	margin-bottom: 20px;
}
.form-area table {
	width: 100%;
	margin-bottom: 20px;
	padding: 0;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	background-color: #FFF;
}
.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: #eee;
	width: 180px;
	border-bottom: 1px dotted #888888;
	color: #026DB7;
	font-weight: normal;
	font-weight: bold;
}
.form-area td {
	border-bottom: 1px dotted #888888;
	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 td dl {
	overflow: hidden;
}
.form-area td dt {
	float: left;
	width: 100px;
	font-weight: bold;
	font-size: 14px;
	line-height: 350%;
	color: #063;
}
.form-area td dd {
}

/*=======================
フォーム調整　共通
========================*/
input,textarea {
	font-size: 15px;
	/*	line-height: 1.5em;*/
}
.form-area input[type="text"],
.form-area input[type="tel"],
.form-area input[type="number"],/*半角数値*/,
.form-area textarea {
	font-size: 15px;
	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: 15px;
}
.form-area label {
	cursor: pointer;
	margin-right: 15px;
}
input[type=radio], input[type=checkbox] {
  display: none;
}
/*=======================
placeholder text内（Vendor prefix）
========================*/
/* 各ベンダープレフィックスが取れた標準版*/
 :placeholder-shown {
}
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
    color: #AAA;
	font-size: 13px;
	vertical-align: middle;
}
/* Firefox 18- */
:-moz-placeholder {
    color: #666;
	font-size: 13px;
	vertical-align: middle;
}
/* Firefox 19+ */
::-moz-placeholder {
    color: #666;
	font-size: 13px;
	vertical-align: middle;
}
/* IE 10+ */
:-ms-input-placeholder {
    color: #AAA;
	font-size: 13px;
	vertical-align: middle;
}
/*=======================
フォーム調整　独自指定
========================*/
.form-area textarea {
	width: 100%
}
input[type='text'].tel_box {
	width: 30%
}
input[type='text'].mail_box {
	width: 60%
}
input[type='text'].name_box {
	width: 30%;
}
input[type='text'].text5 {
	width: 10%;
}
input[type='text'].text10 {
	width: 10%;
}
input[type='text'].text15 {
	width: 15%;
}
input[type='text'].text20 {
	width: 20%;
}
input[type='text'].text30 {
	width: 30%;
}
input[type='text'].text40 {
	width: 40%;
}
input[type='text'].text50 {
	width: 50%;
}
input[type='text'].text60 {
	width: 60%;
}
input[type='text'].text70 {
	width: 70%;
}
input[type='text'].text80 {
	width: 80%;
}
input[type='text'].text90 {
	width: 90%;
}
input[type='text'].text100 {
	width: 100%;
}


/*数字入力用*/
input[type='tel'].text10 {
	width: 70px;
}
input[type='tel'].text20 {
	width: 60px;
}
input[type='tel'].text_postal {/*〒番号*/
	width: 80px;
}
input[type='button'].postal_bt {/*〒から住所を自動入力ボタン*/
	background-color: #ccc;
	font-size: 14px;
	margin-bottom:10px;
}

input{/*IEフォームズレ対策*/
     "MS PGothic"
}
.form_box th,
.form_box td {/*IEフォームズレ対策*/
	line-height: 180%;
	vertical-align: middle; 
}
/*=======================
チェック・セレクトボックス設定 　共通
========================*/
.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 25px 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: 20px;
  height: 20px;
  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: 13px;
	height: 13px;
	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: 7px;
  height: 10px;
  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;
}
/*=======================
チェック・セレクトボックス設定（ラジオボタンの中のチェックボックス）
========================*/
.radio_in {
  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;
}
.checkbox_in {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	padding: 12px 12px 12px 42px;
	border-radius: 8px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
	margin-bottom: 0px;
	margin-left: 0;
	margin-right: 20px;
	margin-top: 0;
}
.radio_in:hover, .checkbox_in:hover {
  background-color: #FFD1D9;
}
.radio_in:hover:after, .checkbox_in:hover:after {
	border-color: #FF6600;
}
.radio_in: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: 20px;
  height: 20px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}
.checkbox_in: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: 20px;
  height: 20px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}
.radio_in: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_in:before {
  opacity: 1;
}
.checkbox_in:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 7px;
  height: 10px;
  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_in:before {
  opacity: 1;
}
/*=======================
プライバシーリンク
========================*/
.form-area .privacy {
	text-align: center;
}
.form-area .privacy a {
	color: #D90E00;
}
/*=======================
フォームボタン
========================*/
input[type="submit"]{
}
.submit {
	text-align: center;
}
/*
#submit {
	padding-top: 3%;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-bottom: 0%;
}
#submit .bt {
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
}
#submit .css_btn_class {
	height: 60px;
	width: 300px;
	margin-right: auto;
	margin-left: auto;
	line-height: 30px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 25px;
	padding-right: 50px;
	padding-left: 50px;
	font-size: 16px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	background-color: #D90E00;
	color: #ffffff;
	display: inline-block;
	border: none;
}
#submit .css_btn_class:hover {
	background-color: #FFCD01;
	text-decoration: none;
}
#submit .css_btn_class:active {
	position:relative;
	top:1px;
}
#submit .btn_text{
	color: #fff;
	text-decoration:none;
	font-size: 18px;
}
#submit p {
	font-size: 14px;
}
*/
/*送信ボタン*/
.submit_btn {
	background: #3498db;
	background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
	background-image: -moz-linear-gradient(top, #3498db, #2980b9);
	background-image: -ms-linear-gradient(top, #3498db, #2980b9);
	background-image: -o-linear-gradient(top, #3498db, #2980b9);
	background-image: linear-gradient(to bottom, #3498db, #2980b9);
	-webkit-border-radius: 8;
	-moz-border-radius: 8;
	border-radius: 8px;
	color: #ffffff;
	font-size: 20px;
	text-decoration: none;
	margin-top: 30px;
	margin-bottom: 30px;
	padding-top: 10px;
	padding-right: 60px;
	padding-bottom: 10px;
	padding-left: 60px;
	text-align: center;
	cursor: pointer;
}
.submit_btn:hover {
	background: #3cb0fd;
	background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
	background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
	text-decoration: none;
}
.submit_btn a {
	color: #FFF;
	text-decoration: none;
}
.wd200 {
	width: 200px;
	margin-right: auto;
	margin-left: auto;
}



/*----------------------------------------
確認画面
------------------------------------------*/
#formWrap {
}
#formWrap table {
	font-size: 100%;
	text-align: left;
	line-height: 150%;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	border-collapse: collapse;
}
#formWrap th, #formWrap td {
	text-align: left;
	vertical-align: top;
	padding: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	line-height: 1.8em;
}
#formWrap table tr th {
	width: 30%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	padding: 15px;
	text-align: left;
}
#formWrap table tr td ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	line-height: 150%;
}
#formWrap table tr td ul li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.mfp_buttons {
	margin-top: 30px;
	margin-bottom: 30px;
}
.back_bt {
	margin-top: 30px;
	display: block;
}
input[type="image"] {
}
#contents section .caption {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	font-size: 100%;
	line-height: 1.8em;
}
#contents section .caption dt {
	font-size: 100%;
	font-weight: bold;
	text-align: center;
	background-color: #CCCCFF;
	padding-top: 8px;
	padding-bottom: 8px;
}


