@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
html, body {
  width: 100%;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  background-color: #fbf6e6;
  color: #231815;
  margin: 0;
  padding: 0;
  font-family: 'Kosugi Maru', sans-serif; }

body {
  position: absolute;
  /* またはfixed */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto; }

div, p, li, tr, td, th {
  padding: 0;
  margin: 0; }

.bg-orange {
  background-color: #FFE87A !important; }

.my-btn {
  transition: all .4s;
  background-color: white;
  border: 1px solid #2F2F2F;
  border-radius: 30px;
  font-size: 16px;
  padding: 0.3em 2em; }
  .my-btn-start {
    border: 1px solid #2F2F2F;
    background-image: url("./img/main/allow_right_black_circle.png");
    background-position: right 1em center;
    background-size: 3vh;
    background-repeat: no-repeat;
    padding: 1vh 5em; }
    .my-btn-start img {
      height: 4vh; }
  .my-btn-see_ranking {
    border: none;
    background-color: inherit;
    background-image: url("./img/main/allow_right_black.png");
    background-position: right 0 center;
    background-size: 3vh;
    background-repeat: no-repeat;
    padding: 0 2em; }
    .my-btn-see_ranking img {
      height: 2.5vh; }
  .my-btn-back {
    border-radius: 10px; }
  .my-btn:active {
    background-color: #2F2F2F;
    color: white; }
  .my-btn-black {
    background-color: #2F2F2F;
    color: white; }
    .my-btn-black:active {
      background-color: white;
      color: #231815; }

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.my-table {
  background-color: white;
  color: #231815;
  width: 100%; }
  .my-table tbody tr {
    border-top: 1px solid #333; }
    .my-table tbody tr:last-child {
      border-bottom: 1px solid #333; }
    .my-table tbody tr td {
      max-width: 100px;
      padding-top: 0.5em;
      padding-bottom: 0.5em;
      padding-left: 1em; }
      .my-table tbody tr td:first-child {
        padding-left: 0;
        color: white;
        text-align: center;
        background-color: black; }
      .my-table tbody tr td:last-child {
        padding-left: 0;
        font-weight: bold; }

#gamearea canvas {
  margin: 0 auto; }
#gamearea #title_area {
  margin: 0 auto; }
  #gamearea #title_area #loading {
    background-color: #fbf6e6;
    color: #231815;
    font-size: 2vw;
    z-index: 100;
    height: 100%;
    top: 50%; }
  #gamearea #title_area #title_text {
    top: 30px;
    color: white;
    font-size: 30px; }
  #gamearea #title_area #title_text_bottom {
    bottom: 40px;
    color: white;
    font-size: 25px; }
  #gamearea #title_area #title_text_copyright {
    bottom: 10px;
    color: white;
    font-size: 8px; }
#gamearea #result_score {
  font-size: 6vw; }
  #gamearea #result_score .btn {
    font-size: 6vw !important; }
  #gamearea #result_score.box {
    display: block !important;
    height: 1px;
    background: #000;
    animation-name: viewBox;
    animation-duration: 500ms;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    overflow: hidden; }
#gamearea .fadein {
  animation-name: fadein;
  animation-duration: 1000ms;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards; }
@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes viewBox {
  0% {
    opacity: 0;
    top: 50%;
    height: 1px; }
  100% {
    opacity: 1;
    top: calc(50% - 35vw);
    height: 75vw; } }
@keyframes viewBoxPC {
  0% {
    opacity: 0;
    top: 50%;
    height: 1px; }
  100% {
    opacity: 1;
    top: calc(50% - 35vw);
    height: 75vw; } }
.result_score {
  position: absolute;
  width: 100%;
  background-color: #fbf6e6;
  color: #231815;
  z-index: 10000;
  transition: all .4s;
  left: 0;
  bottom: 0; }
  .result_score.nonactive {
    height: 0; }
    .result_score.nonactive * {
      display: none; }
  .result_score.active {
    height: 100%; }
  .result_score .donuts_score {
    border-top: 1px solid #DADBDB; }
    .result_score .donuts_score:last-child {
      border-bottom: 1px solid #DADBDB; }
    .result_score .donuts_score .donuts_score_value {
      width: 100px;
      max-width: 100px; }

.nickname_area {
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #231815;
  z-index: 20000;
  transition: all .4s;
  left: 0;
  bottom: 0; }
  .nickname_area.nonactive {
    height: 0; }
    .nickname_area.nonactive * {
      display: none; }
  .nickname_area.active {
    height: 100%; }

.loading_area,
.message_area {
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  z-index: 20000;
  transition: all .1s;
  left: 0;
  bottom: 0; }
  .loading_area.nonactive,
  .message_area.nonactive {
    height: 0; }
    .loading_area.nonactive *,
    .message_area.nonactive * {
      display: none; }
  .loading_area.active,
  .message_area.active {
    height: 100%; }

.loading_area {
  background-color: rgba(0, 0, 0, 0.9);
  color: white; }

.my-card {
  color: #231815;
  background-color: white;
  border-radius: 10px;
  padding: 10px; }

[data-show_ranking_area="1"] #replay_area {
  display: none; }

[data-show_ranking_area="0"] #join_ranking_area {
  display: none; }

.main-btn-area {
  margin-top: 13vh; }

.news-area {
  overflow-x: hidden; }
  .news-area img {
    height: 2.5vh; }
  .news-area .news-item {
    display: inline-block;
    word-wrap: normal;
    word-break: keep-all;
    border-top: 1px solid #000;
    font-size: 2vh;
    padding: 0.4vh 1em; }
    .news-area .news-item:last-child {
      border-bottom: 1px solid #000; }

.game_header_score {
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  height: 6vh; }
  .game_header_score .game_header_score_area {
    background-color: #FFE97C;
    color: black; }

/*# sourceMappingURL=index.css.map */
