@charset "UTF-8";
/* ==================================================
	common
================================================== */
/* elements
-------------------------------------------------- */
form {
  display: inline;
}

label {
  vertical-align: middle;
}

input,
select, optgroup, option,
textarea {
  box-sizing: border-box;
  margin: 0;
  font-family: "Helvetica Neue",Helvetica,Arial,Verdana,Roboto,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"ＭＳ Ｐゴシック",sans-serif;
  font-weight: normal;
}

input[type=text] {
  width: 50%;
  padding: 3px 5px;
}
input[type="radio"] {
  margin-right: 0.3em;
}
input[type="checkbox"] {
  margin-right: 0.3em;
}
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
}

textarea {
  width: 100%;
  height: 10em;
  padding: 3px 5px;
  resize: none;
  overflow: hidden;
}

/* ==================================================
	contact input
================================================== */
/* common
-------------------------------------------------- */
.form_content_style .input_list li {
  display: inline-block;
  margin: 5px 10px 5px 0;
  vertical-align: top;
}
.form_content_style .input_list li.other {
  width: 100%;
}
.form_content_style .name dt {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}
.form_content_style .name dt:first-child {
  margin-top: 0;
}
.form_content_style .name dd {
  margin-top: 5px;
}
.form_content_style .address > div, .form_content_style .address > dl {
  margin-top: 10px;
}
.form_content_style .address > div:first-child, .form_content_style .address > dl:first-child {
  margin-top: 0;
}

/* icon 必須 / 任意 */
.form_content_style .hissu, .form_content_style .ninni {
  position: relative;
}
.form_content_style .hissu::before, .form_content_style .ninni::before {
  float: right;
  display: inline-block;
  position: relative;
  top: 3px;
  padding: 0 5px;
  color: #fff;
  font-size: 1.2rem;
}
.form_content_style .hissu::before {
  content: "必須";
  background-color: #f33737;
}
.form_content_style .ninni::before {
  content: "任意";
  background-color: #325b0d;
}

/* submit button
-------------------------------------------------- */
.form_submit_btn {
  text-align: center;
}
.form_submit_btn input, .form_submit_btn a {
  display: inline-block;
  width: 40%;
  margin: 40px 10px 0;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 3px;
  background-color: #325b0d;
  color: #fff;
  font-size: 16px;
  -webkit-transition: all 0.2s ease;
          transition: all 0.2s ease;
}
.form_submit_btn input.back, .form_submit_btn a.back {
  background-color: #aaa;
}
.form_submit_btn input:hover, .form_submit_btn a:hover {
  background-color: #ff6c00;
}
.form_submit_btn a {
  display: inline-block;
  padding-top: 17px;
  padding-bottom: 17px;
  text-decoration: none;
}

/* error message
-------------------------------------------------- */
.error_txt {
  margin: 100px 0;
  color: #e60012;
  font-weight: bold;
  text-align: center;
}

/* completion message
-------------------------------------------------- */
.completion_txt {
  margin: 100px 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
