@charset "utf-8";

.data-area {
  display: none;
}

.question-area {
  position: relative;
}

.question-area .question-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 354px;
  height: 66px;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #000;
  border-radius: 33px;
  margin-left: 0 !important;
}

.question-area .question-txt {
  width: 100%;
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.question-area .btn-wrap {
  position: absolute;
  top: 186px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.question-area .btn-wrap .yes-btn ,
.question-area .btn-wrap .no-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 150px;
  height: 66px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  font-feature-settings: "palt";
  line-height: 1;
  text-align: center;
}
.question-area .btn-wrap .yes-btn {
  background-color: #cb6a9e;
}
.question-area .btn-wrap .no-btn {
  background-color: #449e90;
  margin-left: 60px;
}
.reset-txt {
  position: absolute;
  width: 150px;
  top: 314px;
  left: 50%;
  transform: translateX(-50%);
}
.reset-txt a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c8ea7;
  font-size: 1.6rem;
  line-height: 2;
  border-bottom: 1px solid #4c8ea7;
  text-decoration: none;
}
.reset-txt a span {
  font-size: 1rem;
  display: inline-block;
  margin-right: 8px;
}
/*==========================================================================================================
 SP Only
==========================================================================================================*/
@media screen and (max-width: 767px){
  .question-area .question-ttl {
    width: 177px;
    height: 33px;
    top: -16px;
    font-size: 1.5rem;
    border-radius: 16px;
  }

  .question-area .question-txt {
    top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    font-size: 1.8rem;
  }
  .question-area .btn-wrap {
    top: 120px;
  }

  .question-area .btn-wrap .yes-btn ,
  .question-area .btn-wrap .no-btn{
    width: 112px;
    height: 33px;
    font-size: 1.2rem;
  }
  .question-area .btn-wrap .no-btn {
    margin-left: 30px;
  }
  .reset-txt {
    position: absolute;
    width: 132px;
    top: 198px;
  }
  .reset-txt a {
    font-size: 1.4rem;
  }
}