@charset "UTF-8";
.header {
  background-color: #ffffff;
  margin-bottom: 80px;
}
@media screen and (min-width: 1025px) {
  .header {
    margin-bottom: 135px;
  }
}

.sect-contact {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 100px;
}
.sect-contact__inner {
  padding: 0 24px;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .sect-contact__inner {
    max-width: 640px;
  }
}
.sect-contact__form {
  padding-top: 40px;
}
.sect-contact__form__rows-container {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .sect-contact__form__rows-container {
    margin-bottom: 64px;
  }
}
.sect-contact__form__row {
  margin-bottom: 40px;
}
.sect-contact__form__row:last-child {
  margin-bottom: 0;
}
.sect-contact__form__row .th {
  margin-bottom: 16px;
}
.sect-contact__form__row .th label {
  line-height: 1;
  font-weight: 700;
}
.sect-contact__form__row .td input[type=email],
.sect-contact__form__row .td input[type=text],
.sect-contact__form__row .td input[type=tel],
.sect-contact__form__row .td textarea {
  -webkit-appearance: none;
  border-radius: 0;
  border: solid 1px #555555;
  padding: 4px;
  font-size: 1.4rem;
}
.sect-contact__form__row .td input[type=email],
.sect-contact__form__row .td input[type=text],
.sect-contact__form__row .td textarea {
  width: 100%;
}
.sect-contact__form__row .td input[type=email],
.sect-contact__form__row .td input[type=text],
.sect-contact__form__row .td input[type=tel] {
  height: 32px;
}
.sect-contact__form__row .td textarea {
  resize: none;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 1.4rem;
}
.sect-contact__form__row .td textarea#form_message {
  height: calc(6 * 1.5em + 4px* 2);
}
.sect-contact__form__row .td textarea#form_details {
  height: calc(12 * 1.5em + 4px* 2);
}
.sect-contact__form__row .td.td--one-row {
  display: flex;
  align-items: center;
  line-height: 1;
}
.sect-contact__form__row.is-required .th label::after {
  content: "*";
  color: #ff5c41;
}
.sect-contact__form .form_submit {
  color: #fff;
  background-color: #000;
  border: none;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 0;
  line-height: 40px;
  text-align: center;
  line-height: 1.5;
  padding: 1em 2em;
  max-width: 400px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  text-decoration: none;
}
.sect-contact__form .form_submit:hover {
  opacity: 0.8;
}
.sect-contact__form .form_submit .small {
  font-weight: 400;
  font-size: 1.2rem;
}

.custom-radio {
  display: block;
  margin-right: 32px;
  font-size: 1.6rem;
  vertical-align: middle;
}
.custom-radio input[type=radio] {
  display: none;
}
.custom-radio input[type=radio]:checked ~ span::after {
  content: "";
  display: block;
  width: calc(16px * 0.5);
  height: calc(16px * 0.5);
  background-color: #333333;
  border-radius: 100px;
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  margin: auto;
  left: calc(16px * 0.25);
}
.custom-radio span {
  padding-left: calc(16px + 12px);
  display: block;
  position: relative;
}
.custom-radio span::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: solid 1px #707070;
  border-radius: 100px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.custom-select {
  position: relative;
  display: flex;
  height: 32px;
  border: solid 1px #555555;
  justify-content: center;
  align-items: center;
  padding-left: 4px;
  background-color: #fff;
}
.custom-select.days {
  width: 176px;
  margin-right: 16px;
}
.custom-select.hours {
  width: 72px;
  padding-left: 12px;
}
.custom-select select {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  display: inline-block;
  width: 100%;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select select::-ms-expand {
  display: none;
}
.custom-select::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: solid 2px #555555;
  border-left: solid 2px #555555;
  transform: rotate(225deg);
  right: 8px;
  top: 10px;
}

.msgbox {
  font-family: sans-serif;
  background-color: #fff;
  color: #333333;
  border-radius: 8px;
  padding: 16px;
  width: calc(100vw - 24px* 2);
  min-height: 300px;
  max-height: 85vh;
}
@media screen and (min-width: 1025px) {
  .msgbox {
    width: 640px;
  }
}
.msgbox__inner {
  margin-bottom: 40px;
  max-height: calc(85vh - 160px);
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.msgbox__inner::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.msgbox h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}
.msgbox p {
  margin-bottom: 16px;
}
.msgbox .submit-item-name {
  font-size: 1.4rem;
  font-weight: 700;
}

.btn-cancel-in-msgbox {
  background-color: transparent;
  color: #333333;
  border: solid 1px #333333;
}
/*# sourceMappingURL=contact.css.map */