/* team colors */
/* schedule colors */
.senkogroup {
  color: #0d923b;
}

.igoshogi {
  color: #ec6618;
}

.wakakoi {
  color: #e83c17;
}

.nagoya {
  color: #11345f;
}

.fukuoka {
  color: #3994c1;
}

.main-view {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0.2rem;
  height: 180px;
  padding: 1rem;
  background-color: #f0f0f0;
  background-image: url(../images/main_view_bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-view h1 {
  margin: 0;
  background: none;
}
.main-view h1 img {
  width: 100%;
  max-width: 1000px;
}

#greeting {
  margin-top: 40px;
  text-align: center;
}
#greeting .container {
  max-width: 800px;
}
#greeting .container p {
  margin-bottom: 1em;
  font-size: 16px;
}

#schedule {
  padding: 0px 1rem 100px;
}
#schedule .container {
  max-width: 1000px;
}
#schedule .container .schedule-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 1rem;
}
#schedule .container .schedule-table .schedule-table__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: calc(100% - 30px);
  margin: 1rem 15px;
  padding: 1rem 1rem;
  background-color: #fff;
  box-shadow: 1px 1px 4px 1px rgba(49, 49, 49, 0.25);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__round {
  width: 50%;
  padding: 0 1em;
  font-size: 32px;
  font-weight: 900;
  text-align: right;
  color: #0c1f2b;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__date {
  width: 50%;
  padding: 0 1em;
  font-size: 32px;
  font-weight: 900;
  text-align: left;
  color: #0c1f2b;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__time {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__time::before, #schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__time::after {
  content: "";
  display: block;
  width: 5em;
  height: 1px;
  margin: 0 1rem;
  background-color: #666;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription {
  width: 100%;
  background-color: #fff;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription .schedule-table__time {
  width: 100%;
  font-weight: 900;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table th,
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table td {
  padding: 0.1rem 1rem;
  text-align: center;
  vertical-align: middle;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table th.vs,
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table td.vs {
  width: 60px;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table tbody th {
  width: 100px;
}
#schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table tbody td {
  width: 200px;
}
#schedule .container .schedule-table .note {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: calc(900px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 1em;
  font-size: 14px;
}

@media screen and (max-width: 500px) {
  .main-view {
    height: 60vw;
  }
  .main-view h1 img {
    width: 90%;
  }
  #greeting {
    margin-top: 8vw;
    text-align: center;
  }
  #greeting .container p {
    margin-bottom: 1em;
    font-size: 4vw;
    line-height: 2em;
    text-align: left;
  }
  #schedule {
    padding: 0 0 20vw;
  }
  #schedule .container {
    margin-bottom: 10vw;
  }
  #schedule .container .schedule-table .schedule-table__row {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  #schedule .container .schedule-table .schedule-table__row .schedule-table__round {
    font-size: 6.4vw;
  }
  #schedule .container .schedule-table .schedule-table__row .schedule-table__date {
    font-size: 6.4vw;
  }
  #schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table th,
  #schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table td {
    padding: 0;
  }
  #schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table th.vs,
  #schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table td.vs {
    width: 2em;
    padding: 0;
  }
  #schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table tbody th {
    width: 20vw;
  }
  #schedule .container .schedule-table .schedule-table__row .schedule-table__discription_wrap .schedule-table__discription table tbody td {
    width: 40vw;
  }
  #schedule .container .schedule-table .note {
    padding: 1em 0;
    font-size: 2.8vw;
  }
}/*# sourceMappingURL=top.css.map */

.kaisetukai {width: 770px; margin: 0px auto 30px auto}

