body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
*:focus {
  outline: none;
}

.question {
  background: #E0D3B3;
}
.question.q2,
.question.q3,
.answer__after,
.enquete-finished-contents,
.enquete-finished-form {
  display: none;
}
.answer {
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
  padding: 5% 0 10%;
  text-align: center;
}
.answer__title {
  margin-bottom: 5%;
  font-size: min(20px);
  color: #ffffff;
}
.answer__title span {
  display: block;
  font-size: 0.5em;
  text-align: right;
}
.answer__item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  width: 100%;
  min-height: 40px;
  margin-bottom: 5%;
  padding: 5% 0;
  border-radius: 5px;
  font-size: 16px;
  color: #595959;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  transition: all 0.25s;
}
.answer__item.active {
  background-color: #89B499;
  color: #ffffff;
}
.answer__item:last-child {
  margin-bottom: 0;
}
.answer__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DD702D;
  width: 100%;
  min-height: 50px;
  margin-top: 13%;
  padding: 5% 0;
  border-radius: 100px;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 1px;
}
.answer__after {
  background: #ffffff;
}
.cta {
  display: block;
  width: 90%;
  margin: 5% auto;
}
.offer .cta {
  margin: 2.5% auto 0;
}
.video-outer {
  position: relative;
  margin-bottom: 10%;
  padding-top: 10%;
}
.video-outer video {
  display: block;
  width: 80%;
  margin: 0 auto 2.5%;
}
.video-outer p {
  font-size: min(4.1666666667vw, 40px);
  color: #595959;
  text-align: center;
}
.step-icon {
  position: absolute;
  top: 0;
  left: 5%;
  width: 25%;
}

.offer__annotation {
  width: 95%;
  margin: 0 auto;
}
.offer__annotation__btn {
  background: #474747;
  border: 1px solid #AFAFB0;
  padding: 1% 0;
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .offer__annotation__btn {
    font-size: 3.125vw;
  }
}
.offer__annotation__btn span {
  position: relative;
}
.offer__annotation__btn span::before,
.offer__annotation__btn span::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: -10%;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.offer__annotation__btn span::before {
  top: calc(50% + 2px);
  transform:translateY(-50%) rotate(90deg);
  transition: transform 0.25s linear;
}
@media screen and (max-width: 960px) {
  .offer__annotation__btn span::before,
  .offer__annotation__btn span::after {
    top: calc(50% + 0.1041666667vw);
    width: 2.08333333333vw;
    height: 0.2083333333vw;
  }
  .offer__annotation__btn span::before {
    top: calc(50% + 0.2083333333vw);
  }
}
.offer__annotation.active .offer__annotation__btn span::before {
  transform:translateY(-50%) rotate(0deg) !important;
}
.annotation-text {
  display: none;
  padding: 2.5%;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .annotation-text {
    font-size: 10px;
  }
}
.offer__annotation.active .annotation-text {
  display: block;
  animation: appear .5s ease;
}
@keyframes appear {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
