@charset "UTF-8";
/*-----------------------------------------------------

 form

-----------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  padding: 8px 10px 10px;
  border: solid 1px #dedede;
  border-radius: 5px;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  box-shadow: 0px 0px 3px #f7790b;
  outline: none;
  border-color: #f8e6db;
  background: #fff;
}

input[type="radio"],
input[type="checkbox"] {
  width: 1em;
  margin-right: 10px;
  display: none;
}

.checkbox {
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  margin-right: 10px;
}

.checkbox::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  left: 5px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}

.checkbox::after {
  border-right: 3px solid #f7790b;
  border-bottom: 3px solid #f7790b;
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  left: 10px;
  margin-top: -9px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
}

input[type="checkbox"]:checked + .checkbox::after {
  opacity: 1;
}

textarea {
  display: block;
  width: 100%;
  height: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  padding: 8px 10px 10px;
  resize: vertical;
  border: solid 1px #dedede;
  border-radius: 5px;
  -webkit-appearance: none;
}

::placeholder {
  font-size: 1.6rem;
  color: #ccc;
}

input[type="button"] {
  border: none;
  cursor: pointer;
}

.form-area {
  padding: 60px;
  border-radius: 20px;
  background: #fff;
}

.form {
  width: 100%;
  max-width: 760px;
  margin: auto;
}

.form-item-area {
  display: flex;
}
.form-item-area .form-item + .form-item {
  margin-left: 30px;
}

.form-item {
  width: 100%;
  margin-bottom: 25px;
}

.form-item-header {
  font-weight: 700;
  margin-bottom: 5px;
}

.form-checklist-area {
  margin-bottom: 25px;
}
.form-checklist-area .form-item {
  margin-bottom: 0;
}
.form-checklist-area .form-item dt {
  display: none;
}

.form-item-inner {
  padding: 0 15px 15px;
  border: solid 1px #dedede;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

.form-checklist-area {
  border: solid 1px #dedede;
  border-radius: 5px;
}
.form-checklist-area .form-item:first-child .error_blank {
  padding: 5px 10px 0;
  margin: 0 0 10px;
  border-top: solid 1px #dedede;
}
.form-checklist-area .form-item:last-child dd {
  border: none;
}

.form-checklist-item {
  padding: 0 5px;
  border-bottom: solid 1px #dedede;
}
.form-checklist-item:last-of-type {
  border-bottom: none;
}
.form-checklist-item label {
  width: 100%;
  padding: 8px 15px 10px 35px;
  display: flex;
  cursor: pointer;
}

span.required,
.icon-required {
  display: inline-block;
  font-style: normal;
  font-size: 1.4rem;
  color: #f7790b;
  margin-left: 10px;
}

.optional {
  display: none;
}

.error_blank,
.error_format,
.error_match {
  display: block;
  color: #e60013;
  font-size: 1.3rem;
  margin-top: 5px;
}

.form-footer {
  color: #e60013;
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.form-submit {
  text-align: center;
  padding-top: 20px;
}

/* form - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 859px) {
  input[type="radio"],
  input[type="checkbox"] {
    position: relative;
    top: 2px;
  }

  .form-area {
    padding: 40px;
  }
}
@media screen and (max-width: 559px) {
  .form-area {
    padding: 15px;
    border-radius: 10px;
  }

  .form-item-area .form-item + .form-item {
    margin-left: 15px;
  }

  .form-checklist-area,
  .form-item {
    margin-bottom: 20px;
  }

  .form-footer {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}
.div#confirm_field * {
  margin: 0;
  padding: 0;
}

div#confirm_field {
  width: calc(100% - 32px);
  max-width: 780px;
  font-size: 100%;
  margin: 0 auto 48px;
  background: #fff;
  border: 2px solid #58b531;
  border-radius: 12px;
  display: none;
}

div#confirm_field h2 {
  width: 90%;
  color: #58b531;
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid #58b531;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

div#confirm_field .h2 {
  width: 90%;
  color: #58b531;
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid #58b531;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

div#confirm_field dl {
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid #dedede;
}

div#confirm_field dl:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

div#confirm_field dl dt {
  width: 35%;
  float: left;
  padding: 24px 0;
}

div#confirm_field dl dt:before {
  content: "【";
}

div#confirm_field dl dt:after {
  content: "】";
}

div#confirm_field dl dd {
  width: 65%;
  float: right;
  padding: 24px 0 24px 5%;
}

@media screen and (max-width: 559px) {
  div#confirm_field {
    width: 100%;
    margin: 0;
  }

  div#confirm_field h2 {
    font-size: 1.6rem;
  }

  div#confirm_field .h2 {
    font-size: 1.6rem;
  }

  div#confirm_field dl dt {
    width: auto;
    padding: 24px 0 4px;
    font-weight: 700;
  }

  div#confirm_field dl dd {
    width: 100%;
    padding: 0px 0 24px 0px;
  }

  .button-cancel {
    margin-bottom: 20px;
  }
}
/* button ----------------------------------------- */
div#confirm_field p#confirm_submit {
  width: 90%;
  text-align: center;
  margin: 0 auto;
  padding: 24px 0;
}

div#confirm_field input[type="button"] {
  padding: 8px 1em;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
  font-family: inherit;
  margin: 0 8px;
  border: none;
  -webkit-appearance: none;
}

div#confirm_field input#confirm_submit_button {
  padding: 12px 3em;
  background: #f7790b;
}

div#confirm_field input#confirm_submit_button:hover {
  cursor: pointer;
  opacity: 0.75;
}

div#confirm_field input#confirm_cancel_button {
  background: #aaa;
}

div#confirm_field input#confirm_cancel_button:hover {
  cursor: pointer;
  opacity: 0.75;
}

.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;
}

.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;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-circle 1.0s linear infinite;
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}

@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*-----------------------------------------------------

 contact

-----------------------------------------------------*/
.contact > .inner {
  display: flex;
  flex-wrap: wrap;
}

.contact-image {
  width: 260px;
  margin-right: 60px;
}

.contact-tel .tel-title {
  margin-bottom: 15px;
}
.contact-tel .tel-time {
  margin: 25px 0;
}

.thanks {
  padding-bottom: 80px;
}

.thanks-message {
  margin-bottom: 80px;
}

.thanks-header {
  text-align: center;
  margin-bottom: 40px;
}

.thanks-text {
  text-align: center;
  margin-bottom: 55px;
}

.thanks-text p {
  padding-bottom: 10px;
}

.thanks-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 960px;
  padding: 25px 25px 0;
  margin: auto;
  border: solid 1px #2c2626;
}

/* contact - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 859px) {
  #section01.section {
    padding-top: 0;
  }
}
@media screen and (max-width: 559px) {
  .contact-image {
    width: 100%;
    height: 140px;
    margin: 0 0 30px 0;
    overflow: hidden;
  }

  .contact-tel {
    width: 100%;
  }
  .contact-tel .tel-title {
    margin-bottom: 5px;
  }
  .contact-tel .tel-number {
    font-size: 9.5vw;
  }
  .contact-tel .tel-time {
    margin-top: 0;
  }

  .thanks {
    padding-bottom: 60px;
  }

  .thanks-header {
    margin-bottom: 30px;
  }

  .thanks-message {
    margin-bottom: 40px;
  }

  .thanks-text {
    text-align: left;
    margin-bottom: 25px;
  }

  .thanks-contact {
    padding: 20px 3%;
  }
}
