@charset "UTF-8";
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: url("qBg.jpg") repeat #fcee21;
  -webkit-animation: bgroop 100s linear infinite;
  animation: bgroop 100s linear infinite;
  font-size: 0.7rem;
}
.tnone {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
@-webkit-keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -2000px;
  }
}
@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -2000px;
  }
}
.act {
  animation: cachan 1s steps(1) infinite;
}
@keyframes cachan {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
h2 {
  font-size: 8rem;
  color: #fcee21;
  font-weight: 900;
}
li {
  list-style: none;
}
a:hover {
  text-decoration: none;
}
p {
  font-weight: bold;
  font-size: 1.5em;
}
.pen {
  pointer-events: none;
}
a {
  transition: 0.1s;
}
a img:hover {
  transform: scale(1.02);
}
.anno {
  font-size: 1.0rem;
}
.note {
  font-size: 1.0rem;
}
.text-black {
  color: #000000;
}
.w-90 {
  width: 90%;
}
.w-20 {
  width: 20%;
}
.qbox {
  padding: 2em 1em;
  margin: 2em 0;
  font-weight: bold;
  color: #303030; /*文字色*/
  background: #FFF;
  border: solid 3px #000; /*線*/
  border-radius: 10px; /*角の丸み*/
  display: flex;
  flex-wrap: wrap;
  transition: 0.1s;
}
.qbox:hover {
  box-shadow: 0px 8px orange;
}
#abox {
  background-color: #000;
}
.bg-y {
  background-color: #fcee21;
}
.btn-b {
  color: #fcee21;
  background-color: #000;
  border-color: #fcee21;
  font-size: 1.2rem;
  font-weight: bold;
}
.btn-b:hover {
  color: #ffd500;
  background-color: #000;
  border-color: #ffd500
}
.btn-y {
  color: #000;
  background-color: #fcee21;
  border-color: #fcee21;
  font-size: 1.2rem;
  font-weight: bold;
}
.btn-y:hover {
  color: #000;
  background-color: #ffd500;
  border-color: #fcee21
}
.btn-y-o {
  color: #fcee21;
  background-color: #000;
  border-color: #fcee21;
  font-size: 1.2rem;
  font-weight: bold;
}
.btn-y-o:hover {
  color: #000;
  background-color: #ffd500;
  border-color: #fcee21
}
fieldset {
  padding: 0;
  margin: 0;
}
h1 {
  margin: 0;
  line-height: 1.2;
}
h6 {
  font-weight: 400;
  padding: 6px 10px;
  margin: 5px 0;
  position: relative;
  font-size: 90%;
  color: #000;
  background-color: #fff;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 2em;
  line-height: 1;
}
.answer {
  font-weight: bold;
  color: red;
}
.radio-inline__input {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.radio-inline__label {
  display: inline-block;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  margin-right: 18px;
  border-radius: 3px;
  transition: all .1s;
}
.ac {
  transition: .1s;
}
.ac:hover {
  transform: scale(1.1);
}
.radio-inline__input + .radio-inline__label {
  outline-color: #dedede;
  outline-offset: -2px;
  outline-style: solid;
  outline-width: 1px;
}
.radio-inline__input:checked + .radio-inline__label {
  outline-color: #000;
  outline-width: 2px;
  background: #fcee21;
  color: #000;
}
.radio-inline__input:focus + .radio-inline__label {
  outline-color: #000;
  outline-offset: -2px;
  outline-style: solid;
  outline-width: 2px;
}