@charset "UTF-8";
/*  FORM LAYOUT
-------------------------------------- */
.form_body {
  font: 14px/24px Helvetica, Arial,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", verdana, sans-serif;
  -webkit-text-size-adjust: none;
  color: #444;
  text-align: left;
  width: 1000px;
  margin: 0 auto;

  background: #f0f3f8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 60px 70px;
}
.form_layout {
  border-top: solid 1px #d8e0ed;
  border-bottom: solid 1px #fff;
  width: 100%;
  position: relative;
}
/*  ITEM LINE
------------------- */
.item_line {
  border-top: solid 1px #fff;
  border-bottom: solid 1px #d8e0ed;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}
/*  ITEM NAME
------------------- */
.item_name {
  padding: 3px 0 0 0;
  width: 30%;
  float: left;
}
.item_name .must,
.item_name .plural,
.item_name .singular{
  line-height: 18px;
  color: #fff;
  padding: 0 5px;
  float: right;
  font-size: 10px;
  margin: 4px 15px 0 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.item_name .must { background: #ff9d34; }
.item_name .plural { background: #94bff7; }
.item_name .singular { background: #999999; }
/*  ITEM CONTEN
------------------- */
.item_contents {
  width: 70%;
  float: right;
}
.item_contents_inner {
  padding: 0 0 0 15px;
  border-left: solid 3px #006699;
  overflow: hidden;
}
  .sec_item_line {
    border-top: none;
    padding: 5px 0;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #d8e0ed;
    position: relative;
    overflow: hidden;
  }
  .sec_item_line:first-child { padding: 0 0 5px 0; border-top: none; }
  .sec_item_line:last-child { padding: 5px 0 0 0; border-bottom: none; }

  .sec_item_name {
    padding: 4px 0 0 0;
    width: 22%;
    float: left;
  }
  .sec_item_contents {
    padding: 0;
    border: none;
    width: 78%;
    float: right;
  }
/*  ICON
-------------------------------------- */
.form_layout .wrap {
  position: relative;
}
.form_layout .wrap:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 100%;
}
/*  ICON OK
------------------- */
/*icon*/
.form_layout .wrap.valid:after { background: url(../img_00/form/icon-ok.png) no-repeat right center; }
/*input color*/
.form_layout .wrap input[type="text"].valid,
.form_layout .wrap.valid input[type="email"].valid,
.form_layout .wrap.valid input[type="tel"].valid,
.form_layout .wrap.valid select,
.form_layout .wrap textarea.valid {
  background: #B5FED1;
  border: 1px solid #4ef388;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #B5FED1 inset;
}
/*  ICON NG
------------------- */
/*icon*/
.form_layout .wrap.error:after { background: url(../img_00/form/icon-ng.png) no-repeat right center; }
/*input color*/
.form_layout .wrap.error input[type="text"],
.form_layout .wrap.error input[type="email"],
.form_layout .wrap.error input[type="tel"],
.form_layout .wrap.error select,
.form_layout .wrap.error textarea {
  background: #FDB1B2;
  border: 1px solid #ff8b8e;
}
/*  INPUT TYPE STYLE
-------------------------------------- */
.form_layout input[type=text],
.form_layout input[type="email"],
.form_layout input[type="tel"],
.form_layout textarea {
  padding: 8px;
}
.form_layout input[type="submit"] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}
/*  INPUT TYPE
------------------- */
.form_layout input[type=text],
.form_layout input[type=email],
.form_layout input[type=tel],
.form_layout textarea,
.form_layout select,
.form_layout option {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: solid 1px #ddd;
  display: block;
}
/*  INPUT TYPE FOCUS
------------------- */
.form_layout input[type=text]:focus,
.form_layout input[type=email]:focus,
.form_layout input[type=tel]:focus,
.form_layout textarea:focus,
.form_layout select:focus,
.form_layout option:focus {
  background: #fffdf7;
}
/*  SIZE CLASS
------------------- */
.inputarea1 { width: 18em; }
.inputarea2 { width: 108px; }
.inputarea3 { width: 150px; }
.inputarea4 { width: 330px; }
.inputarea5 { width: 80px; }
.inputarea6 { width: 30px; }
.inputarea7 { width: 122px; }

.textarea1 { width: 440px !important; height: 100px !important; }

/*  BUTTON STYLE
------------------- */
.form_btns {
  overflow: hidden;
  width: 500px;
  margin: 50px auto 0 auto;
}
.form_btns .confirm,
.form_btns .send,
.form_btns .edit,
.form_btns .top{
  display: block;
  width: 240px;
  height: 50px;
  cursor: pointer;
  border: none;
  text-indent: -9999px;
}
.form_btns .confirm { background: url(../img_00/form/btn_confirm_off.png); margin: 0 auto; }
.form_btns .confirm:hover { background: url(../img_00/form/btn_confirm_on.png); }

.form_btns .send { background: url(../img_00/form/btn_send_off.png); float: right; }
.form_btns .send:hover { background: url(../img_00/form/btn_send_on.png); }

.form_btns .edit { background: url(../img_00/form/btn_edit_off.png); float: left; }
.form_btns .edit:hover { background: url(../img_00/form/btn_edit_on.png); }

.form_btns .top { background: url(../img_00/form/btn_top_off.png); margin: 0 auto; }
.form_btns .top:hover { background: url(../img_00/form/btn_top_on.png); }

/*  OTHER
------------------- */
div.valid {
  display: none;
}
div.valid.wrap {
  display: block;
}
div.errortext {
  display: none;
  clear: both;
  color: #fa0006;
  background: url(../img_00/form/icon_error.png) no-repeat left center;
  padding-left: 20px;
  border: none;
}
.error div.errortext {
  display: none;
  clear: both !important;
  color: #fa0006 !important;
  background: url(../img_00/form/icon_error.png) no-repeat left center !important;
  padding-left: 20px !important;
  border: none !important;
  font-size: 14px !important;
}
div.attention {
  display: none;
  font-size: 12px;
  clear: both;
  border-left: 2px solid #ffb0b0;
  padding-left: 10px;
  line-height: 16px;
  color: #7f7f7f;
  margin: 10px 0 0 0;
}
div.attention.errortext {
  background: none;
}
/*  CUSTUM
------------------- */
.check_item_left {
}
.check_item_right {
  margin: 0 0 0 20px;
  width: 235px;
}
.check_item_right input {
}
.gray{
  color: #919191;
}
.thanks{
  text-align: center;
  font-size: 18px;
}
.target_blank{
 color: #2291f4;
 font-size: 12px;
 background: url(../img_00/form/icon_target_blank.png) right center no-repeat;
 padding: 0 15px 0 0;
 margin-right:10px;
}
.policy{
  text-align: center;
  margin: 30px 0 0 0 ;
}

/*フォーム確認画面追加　2017/09/28*/
.thanks_1{
  text-align: center;
  font-size: 36px;
  line-height: 150%;
}

.thanks{
  text-align: center;
  font-size: 28px;
  line-height: 150%;

}
.target_blank{
 color: #2291f4;
 font-size: 12px;
 background: url(../img_00/icon_target_blank.png) right center no-repeat;
 padding: 0 15px 0 0;
 margin-right:10px;
}
.policy{
  text-align: center;
  margin: 30px 0 0 0 ;
}


#body_formtop #container_formtop{
	width:100%;
	/*background-image:url(../img_00/containerW_bg.jpg);*/
	background-color: #FFF;;
	background-repeat:repeat-x;
	text-align:center;
	/*margin-top:156px; */
}

div#container_formtop{
	width:100%;
	/*background-image:url(../img_00/container_bg2.gif);*/
	background-color: #FFF;
	background-repeat:repeat-x;
	text-align:center;
	
}

body#body_formtop{
	background-color: #FFF;
}

#body_formtop #header{
	width: 100%;
	height:156px;
	background:url(../img_00/header_bg.jpg) repeat-x;
	/*position:fixed;
	top:0;
	left:0;
	z-index:99;*/
}

#body_formtop #header_in{
	width: 965px;
	height:101px;
	background-image:none;
	margin: 0 auto;
	padding:15px 0 0 0;
}

#body_formtop #utility_left{
	width:590px;
	padding-top:0px;
	float:left;
	}

#body_formtop #utility_left h1{
	font: 11px/1.2 'メイリオ','Meiryo','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','Osaka','ＭＳ Ｐゴシック',sans-serif;
	color:#333333;
	margin-bottom:5px;
}

#body_formtop #utility_right{
	width:375px;
	float:right;
	}