/* =======================================================
* contact
* ======================================================= */
.bgArea {
  background: #f0f0f0;
  padding: 20px 80px 60px;
  border-radius: 5px;
}

form {
  max-width: 900px;
  margin: 50px auto;
}

label {
  display: block;
  margin: 35px auto 10px;
}

label small {
  font-size: 11px;
}

small {
  color: #888;
}

input,
select {
  vertical-align: text-top;
  font-size: 30px;
  margin: 3px;
}

input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
input[type="zipcode"],
input[type="date"],
input[type="city"],
input[type="address"],
select,
textarea {
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  outline: none;
  height: 5.5rem;
  line-height: 1.8;
  background: #fff;
  font-size: 1.5rem;
  padding-left: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo, sans-serif;
}

input[type="zipcode"] {
  width: 40%;
}

textarea {
  height: 300px;
  padding: 10px;
}
hr {
  margin: 50px 0;
}

/* radioBtn */
.radioBtn {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
  display: inline;
  font-weight: normal;
  margin-right: 15px;
}

.radioBtn::before,
.radioBtn::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.radioBtn::before {
  background-color: #fff;
  border: 1px solid #555;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  left: 5px;
}

.radioBtn::after {
  background-color: var(--color-red);
  border-radius: 50%;
  opacity: 0;
  width: 11px;
  height: 11px;
  left: 7px;
}

input:checked+.radioBtn::after {
  opacity: 1;
}

.checkbox {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

form sup {
  background-color: var(--color-red);
  color: #fff;
  font-size: 10px;
  margin-left: 4px;
  padding: 1px 5px;
  border-radius: 5px;
  vertical-align: text-top;
}

form sup.any {
  background-color: #555;
}

button {
  background: var(--color-red);
  color: #fff;
  padding: 15px 70px;
  border-radius: 10px;
  letter-spacing: .2em;
  font-size: 1.4rem;
  border: 1px solid var(--color-red);
  font-weight: bold;
}

button:hover {
  background: #fff;
  color: var(--color-red);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width:768px) {
  .bgArea {
    padding: 10px 15px 60px;
  }
  .w30 {
    width: 30%;
  }

  .radioBtn {
    display: block;
    margin: 10px 0;
  }
}