@charset "UTF-8";
/*===========================
変数設定
===========================*/
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #FORM-WRAPPER　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#form-wrapper {
  width: 100%;
  margin: 30px auto 0;
  background: #f6f6f6;
}

form#mail_form {
  width: 425px;
  margin: 10px auto 20px;
  padding: 20px 20px;
  background: #ffffff;
}

/*==============================================
#form-wrapper h2
===============================================*/
#form-wrapper h2 {
  color: rgb(19, 81, 143);
  font-size: 4rem;
  line-height: 1.4;
  padding: 40px 0 40px 0;
  font-weight: 700;
  letter-spacing: -2px;
  text-align: center;
}

form#mail_form dl {
  width: 100%;
  margin: 0 0 0px 0;
  overflow: hidden;
  padding: 0;
}

form#mail_form dl dt {
  background: rgb(125, 125, 125);
  clear: both;
  width: 100%;
  float: left;
  padding: 1.5% 2%;
  text-align: left;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5% 0;
  color: #fff;
  border-radius: 3px;
}

form#mail_form dl dd {
  width: 100%;
  float: none;
  padding: 0;
  font-size: 17px;
  margin: 0 0 5% 0;
}

form#mail_form dl dt:first-child,
form#mail_form dl dt:first-child + dd {
  border: none;
}

form#mail_form dl dt span {
  color: #fff;
  display: inline-block;
  font-size: 75%;
  padding: 0 2px 0 2px;
}

/*==============================================
#form-wrapper .privacy-section
===============================================*/
#form-wrapper .privacy-section {
  padding: 20px 0 20px 0;
  margin: 0 auto 20px;
  width: 100%;
  float: none;
  clear: both;
}

#form-wrapper .privacy-section h4 {
  font-size: 20px;
  text-align: center;
  padding: 0 0 35px 0;
}

#form-wrapper .privacy-section .privacy-box {
  margin: 0 0 20px 0;
  height: 150px;
  background-color: #ffffff;
  box-sizing: border-box;
  overflow: auto;
  color: #404040;
  padding: 4%;
  border: solid 1px #aaa;
}

#form-wrapper .privacy-section .privacy-box h5 {
  font-size: 18px;
  margin: 0 0 10px 0;
}

#form-wrapper .privacy-section .privacy-box p {
  padding: 5px 0 40px 0;
  font-size: 15px;
  line-height: 1.7;
}

#form-wrapper .privacy-section .privacy-button {
  margin: 0px auto 0px;
  text-align: left;
  font-size: 18px;
  position: relative;
  top: -20px;
}

#form-wrapper .privacy-section .privacy-button img.p-mark {
  width: 70px;
  height: auto;
  padding: 0 10px 0 0;
  position: relative;
  top: 15px;
}

#form-wrapper .privacy-section dt {
  font-size: 0px !important;
  color: #fff !important;
  width: 0px !important;
  padding: 0 !important;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 FORM #MAIL_FORM　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
form#mail_form 「必須」「任意」
===============================================*/
form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
  display: inline-block !important;
  margin: 0 5px 0 5px;
  color: #ffffff;
  line-height: 1;
  padding: 8px 9px;
  border-radius: 3px;
}

form#mail_form dl dt span.required {
  background: #dd140e;
  border: 1px solid #d43f3a;
}

form#mail_form dl dt span.optional {
  background: #337ab7;
  border: 1px solid #2e6da4;
}

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
  display: block;
  color: #ff0000;
  margin-top: 3px;
}

/*==============================================
form#mail_form ローディング
===============================================*/
span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  transform: translateZ(0);
  animation: load-circle 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
@keyframes load-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*==============================================
form#mail_form input
===============================================*/
form#mail_form input[type=text],
form#mail_form input[type=email],
form#mail_form input[type=tel] {
  max-width: 100%;
  height: 3em;
  padding: 2px 2%;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  font-size: 100%;
  font-family: inherit;
  text-align: left;
}

form#mail_form input[type=text]:focus,
form#mail_form input[type=email]:focus,
form#mail_form input[type=tel]:focus,
form#mail_form textarea:focus {
  box-shadow: 0px 0px 5px #55ccff;
  border: 1px solid #55ccff;
  background: #ffffff;
}

form#mail_form ul li input[type=radio],
form#mail_form ul li input[type=checkbox] {
  margin-right: 10px;
  margin-top: 7px;
}

ul.form_ml50 {
  text-align: left;
}

form#mail_form ul li:first-child input[type=radio],
form#mail_form ul li:first-child input[type=checkbox] {
  margin-top: 0px;
}

form#mail_form select {
  font-size: 100%;
  font-family: inherit;
  margin-top: 10px;
}

form#mail_form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 200px;
  padding: 2px 2%;
  resize: vertical;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  font-size: 100%;
  font-family: inherit;
  border: 1px solid #cccccc;
}

form#mail_form ul {
  list-style-type: none;
}

form#mail_form ul li label:hover {
  cursor: pointer;
}

form#mail_form input#company {
  width: 60%;
}

form#mail_form input#name_1,
form#mail_form input#name_2,
form#mail_form input#read_1,
form#mail_form input#read_2,
form#mail_form input#postal,
form#mail_form input#phone,
form#mail_form input#schedule,
form#mail_form input#space {
  width: 100%;
}

form#mail_form input#mail_address,
form#mail_form input#mail_address_confirm {
  width: 100%;
}

.form_index {
  margin-left: 5%;
}

/*==============================================
form#mail_form input#postal
===============================================*/
form#mail_form input#postal + a {
  display: inline-block;
  padding: 9px 15px;
  vertical-align: middle;
  line-height: 1;
  background: #5bc0de;
  border: 1px solid #46b8da;
  border-radius: 3px;
  color: #ffffff;
  font-family: inherit;
  text-decoration: none;
  position: relative;
  top: -1px;
}

form#mail_form input#postal + a:hover {
  cursor: pointer;
  background: #31b0d5;
  border: 1px solid #269abc;
}

form#mail_form input#address {
  width: 90%;
}

form#mail_form p#form_submit {
  margin: 0 auto;
  padding: 15px 2%;
  text-align: center;
  width: 100%;
  max-width: 560px;
}

/*==============================================
form#mail_form submit(送信ボタン)
===============================================*/
/* 変数設定 */
form#mail_form input[type=button] {
  background: linear-gradient(to right, rgb(248, 93, 0) 0%, rgb(255, 138, 0) 56%, rgb(252, 180, 54) 100%);
  box-shadow: 0px 0px 0px 2px #ea750d;
  vertical-align: middle;
  line-height: 1;
  color: #ffffff;
  font-family: inherit;
  -webkit-appearance: none;
  width: 100%;
  font-weight: 700;
  margin: 10px auto 0px;
  padding: 18px 5px 22px;
  border: 2px solid #ffffff;
  position: relative;
  z-index: 0;
  transition: 0.3s;
  border-radius: 60px;
  font-size: 30px;
}

form#mail_form input[type=button]:hover {
  background: linear-gradient(to right, rgb(248, 0, 0) 0%, rgb(255, 96, 0) 55%, rgb(255, 131, 64) 100%);
  cursor: pointer;
}

form#mail_form input#form_submit_button {
  margin-left: 0;
  margin: 0 auto 0;
  text-align: center;
}

.privacy-policy {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
}
.privacy-policy a {
  color: rgb(19, 81, 143);
  text-decoration: underline;
}

#mail_contents {
  text-align: left;
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------- */
/* 1000pixel start */
@media screen and (max-width: 1000px) {
  /*===================================================================
    □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

    〇 FORM #MAIL_FORM　〇

    □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  　====================================================================*/
  form#mail_form {
    width: 100%;
    margin: 0 auto;
    padding: 5% 5%;
  }
  form#mail_form dl {
    overflow: visible;
  }
  form#mail_form dl dt {
    width: auto;
    float: none;
    text-align: left;
    padding: 1% 2%;
    font-weight: bold;
    margin: 0;
  }
  form#mail_form dl dd {
    width: auto;
    float: none;
    border-top: none;
    padding: 5% 0;
    width: 100%;
    margin-left: 0%;
  }
  form#mail_form dl dt span {
    font-weight: normal;
  }
  /*==============================================
  form#mail_form 「必須」「任意」
  ===============================================*/
  form#mail_form dl dt span.required,
  form#mail_form dl dt span.optional {
    margin-right: 1em;
    margin-bottom: 0;
  }
  /*==============================================
  form#mail_form input
  ===============================================*/
  form#mail_form input[type=text],
  form#mail_form input[type=email],
  form#mail_form input[type=tel] {
    margin-top: 0px;
    max-width: 100%;
  }
  form#mail_form input[type=text] {
    margin-right: 2%;
  }
  form#mail_form input#form_submit_button {
    margin-left: 0;
    font-size: 1.4rem;
  }
  form#mail_form select {
    margin-top: 0;
  }
  form#mail_form input#phone,
  form#mail_form input#schedule {
    width: 100%;
  }
} /* 1000pixel closed */
@media screen and (max-width: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 #FORM-WRAPPER　〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  #form-wrapper h2 {
    font-size: 32px;
    line-height: 1.3;
    padding: 30px 0 30px 0;
  }
  #form-wrapper .privacy-section .privacy-button img.p-mark {
    position: relative;
    top: 15px;
    padding: 0 5px 0 0;
    width: 50px;
  }
} /* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #THANKS　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
div#thanks .inner
===============================================*/
div#thanks .inner {
  width: 960px;
  margin: 80px auto 80px;
  padding: 40px 0;
  background: #ffffff;
  border: 3px solid rgb(19, 81, 143);
}

div#thanks h1 {
  width: 90%;
  margin: 0 auto;
  font-size: 27px;
  font-weight: bold;
  padding: 0 0 16px 0;
  border-bottom: 3px solid rgb(19, 81, 143);
  color: rgb(19, 81, 143);
}

div#thanks h2 {
  width: 90%;
  margin: 0 auto;
  font-size: 135%;
  font-weight: bold;
  padding: 0 0 13px 0;
  border-bottom: 2px solid rgb(19, 81, 143);
  color: rgb(19, 81, 143);
}

div#thanks h2 {
  margin-top: 1.5em;
}

div#thanks .main p {
  width: 90%;
  margin: 0 auto;
  margin-top: 2em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
}

div#thanks .sub p {
  width: 90%;
  margin: 0 auto;
  margin-top: 2em;
  color: #3f1801;
  /* font-family: fot-tsukuardgothic-std, sans-serif; */
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
}

div#thanks dl {
  width: 90%;
  margin: 0 auto 3em;
}

div#thanks dl dt {
  margin-top: 2em;
}

/* -- responsive ------------------------------------------- */
/* 1000pixel start */
@media screen and (max-width: 1000px) {
  div#thanks .inner {
    width: 95%;
    margin: 40px auto 40px;
  }
}
/* 1000pixel end *//*# sourceMappingURL=style.css.map */