/* --------------------------------
 * Common
   -------------------------------- */
li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

a {
  color: #7F89E0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.br-pc {
  display: block;
}

@media only screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  background: #161616;
}

/* --------------------------------
 * Header
-------------------------------- */
.header {
  position: fixed;
  width: 100%;
  height: 68px;
  z-index: 10;
  top: 0;
}

.mainmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 24px;
  padding-right: 24px;
}

@media only screen and (max-width: 768px) {
  .mainmenu {
    padding-top: 16px;
    padding-right: 16px;
  }
}

.mainmenu__twitter {
  margin-right: 16px;
}

.mainmenu__twitter img {
  width: 33px;
  height: 27px;
}

.mainmenu__open img {
  width: 32px;
  height: 27px;
}

.spmenu {
  display: none;
  width: 120px;
  z-index: 11;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #161616;
}

.spmenu__close {
  text-align: right;
  padding: 12px;
}

.spmenu__item {
  border-top: 1px solid #252525;
}

.spmenu__item a {
  padding: 12px;
  display: block;
  text-align: right;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* --------------------------------
 * Topimage
-------------------------------- */
.topimage {
  background: #161616 url("/img/bg_top.jpg") no-repeat 50% 0;
  background-size: cover;
}

.topimage__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("/img/bg_game.svg") no-repeat 50% 100%;
  padding: 160px 12px 320px;
  background-size: contain;
}

@media only screen and (max-width: 768px) {
  .topimage__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 80px 12px 160px;
  }
}

.topimage__logo {
  margin-right: 40px;
  max-width: 465px;
}

.topimage__logo img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .topimage__logo {
    width: 100%;
    margin: 0 0 40px;
    padding: 0 24px;
  }
}

.topimage__info {
  margin-left: 40px;
  max-width: 368px;
}

@media only screen and (max-width: 768px) {
  .topimage__info {
    width: 100%;
    padding: 0 16px;
    margin: 0;
  }
}

.topimage__title {
  text-align: center;
  margin-bottom: 10px;
}

.topimage__title img {
  max-width: 368px;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .topimage__title img {
    width: 100%;
  }
}

.topimage__entry a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 68px;
  margin: 0 auto;
  background-color: #D34627;
  border-radius: 34px;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

@media only screen and (max-width: 768px) {
  .topimage__entry a {
    max-width: 300px;
    width: 100%;
  }
}

.topimage__entry a:hover {
  text-decoration: none;
  background-color: #E84420;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}

.topimage__entry span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.topimage__sponsor {
  padding-top: 8px;
  text-align: center;
}

.topimage__sponsor span {
  font-weight: 700;
}

/* --------------------------------
 * Section
-------------------------------- */
.section {
  padding-bottom: 80px;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

@media only screen and (max-width: 768px) {
  .section__header {
    margin-bottom: 40px;
  }
}

.section__title {
  font-size: 66px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

@media only screen and (max-width: 768px) {
  .section__title {
    font-size: 52px;
  }
}

.section__subtitle {
  font-size: 15px;
  letter-spacing: 0.3em;
}

.section__subtitle:after {
  content: '';
  display: block;
  height: 4px;
  width: 80px;
  margin: 12px auto 0;
  border-radius: 2px;
  background-color: #D34627;
}

/* --------------------------------
 * Game
-------------------------------- */
.game {
  margin-top: -150px;
}

@media only screen and (max-width: 768px) {
  .game {
    margin-top: -60px;
  }
}

.game__day {
  text-align: center;
  font-weight: 800;
  margin-bottom: 24px;
}

.game__day--sat {
  color: #7F89E0;
}

.game__day--sun {
  color: #DC6E6E;
}

.game__day__date {
  font-size: 30px;
}

@media only screen and (max-width: 768px) {
  .game__day__date {
    font-size: 24px;
  }
}

.game__day__date span {
  color: #FFFFFF;
}

.game__day__week {
  font-size: 24px;
}

@media only screen and (max-width: 768px) {
  .game__day__week {
    font-size: 18px;
  }
}

.game__list {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .game__list {
    padding: 0 3px;
    margin-bottom: 56px;
  }
}

#newc {
  display: none;
}

.gametitle {
  width: 280px;
  margin: 0 24px 48px;
}

@media only screen and (max-width: 768px) {
  .gametitle {
    width: 156px;
    margin: 0 8px 36px;
  }
}

.gametitle__logo {
  height: 204px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #252525;
  border: 1px solid #464646;
  margin-bottom: 12px;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .gametitle__logo {
    height: 115px;
    margin-bottom: 8px;
  }
}

.gametitle__logo:hover {
  background-color: #464646;
  border-color: #595959;
}

.gametitle__logo img {
  width: 98%;
  max-width: 272px;
  height: auto;
}

.gametitle--event .gametitle__logo {
  height: auto;
  border: none;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .gametitle--event .gametitle__logo {
    height: auto;
  }
}

.gametitle--event .gametitle__logo img {
  width: 100%;
  max-width: 280px;
}

.gametitle--event .gametitle__owner {
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .gametitle--event .gametitle__owner {
    font-size: 13px;
  }
}

.gametitle__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.1;
}

@media only screen and (max-width: 768px) {
  .gametitle__title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}

.gametitle__rule {
  margin-bottom: 4px;
}

.gametitle__rule__item {
  display: inline-block;
  border: 1px solid #DED157;
  color: #DED157;
  margin-right: 4px;
  padding: 0 4px;
  height: 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 24px;
  font-weight: 800;
}

@media only screen and (max-width: 768px) {
  .gametitle__rule__item {
    font-size: 12px;
    height: 20px;
    line-height: 20px;
  }
}

.gametitle__owner {
  margin-bottom: 6px;
  color: #ADADAD;
}

@media only screen and (max-width: 768px) {
  .gametitle__owner {
    font-size: 12px;
  }
}

.gametitle__link a {
  display: block;
  background-color: #D34627;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 4px;
  color: #FFFFFF;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .gametitle__link a {
    height: 28px;
    line-height: 28px;
    font-size: 16px;
  }
}

.gametitle__link a:hover {
  background-color: #E84420;
}

/* --------------------------------
 * Outline
-------------------------------- */
.outline {
  background: #252525 url("/img/bg_outline.svg") no-repeat 50% 0;
  background-size: contain;
  padding-top: 80px;
}

@media only screen and (max-width: 768px) {
  .outline {
    padding-top: 8px;
  }
}

.outline__contents {
  max-width: 760px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .outline__contents {
    padding: 0 12px;
  }
}

.outline__title {
  color: #DED157;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .outline__title {
    font-size: 16px;
    margin-bottom: 4px;
  }
}

.outline__text {
  margin-bottom: 36px;
  margin-left: 16px;
  line-height: 1.66;
  color: #CCCCCC;
}

@media only screen and (max-width: 768px) {
  .outline__text {
    margin-left: 0;
  }
}

.outline__text img {
  vertical-align: baseline;
}

.outline__text span {
  font-size: 16px;
  color: #FFFFFF;
}

.outline__text h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #FFFFFF;
}

@media only screen and (max-width: 768px) {
  .outline__text h4 {
    font-size: 14px;
  }
}

.outline__text ul li {
  line-height: 1.3;
  margin-bottom: 12px;
}

/* --------------------------------
 * ETC
-------------------------------- */
.schedule {
  margin-bottom: 40px;
}

.imagelist {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 12px;
}

.imagelist__item {
  margin: 0 12px 24px;
}

.imagelist__item a img {
  max-height: 300px;
  max-width: 400px;
  width: auto;
}

@media only screen and (max-width: 768px) {
  .imagelist__item a img {
    max-height: 220px;
    max-width: 300px;
  }
}

/* --------------------------------
 * Outline
-------------------------------- */
.access {
  background: url("/img/bg_access.jpg") no-repeat 50% 0;
  background-size: cover;
  padding: 80px 0;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .access {
    padding: 56px 0 12px;
  }
}

.access__title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.access__link {
  display: inline-block;
  border: 1px solid #FFFFFF;
  padding: 4px 8px;
  margin-bottom: 16px;
  border-radius: 2px;
}

.access__link a {
  color: #FFFFFF;
}

.access__item {
  color: #EAEAEA;
}

.access__txt {
  margin-bottom: 4px;
}

.access__txt-en {
  font-size: 13px;
  margin-bottom: 16px;
}

.access__map {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 12px;
}

.access__map iframe {
  border-radius: 4px;
}

/* --------------------------------
 * Footer
-------------------------------- */
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px;
}

@media only screen and (max-width: 768px) {
  .footer {
    display: block;
    text-align: center;
    padding: 40px 12px;
  }
}

.footer__logo {
  width: 260px;
  margin-right: 32px;
}

@media only screen and (max-width: 768px) {
  .footer__logo {
    margin: 0 auto 40px;
  }
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__main {
  width: 100%;
}

.footer__title {
  font-weight: 800;
  color: #747474;
  margin-bottom: 4px;
  font-size: 20px;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 768px) {
  .footer__title {
    margin-bottom: 8px;
    font-size: 18px;
  }
}

.footer__menu {
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 400;
}

@media only screen and (max-width: 768px) {
  .footer__menu {
    margin-bottom: 24px;
  }
}

.footer__menu li {
  display: inline-block;
  margin-right: 8px;
}

.footer__menu li a {
  color: #FFFFFF;
}

.footer__menu li::after {
  content: '/';
  color: #595959;
  margin-left: 8px;
}

.footer__menu li:last-of-type {
  margin-right: 0;
}

.footer__menu li:last-of-type::after {
  display: none;
}

.footer__sponsor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 8px;
}

@media only screen and (max-width: 768px) {
  .footer__sponsor {
    margin-bottom: 0;
  }
}

.footer__sponsor li {
  margin-right: 8px;
  height: 100px;
}

.footer__sponsor li:last-of-type {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .footer__sponsor li {
    margin: 0 2% 12px;
  }
}

.footer__sponsor li img {
  width: auto;
  height: 100%;
}

.footer__sponsor li a {
  background-color: #FFFFFF;
  border-radius: 4px;
  width: 180px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .footer__sponsor li a {
    width: 100%;
  }
}

.footer__sponsor li a img {
  width: auto;
  height: 100%;
}

.footer__copy {
  font-size: 13px;
  color: #969696;
  margin-bottom: 4px;
  text-align: left;
}
/*# sourceMappingURL=style.css.map */