@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/*Initial Setting*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,900&display=swap&subset=japanese");
/* line 7, ../sass/screen.scss */
* {
  box-sizing: border-box;
}

/* line 13, ../sass/screen.scss */
html {
  font-size: 62.5%;
}

/* line 17, ../sass/screen.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  margin: 0;
}

/* line 27, ../sass/screen.scss */
p {
  margin: 0;
}

/* line 31, ../sass/screen.scss */
a {
  text-decoration: none;
  outline: none;
}

/* line 36, ../sass/screen.scss */
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/* line 41, ../sass/screen.scss */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4em;
  background-image: url("../img/bg.png");
  background-size: cover;
}

/* line 54, ../sass/screen.scss */
input[type="button"],
input[type="submit"],
input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

/* line 67, ../sass/screen.scss */
input[type='button'] {
  cursor: pointer;
}

/*frame setting*/
/* line 72, ../sass/screen.scss */
.scene {
  display: none;
  justify-content: center;
  align-items: center;
  width: 95%;
  max-width: 800px;
}

/* line 80, ../sass/screen.scss */
.quiz-scene {
  display: flex;
  justify-content: center;
}

/*maintitle Image*/
/* line 86, ../sass/screen.scss */
.main-title {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* line 92, ../sass/screen.scss */
.main-title-img {
  display: flex;
  justify-content: center;
  width: 90%;
}
/* line 96, ../sass/screen.scss */
.main-title-img img {
  max-width: 100%;
  height: 20vh;
}

/*team name display settings*/
/* line 103, ../sass/screen.scss */
.team-name-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

/* line 110, ../sass/screen.scss */
.team-name-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #066CFF;
  border-radius: 10px;
  border: solid 3px black;
  position: relative;
  width: 130px;
  height: 130px;
}
/* line 120, ../sass/screen.scss */
.team-name-frame::after {
  content: "";
  border: solid 3px white;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
/* line 130, ../sass/screen.scss */
.team-name-frame img {
  width: 40%;
}
/* line 133, ../sass/screen.scss */
.team-name-frame p {
  font-size: 8rem;
  font-weight: 900;
  color: white;
  position: relative;
  top: -3%;
}

/* line 142, ../sass/screen.scss */
.team-name-img {
  width: 40%;
  margin-right: 10px;
}
/* line 145, ../sass/screen.scss */
.team-name-img img {
  width: 100%;
  vertical-align: bottom;
}

/*input & submit area*/
/* line 152, ../sass/screen.scss */
.main-ans-form {
  display: flex;
  text-align: center;
}
/* line 155, ../sass/screen.scss */
.main-ans-form input {
  width: 70%;
  height: auto;
}

/* line 161, ../sass/screen.scss */
.ans-field {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  height: 250px;
  border: solid white 5px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
/* line 172, ../sass/screen.scss */
.ans-field p {
  font-weight: 900;
  font-size: 2rem;
  color: #E0140F;
}
/* line 177, ../sass/screen.scss */
.ans-field input {
  text-align: center;
  font-weight: 900;
  border: solid 4px #222222;
  border-radius: 10px;
  width: 90%;
  height: 80px;
  font-size: 2.7rem;
}

/* line 189, ../sass/screen.scss */
.rainbow-frame img {
  width: 100%;
  height: 35px;
  vertical-align: bottom;
}

/* line 196, ../sass/screen.scss */
.note, .timeout-note {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #3b3b3b;
  border-radius: 5px;
  border: solid 3px black;
  position: relative;
  margin-bottom: 20px;
}
/* line 205, ../sass/screen.scss */
.note::after, .timeout-note::after {
  content: "";
  border: solid 3px white;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
/* line 215, ../sass/screen.scss */
.note p, .timeout-note p {
  color: white;
  text-align: center;
  font-weight: 900;
}

/* line 223, ../sass/screen.scss */
.note p {
  font-size: 3rem;
  margin: 30px auto;
}

/* line 229, ../sass/screen.scss */
.timeout-note {
  padding: 30px;
}
/* line 231, ../sass/screen.scss */
.timeout-note p {
  font-size: 2rem;
}

/* line 236, ../sass/screen.scss */
.login-centering {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* line 243, ../sass/screen.scss */
.login-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background-color: #cdffec;
  border-radius: 5px;
  border: solid 3px black;
  position: relative;
  margin-bottom: 20px;
  padding: 30px;
}
/* line 254, ../sass/screen.scss */
.login-wrapper::after {
  content: "";
  border: solid 3px white;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
/* line 264, ../sass/screen.scss */
.login-wrapper h2 {
  font-size: 3rem;
  font-weight: 900;
}
/* line 268, ../sass/screen.scss */
.login-wrapper input {
  background-color: #E0140F;
  font-size: 4rem;
  padding: 5px 20px;
  margin-top: 20px;
  color: white;
  border-radius: 10px;
  font-weight: 900;
  border-bottom: solid #850200 5px;
}

/*ranking design*/
/* line 281, ../sass/screen.scss */
#ranking {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 1280px;
  height: 720px;
}

/* line 290, ../sass/screen.scss */
.title-bar {
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: fixed;
  top: -20px;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
}
/* line 301, ../sass/screen.scss */
.title-bar .event-title img {
  width: 20vw;
}
/* line 306, ../sass/screen.scss */
.title-bar .ranking-title img {
  width: 30vw;
  margin-top: 5%;
}

/* line 313, ../sass/screen.scss */
.top-three {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 1rem;
}

/* line 322, ../sass/screen.scss */
.low-rank {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0.5rem 0;
}

/* line 330, ../sass/screen.scss */
.top-box {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: 15px;
  border: solid 5px black;
  position: relative;
  width: 350px;
  height: 170px;
  font-weight: 900;
  margin: 0 15px;
}
/* line 343, ../sass/screen.scss */
.top-box::after {
  content: "";
  border: solid 5px white;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 13px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}
/* line 353, ../sass/screen.scss */
.top-box h1 {
  position: relative;
  font-size: 3rem;
  top: 2rem;
}
/* line 358, ../sass/screen.scss */
.top-box p {
  font-size: 7rem;
}
/* line 361, ../sass/screen.scss */
.top-box h2 {
  position: relative;
  font-size: 3rem;
  top: -2rem;
}

/* line 368, ../sass/screen.scss */
.gold {
  position: relative;
  top: -6rem;
  background-image: linear-gradient(to top left, #F7DE05, #DA8E00, #EDAC06, #F7DE05, #ECB802, #DAAF08, #B67B03);
}

/* line 375, ../sass/screen.scss */
.silver {
  background-image: linear-gradient(to top left, #A5A5A5, #BABAC2, #E8E8E8, #A5A5A5, #BABAC2);
}

/* line 379, ../sass/screen.scss */
.blonze {
  background: linear-gradient(to bottom, #CD7F32 0%, #BE7023 100%);
}

/* line 383, ../sass/screen.scss */
.rank-area {
  width: 15%;
}

/* line 387, ../sass/screen.scss */
.small-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border: solid 5px black;
  width: 170px;
  height: 85px;
  margin: 0 3px;
}
/* line 397, ../sass/screen.scss */
.small-box p {
  position: relative;
  font-size: 4rem;
  font-weight: 900;
  top: 3px;
}
/* line 405, ../sass/screen.scss */
.small-box h1 {
  position: absolute;
  font-size: 2rem;
  font-weight: 500;
  left: 0;
  top: 0;
  margin-left: 5px;
}
/* line 414, ../sass/screen.scss */
.small-box h2 {
  position: relative;
  font-size: 2rem;
  top: -7px;
}

/* line 422, ../sass/screen.scss */
.red-box {
  background-color: #E0140F;
  color: white;
}

/* line 427, ../sass/screen.scss */
.blue-box {
  color: white;
  background-color: blue;
}

/* line 432, ../sass/screen.scss */
.aqua-box {
  background-color: aqua;
}

/* line 436, ../sass/screen.scss */
.white-box {
  background-color: white;
}

/* line 440, ../sass/screen.scss */
#correct {
  position: absolute;
  /*top: calc(50vh-50vw); */
  top: calc(50vh - 50vw);
  left: 0;
  width: 100vw;
  opacity: 0;
}
/* line 447, ../sass/screen.scss */
#correct img {
  width: 100%;
}

/* line 449, ../sass/screen.scss */
#wrong {
  position: absolute;
  top: calc(50vh - 50vw);
  left: 0;
  width: 100vw;
  opacity: 0;
}
/* line 455, ../sass/screen.scss */
#wrong img {
  width: 100%;
}

/* line 458, ../sass/screen.scss */
#result {
  margin: auto;
  text-align: center;
}
/* line 461, ../sass/screen.scss */
#result input[type=button] {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #668ad8;
  /*ボタン色*/
  color: #FFF;
  border-bottom: solid 0.5vw #627295;
  border-radius: 1vw;
  width: 30w;
  height: 12vw;
  font-size: 24px;
}
/* line 473, ../sass/screen.scss */
#result input[type=button]:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
  /*線を消す*/
}

/* line 482, ../sass/screen.scss */
body#admin-body {
  display: block;
}
/* line 484, ../sass/screen.scss */
body#admin-body .fuchidori {
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
/* line 490, ../sass/screen.scss */
body#admin-body h1 {
  color: #3146bb;
  font-size: 5vw;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF,  0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
}
/* line 498, ../sass/screen.scss */
body#admin-body .admin-box {
  display: block;
  justify-content: center;
}
/* line 501, ../sass/screen.scss */
body#admin-body .admin-box div {
  display: block;
  margin: auto;
}
/* line 508, ../sass/screen.scss */
body#admin-body #main input[type=button] {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #668ad8;
  /*ボタン色*/
  color: #FFF;
  border-bottom: solid 4px #627295;
  border-radius: 3px;
  width: 15vw;
  height: 6vw;
}
/* line 519, ../sass/screen.scss */
body#admin-body #main input[type=button]:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
  /*線を消す*/
}
/* line 527, ../sass/screen.scss */
body#admin-body .box {
  border: 2px solid #0094D6;
  width: 80vw;
  margin: auto;
}
/* line 532, ../sass/screen.scss */
body#admin-body .box.answer {
  border: 2px solid #fb5144;
}
/* line 535, ../sass/screen.scss */
body#admin-body .box.controller {
  border: 2px solid #444;
}
/* line 538, ../sass/screen.scss */
body#admin-body .box h3 {
  background: #0094D6;
  color: #FFF;
  text-align: center;
  margin: 0;
  font-size: 2vw;
}
/* line 545, ../sass/screen.scss */
body#admin-body .box.answer h3 {
  background: #fb5144;
}
/* line 548, ../sass/screen.scss */
body#admin-body .box.controller h3 {
  background: #444;
}
/* line 551, ../sass/screen.scss */
body#admin-body .box .inner {
  padding: .5em;
  background-color: white;
  font-size: 1.5vw;
}
/* line 556, ../sass/screen.scss */
body#admin-body table {
  width: 100%;
  border-spacing: 0;
  background-color: white;
}
/* line 562, ../sass/screen.scss */
body#admin-body table th {
  border-bottom: solid 2px #fb5144;
  padding: 10px 0;
}
/* line 567, ../sass/screen.scss */
body#admin-body table td {
  /*border-bottom: solid 2px #ddd;*/
  border: solid 1px #ddd;
  text-align: center;
  padding: 10px 0;
}
/* line 573, ../sass/screen.scss */
body#admin-body td.question {
  width: 30%;
}
/* line 576, ../sass/screen.scss */
body#admin-body td.pattern-name {
  width: 10%;
}
/* line 579, ../sass/screen.scss */
body#admin-body td.command {
  width: 10%;
}
/* line 582, ../sass/screen.scss */
body#admin-body td.all-open {
  width: 10%;
}
/* line 585, ../sass/screen.scss */
body#admin-body td input {
  width: 90%;
}
/* line 588, ../sass/screen.scss */
body#admin-body input[type='button'] {
  cursor: pointer;
}

/* line 593, ../sass/screen.scss */
.fadein {
  animation-name: fadein;
  animation-duration: 0.1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/* line 599, ../sass/screen.scss */
.fadeout {
  animation-name: fadeout;
  animation-duration: 0.1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translatey(2vw);
  }
  to {
    opacity: 1;
    transform: translatey(0);
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
    transform: translatey(0);
  }
  to {
    opacity: 0;
    transform: translatey(2vw);
  }
}
/* line 627, ../sass/screen.scss */
.disable {
  display: none;
}
