.register {
  position: fixed;
  bottom: 30px;
  right: 5%;
  z-index: 100;
}
.register a {
  background: #00bbcd;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: solid 5px white;
}
.register a:hover {
  transform: scale(1.03, 1.03);
}
.register a span {
  display: block;
  color: white;
  font-size: 19px;
  font-weight: 800;
  font-family: "Noto Sans JP", "MS PGothic", sans-serif;
  border-bottom: solid 2px white;
}

.register {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.register.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.question {
  margin-top: 100px;
  padding-bottom: 300px;
  position: relative;
}
.question h2 {
  font-family: "Noto Sans JP", "MS PGothic", sans-serif;
  font-size: 24px;
  text-align: center;
  margin-bottom: 80px;
}
.question .nav-buttons {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
.question .nav-buttons button {
  display: block;
  flex-wrap: wrap;
  width: 300px;
  border: solid 3px #00bbcd;
  border-radius: 25px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: white;
}
.question .nav-buttons button:hover {
  transform: scale(1.03, 1.03);
}
.question .nav-buttons button .question_content {
  display: flex;
  flex-direction: column;
}
.question .nav-buttons button .question_content p {
  margin: 30px 0px 10px 0;
  color: black;
}
.question .nav-buttons button .question_content .text {
  flex-grow: 1;
  font-size: 18px;
  font-family: "Noto Sans JP", "MS PGothic", sans-serif;
}
.question .nav-buttons button .question_content img {
  width: 217px;
  margin: 0 auto 20px auto;
}
.question .bg1 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 65%;
}

.comment {
  background-image: url("../../src/suggest/bg2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  padding: 120px 0;
}
.comment .comment_box {
  font-family: "Noto Sans JP", "MS PGothic", sans-serif;
  font-size: 36px;
  line-height: 230%;
}
.comment .comment_box span {
  background: #fce952;
  background: linear-gradient(90deg, #fce952, #fff6b2 100%);
  padding: 5px 10px;
  font-weight: 800;
}

.answers {
  margin: 100px auto 200px auto;
}

.scroll-section {
  width: 1000px;
  position: relative;
  max-width: calc(100% - 300px);
  margin: 50px auto;
  padding: 50px 50px 50px 150px;
  border: solid 3px #00bbcd;
  border-radius: 25px;
}
.scroll-section img {
  position: absolute;
  width: 225px;
  top: 50%;
  left: -112.5px;
  transform: translate(0, -50%);
  z-index: 2;
}
.scroll-section h2 {
  color: #00bbcd;
  font-size: 32px;
  font-family: "Noto Sans JP", "MS PGothic", sans-serif;
  margin-bottom: 10px;
  font-weight: 400;
}
.scroll-section .name {
  font-size: 18px;
  font-family: "Noto Sans JP", "MS PGothic", sans-serif;
}
.scroll-section p {
  font-size: 18px;
  font-family: "Noto Sans JP", "MS PGothic", sans-serif;
}
.scroll-section .answer_title {
  border-bottom: solid 2px #00bbcd;
  padding-bottom: 15px;
}

@media (max-width: 1200px) {
  .register a {
    width: 160px;
    height: 160px;
  }
  .register a span {
    font-size: 18px;
    border-bottom: solid 2px white;
  }
}
@media (max-width: 1000px) {
  .scroll-section {
    padding: 50px 50px 50px 100px;
  }
  .scroll-section img {
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 700px) {
  .register {
    left: 50%;
    right: auto;
    bottom: 30px;
    transform: translate(-50%, 0);
  }
  .register a {
    border-radius: 9999px;
    height: auto;
    width: 260px;
    max-width: 100%;
    padding: 17px 30px;
    border: solid 4px white;
  }
  .register a span {
    border-bottom: 0;
    font-size: 18px;
  }
  .question {
    margin-top: 50px;
    padding-bottom: 200px;
  }
  .question h2 {
    font-size: 18px;
    margin-bottom: 50px;
  }
  .question .nav-buttons button {
    width: 250px;
    max-width: 90%;
  }
  .question .nav-buttons button .question_content img {
    width: 180px;
    max-width: 90%;
  }
  .question .bg1 {
    width: 100%;
  }
  .comment {
    background-image: url("../../src/suggest/bg2_sp.webp");
  }
  .comment .comment_box {
    font-size: 24px;
  }
  .scroll-section {
    max-width: 90%;
    padding: 100px 5% 50px 5%;
    margin: 130px auto;
  }
  .scroll-section img {
    top: -75px;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, 0);
  }
  .scroll-section h2 {
    text-align: center;
    font-size: 24px;
  }
  .scroll-section .name {
    text-align: center;
  }
}
@media (max-width: 375px) {
  .comment .comment_box {
    font-size: 18px;
  }
}/*# sourceMappingURL=suggest.css.map */