@charset "UTF-8";
/*------　フォーム追加　2016/08/24　--------- */


.form_body {
 -webkit-text-size-adjust: none;
 color: #444;
 text-align: left;
 width: 100%;
 margin: 40px auto 0 auto;
 /* background: #f0f3f8; */
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 -ms-border-radius: 5px;
 -o-border-radius: 5px;
 border-radius: 5px;
 /* padding: 20px 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;
  font-weight: bold;
}
.item_name .must{
    display: block;
    background-color: #C00;
    border: solid 2px #C00;
    text-shadow: 0px 1px 2px #933;
    padding: 2px 5px;
    font-size: 10px;
    color: #FFF;
    float: left;
    margin: 0px 5px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px #CCC;
}
.item_name .must,
.item_name .plural,
.item_name .singular{
  /* line-height: 30px; */
  /* color: #fff; */
  /* padding: 0 5px; */
  /* float: left; */
  /* 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: #ba2916; }
.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 20px; */
  /* 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_contents {
    padding: 0;
    border: none;
    float: left;
  }
/*  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(../images/top/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 2000px #B5FED1 inset;
}
/*  ICON NG
------------------- */
/*icon
.form_layout .wrap.error:after { background: url(../images/top/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: 300px;height: 40px;font-size: 1.6rem !important;}
.inputarea2 { width: 200px; height: 40px; font-size: 1.0em !important;}
.inputarea3 { width: 400px; height: 40px; font-size: 1.0em !important;}
.inputarea4 { width: 500px; height: 40px; font-size: 1.0em !important;}
.inputarea5 { width: 80px; height: 40px; font-size: 1.0em !important;}
.inputarea6 { width: 30px; height: 40px; font-size: 1.0em !important;}
.inputarea7 { width: 200px; height: 40px; font-size: 1.0em !important;}

.textarea1 {width: 500px !important;height: 200px !important;font-size: 1.6rem !important;}

/*  BUTTON STYLE
------------------- */
.form_btns {
  padding: 30px 0;
  text-align: center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.form_btns .confirm,
.form_btns .send,
.form_btns .edit,
.btn_toToppage{
	border-radius: 7px;
	padding: 0.75em 3.5em;
	border: none;
	font-size: 2.4rem;
	font-weight:bold;
	text-align:center;
	cursor: pointer;
	outline: none;
}
.btn_toToppage{
margin: 50px 0;
}
.form_btns .confirm,
.form_btns .send,
.form_btns .edit,
.btn_toToppage{
	background-color: #68a54e;
	color:#fff;
	box-shadow: 0px 2px 0px 2px #375f26;
	text-shadow: 2px 0px 0px rgba(0,0,0,0.3);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	/* margin-right: 20px; */
}
.form_btns .edit{
  display: block;
	background-color: #ddd;
	border: 1px solid #ccc;
	color: inherit;
	text-shadow: 0px 2px 0px rgba(255,255,255,0.5);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	box-shadow: 0px 2px 0px 2px #ccc;
	margin-left: 20px;
}
.form_btns .confirm:hover,
.form_btns .send:hover,
.btn_toToppage{
	background-color: #83c567;
}
.form_btns .edit:hover {
	background-color:#ddd;
}
.form_btns .confirm:after,
.form_btns .send:after,
.form_btns .edit:after,
.btn_toToppage:after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    margin-left: 10px;
}
.form_btns .confirm,
.form_btns .send,
.form_btns .edit,
.form_btns .top{
  cursor: pointer;
}


/*  OTHER
------------------- */
div.valid {
  display: none;
}
div.valid.wrap {
  display: block;
}
div.errortext {
  display: none;
  clear: both;
  color: #fa0006;
  /* background: url(../images/top/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(../images/top/icon_error.png) no-repeat left center !important; */
  padding-left: 20px !important;
  border: none !important;
  font-size: 1.0em !important;
}
div.attention {
  display: none;
  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
------------------- */

.gray{
  color: #919191;
}
.thanks{
  text-align: center;
}
.target_blank{
 color: #2291f4;
 /* background: url(../images/top/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 ;
}

@media screen and (max-width: 739px) {
.form_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .item_name{
    float: none;
    width: 90%;
    text-align: left;
    display: block;
    /* font-size: 1.8rem; */
    /* font-weight: bold; */
    margin-bottom: 10px;
}
  .item_contents {
    width: calc(100% - 20px);
    padding: 0 0 10px;
    display: block;
    /* width: 100%; */
    float: none;
    /* text-align: left; */
}
  .textarea1 {
    width: 90% !important;
  }
}
