*,
*::after,
*::before {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #333;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

body {
  background-color: rgb(214, 211, 211);
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  max-width: 1000px;
  min-width: 375px;
  margin: 0 auto;
}

.container {
  margin-top: 0.8rem;
}

.header {
  background-color: rgb(255, 169, 40);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
}
.header .container img {
  display: inline-block;
  width: 100px;
  height: auto;
}
.header .container h1 {
  font-size: 3rem;
}
.header .container h1 span {
  font-size: 2.4rem;
}
.header .container p {
  font-size: 2.4rem;
  color: rgb(228, 65, 0);
  text-shadow: 3px 3px 10px #fff;
}

.footer {
  text-align: center;
  background-color: rgb(212, 208, 208);
}
.footer img {
  width: 150px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  margin: 0 auto;
}
.footer small {
  display: block;
  padding-bottom: 1rem;
}

.nav {
  background-color: rgb(170, 228, 201);
}
.nav .container ul {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.nav .container ul li {
  width: 7em;
  height: 100%;
  border-left: 1px solid #999;
  border-right: 1px solid #999;
}
.nav .container ul li a {
  color: rgb(255, 136, 0);
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0.5rem;
}
.nav .container ul li a span {
  color: #333;
  font-size: 1.4rem;
}

.greeting {
  background-color: rgb(244, 243, 229);
  margin: 1rem 2rem;
  border: 1px solid #666;
  border-radius: 5px;
}
.greeting .container {
  padding: 0 2rem 1rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
.greeting .container span {
  font-size: 1.4rem;
  color: #999;
}

.header .container {
  padding: 0.5em;
}

.quiz_wrapper {
  font-size: 2.5rem;
  width: 95%;
  margin: 0 auto;
  background-color: rgb(248, 249, 249);
  padding: 0.5em 0;
}
.quiz_wrapper button {
  display: block;
}

.syutudai_container {
  width: 90%;
  height: 35vh;
  margin: 0 auto;
  padding: 0.5em;
  background-color: rgb(237, 241, 191);
  position: relative;
}
.syutudai_container img {
  display: block;
  height: 50%;
  margin: 1em auto;
}
.syutudai_container button {
  font-size: 2rem;
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
}
.syutudai_container .onemoreButton {
  display: block;
  background-color: #fff;
  border: 1px solid #333;
  padding: 0.5em 0.2em;
  border-radius: 5px;
  font-size: 2rem;
  position: absolute;
  bottom: 5em;
  left: 50%;
  transform: translateX(-50%);
}
.syutudai_container .onemoreButton.block {
  display: block;
}
.select_container {
  position: relative;
}
.select_container ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 1em 0;
  text-align: center;
}
.select_container ul li {
  width: 27%;
  color: #fff;
  background-color: rgb(227, 149, 4);
  padding: 0.5em;
  border-radius: 5px;
}

.judge_area {
  width: 90%;
  height: 20vh;
  margin: 0 auto;
  padding: 0.5em 1em;
  background-color: rgb(237, 241, 191);
  position: relative;
}
.judge_area button {
  font-size: 2rem;
  position: absolute;
  bottom: 2.5em;
  left: 50%;
  transform: translateX(-50%);
}
.judge_area button.block {
  display: block;
}
.judge_area button.none {
  display: none;
}

.button_filter {
  width: 100vw;
  height: 100%;
  background-color: rgba(22, 21, 20, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.button_filter.block {
  display: block;
}
.button_filter.none {
  display: none;
}/*# sourceMappingURL=quiz.css.map */