@charset "utf-8";

/*---------------------------
|          リセット系         |
---------------------------*/
body,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
header,
footer,
a {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/*--------------------------
|          共通指定          |
---------------------------*/
html {
  font-size: 62.5%;
}

body {
  background: #f7f7f7;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

h2.sec-title-l {
  margin: 0 0 40px 0;
  font-size: 5.6rem;
  line-height: 1;
  text-align: center;
}

h2.sec-title-l span {
  display: block;
  font-size: 1.8rem;
}


h3 {
  margin: 0 0 30px 0;
  font-size: 2.4rem;
  text-align: center;
}

h4 {
  margin: 0 0 30px 0;
  font-size: 1.8rem;
  text-align: center;
}

a:hover {
  opacity: 0.7;
}

a.no-link {
  pointer-events: none;
}

.content-wrapper {
  padding-top: 71px;
}

.content-inner {
  position: relative;
  padding: 60px 15px;
}

.has-border-top::before {
  content: "";
  display: block;
  width: 100vw;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  background: #000;
}

.grad-box {
  position: relative;
}

.grad-box::before {
  content: "";
  display: block;
  width: 13%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: -o-linear-gradient(181deg, #00EAEE 0%, #00AAEE 100%);
  background: linear-gradient(269deg, #00EAEE 0%, #00AAEE 100%);
}

@media screen and (min-width: 768px) {
  h2.sec-title-l {
    font-size: 7.2rem;
  }

  h3 {
    font-size: 4rem;
  }

  h4 {
    font-size: 2.4rem;
  }

  .grad-box::before {
    width: 30%;
  }

}

@media screen and (min-width: 1200px) {
  .content-inner {
    padding: 80px 0;
    margin: 0 auto;
    max-width: 1080px;
  }
}

/*--汎用クラス--*/
.d-none {
  display: none;
}

@media screen and (min-width: 768px) {
  .d-md-block {
    display: block;
  }
}



/*--------------------------
|          ヘッダー          |
---------------------------*/
.lp-header {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  padding: 10px 15px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;
}

.lp-header::before {
  content: "";
  display: block;
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bg_header.png) no-repeat top right/cover;
}

.header-wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.header-wrapper h1 {
  max-width: 250px;
}

.lp-logo,
.lp-logo img {
  display: block;
}

.g-nav a {
  display: block;
  padding: 20px 15px;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .g-nav {
    position: fixed;
    top: 71px;
    right: 0;
    width: 80%;
    height: 100vh;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background: #00aaee;
  }

  .g-nav ul {
    padding: 30px 0;
  }

  .g-nav.open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .g-nav a {
    width: 100%;
    font-size: 1.8rem;
    color: #fff;
    font-weight: bold;
  }

  .nav-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .4);
    display: none;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }

  .nav-bg.open {
    display: block;
  }

}

@media screen and (min-width: 1200px) {
  .header-wrapper {
    max-width: 1080px;
  }

  .lp-header::before {
    width: 38%;
  }

  .g-nav {
    display: block;
  }

  .g-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .g-nav a {
    padding: 0 12px;
  }
}

/*--ハンバーガーメニュー--*/
.hamburger {
  position: relative;
  width: 36px;
  height: 40px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.hamburger span:nth-child(2) {
  top: 1rem;
}

.hamburger span:nth-child(3) {
  top: 2rem;
}

.hamburger p {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  color: #000;
}

.hamburger.open span:first-child {
  top: 2rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.open span:nth-child(2) {
  visibility: hidden;
}

.hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger.open p {
  display: none;
}

@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}

/*--------------------------
|            kv             |
---------------------------*/
.kv img {
  width: 100%;
}

/*--------------------------
|          ニュース          |
---------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  background: #000;
  color: #fff;
  font-weight: bold;
}

.news-box {
  position: relative;
  padding: 0 0 30px 0;
  width: calc(100% - 70px);
  background: #fff;
}

.news-box dl {
  padding: 15px;
}

.news-box dt {
  margin: 0 0 6px 0;
  font-weight: bold;
}

.news-box dt span {
  display: inline-block;
  padding: 2px 10px;
  margin: 0 10px 0 0;
  background: #ED0033;
  border-radius: 100vh;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

.news-more-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
}

.news-more-button span {
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.news-more-button.open span {
  display: none;
}

.news-more-button img {
  display: inline-block;
  margin: 0 0 0 8px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.news-more-button.open img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.news-more-button.no-backnumber {
  pointer-events: none;
  opacity: 0.3;
}

.news-backnumber {
  display: none;
}

@media screen and (min-width: 768px) {
  .news-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1199px) {
  .news-box dl {
    border-bottom: 1px solid #dcdcdc;
  }
}

@media screen and (min-width: 1200px) {
  .news-title {
    width: 20%;
  }

  .news-box {
    width: 80%;
    padding: 0 120px 0 0;
  }

  .news-box dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 15px 40px;
  }

  .news-box dt {
    width: 200px;
    margin: 0;
  }

  .news-box dd {
    width: calc(100% - 200px);
  }

  .news-more-button {
    bottom: 50%;
    left: auto;
    right: 40px;
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }

  .news-backnumber dl {
    border-top: 1px solid #dcdcdc;
  }
}

/*--------------------------
|          試合情報          |
---------------------------*/
.match-info-sec {
  text-align: center;
  background: url(../images/bg_stadium.jpg) no-repeat bottom center/cover;
}

.match-info-sec h2 {
  margin: 0 0 40px 0;
  font-size: 2.4rem;
}

.match-info-sec h2 span {
  font-size: 1.6rem;
}

.match-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 20px 0;
}

.match-card div {
  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;
  width: 43%;
}

.match-card div img {
  display: block;
}

.match-card div span {
  display: block;
  font-weight: bold;
}

.match-card p {
  font-weight: bold;
  font-size: 2.4rem;
}

.match-info {
  margin: 0 0 30px 0;
}

.match-info p {
  margin: 0 0 10px 0;
}

.match-info p:first-of-type {
  margin: 0;
  font-weight: bold;
  font-size: 7.2rem;
}

.match-info p:first-of-type span {
  display: inline-block;
  font-size: 2.4rem;
  color: #fff;
  padding: 0 6px;
  margin: 0 0 0 16px;
  background: #000;
}

.match-info p.sat span {
  background: #003AAF;
}

.match-info p:nth-of-type(2) {
  font-weight: bold;
  font-size: 3.2rem;
}

.match-info p:last-of-type span {
  display: inline-block;
  padding: 10px;
  font-weight: bold;
  font-size: 1.8rem;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.match-sponsor {
  margin: 60px 0 0 0;
}

.match-sponsor div {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 20px;
}

.match-sponsor h3 {
  position: absolute;
  top: -10px;
  left: 50%;
  z-index: 5;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  white-space: nowrap;
}

.match-sponsor h3::before {
  content: "";
  display: block;
  width: 120%;
  height: 105%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) skewX(-20deg);
  -ms-transform: translate(-50%, -50%) skewX(-20deg);
  transform: translate(-50%, -50%) skewX(-20deg);
  background: #000;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .match-info-sec h2 {
    font-size: 3.2rem;
  }

  .match-info-sec h2 span {
    font-size: 2rem;
  }

  .match-card {
    max-width: 550px;
    margin: 0 auto;
  }

  .match-card p {
    font-size: 3.2rem;
  }

  .match-sponsor h3 {
    font-size: 2.4rem;
  }
}

/*--------------------------
|          見どころ          |
---------------------------*/
.match-preview-text {
  width: 85%;
  margin: 0 auto 40px 0;
}

.match-preview-text .text-link {
  display: inline;
}

.match-preview h2.sec-title-l {
  margin: 0 0 -11px 0;
  text-align: left;
}

.match-preview h2 span {
  color: #00AAEE;
}

.match-preview-img {
  margin: 0 0 -24px 0;
}

.match-preview h3 {
  position: relative;
  margin: 0 0 30px 0;
  display: inline-block;
  padding: 10px 16px;
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  text-align: left;
}

.match-preview-text p {
  line-height: 1.8;
  color: #333;
}

.match-preview-text .text-link {
  text-decoration: underline;
}

.match-preview-text .text-link::before {
  content: none;
}

@media screen and (min-width: 768px) {
  .match-preview-text {
    width: 68%;
    max-width: 720px;
  }

  .match-preview h3 {
    font-size: 2rem;
  }

}

/*--------------------------
|          注目選手          |
---------------------------*/
.pickup-players {
  background: #CCEEFC;
}

.pickup-players h3 span {
  position: relative;
  display: block;
  font-size: 1.8rem;
  color: #00AAEE;
}

.pickup-players h3 span::before {
  content: url(../images/icon_pickup-title.png);
  display: block;
  position: absolute;
  top: -12px;
  left: 24%;
}

.pickup-movie,
.highlights-movie {
  padding: 30px 0;
  background: #000;
}

.pickup-movie div,
.highlights-movie div {
  position: relative;
  padding-top: 56.2%;
  width: 100%;
  height: 0;
}

.pickup-movie iframe,
.highlights-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pickup-movie div.wait {
  position: relative;
  background: #dcdcdc;
}

.pickup-movie div.wait span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  font-weight: bold;
  white-space: nowrap;
}

.pickup-message {
  margin: 40px 0 0 0;
}

.pickup-message>div {
  position: relative;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}

.pickup-message>div::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background: -o-linear-gradient(181deg, #00EAEE 0%, #00AAEE 100%);
  background: linear-gradient(269deg, #00EAEE 0%, #00AAEE 100%);
  border-radius: 20px 20px 0 0;
}

.pickup-face-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #000;
}

.pickup-face-box img {
  display: block;
  width: 100px;
  margin-right: 10px;
}

.pickup-face-box span {
  font-weight: bold;
}

.pickup-face-box span span {
  padding: 0 0 0 8px;
  color: #707070;
  font-size: 1.4rem;
}

.pickup-message p {
  margin-top: 20px;
}

.pickup-text-box p:first-of-type {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .pickup-face-box img {
    width: 80px;
  }
}

@media screen and (min-width: 768px) {
  .pickup-players h3 span::before {
    left: 40%;
  }

}

@media screen and (min-width: 1200px) {
  .pickup-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .pickup-movie {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 68%;
    max-width: 720px;
  }

  .pickup-message {
    margin: 0;
    width: 30%;
  }
}

/*--------------------------
|          選手一覧          |
---------------------------*/
.players {
  background-size: auto auto;
  background-color: rgba(0, 170, 238, 1);
  background-image: -o-repeating-linear-gradient(330deg, transparent, transparent 12px, rgba(204, 238, 252, .2) 12px, rgba(204, 238, 252, .2) 18px);
  background-image: repeating-linear-gradient(120deg, transparent, transparent 12px, rgba(204, 238, 252, .2) 12px, rgba(204, 238, 252, .2) 18px)
}

.players .content-inner {
  position: relative;
}

.players h3 {
  position: absolute;
  top: -20px;
  left: 10px;
  text-align: left;
}

.players h3 span {
  display: inline-block;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #000;
}

.players h3 span:nth-of-type(2) {
  display: block;
  margin: 6px 0 0 0;
  font-size: 1.8rem;
  font-weight: 500;
}

.players-list {
  margin: 0 0 40px 0;
}

.players-list li {
  margin: 0 10px;
}

.players-list li p {
  margin: 4px 0 0 0;
  padding: 2px;
  text-align: center;
  background: rgba(255, 255, 255, .8);
}

@media screen and (min-width: 768px) {
  .players h3 {
    top: -30px;
    left: 0px;
  }
}

/*--スライダー設定--*/
.slick-prev {
  left: 0;
  z-index: 1;
}

.slick-next {
  right: 13px;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
  font-size: 24px;
}


@media screen and (max-width: 1199px) {
  .slick-list {
    overflow: hidden;
  }
}

@media screen and (min-width: 1200px) {
  .slick-next {
    right: 8px;
  }

  .players-list .slick-next {
    right: 2px;
  }
}

/*--------------------------
|         ボタン共通         |
---------------------------*/
.button-square {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.button-square a {
  display: inline-block;
  padding: 20px 30px;
  min-width: 360px;
  background: #000;
  color: #fff;
  font-weight: bold;
}

.text-link {
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #0B4157;
}

.text-link::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: -16px;
  border-top: 2px solid #0B4157;
  border-right: 2px solid #0B4157;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.lp-button a {
  position: relative;
  text-align: left;
}

.lp-button a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 30px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.button-middle {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.button-middle a {
  display: block;
  padding: 20px 30px;
  border-radius: 100vh;
  background: #0B4157;
  color: #fff;
  font-weight: bold;
}

.we-ticket.button-middle a {
  background: #fff;
  color: #ED0033;
  border: 2px solid #ED0033;
}

.we-ticket.button-middle a::before {
  border-color: #ED0033;
}

.button-large {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.button-large a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  border-radius: 100vh;
  background: -o-linear-gradient(351deg, #ED0033 0%, #ED00A3 100%);
  background: linear-gradient(99deg, #ED0033 0%, #ED00A3 100%);
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
}

.button-large a img {
  display: inline-block;
  margin: 0 6px 0 0;
}

.lp-button:not(:last-of-type) {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .button-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .button-box .button-large {
    width: 58%;
    margin: 0 20px 0 0;
  }

  .button-box .button-middle {
    width: 40%;
    margin: 0;
  }

  .button-large a {
    padding: 20px 40px;
    font-size: 2.4rem;
  }
}

/*--------------------------
|       前節ハイライト       |
---------------------------*/
.highlights-box {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.highlights-box p {
  margin: 10px 0 0 0;
  font-size: 1.4rem;
}

.highlights-box p span {
  display: block;
  font-weight: bold;
  font-size: 1.6rem;
}

.highlights-box p span span {
  display: inline-block;
  padding: 0 0 0 6px;
  font-size: 90%;
}

@media screen and (min-width: 768px) {
  .highlights-box p span {
    font-size: 2rem;
  }
}

/*--------------------------
|         コロナ対策         |
---------------------------*/
.safe {
  background: #CCEEFC;
  color: #0B4157;
}

.safe-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.safe-list p {
  margin: 8px 0 0 0;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .safe-list li {
    width: 49%;
    margin: 0 2% 20px 0;
  }

  .safe-list li:nth-child(2n) {
    margin-right: 0;
  }

  .safe-list p {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .safe-list {
    max-width: 870px;
    margin: 0 auto;
  }

  .safe-list li {
    width: 32%;
    margin: 0 2% 0 0;
  }

  .safe-list li:nth-child(3n) {
    margin-right: 0;
  }
}

/*--------------------------
|         応援について        |
---------------------------*/
.cheering-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cheering-list li {
  margin: 0 2% 20px 0;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;
  border: 2px solid #00AAEE;
  overflow: hidden;
  background: #00AAEE;
}

.cheering-list li:not(.cheering-myvi) img {
  width: 100%;
}

.cheering-myvi {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cheering-myvi .cheering-text {
  padding-bottom: 0;
}

.cheering-list li.cheering-myvi img {
  display: block;
  margin: 0 auto;
}

.cheering-text {
  padding: 15px;
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .cheering-list li {
    width: 49%;
  }

  .cheering-list li:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1199px) {
  .cheering-list li {
    width: 24%;
    margin: 0 1% 20px 0;
  }

  .cheering-list li:nth-child(4n) {
    margin-right: 0;
  }

}

@media screen and (min-width: 1200px) {

  .cheering-list li {
    width: 18%;
  }

  .cheering-list li:nth-child(5n) {
    margin-right: 0;
  }
}

/*--------------------------
|          チケット         |
---------------------------*/
.ticket-sec h3 {
  font-size: 1.8rem;
}

.ticket-sec .content-inner>div {
  margin: 0 0 40px 0;
}

.ticket-sec .has-border-top::before {
  background: #00AAEE;
}


@media screen and (min-width: 768px) {
  .ticket-sec h3 {
    font-size: 2.4rem;
  }
}

/*--席割図--*/
.seatmap-box {
  max-width: 720px;
  margin: 0 auto;
}

/*--価格表--*/
.ticket-price table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 20px auto;
}

.ticket-price table th:first-of-type {
  width: 46%;
}

.ticket-price table th:nth-of-type(n+2) {
  width: 18%;
}

.ticket-price th,
.ticket-price td {
  padding: 8px 10px;
  background: #fff;
}

.ticket-price td.advance,
.ticket-price td.today,
.ticket-price td.coupon {
  text-align: center;
}

.ticket-price th {
  background: #dcdcdc;
}

.seat-sss td {
  background: #fde0e6;
}

.seat-sss td:first-of-type {
  background: #e26c84;
}

.seat-ss td {
  background: #cddefd;
}

.seat-ss td:first-of-type {
  background: #5073b3;
}

.seat-szone td {
  background: #ffecd4;
}

.seat-szone td:first-of-type {
  background: #f7a744;
}

.seat-szone td.seat-sub {
  background: #fbcc91;
}

.seat-unreserved td {
  background: #d0eaf3;
}

.seat-unreserved td:first-of-type {
  background: #00abeb;
}

.seat-unreserved td.seat-sub {
  background: #83d8f7;
}

.seat-steak td {
  background: #e5c9aa;
}

.seat-steak td:first-of-type {
  background: #b7670f;
}

.seat-pre td {
  background: #a8d9bd;
}

.seat-pre td:first-of-type {
  background: #078d3f;
}

.seat-trial td {
  background: #dec0eb;
}

.seat-trial td:first-of-type {
  background: #873ca9;
}

.ticket-price .annotation,
.annotation-list span {
  font-size: 1.2rem;
  vertical-align: top;
}

.annotation-list {
  max-width: 720px;
  margin: 0 auto;
}

.annotation-list li {
  padding: 2px 0;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {

  .ticket-price th,
  .ticket-price td {
    padding: 6px;
    font-size: 1.4rem;
  }
}

/*--購入方法--*/
.howto-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.howto-list-item {
  width: 100%;
  margin: 0 0 40px 0;
  background: #CCEEFC;
  -webkit-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 10px;
  overflow: hidden;
}

.howto-list h4 {
  margin: 0;
  padding: 10px 30px;
  font-size: 1.8rem;
  color: #fff;
  background: #0B4157;
  text-align: left;
}

.howto-text-box {
  padding: 20px;
}

.howto-text-box p {
  margin: 0 0 20px 0;
}

.howto-text-box p:last-child {
  margin: 0;
}

.howto-shop p span {
  display: block;
  margin: 0 0 10px 0;
  font-weight: bold;
  font-size: 1.8rem;
}

.howto-list ol {
  counter-reset: num;
  list-style-type: none;
}

.howto-list ol li {
  position: relative;
  padding: 0 0 30px 30px;
}

.howto-list ol li:before {
  position: absolute;
  counter-increment: num;
  content: counter(num);
  display: inline-block;
  background: #0B4157;
  color: #FFF;
  font-size: 1.4rem;
  border-radius: 50%;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  text-align: center;
}

.howto-list ol li span {
  font-weight: bold;
  color: #0B4157;
}

.howto-value {
  background: #FFF4D8;
}

.howto-value h4 {
  background: #FFB703;
}

.howto-catch {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .howto-list h4 {
    font-size: 2.4rem;
  }

  .howto-text-box {
    padding: 30px;
  }
}

@media screen and (min-width: 1200px) {

  .howto-pia,
  .howto-shop {
    width: 48%;
  }
}

/*--お得なチケット--*/
.value-ticket-list div p {
  margin: 6px 0 0 0 !important;
  font-weight: bold;
}

.value-ticket-list div a {
  display: block;
}

.value-ticket-list div {
  margin: 0 0 20px 0;
}

@media screen and (min-width: 768px) {
  .value-ticket-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .value-ticket-list div {
    width: 32%;
  }
}

/*--------------------------
|          イベント         |
---------------------------*/
.event-sec {
  background-size: auto auto;
  background-color: rgba(0, 170, 238, 1);
  background-image: -o-repeating-linear-gradient(330deg, transparent, transparent 12px, rgba(204, 238, 252, .2) 12px, rgba(204, 238, 252, .2) 18px);
  background-image: repeating-linear-gradient(120deg, transparent, transparent 12px, rgba(204, 238, 252, .2) 12px, rgba(204, 238, 252, .2) 18px)
}

.event-sec .sec-intro {
  text-align: center;
}

.event-sec h2 {
  display: inline-block;
  padding: 6px 10px 2px;
  color: #fff;
  background: #ffb000;
}

.event-box {
  padding: 40px 15px;
  background: #eee;
  border-radius: 20px;
}

.event-box>div:nth-of-type(n+2) {
  margin: 60px 0 0 0;
}

.event-box h3 span {
  position: relative;
  padding: 6px 10px;
  z-index: 10;
  color: #fff;
}

.event-box h3 span::before {
  content: "";
  display: block;
  width: 120%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: translateX(-8%) skewX(-24deg);
  -ms-transform: translateX(-8%) skewX(-24deg);
  transform: translateX(-8%) skewX(-24deg);
  background: #000;
}

/*--イベント情報--*/
.event-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.event-list li {
  margin: 0 0 30px 0;
  border-radius: 20px;
  overflow: hidden;
}

.event-list li img {
  width: 100%;
}

.event-text-box {
  padding: 20px;
  background: #fff;
}

.event-list-small .event-text-box {
  padding: 10px;
}

.event-text-box>div {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.event-text-box h4 {
  margin: 0 0 15px 0;
  font-size: 1.6rem;
  color: #00AAEE;
  text-align: left;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.event-list-small .event-text-box h4 {
  margin: 0 0 20px 0;
  font-size: 1.4rem;
  -webkit-line-clamp: 2;
}

.event-text-box p {
  margin: 0 0 20px 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.button-event {
  position: relative;
  padding: 10px 20px;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  background: #0B4157;
  font-size: 1.4rem;
  color: #fff;
}

.button-event::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.event-list-small .button-event {
  padding: 6px 8px;
  max-width: 145px;
}

.event-list-small .button-event::before {
  width: 6px;
  height: 6px;
  right: 10px;
}

.present {
  padding: 40px 0 0 0;
}

@media screen and (max-width: 767px) {
  .event-sec .sec-intro p {
    text-align: left;
  }

  .event-list-small li {
    width: 49%;
  }

  .event-list-small li:nth-child(2n) {
    margin: 0 0 30px 0;
  }

}

@media only screen and (min-width: 767px) and (max-width: 1280px) {
  .event-list-small li {
    width: 32%;
  }

  .event-list-small li:nth-child(3n) {
    margin: 0 0 30px 0;
  }
}


@media screen and (min-width: 768px) {
  .event-box {
    padding: 60px 35px;
  }

  .event-box h3 {
    margin: 0 0 40px 0;
  }

  .event-box>div:nth-of-type(n+2) {
    margin: 100px 0 0 0;
  }

  .event-text-box {
    padding: 20px 30px;
  }

  .event-list-large .event-text-box h4 {
    font-size: 2.2rem;
  }

  .event-list-large li {
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .event-list-large li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .event-list-large li .event-img-box {
    width: 50%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .event-list-large li .event-text-box {
    width: 50%;
  }
}

@media screen and (max-width: 1199px) {
  .event-list-small li {
    margin: 0 2% 30px 0;
  }
}


@media screen and (min-width: 1200px) {
  .event-list-small li {
    width: 24%;
    margin: 0 1% 30px 0;
  }

  .event-list-small .event-text-box h4 {
    margin: 0 0 30px 0;
    font-size: 1.4rem;
  }
}

/*--イベントマップ--*/
.event-map {
  text-align: center;
}

.event-map p {
  margin: 0 0 30px 0;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .event-map p {
    text-align: left;
  }
}

/*--イベントスケジュール--*/
.event-schedule-list {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.event-schedule-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.event-schedule-list dt {
  width: 20%;
  margin: 0 0 10px 0;
  padding: 10px 0;
  text-align: center;
  background: #0B4157;
  color: #fff;
  font-weight: bold;
}

.event-schedule-list dd {
  width: 80%;
  margin: 0 0 10px 0;
  padding: 10px 15px;
  background: #fff;
  font-weight: bold;
}

.event-schedule-list .match-time dt {
  background: #00AAEE;
}

.event-schedule-list .match-time dd {
  background: #CCEEFC;
}

@media screen and (min-width: 768px) {
  .event-schedule-list dt {
    font-size: 2.4rem;
  }

  .event-schedule-list dd {
    width: 80%;
    padding: 15px 30px;
    font-size: 1.8rem;
  }
}

/*--------------------------
|        選手インビュー      |
---------------------------*/
.sec-intro {
  position: relative;
}

.event-sec .sec-intro p {
  color: #fff;
}

.player-catch-box {
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}

.player-catch-box.viewon {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.player-catch-box span {
  position: absolute;
  font-size: 1.4rem;
  text-align: center;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  white-space: nowrap;
}

.player-catch-box span::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}

.player-catch-box span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #000;
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

.player-catch-box div {
  width: 50%;
  margin: 0 0 0 auto;
}

.player-catch-box.player_01 span {
  color: #fff;
}

.player-catch-box.player_01 span::before,
.player-catch-box.player_01 span::after {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .player-catch-box span {
    display: block;
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .sec-intro {
    padding: 0 0 60px 0;
  }

  .sec-intro p {
    text-align: center;
  }

  .player-catch-box {
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .player-catch-box div {
    width: 70%;
  }

  .player-catch-box span {
    display: inline-block;
    top: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .player-catch-box span::before {
    top: auto;
    bottom: 0;
    right: auto;
    left: -20px;
  }

  .player-catch-box span::after {
    right: -20px;
  }
}

@media screen and (min-width: 1200px) {
  .player-catch-box div {
    width: 100%;
  }
}

/*--------------------------
|           グルメ          |
---------------------------*/
.gourmet-sec {
  background: #FFFAEC;
}

.gourmet-sec .has-border-top::before {
  background: #ED9E00;
}

.gourmet-sec h3,
.goods-sec h3 {
  position: relative;
}

.gourmet-sec h3 span,
.goods-sec h3 span {
  position: relative;
  padding: 8px 24px;
  background: #ED9E00;
  color: #fff;
  font-size: 1.8rem;
}

.gourmet-sec h3 span::before {
  content: url(../images/icon_gourmet-title.png);
  display: block;
  position: absolute;
  top: -18px;
  left: -20px;
}

.goods-sec h3 span::before {
  content: url(../images/icon_goods-title.png);
  display: block;
  position: absolute;
  top: -18px;
  left: -20px;
}

.gourmet-list {
  padding-bottom: 40px;
}

.gourmet-list li {
  margin: 0 10px 10px 10px;
  -webkit-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;
}

.gourmet-text-box {
  padding: 20px 16px;
  background: #fff;
}

.gourmet-text-box p {
  margin: 0 0 8px 0;
}

.gourmet-shop {
  margin: 0 0 16px 0;
  font-weight: bold;
  color: #00AAEE;
}

.gourmet-menu {
  margin: 0 0 24px;
}

.gourmet-text-box p span {
  display: inline-block;
  padding: 2px 8px;
  margin: 0 8px 0 0;
  background: #0B4157;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .gourmet-list li {
    width: 32%;
  }
}


/*--選手インビュー調整--*/
.player_02 div {
  margin: 0 auto 0 0;
}

.player_02 span {
  left: auto;
  right: 0;
}

@media screen and (max-width: 767px) {
  .player_02 span::before {
    right: auto;
    left: 0;
    -webkit-transform: rotate(140deg);
    -ms-transform: rotate(140deg);
    transform: rotate(140deg);
  }

  .player_02 span::after {
    right: auto;
    left: 0;
    -webkit-transform: rotate(-140deg);
    -ms-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
}

@media screen and (min-width: 768px) {
  .player_02 {
    right: auto;
    left: 0;
  }
}

/*--------------------------
|           グッズ          |
---------------------------*/
.goods-style,
.goods-rank {
  padding: 80px 0 0 0;
}

.goods-sec {
  background: #CCEEFC;
}

.goods-sec .has-border-top::before {
  background: #0B4157;
}

.goods-sec h3 span {
  background: #0B4157;
}

.goods-list {
  margin: 0 0 40px 0;
}

.goods-list li {
  margin: 0 10px 10px 10px;
  -webkit-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;
}

.goods-text-box {
  padding: 16px;
  background: #fff;
}

.goods-text-box p {
  font-weight: bold;
}

.goods-sec h4 {
  color: #0B4157;
}

/*--------------------------
|         サポーター         |
---------------------------*/
.supporter-list li {
  margin: 0 10px;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;
}


/*--------------------------
|         ランキング         |
---------------------------*/
.goods-rank-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.goods-rank-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 20px 0;
}

.rank-img-box {
  position: relative;
  width: 40%;
}

.rank-img-box span {
  padding: 6px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.8rem;
  font-weight: bold;
  background: #00aaee;
  color: #fff;
}

.rank-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.rank-text-box {
  width: 60%;
  padding: 16px;
  background: #00AAEE;
  color: #fff;
}

.rank-text-box p:not(:first-of-type) {
  font-size: 1.4rem;
}

.rank-text-box p:first-of-type,
.rank-text-box p:nth-of-type(2) {
  font-weight: bold;
}

.rank-text-box p:nth-of-type(2) {
  margin: 0 0 10px 0;
}

.goods-rank p {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .goods-rank-list li {
    width: 49%;
  }
}

@media screen and (min-width: 1200px) {
  .goods-rank-list li {
    width: 32%;
  }
}


/*--------------------------
|         エンジョイ         |
---------------------------*/
.enjoy-sec .content-inner {
  padding-bottom: 0;
}

.enjoy-sec h2 {
  margin: 0 0 40px 0;
  font-size: 3.2rem;
}

.enjoy-sec .content-inner>p {
  margin: 0 0 30px 0;
}

.enjoy-tool-list>div {
  margin: 0 0 20px 0;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;
  overflow: hidden;
}

.enjoy-tool-list h3 {
  margin: 0 0 20px 0;
  font-size: 1.8rem;
  color: #00AAEE;
  text-align: left;
}

.enjoy-tool-box>div:first-of-type {
  margin: 0 0 20px 0;
}

.enjoy-tool-box>div:last-of-type {
  text-align: center;
}

.enjoy-tool-box p {
  margin: 0 0 10px 0;
}

@media screen and (max-width: 767px) {
  .enjoy-tool-box>div img {
    max-width: 150px;
  }
}

@media screen and (min-width: 768px) {
  .enjoy-sec h2 {
    font-size: 7.2rem;
  }

  .enjoy-tool-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .enjoy-tool-list>div {
    width: 49%;
  }

  .enjoy-tool-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .enjoy-tool-box>div:first-of-type {
    width: 64%;
    margin: 0;
  }

  .enjoy-tool-box>div:last-of-type {
    width: 32%;
  }
}

@media screen and (min-width: 768px) {
  .enjoy-tool-list h3 {
    font-size: 2.2rem;
  }
}

.enjoy-banner-box {
  padding: 20px 0 0 0;
}

.enjoy-banner-box>div:not(:last-of-type) {
  margin: 0 0 20px 0;
}

/*--選手インビュー調整--*/
.player_04 span {
  padding: 15px 20px;
  background: #CCEEFC;
  color: #0B4157;
  font-weight: bold;
  border-radius: 20px;
  text-align: left;
}

.player_04 span::before {
  content: url(../images/arrow-sc.svg);
  top: auto;
  bottom: 6px;
  left: 50%;
  background: none;
  -webkit-transform: translateX(-50%) rotate(0);
  -ms-transform: translateX(-50%) rotate(0);
  transform: translateX(-50%) rotate(0);
}

.player_04 span::after {
  content: none;
}

.player_04 div {
  position: relative;
  z-index: 2;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .enjoy-banner-box {
    padding: 60px 0 80px 0;
  }

  .enjoy-banner-box>div:first-of-type {
    margin-bottom: 60px;
  }

  .enjoy-banner-box div:not(:last-of-type) {
    width: 66%;
    margin-left: auto;
  }

  .player_04 {
    right: auto;
    left: 0;
    width: 32%;
  }

  .player_04 span {
    top: -80px;
    left: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

}

/*--------------------------
|           アクセス         |
---------------------------*/
.access-sec .has-border-top::before {
  background: #00aaee;
}

.stadium {
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.access-box {
  margin: 0 0 40px 0;
}

.stadium-info h3 span {
  padding: 6px 20px;
  background: #00aaee;
  color: #fff;
}

.stadium-info>p {
  margin: 0 0 20px 0;
}

.subway {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 30px 0;
  padding: 10px 20px;
  background: #fff;
  border-radius: 100vh;
}

.subway img {
  display: block;
  margin: 0 10px 0 0;
}

.subway p {
  font-weight: bold;
  color: #0B4157;
}

.stadium-info ul li {
  padding: 4px 0 4px 1em;
  text-indent: -1em;
  font-weight: bold;
}

.g-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6%;
}

.g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.g-map+p {
  margin: 8px 0 0 0;
  font-weight: bold;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .stadium-info {
    margin: 0 0 30px 0;
  }
}

@media screen and (min-width: 768px) {
  .stadium-info h3 {
    text-align: left;
  }

  .stadium-info h3 span {
    font-size: 3.2rem;
  }

  .subway {
    padding: 10px 30px;
  }

  .access-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .access-box>div {
    width: 48%;
  }

  .stadium-info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/*--------------------------
|         SNSリンク         |
---------------------------*/
.sns-box {
  padding: 60px 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#00EAEE), to(#00AAEE));
  background: -o-linear-gradient(top, #00EAEE 0%, #00AAEE 100%);
  background: linear-gradient(180deg, #00EAEE 0%, #00AAEE 100%);
}

.sns-box p {
  margin: 0 0 30px 0;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.sns-list {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sns-list li {
  margin: 0 10px;
}

@media screen and (min-width: 768px) {
  .sns-box p {
    font-size: 2.4rem;
  }

  .sns-list li {
    margin: 0 20px;
  }
}


/*--------------------------
|          フッター         |
---------------------------*/
.footer-bottom {
  padding: 30px 15px;
  background: #000;
  text-align: center;
}

.footer-bottom p {
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer-bottom {
    padding: 30px 15px 100px 15px;
  }

  .footer-bottom div {
    margin: 0 auto 10px auto;
    max-width: 120px;
  }
}

/*--------------------------
|          モーダル          |
---------------------------*/
.event-modal-box,
.present-modal-box {
  display: none;
}

.mynavi-lp .fancybox-skin {
  padding: 0 !important;
}

.mynavi-lp .fancybox-skin {
  background: none !important;
  box-shadow: none;
}

.mynavi-lp .fancybox-inner {
  max-width: 580px;
  background: transparent !important;
}

.mynavi-lp .fancybox-nav {
  height: 80%;
}

.event-modal-img img {
  width: 100%;
}

.event-modal-text {
  padding: 30px 20px;
  background: #f9f9f9;
}

.event-modal-title {
  margin: 0 0 15px 0;
  font-weight: bold;
  color: #00AAEE;
}

.event-modal-text .button-event {
  margin: 30px auto 0 auto;
}

.event-modal-text .button-event a {
  color: #fff;
}

.mynavi-lp .fancybox-nav span {
  visibility: visible;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .mynavi-lp .fancybox-inner {
    height: 560px !important;
    overflow-y: scroll;
  }

  .mynavi-lp .fancybox-nav {
    height: 60%;
  }

  .event-modal-text p {
    font-size: 1.4rem !important;
  }

  .event-modal-title {
    font-size: 1.6rem !important;
  }
}

/*--イベントマップモーダル--*/
.area-event {
  padding: 30px 15px;
}

.area-event p:first-of-type {
  padding: 10px 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background: #00aaee;
}

.area-event dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.area-event dl dt,
.area-event dl dd {
  padding: 10px;
  margin: 4px 0;
  font-size: 1.4rem;
}

.area-event dl dt {
  width: 95px;
  background: #0B4157;
  color: #fff;
}

.area-event dl dd {
  width: calc(100% - 95px);
  background: #eee;
}

.area-event-info {
  display: none;
}

.event-wait {
  margin: 10px 0;
  font-weight: bold;
  color: #ED0034;
}


@media screen and (min-width: 768px) {
  .mynavi-lp .fancybox-inner {
    min-width: 480px;
  }
}

@media screen and (min-width: 1200px) {
  .mynavi-lp .fancybox-prev span {
    left: -40px;
  }

  .mynavi-lp .fancybox-next span {
    right: -40px;
  }
}

.event-modal-item .button-event,
.present-modal-item .button-event {
  padding: 0;
}

.event-modal-item .button-event a,
.present-modal-item .button-event a {
  display: block;
  padding: 10px 20px;
}


/*--------------------------
|     固定チケットボタン      |
---------------------------*/
.ticket-fix-button {
  position: fixed;
  z-index: 50;
  width: 100%;
  max-width: 300px;
}

.ticket-fix-button .button-large a {
  width: 100%;
  padding: 12px 24px;
  font-size: 1.8rem;
  border: 1px solid #000;
  -webkit-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;
}

.ticket-fix-button .button-large a img {
  width: 28px;
}


@media screen and (max-width: 767px) {
  .ticket-fix-button {
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .ticket-fix-button .button-large a {
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .ticket-fix-button {
    bottom: 40px;
    right: 3%;
  }
}


/*--------------------------
|         インビュー         |
---------------------------*/
.fade-in {
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
}

.fade-in.viewon {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
