@charset "UTF-8";
/* CSS Document */
#introduction {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #introduction {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 575px) {
  #introduction {
    margin-bottom: 0rem;
  }
}
#introduction p span {
  background-color: #D9383A;
  padding: 0.3rem 0.5rem;
  color: #fff;
  font-weight: bold;
  border-radius: 0.5rem;
}
@media screen and (max-width: 575px) {
  #introduction p {
    text-align: justify;
  }
}
#introduction dl {
  margin-top: 6rem;
}
@media screen and (max-width: 575px) {
  #introduction dl {
    margin-top: 3rem;
  }
}
#introduction dl dt {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 575px) {
  #introduction dl dt {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
#introduction dl dd {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  #introduction dl dd {
    display: block;
  }
}
#introduction dl dd a {
  font-weight: 600;
  color: #00A395;
}
#introduction dl dd a span {
  font-size: 38px;
  font-size: 3.8rem;
}
#introduction dl dd a span svg {
  margin-right: 1.5rem;
}

form#mail_form {
  padding-top: 2rem;
}
form#mail_form dl dt {
  margin-top: 0;
  padding-top: 0;
  font-weight: 600;
}
form#mail_form dl dt:first-child {
  border-top: none;
}
form#mail_form dl dt::before {
  display: inline-block;
  font-size: 90%;
  font-weight: normal;
  line-height: 1;
  margin-right: 1rem;
  padding: 0.4rem 0.5rem;
  border-radius: 3px;
}
form#mail_form dl dt.required::before {
  content: "必 須";
  color: #fff;
  background-color: #D9383A;
  border: 1px solid #D9383A;
}
form#mail_form dl dt.optional::before {
  content: "任 意";
  color: #808080;
  background-color: #fff;
  border: 1px solid #808080;
}
form#mail_form dl dd {
  margin-bottom: 4rem;
}
form#mail_form dl dd:nth-child(2) {
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}
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 input[type=text],
form#mail_form input[type=email],
form#mail_form input[type=tel],
form#mail_form textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #b2b2b2;
  border-radius: 3px;
  background: #efefef;
  -webkit-appearance: none;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 5px;
}
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 {
  border: 1px solid #b2b2b2;
  background-color: #efefef;
  outline: none;
}
form#mail_form input[type=radio],
form#mail_form input[type=checkbox] {
  margin-right: 5px;
  margin-left: 0;
  accent-color: #D9383A;
}
form#mail_form label {
  margin-right: 2em;
}
form#mail_form select {
  font-size: 100%;
  margin-top: 5px;
}
form#mail_form input#postal {
  width: 30%;
}
form#mail_form input#postal + a {
  display: inline-block;
  padding: 5px 15px;
  margin-left: 0.5rem;
  background: #FDEFF5;
  border: 1px solid #C7000B;
  border-radius: 3px;
  color: #C7000B;
  font-family: inherit;
  text-decoration: none;
  transition: 0.3s;
}
form#mail_form input#postal + a:hover {
  cursor: pointer;
  background: #C7000B;
  color: #fff;
}
form#mail_form p#form_submit {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0 10rem 0;
}
form#mail_form #form_submit {
  display: flex;
  justify-content: center;
}
form#mail_form #form_submit_button {
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.06em;
  padding: 1.4rem 6rem 1.4rem 2.5rem;
  vertical-align: middle;
  line-height: 1;
  border: 1px solid #333333;
  background-color: #333333;
  color: #fff;
  -webkit-appearance: none;
  transition: 0.3s;
  /* 矢印 */
  background-image: url(../../img/link-arrow.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: right 20px center, left top;
  background-size: 20px 17px, 100% 100%;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 575px) {
  form#mail_form #form_submit_button {
    letter-spacing: 0;
  }
}
form#mail_form #form_submit_button:hover {
  background-color: #00A395;
  border: 1px solid #00A395;
}
form#mail_form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #efefef inset;
}
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: -25px;
  margin-left: -25px;
}
@keyframes load-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.privacy-policy {
  border: 1px solid #c3c3c3;
  padding: 2.5rem;
  margin-top: 2rem;
  background-color: #fff;
}
.privacy-policy h4 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.privacy-policy p {
  text-align: justify;
}

.thanks-box {
  padding-bottom: 10rem;
}
.thanks-box h3 {
  font-size: 2.5rem;
  font-size: 25px;
  margin-bottom: 4rem;
  padding: 0;
  border: none;
  margin-top: 4rem;
}
.thanks-box p {
  margin-bottom: 5rem;
}
.thanks-box a {
  display: inline-block;
  font-weight: bold;
  padding: 1.4rem 6rem;
  vertical-align: middle;
  line-height: 1;
  border: 1px solid #D9383A;
  background: #D9383A;
  color: #fff;
  -webkit-appearance: none;
  transition: 0.3s;
}
.thanks-box a:hover {
  color: #D9383A;
  background-color: #fff;
}/*# sourceMappingURL=contact.css.map */