@charset "UTF-8";

.front-title,
.section-title {
  padding-top: 10rem;
}
input[type='text'],
input[type='email'],
input[type='tel'],
textarea {
  border: 1px solid var(--gray1);
  padding: 0.5rem;
  width: 100%;
}
input[type='text']::placeholder,
input[type='email']::placeholder,
input[type='tel']::placeholder,
textarea::placeholder {
  color: var(--sub-color);
}
textarea {
  height: 12rem;
}
label {
  display: block;
  margin-bottom: 1rem;
}
input[type='radio'] {
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}
input[type='radio'] + span::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--gray1);
  margin: -0.125rem 0.5rem 0 0;
  vertical-align: middle;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: 1.5;
}
input[type='radio']:checked + span::before {
  content: '\f111';
  color: var(--gray1);
}
.section-btn {
  font-family: 'Noto Serif JP', serif;
  margin: 3rem auto 0;
}
input[type='submit'] {
  display: inline-block;
  padding: 0 4.5rem;
}
@media (min-width: 600px) {
  label {
    display: inline-block;
    margin: 0 1.5rem 0 0;
  }
  .inquiry-type {
    display: flex;
    flex-direction: column;
    border-top: dotted 2px var(--main-color);
  }
  .inquiry-type label {
    margin-bottom: 0.5rem;
  }
  input[type='radio'] + span::before {
    padding: 0 3.4px;
  }
  .section-btn {
    margin-top: 6rem;
  }
}
