@charset "utf-8";

.entry-form_form-box {
  position: relative;
  margin: 0px auto 0;
  padding: 1.5em 1em 2em 1em;
  max-width: 48em;
  background-color: white;
  border: #f2a000 0px solid;
  border-radius: 1.5em;
  text-align: center;
}

.entry-form_title {
  margin-bottom: 8px;
  color: #e66700;
  font-weight: 800;
  font-size: 1.75em;
  letter-spacing: .03em;
}

.entry-form_title span {
  margin-right: 0.6rem;
  padding: 0.2rem 0.8rem;
  border-radius: 0.2em;
  background: #e66700;
  color: #ffffff;
}

.entry-form_question-title {
  margin-bottom: 1.5em !important;
}

.entry-form_question-title-text {
  font-size: 1.3em;
}

.entry-form_radio-item-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2em;
}

.entry-form_radio-item {
  margin: 0 0.25em 0 0.25em;
  position: relative;
  width: 14em;
  height: 6em;
}

.entry-form_radio-label {
  font-size: 1.1em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: #d1d5db 0.15em solid;
  border-radius: 0.4em;
  color: #5b7280;
  font-weight: bold;
  cursor: pointer;
  line-height: 1.2;
}

.entry-form_radio-label-annotation {
  position: absolute;
  bottom: 1.4em;
  font-size: 0.6em;
  font-weight: normal;
  letter-spacing: -1px;
}

#entry-form_current0 {
  display: none;
}

#entry-form_current1 {
  display: none;
}

#entry-form_current0:checked+.entry-form_radio-label {
  color: #e66700;
  border-color: #e66700;
  background-color: #FFE9E1;
}

#entry-form_current1:checked+.entry-form_radio-label {
  color: #e66700;
  border-color: #e66700;
  background-color: #FFE9E1;
}

.entry-form_question-next-button {
  font-size: 1.2em;
  padding: 0.7em 3.2em 0.7em 3em;
  border: none;
  border-radius: 9999em;
  color: #ffffff;
  font-weight: bold;
  background-color: #ee0022;
  background-image: url(../images/entry-form_arrow.svg);
  background-position: right 2.4em center;
  background-repeat: no-repeat;
  background-size: auto 30%;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

  &:hover {
    background-color: #ff6677;
    box-shadow: 0 0 #0000;
  }
}

.entry-form_question-start-button-wrapper {
  position: relative;
  margin: 9.5em auto 0;
  padding: 0 1em 2em 1em;
  max-width: 48em;
  text-align: center;
}

.entry-form_question-start-button {
  font-size: 1.2em;
  padding: 1em 4em 1em 3.6em;
  border: none;
  border-radius: 9999em;
  color: #ffffff;
  font-weight: bold;
  background-color: #ee0022;
  background-image: url(../images/entry-form_arrow.svg);
  background-position: right 3.2em center;
  background-repeat: no-repeat;
  background-size: auto 25%;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

  &:hover {
    background-color: #ff6677;
    box-shadow: 0 0 #0000;
  }
}

