@charset "UTF-8";

.document div p {
  margin-bottom: 1.5em;
}
.document_nav {
  width: 96%;
  margin: 0 auto;
}

.document_nav ul {
  border: 1px #ccc solid;
  border-radius: 0.4em;
  overflow: hidden;
}

.document_nav li a {
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  padding: 0.75em 1em;
  border-bottom: 1px #ccc solid;
  position: relative;
}

.document_nav li:last-of-type a {
  border: none;
}

.document_nav li a::after {
  content: "";
  background: var(--blackArrow);
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  transform: rotate(90deg);
  margin-left: 0.5em;
  line-height: 1;
  position: absolute;
  opacity: 0.9;
  top: 13px;
  right: 0.25em;
}

.document_nav li.now a {
  pointer-events: none;
  padding-left: 2.5em;
}
.document_nav li.now a::after {
  display: none;
}

.document_nav li.now a::before {
  content: "";
  background: var(--blackHand_right);
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  position: absolute;
  opacity: 0.9;
  top: 13px;
  left: 1em;
}

.nav_plus {
  margin-bottom: 1em;
}

.document .introduction {
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
  max-width: 800px;
}

.stadium .introduction figure {
  margin-bottom: 1em;
}

.document .introduction_topimg {
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.document .introduction_topimg figcaption {
  font-size: 90%;
  text-align: center;
}

.document .introduction > p {
    display: table;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}


.document dl.turnmark dt {
  font-weight: 600;
  position: relative;
  padding-left: 1.5em;
  font-size: 1.1em;
  margin: 0.5em 0;
}

.document dl.turnmark dt::before {
  background-image: url(../img/turnmark.png.webp);
  content: "";
  display: block;
  width: 1.2em;
  height: 1.4em;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
}

.document dl.turnmark dd {
  padding-left: 1.7em;
}

.document dl.tile {
  padding: 0.5em 1em 1em;
  background-color: #f0f0f0;
  margin-bottom: 0.5em;
}

.document dl.tile dt {
  font-weight: bold;
}

.document dl.tile dt span {
  display: inline-block;
  font-size: 2em;
  vertical-align: middle;
  margin-right: 0.25em;
}

.stadium_menu {
  margin-bottom: 1em;
}

.stadium_menu li {
  width: 100%;
  border-bottom: 1px #ccc dotted;
}

.stadium_menu li:last-of-type {
  border-bottom: none;
}

.stadium_menu li a {
  display: table;
  position: relative;
  color: inherit;
  background-color: #fff;
  width: 100%;
}

.stadium_menu li a::after {
  content: "";
  background: var(--blackArrow);
  background-size: contain;
  display: inline-block;
  transform: rotate(90deg);
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  right: 0.25em;
  opacity: 0.8;
}

.stadium_menu li figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 5em;
  overflow: hidden;
  height: 100%;
}

.stadium_menu li figure img {
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.stadium_menu li dl {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 1em 2em 1em 6em;
}

.stadium_menu li dt {
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px #999 solid;
  margin-bottom: 0.25em;
}

.stadium_menu li dt span {
  font-size: 80%;
}

.sttop {
  color: black;
  padding: 0 0 0.75em 0.25em;
  position: relative;
}

.sttop div figure img {
  width: 150px;
  margin: 0 0 0.5em 0;
}

.sttop_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 0 0.75em 0;
}

.sttop_ul li {
  width: 100%;
	margin: .5rem 0;
}

.sttop_table {
  display: flex;
  flex-direction: column;
}

.sttop_comment {
  position: absolute;
  left: 163px;
  top: 0;
}

/*-------------------------------*/
@media (min-width: 768px) {
  .document dl.tile {
    width: 48%;
    float: left;
    margin: 2%;
  }

  .stadium_menu {
    margin: 0 auto 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stadium_menu li {
    width: 485px;
    margin: 10px;
    border-bottom: none;
    height: 11em;
  }

  .stadium_menu li a {
    height: 100%;
  }

  .stadium_menu li dl {
    padding-right: 3em;
  }

  .sttop {
    color: black;
    display: flex;
    padding: 0 0 0.75em 0.25em;
  }

  .sttop div figure img {
    margin: 0 0 0 1em;
  }

  .sttop_ul li {
	width: 48%;
  }

  .sttop_comment {
    position: relative;
    left: 0;
    top: 0;
  }

  .sttop_table {
    padding: 0.5em 0 0 1em;
  }

  .stadium_menu li a::after {
    right: 1em;
  }
} /*--------------------------------*/

@media (min-width: 1024px) {
  .stadium_menu {
    width: 1015px;
    justify-content: start;
  }
  .document_nav ul {
    width: 1000px;
    margin: 0 auto;
    border: none;
    border-radius: 0;
  }

  .document_nav ul::after {
    content: "";
    clear: both;
    display: block;
  }

  .document_nav li {
    float: left;
    width: 24%;
    margin: 0.5%;
    height: 6em;
  }

  .document_nav li a {
    position: relative;
    border: none;
    padding-left: 2em;
  }

  .document_nav li a::after {
    left: 0;
  }

  .document_nav li:nth-of-type(n + 5) a {
    border-bottom: none;
  }

  .document_nav li:nth-of-type(4) a,
  .document_nav li:nth-of-type(8) a {
    border-right: none;
  }

  .document .gridset {
    margin-left: auto;
    margin-right: auto;
  }

  .document dl.tile {
    width: 240px;
    margin: 4px;
  }

  .document dl.tile dt {
    text-align: center;
  }
  .document dl.tile dd {
    min-height: 5em;
    display: table;
  }

  .document dl.tile dd p {
    display: table-cell;
    vertical-align: middle;
  }

  .stadium_menu li a::after {
    right: 1em;
  }
}
