@charset "utf-8";

body {
  font-family: "Noto Serif JP", serif;
  margin: 0;
}
p {
  margin: 0;
}
#main {
  width: 700px;
  margin: 0 auto;
}
img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.question_box {
  max-width: 670px;
  border-radius: 6px;
  margin: 40px auto 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.question_text {
  width: 430px;
  margin: 0 auto;
  padding: 14px 0 36px;
}

.txt_hide {
  display: none;
}

.btn_area {
  display: flex;
  justify-content: space-evenly;
  padding: 28px 0 60px;
}
.btn_area a {
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.5);
}
.btn_yes,
.btn_no {
  display: inline-block;
  text-decoration: none;
  width: 280px;
  color: #ffffff;
  font-size: 40px;
  text-align: center;
  border-radius: 6px;
  padding: 38px 4px;
  vertical-align: middle;
}
.btn_yes {
  background: #eb940c;
}
.btn_no {
  background: #2b6bd1;
}
.btn_yes:hover,
.btn_no:hover {
  opacity: 1;
}

.choose {
  padding: 50px 40px;
}
.choose p {
  position: relative;
  text-decoration: none;
  background-color: #eb940c;
  color: #ffffff;
  font-size: 32px;
  text-align: left;
  border-radius: 6px;
  padding: 20px 30px 20px 40px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.5);
}
.choose p:not(:last-child) {
  margin-bottom: 24px;
}
.choose a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  width: 450px;
}
.choose a::after {
  content: url("../../images/questionnaire/dropright.png");
  width: 26px;
  height: 26px;
  position: absolute;
  right: 5%;
}
.choose p:nth-child(3) a::after,
.choose p:nth-child(5) a::after {
  top: 34%;
}

@media screen and (max-width: 600px) {
  #main {
    width: 100%;
  }
  .question_box {
    width: 86%;
  }
  .question_text {
    width: 68%;
    padding: 6px 0 26px;
  }
  .btn_area {
    padding: 18px 0 30px;
  }
  .btn_area a {
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.5);
  }
  .btn_yes,
  .btn_no {
    width: 130px;
    font-size: 22px;
    padding: 14px 4px;
  }
  .choose {
    width: 90%;
    margin: 0 auto;
    padding: 18px 0 30px;
  }
  .choose p {
    font-size: 18px;
    padding: 14px 16px 14px 16px;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.5);
  }
  .choose p:not(:last-child) {
    margin-bottom: 14px;
  }
  .choose a {
    width: 82%;
  }
  .choose a::after {
    width: 16px;
    height: 16px;
    right: 7%;
    top: 36%;
  }
  .choose p:nth-child(3) a::after,
  .choose p:nth-child(5) a::after {
    top: 34%;
  }
  .choose p:nth-child(4) a::after {
    top: 29%;
  }
}
