#content {
  background-color: #F6F6F6;
}

.icon-class {
  display: flex;
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.icon-class img {
  height: 20px;
}

.game-header {
  position: relative;
}
.game-header h1 {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  height: 280px;
  background: url(../img/game/header_baseball.jpg) center no-repeat;
  background-size: cover;
  z-index: 1;
  padding: 0 60px;
}
.game-header h1 ._icon {
  position: relative;
  display: block;
  background: #fff;
  padding: 5px;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
}
.game-header h1 ._icon img {
  width: 145px;
  height: 145px;
}
.game-header h1 ._txt {
  position: relative;
  line-height: 1;
  padding-left: 50px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
  width: calc(100% - 155px);
}
.game-header h1 ._txt .font-BEB {
  display: block;
  font-size: 8rem;
}
.game-header h1 ._txt .font-NIT {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
}
.game-header h1::before, .game-header h1::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.game-header h1::before {
  background: url(../img/lines_key_top.svg) left top no-repeat;
  background-size: 550px auto;
}
.game-header h1::after {
  background: url(../img/lines_key_bottom.svg) right bottom no-repeat;
  background-size: 550px auto;
}
.game-header ._info {
  background-color: #fff;
  padding: 5px 15px;
  font-size: 1.4rem;
}
.game-header ._info dl {
  display: flex;
  margin: 5px 0;
  height: 30px;
}
.game-header ._info dl dt {
  width: 120px;
  font-weight: bold;
  text-align: right;
  line-height: 30px;
}
.game-header ._info dl dd {
  display: flex;
  align-items: center;
  margin-left: 5px;
}
.game-header ._marathon-full {
  background-image: url(../img/game/header_marathon_fulll.jpg);
}
.game-header ._marathon-harf {
  background-image: url(../img/game/header_marathon_harf.jpg);
}
.game-header ._baseball {
  background-image: url(../img/game/header_baseball.jpg);
}
.game-header ._futsal {
  background-image: url(../img/game/header_futsal.jpg);
}
.game-header ._basketball {
  background-image: url(../img/game/header_basketball.jpg);
}
.game-header ._volleyball {
  background-image: url(../img/game/header_volleyball.jpg);
}
.game-header ._dodgeball {
  background-image: url(../img/game/header_dodgeball.jpg);
}
.game-header ._Tug-of-War {
  background-image: url(../img/game/header_Tug-of-War.jpg);
}
.game-header ._jumprope {
  background-image: url(../img/game/header_jumprope.jpg);
}
.game-header ._tabletennis {
  background-image: url(../img/game/header_tabletennis.jpg);
}
.game-header ._boccia {
  background-image: url(../img/game/header_boccia.jpg);
}

.game-docs {
  padding: 60px;
}
.game-docs h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.game-docs ._wrap {
  background: #fff;
  max-width: 800px;
  margin: 0px auto;
}
.game-docs h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
.game-docs .option {
  background-color: #f6f6f6;
  padding: 8px 15px;
  margin-bottom: 50px;
}
.game-docs .pdf {
  width: 18px;
  margin-left: 10px;
}

.list-normal {
  margin-top: 0;
  margin-left: 0;
}

.game-regulation {
  margin-top: 25px;
  margin-left: 25px;
  border-left: 5px solid #73778A;
  padding-left: 25px;
}
.game-regulation dt {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.point {
  margin-top: 15px;
  padding: 3px;
}
.point table {
  width: 100%;
  border-spacing: 1px;
  line-height: 1;
}
.point table caption {
  display: none;
}
.point table tbody .title {
  background: #dce3e7;
}
.point table tbody th,
.point table tbody td {
  padding: 5px 10px;
  text-align: right;
  font-size: 3.8rem;
  line-height: 1;
}
.point table tbody th span {
  font-size: 1.2rem;
  margin-left: 5px;
}

.game-field {
  background: #fff;
  margin-bottom: 100px;
  height: 300px;
}
.game-field h2 {
  text-align: center;
  line-height: 100px;
  font-size: 2.8rem;
}
.game-field p {
  line-height: 200px;
  text-align: center;
  font-size: 1.8rem;
}

._cs {
  font-size: 2.4rem;
  color: #9B9A98;
}

@media screen and (max-width: 660px) {
  .icon-class {
    width: 8vw;
    height: 8vw;
    margin-right: 2.5vw;
  }
  .icon-class img {
    height: 6vw;
  }
  .game-header h1 {
    height: 50vw;
    padding: 0 5vw;
  }
  .game-header h1 ._icon {
    padding: 1vw;
  }
  .game-header h1 ._icon img {
    width: 20vw;
    height: 20vw;
  }
  .game-header h1 ._txt {
    padding-left: 5vw;
    width: calc(100% - 22vw);
  }
  .game-header h1 ._txt .font-BEB {
    display: block;
    font-size: 2.4rem;
  }
  .game-header h1 ._txt .font-NIT {
    margin-top: 2.5vw;
    font-size: 1.6rem;
  }
  .game-header h1::before {
    background-size: 80vw auto;
  }
  .game-header h1::after {
    background-size: 80vw auto;
  }
  .game-header ._info {
    padding: 1.5vw;
    font-size: 1.2rem;
  }
  .game-header ._info dl {
    margin: 1.5vw 0;
    height: 6vw;
  }
  .game-header ._info dl dt {
    width: 22vw;
    line-height: 6vw;
  }
  .game-header ._info dl dd {
    display: flex;
    align-items: center;
    margin-left: 5px;
  }
  .game-docs {
    padding: 5vw;
  }
  .game-docs h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5vw;
  }
  .game-docs ._wrap {
    padding: 2.5vw 5vw;
    margin-bottom: 5vw;
  }
  .game-docs h3 {
    font-size: 1.6rem;
  }
  .game-docs .option {
    padding: 8px 15px;
    margin-bottom: 50px;
  }
  .point {
    margin-top: 0;
    padding: 0;
    width: 100%;
  }
  .point table {
    width: 100%;
    border-spacing: 1px;
    line-height: 1;
  }
  .point table caption {
    display: none;
  }
  .point table tbody {
    display: flex;
  }
  .point table tbody tr {
    display: flex;
    flex-direction: column;
  }
  .point table tbody tr th:first-child {
    border-bottom: 3px solid #73778A;
  }
  .point table tbody .title {
    background: #F0F3EC;
    width: 40%;
  }
  .point table tbody .point {
    width: auto;
    width: 60%;
  }
  .point table tbody th,
  .point table tbody td {
    padding: 5px 10px;
    text-align: right;
    font-size: 2.8rem;
    line-height: 1;
    height: 12vw;
    border-bottom: 1px dashed #9B9A98;
  }
  .point table tbody th span {
    font-size: 1.2rem;
    margin-left: 5px;
  }
}/*# sourceMappingURL=games.css.map */