/* -- .l-index-game__items ------------------------- */
.l-index-game__items {
  padding: 20px 0 0;
}
.l-index-game__items h3 {
  padding: 20px 0 0 0;
  text-align: center;
  font-size: 1.8em;
  color: #036bc2;
}
.l-index-game__items h4 {
  padding: 30px 0 10px 0;
  text-align: center;
  font-size: 1.4em;
}
.l-index-game__items .game-item {
  padding: 4px 0;
}
.l-index-game__items .game-item > div {
  background-color: #fff;
  border: solid 1px #ddd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-index-game__items .game-item .school {
  width: 27%;
  line-height: 1.4;
  font-size: 12px;
  text-align: center;
}
.l-index-game__items .game-item .school .name {
  font-size: 16px;
  font-weight: bold;
}
.l-index-game__items .game-item .school .link {
  display: inline-block;
  padding: 6px 0 0 0;
}
.l-index-game__items .game-item .school .link a {
  display: inline-block;
  padding: 3px 6px;
  background-color: #0099ff;
  color: #fff;
  border-radius: 4px;
}
.l-index-game__items .game-item .school .link a:hover {
  background-color: #41b3ff;
}
.l-index-game__items .game-item .win {
  color: #de2485;
}
.l-index-game__items .game-item .status {
  width: 20%;
  padding: 0 7px;
  font-size: 20px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.l-index-game__items .game-item .status span {
  display: block;
  background-color: #aaa;
  font-size: 12px;
  padding: 3px;
  line-height: 1;
}
.l-index-game__items .after .status span {
  background-color: #333;
  color: #fff;
}
.l-index-game__items .live .status span {
  background-color: #c00;
  color: #fff;
}
.l-index-game__items .before .status span {
  background-color: #093;
  color: #fff;
}

.l-index-game__items .game-item .gameinfo {
  width: 26%;
  font-size: 14px;
  text-align: right;
}

.l-index-game__items .live .gameinfo a,
.l-index-game__items .after .gameinfo a {
  background-color: #da1a4a;
  color: #fff;
  border-radius: 6px;
  padding: 14px 7px;
  display: block;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.l-index-game__items .live .gameinfo a:hover,
.l-index-game__items .after .gameinfo a:hover {
  background-color: #e9708e;
}

.l-index-game__items .before .gameinfo span {
  background-color: #888;
  color: #fff;
  border-radius: 6px;
  padding: 14px 7px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .l-index-game__items .game-item > div {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-index-game__items .game-item .school {
    width: 35%;
  }
  .l-index-game__items .game-item .status {
    width: 30%;
  }
  .l-index-game__items .game-item .gameinfo {
    width: 100%;
    padding: 14px 0 0 0;
  }
}
@media screen and (max-width: 680px) {
  .l-index-game__items .game-item > div {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
  .l-index-game__items .game-item > div > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-index-game__items .game-item > div > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .l-index-game__items .game-item > div > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .l-index-game__items .game-item > div > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .l-index-game__items .game-item > div > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-index-game__items .game-item > div > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .l-index-game__items .game-item .school {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 7px 14px;
  }
  .l-index-game__items .game-item .school:first-of-type {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
  .l-index-game__items .game-item .school:last-of-type {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
  .l-index-game__items .game-item .status {
    width: 100%;
    font-size: 24px;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
  .l-index-game__items .game-item .gameinfo {
    width: 100%;
    padding: 14px 0 0 0;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

/* -- .l-index-game__dates ------------------------- */
.l-index-game__dates {
  padding: 20px 0 0 0;
}
.l-index-game__dates ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.l-index-game__dates ul li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 7px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.l-index-game__dates ul li a {
  background-color: #0099ff;
  color: #fff;
  display: block;
  text-align: center;
  padding: 0.6em;
  border-radius: 0.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.4;
  cursor: pointer;
}
.l-index-game__dates ul li a:hover {
  background-color: #3eb2ff;
}
.l-index-game__dates ul li a span {
  font-size: 1.2em;
}
.l-index-game__dates ul li.semi a {
  background-color: #ff5100;
}
.l-index-game__dates ul li.semi a:hover {
  background-color: #fa854e;
}
.l-index-game__dates ul li.final a {
  background-color: #ff3366;
}
.l-index-game__dates ul li.final a:hover {
  background-color: #ff648b;
}

@media screen and (max-width: 1199px) {
  .l-index-game__dates ul li br {
    display: inline;
  }
  .l-index-game__dates ul li a span {
    display: inline;
    padding: 0;
    font-size: 1.2em;
  }
}

@media screen and (max-width: 767px) {
  .l-index-game__dates ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-index-game__dates ul li {
    width: 50%;
  }
  .l-index-game__dates ul li.final {
    width: 100%;
  }
}
