@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* contact */
/* ============================================ */
.online {
  margin-top: 60px;
  padding: 50px 30px;
  border-radius: 40px;
  background: #ecf2f7;
  font-size: 1.8rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .online {
    margin-top: 40px;
    padding: 20px 20px 30px;
    border-radius: 20px;
    font-size: 1.3rem;
  }
}
.online dl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.online .btn {
  margin-top: 40px;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .online .btn {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}

.form {
  margin-top: 70px;
}
@media all and (max-width: 896px) {
  .form {
    margin-top: 30px;
  }
}
.form > p {
  text-align: center;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .form > p {
    line-height: 1.75;
  }
}
.form .box {
  padding: 40px;
  border-radius: 40px;
  background: #ecf2f7;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .form .box {
    padding: 0px 20px 20px;
    border-radius: 20px;
    font-size: 1.3rem;
  }
}
@media all and (max-width: 896px) {
  .form .box table {
    display: block;
  }
  .form .box table tbody, .form .box table tr {
    display: block;
  }
}
.form .box table th {
  width: 14em;
  padding-block: 20px 10px;
}
@media all and (max-width: 896px) {
  .form .box table th {
    display: block;
    width: 100%;
  }
}
.form .box table th span {
  margin-left: 0.2em;
  color: #a89981;
}
.form .box table td {
  padding-block: 10px;
}
@media all and (max-width: 896px) {
  .form .box table td {
    display: block;
    width: 100%;
    padding-block: 0;
  }
}
.form .box table td .value {
  display: flex;
  padding: 10px 20px;
  border-radius: 4px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .form .box table td .value {
    padding-inline: 12px;
  }
}
.form .box table td .value:has(label + label + label) {
  flex-direction: column;
  gap: 10px;
  padding-block: 13px 18px;
}
@media all and (max-width: 896px) {
  .form .box table td .value:has(label + label + label) {
    padding-bottom: 20px;
  }
}
.form .box table td input[type=text], .form .box table td input[type=tel], .form .box table td input[type=email], .form .box table td select, .form .box table td textarea {
  padding: 10px;
  border-radius: 4px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .form .box table td input[type=text], .form .box table td input[type=tel], .form .box table td input[type=email], .form .box table td select, .form .box table td textarea {
    font-size: 1.6rem;
  }
}
.form .box table td input[type=text], .form .box table td input[type=email], .form .box table td textarea {
  width: 100%;
}
@media all and (max-width: 896px) {
  .form .box table td input[type=tel] {
    width: 90px;
  }
}
.form .box table td .pref {
  margin-left: 7px;
}
@media all and (max-width: 896px) {
  .form .box table td .pref {
    margin: 10px 0 0;
  }
}
.form .box table td .note {
  margin-top: 10px;
  font-size: 1.4rem;
}
.form .box table td .note li {
  margin-left: 1em;
  text-indent: -1em;
  font-size: 1rem;
}
.form .box table td .note li::before {
  content: "※";
}
.form .privacy {
  max-width: 600px;
  margin: 50px auto 0;
}
@media all and (max-width: 896px) {
  .form .privacy {
    margin-block: 30px 10px;
  }
}
.form .privacy .acd-label {
  display: block;
  position: relative;
  padding: 20px 10px;
  border-top: 4px double #4179af;
  border-bottom: 4px double #4179af;
  text-align: center;
  font-size: 1.8rem;
  cursor: pointer;
}
@media all and (max-width: 896px) {
  .form .privacy .acd-label {
    padding-block: 10px;
    font-size: 1.4rem;
  }
}
.form .privacy .acd-label::before, .form .privacy .acd-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 20px;
  height: 1px;
  background: #4179af;
  transition: 0.3s;
}
.form .privacy .acd-label::after {
  transform: translateY(-50%) rotate(-90deg);
}
.form .privacy .acd-content {
  height: 0;
  opacity: 0;
  padding: 0 20px;
  transition: 0.3s;
  visibility: hidden;
}
@media all and (max-width: 896px) {
  .form .privacy .acd-content {
    padding: 0;
  }
}
.form .privacy .acd-content h3 {
  margin-block: 40px 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #4179af;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .form .privacy .acd-content h3 {
    margin-block: 20px 10px;
    padding-bottom: 5px;
    font-size: 1.6rem;
  }
}
.form .privacy .acd-content h3:first-child {
  margin-top: 0;
}
.form .privacy .acd-content ol {
  margin-top: 5px;
}
.form .privacy .acd-content ol li {
  position: relative;
  padding-left: 30px;
  counter-increment: cnt;
}
@media all and (max-width: 896px) {
  .form .privacy .acd-content ol li {
    padding-left: 24px;
  }
}
.form .privacy .acd-content ol li::before {
  content: "(" counter(cnt) ")";
  position: absolute;
  left: 0;
}
.form .privacy .acd-check {
  display: none;
}
.form .privacy .acd-check:checked + .acd-label:after {
  transform: translateY(-50%);
}
.form .privacy .acd-check:checked + .acd-label + .acd-content {
  height: 250px;
  opacity: 1;
  padding: 40px 20px;
  visibility: visible;
  overflow: auto;
}
@media all and (max-width: 896px) {
  .form .privacy .acd-check:checked + .acd-label + .acd-content {
    padding: 20px 0;
  }
}
.form .submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media all and (max-width: 896px) {
  .form .submit {
    gap: 15px;
  }
}
.form .submit .btn {
  justify-content: center;
  padding-inline: 40px;
  text-align: center;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .form .submit .btn {
    margin-top: 16px;
    padding-inline: 20px;
    font-size: 1.4rem;
  }
}
.form .submit .btn::after {
  content: none;
}
.form .submit .btn.back {
  border: 2px solid #363628;
  background: none;
  color: #363628;
  cursor: pointer;
}
@media (hover: hover) {
  .form .submit .btn.back:hover {
    border-color: #4179af;
    color: #4179af;
  }
}

.recaptcha {
  margin-top: 40px;
  text-align: center;
}
@media all and (max-width: 896px) {
  .recaptcha {
    margin-top: 30px;
  }
}

.totop {
  display: flex;
  justify-content: center;
}
.totop .btn {
  justify-content: center;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .totop .btn {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=contact.css.map */
