@charset "UTF-8";
/*@font-face {
  font-family: "Aileron";
  src: url('../font/Aileron-UltraLight.woff');
}*/
/*---------------------------------------------------*/
/*             .お問い合わせ　　　　　　　　　　　　*/
/*---------------------------------------------------*/
.content:before {
  content: "";
  display: block;
  width: 100%;
  background-color: #F7F7F7;
  height: 100px;
  z-index: -4; }

body.contact div#contact {
  display: none !important; }
body.contact .pan {
  color: #0F53A4; }
  body.contact .pan a {
    color: #0F53A4; }

/*フォームリセット*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

input[type="text"],
input[type="tel"],
select,
textarea {
  padding: 0 15px;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 16px;
  /*1.6remで指定するとズームされるのを対応*/ }

input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus {
  box-shadow: 0 0 7px #aaa;
  border: 1px solid #0F53A4; }

/* IEのアイコン削除 */
input::-ms-clear {
  visibility: hidden; }

input::-ms-reveal {
  visibility: hidden; }

select::-ms-expand {
  display: none; }

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="radio"],
input[type="checkbox"],
input[type="reset"] {
  border: solid 1px #ccc;
  min-height: 40px;
  background-color: #fff; }

/* 縦のみリサイズ可 */
textarea {
  background-color: #fff;
  border: solid 1px #ccc;
  width: 100%;
  max-height: 250px;
  padding: 10px;
  resize: vertical; }

input[type="submit"] {
  display: block;
  min-width: 200px;
  padding: 14px;
  background-color: #0F53A4;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  outline: none; }

input[type="submit"]:hover {
  background-color: #0F53A4; }

input[type="submit"]:active {
  background-color: #0F53A4; }

/*placeholder*/
/* Chrome */
::-webkit-input-placeholder {
  color: #ccc; }

/* Firefox */
::-moz-placeholder {
  color: #ccc; }

/* IE */
:-ms-input-placeholder {
  color: #ccc; }

/*入力エラーのツールチップ*/
.error {
  padding: .5em 1em .4em;
  background-color: #f66;
  border-radius: 5px;
  color: #fff;
  position: relative;
  margin-bottom: 10px;
  display: none; }

.error:after,
.error:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 15px;
  border: solid transparent; }

.error:after {
  margin-left: 1px;
  border-top-color: #f66;
  border-width: 7px; }

.error:before {
  border-top-color: #f00;
  border-width: 8px; }

select {
  background-color: #fff;
  border: solid 1px #ccc;
  min-height: 44px;
  line-height: 44px; }

.selectbox {
  max-width: 400px;
  height: 44px;
  position: relative;
  background-color: #fff;
  border: solid 1px #ccc;
  overflow: hidden; }

.selectbox select {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent; }

.selectbox:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 17px;
  right: 14px;
  width: 0;
  height: 0;
  border-top: solid 7px #fff;
  border-right: solid 7px transparent;
  border-bottom: solid 7px transparent;
  border-left: solid 7px transparent;
  pointer-events: none;
  z-index: 2; }

.selectbox:before {
  content: "";
  position: absolute;
  display: inline-block;
  positon: absolute;
  background-color: #D1D1D1;
  top: 0;
  right: 0;
  width: 44px;
  height: 42px;
  pointer-events: none;
  z-index: 1; }

/* ラジオボタン */
input[type="radio"] {
  display: none; }

label.radio {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 40px;
  cursor: pointer;
  margin-left: 30px; }

label.radio::before,
label.radio::after {
  position: absolute;
  content: '';
  top: 50%;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s; }

label.radio::before {
  left: 0;
  width: 28px;
  height: 28px;
  margin-top: -16px;
  background: #f3f3f3;
  border: 1px solid #ccc; }

label.radio:hover::before {
  background: #fff; }

label.radio::after {
  opacity: 0;
  left: 6px;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  background: #0F53A4;
  -webkit-transform: scale(2);
  transform: scale(2); }

input[type="radio"]:checked + label.radio::before {
  background: #fff;
  border: 1px solid #0F53A4; }

input[type="radio"]:checked + label.radio::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

/* チェックボックス */
input[type="checkbox"] {
  display: none; }

label.check {
  position: relative;
  display: inline-block;
  padding: 3px 20px 3px 50px;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s; }

label.check::before,
label.check::after {
  position: absolute;
  content: '';
  -webkit-transition: all .2s;
  transition: all .2s; }

label.check::before {
  top: 50%;
  left: 0;
  width: 33px;
  height: 33px;
  margin-top: -16px;
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 3px; }

label.check::after {
  opacity: 0;
  top: 50%;
  left: 3px;
  width: 22px;
  height: 12px;
  margin-top: -10px;
  border-left: 5px solid #0F53A4;
  border-bottom: 5px solid #0F53A4;
  -webkit-transform: rotate(-45deg) scale(0.5);
  transform: rotate(-45deg) scale(0.5); }

label.check:hover::before {
  background: #fff; }

input[type="checkbox"]:checked + label.check::before {
  background: #fff;
  border: 1px solid #0F53A4; }

input[type="checkbox"]:checked + label.check::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1); }

.inner_contents {
  max-width: 960px;
  margin: 0 auto 120px auto; }

.inner_contents p.btm10 {
  font-weight: bold; }

.form * {
  box-sizing: border-box; }
.form dl {
  font-size: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px; }
  .form dl dt {
    display: flex;
    align-items: center;
    vertical-align: middle;
    padding: 20px 40px 20px 20px;
    width: 30%; }
    .form dl dt span {
      margin-left: 10px;
      line-height: 1.8;
      border-radius: 2px;
      padding: 0 10px;
      vertical-align: middle;
      display: inline-block;
      background-color: #FF6060;
      color: #fff;
      font-size: 1.2rem; }
  .form dl dd {
    position: relative;
    padding: 20px 40px;
    width: 70%; }
    .form dl dd:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: -43%;
      width: 143%;
      height: 1px;
      background-color: #ccc; }
    .form dl dd p {
      margin-bottom: 10px; }
      .form dl dd p label.add {
        display: inline-block;
        width: 120px;
        margin-right: 15px; }
      .form dl dd p .address_pref {
        width: 30%; }
      .form dl dd p .address_detail {
        width: calc(100% - 135px); }
    .form dl dd .name,
    .form dl dd .number,
    .form dl dd .post {
      width: 50%; }
    .form dl dd .company,
    .form dl dd .department {
      width: 100%; }
    .form dl dd .mail {
      width: 70%; }
.form .submit_btn_area {
  text-align: center; }
  .form .submit_btn_area label {
    font-weight: bold; }
  .form .submit_btn_area p {
    margin-bottom: 20px; }
    .form .submit_btn_area p > a {
      color: #0F53A4; }
  .form .submit_btn_area .btn,
  .form .submit_btn_area input[type="button"],
  .form .submit_btn_area input[type="submit"] {
    color: #fff;
    background-color: #0F53A4;
    transition: 0.3s;
    position: relative;
    display: inline-block;
    padding: 14px;
    min-width: 320px;
    line-height: 1.8;
    vertical-align: middle; }
    .form .submit_btn_area .btn:hover,
    .form .submit_btn_area input[type="button"]:hover,
    .form .submit_btn_area input[type="submit"]:hover {
      color: #0F53A4;
      background-color: #fff; }
    .form .submit_btn_area .btn.back,
    .form .submit_btn_area input[type="button"].back,
    .form .submit_btn_area input[type="submit"].back {
      border: none;
      background-color: #777;
      min-width: 120px;
      max-width: 220px;
      margin-right: 3em; }
      .form .submit_btn_area .btn.back:hover,
      .form .submit_btn_area input[type="button"].back:hover,
      .form .submit_btn_area input[type="submit"].back:hover {
        color: #fff; }
      .form .submit_btn_area .btn.back:after,
      .form .submit_btn_area input[type="button"].back:after,
      .form .submit_btn_area input[type="submit"].back:after {
        content: none; }

.thx_msg {
  border: solid 2px #0F53A4;
  padding: 30px;
  background-color: #fff; }
  .thx_msg h2 {
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    padding: 20px 0; }
  .thx_msg strong {
    font-weight: bold; }
  .thx_msg a {
    color: #0F53A4;
    font-size: 1.8rem; }

/*-------1024px以下-----------------*/
@media screen and (max-width: 1023px) {
  .form dl dt {
    padding: 20px 0 10px 0; } }
/*-------1024px以下-----------------*/
@media screen and (max-width: 960px) {
  .content:before {
    height: 60px; } }
/*-------768px以下-----------------*/
@media screen and (max-width: 767px) {
  input, button, textarea, select {
    width: 100%; }

  .form dl {
    flex-direction: column; }
    .form dl dt, .form dl dd {
      width: 100%; }
    .form dl dd {
      padding: 0 0 50px 0; }
      .form dl dd .name, .form dl dd .number, .form dl dd .post, .form dl dd .mail, .form dl dd .address {
        width: 100%; }
      .form dl dd p .address_pref,
      .form dl dd p .address_detail {
        width: 100%; }
    .form dl dd:after {
      left: 0;
      width: 100%; }
  .form .submit_btn_area .btn {
    min-width: 100% !important; }
    .form .submit_btn_area .btn.back {
      margin-right: 0; }

  .thx_msg {
    padding: 30px 15px; } }
