@charset "UTF-8";
* {
  font-family: "noto sans JP", "ヒラギノ角ゴシック ProN", ヒラギノ角ゴシック, Meiryo, "MS Pゴシック", sans-serif;
  margin: 0;
  letter-spacing: .06em;
  box-sizing: border-box;
  border: 0;
  line-height: 1.5;
}
body {
  margin: 2px;
}
form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.group {
  margin-bottom:28px;
}
.label {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .label {
    font-size: 14px;
  }
}
.label::after {
  content: "必須";
  margin: 1px 0 0 4px;
  padding: 1px 8px 2px;
  font-size: 11px;
  border-radius: 100vh;
  color: #fff;
  background-color: #ee3e3e;
}
.input,.select,.textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 6px;
  outline: 1px solid #e2e2e2;
  transition: all 100ms;
}
.input:hover,.select:hover,.textarea:hover {
  outline: 1px solid #ee3e3e;
  transition: all 100ms;
}
.input:focus,.select:focus,.textarea:focus {
  outline: 2px solid #ee3e3e;
}
::placeholder {
  color: #acacac;
}
.selectWrap {
  position: relative;
  width: 100%;
}
.selectWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-left: 2px solid #ee3e3e;
  border-bottom: 2px solid #ee3e3e;
  transform: rotate(-45deg) translateY(-50%);
}
.select {
  appearance: none;
}
select:invalid,select option:first-child {
  color: #acacac;
}
.textarea {
  resize: vertical;
}
.checkboxWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.checkbox {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}
.consent {
  margin: 0 0 2px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .consent {
    font-size: 12px;
  }
}
.link {
  color: #ee3e3e;
}
.link:hover {
  text-decoration: none;
}
.buttonArea {
  text-align: center;
}
.button {
  width: 280px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border: 2px solid #ee3e3e;
  border-radius: 100vh;;
  color: #fff;
  background: #ee3e3e;
  transition: all 200ms;
  cursor: pointer;
}
.button:hover {
  border: 2px solid #ee3e3e;
  color: #ee3e3e;
  background: #fff;
  transition: all 200ms;
}

@media (max-width: 480px) {
  .button {
    max-width: 100%;
  }
}