@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;
  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: #00abeb;
  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:first-of-type {
  display: block;
  font-size: 1.8rem;
}

h2.sec-title-l span:nth-of-type(2) {
  color: #fcc800;
}

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: 70px;
  overflow: hidden;
}

.content-inner {
  position: relative;
  padding: 60px 15px;
}

.has-border-top::before {
  content: "";
  display: block;
  width: 100vw;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  border-top: 4px solid #fcc800;
  border-bottom: 4px solid #007934;
  /* background: #007934; */
}

.grad-box {
  position: relative;
}

.grad-box::before {
  content: "";
  display: block;
  width: 13%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(269deg, #00EAEE 0%, #49bdf0 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 !important;
}

@media screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }

  .d-md-none {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}

.content-center {
  text-align: center;
}

.text-important {
  font-weight: bold;
  text-decoration: underline;
  color: #ED0033;
  font-size: 1.8rem;
}

.text-right {
  text-align: right;
}


/*--------------------------
|          ヘッダー          |
---------------------------*/
.lp-header {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  padding: 8px 15px 16px 15px;
  /* background: #49bdf0; */
  background: #00abeb;
  box-shadow: 0px 3px 6px #00000029;
}

.lp-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  border-bottom: 4px solid #007934;
  border-top: 4px solid #fcc800;
}

.header-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  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: 15px 15px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}

.g-nav a.stand-by {
  opacity: 0.6;
  pointer-events: none;
}

.g-nav .external a span {
  position: relative;
  padding-left: 16px;
}

.g-nav .external a span::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  background: #fff;
}

.g-nav .external a span::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 40%;
  left: 5px;
  transform: translateY(-50%);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media screen and (max-width: 1199px) {
  .g-nav {
    position: fixed;
    top: 71px;
    right: 0;
    width: 80%;
    height: calc(100vh - 71px);
    -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: #00abeb;
    overflow-y: scroll;
  }

  .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;
  }

  .g-nav .external a span {
    padding-left: 24px;
  }

  .g-nav .external a span::before {
    background: #fff;
  }

  .g-nav .external a span::after {
    border-color: #fff;
  }

  .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: 1200px;
  }

  .lp-header::before {
    width: 34%;
  }

  .g-nav {
    display: block;
  }

  .g-nav ul {
    display: flex;
  }

  .g-nav a {
    padding: 0 8px;
  }
}

@media screen and (min-width: 1260px) {
  .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: #fff;
  -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: #fff;
}

.hamburger.open span:first-child {
  top: 2rem;
  transform: rotate(-45deg);
}

.hamburger.open span:nth-child(2) {
  visibility: hidden;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(45deg);
}

.hamburger.open p {
  display: none;
}

@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}

/*--------------------------
|            kv             |
---------------------------*/
.kv img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

/*--------------------------
|          ニュース          |
---------------------------*/
.news {
  display: flex;
}

.news-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  padding-right: 8px;
  background: #00abeb;
  color: #fff;
  font-weight: bold;
}

.news-title::before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  background: #fcc800;
  border-right: 4px solid #007934;
}

.news-box {
  position: relative;
  padding: 0 0 30px 0;
  width: calc(100% - 70px);
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  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: flex;
  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 {
  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: 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;
    transform: translate(0, 50%);
  }

  .news-backnumber dl {
    border-top: 1px solid #dcdcdc;
  }
}

/*--------------------------
|          試合情報          |
---------------------------*/
.match-info-sec {
  position: relative;
  text-align: center;
  background: #fdfdfd;
  background: url(../images/bg_stadium.jpg) no-repeat center center/cover;
}

/*
.match-info-sec::before {
  content: "";
  display: block;
  width: 24vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bg_match-card_l.svg) no-repeat center right/cover;
}

.match-info-sec::after {
  content: "";
  display: block;
  width: 24vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/bg_match-card_r.svg) no-repeat center left/cover;
}
*/

.match-info-sec h2 {
  margin: 0 0 20px 0;
  font-size: 2.4rem;
}

.match-info-sec h2 span.stage {
  font-size: 1.6rem;
}

.match-info-sec h2 span.league {
  padding: 2px 4px;
  margin: 0 6px;
  background: #B09E7C;
}

.match-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px 0;
}

.match-card div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}

.match-card div img {
  display: block;
  margin: 0 auto;
  max-width: 160px;
}

.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: 20px 0 0 0;
  font-weight: bold;
  font-size: 6.4rem;
  line-height: 1.2;
}

.match-info p:first-of-type span {
  display: inline-block;
  padding-left: 10px;
  font-size: 3.2rem;
}

.match-info p:nth-of-type(2) {
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.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-info p:last-of-type span span {
  display: block;
  font-size: 80%;
}

.match-sponsor {
  position: relative;
  z-index: 1;
  margin: 40px 0 0 0;
  border: 1px solid #00abeb;
  border-radius: 20px;
  overflow: hidden;
}

.match-sponsor div {
  padding: 4px 10px;
  background: #fff;
}

.match-sponsor div a {
  display: block;
}

.match-sponsor h3 {
  margin: 0;
  padding: 4px 0;
  background: #00abeb;
  color: #fff;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .match-info-sec .content-inner {
    padding-top: 40px;
  }

  .match-info p:last-of-type span {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .match-info-sec h2 {
    font-size: 3.2rem;
  }

  .match-info-sec h2 span.stage {
    font-size: 2rem;
  }

  .match-card {
    max-width: 550px;
    margin: 0 auto;
  }

  .match-card p {
    font-size: 3.2rem;
  }

  .match-sponsor {
    display: flex;
    max-width: 580px;
    margin: 40px auto 0 auto;
  }

  .match-sponsor h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .match-sponsor div {
    width: 60%;
  }
}

/*--------------------------
|          見どころ          |
---------------------------*/

.match-preview {
  position: relative;
  overflow: hidden;
}

.match-preview-text .text-link {
  display: inline;
}

.match-preview h2.sec-title-l {
  color: #fff;
}

.match-preview h3 {
  position: relative;
  margin: 0 0 30px 0;
  color: #2FB4EE;
  font-size: 2rem;
  text-align: left;
}

.match-preview-text {
  padding: 30px 20px;
  background: #fff;
}

.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;
}

.match-preview-text div>p:nth-of-type(n+2) {
  margin: 20px 0;
}

.match-preview-sub {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.match-preview-sub>div {
  width: 49%;
  margin-bottom: 20px;
}

.match-preview-sub>div div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.match-preview-sub>div div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .match-preview-text {
    padding: 30px 40px;
  }

  .match-preview h3 {
    font-size: 2.4rem;
  }

  .match-preview-sub>div div {
    padding-top: 66%;
  }
}

@media screen and (min-width: 1200px) {
  .match-preview-text {
    padding: 30px 60px;
  }

  .match-preview-sub>div {
    width: 23.5%;
  }

}

/*--------------------------
|          注目選手          |
---------------------------*/
.pickup-players {
  background: #fdfdfd;
}

.pickup-players h3>span,
.players h3>span {
  display: inline-block;
  min-width: 240px;
  position: relative;
  padding: 12px 15px 6px 15px;
  margin-bottom: 10px;
  background: #2FB4EE;
  color: #fff;
  line-height: 1.2;
}

.pickup-players h3>span::after,
.players h3>span::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -10px;
  left: 0;
  border-style: solid;
  border-width: 0 40px 10px 0;
  border-color: transparent #3DA2CE transparent transparent;
}

.pickup-players h3 span span,
.players h3>span span {
  display: block;
  font-size: 1.6rem;
}

/*
.pickup-players h3 span {
  position: relative;
  display: block;
  font-size: 1.8rem;
  color: #49bdf0;
}

.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%;
  transform: translate(-50%, -50%);
  display: block;
  font-weight: bold;
  white-space: nowrap;
}

.pickup-movie div.stand-by img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pickup-name {
  margin: 30px 0 8px 0;
  font-weight: bold;
  font-size: 1.8rem;
  color: #0f6d97;
}

.pickup-name span span {
  padding-left: 8px;
  font-size: 80%;
  opacity: .7;
}

/*
.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: #00c8ee;
  border-radius: 20px 20px 0 0;
}

.pickup-face-box {
  position: relative;
  display: flex;
  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,
  .players h3>span {
    min-width: 400px;
    font-size: 3.6rem;
  }

  .pickup-name {
    margin: 40px 0 8px 0;
  }

  /*
  .pickup-face-box span span {
    padding: 0;
    display: block;
  }*/

}

@media screen and (min-width: 1200px) {

  /*
  .pickup-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
*/
  .pickup-box {
    max-width: 720px;
    margin: 0 auto;
  }

  .pickup-message {
    margin: 0;
    width: 30%;
  }
}

/*--------------------------
|       その他注目選手       |
---------------------------*/
.players {
  background: #CEF0FF;
  /* background: url(../images/bg_player.jpg) no-repeat center center/cover;

  background-color: #49bdf0;
  background-image: linear-gradient(#cef0ff 1px, transparent 0), linear-gradient(90deg, #cef0ff 1px, transparent 0);
  background-size: 20px 20px;*/

}

/*
.players h3 {
  color: #fff;
}

.players h3 span:first-of-type {
  padding: 4px 10px;
}

.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>div {
  margin: 0 10px;
}

.players-list li .players-info {
  padding: 10px;
  background: #fff;
}

.players-list li .players-info p:first-of-type {
  color: #0f6d97;
  font-weight: bold;
  line-height: 1.2;
  font-size: 1.5rem;
}

.players-list li .players-info p:first-of-type span {
  letter-spacing: -0.03em;
}

/*
.players-list li .players-info p:last-of-type {
  margin: 15px 0;
}*/

/*--スライダー設定--*/
.slick-prev {
  left: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
}

.slick-next {
  right: 0;
  width: 28px;
  height: 28px;
}

.slick-prev:before,
.slick-next:before {
  color: #00abeb;
  font-size: 28px;
  opacity: 1;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
    -2px 2px 0 #FFF, 2px -2px 0 #FFF,
    0px 2px 0 #FFF, 0 -2px 0 #FFF,
    -2px 0 0 #FFF, 2px 0 0 #FFF;
}

/* @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: flex;
  justify-content: center;
}

.button-square a {
  display: inline-block;
  padding: 20px 30px;
  min-width: 320px;
  background: #A07D39;
  color: #fff;
  font-weight: bold;
  box-shadow: inset 0px 0px 6px 0px rgba(205, 174, 76, 0.9);
}

.text-link {
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #0f6d97;
}

.text-link::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: -16px;
  border-top: 2px solid #0f6d97;
  border-right: 2px solid #0f6d97;
  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;
  transform: translateY(-50%) rotate(45deg);
}

.button-middle {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.button-middle a {
  display: block;
  padding: 10px 15px;
  border-radius: 100vh;
  background: #0f6d97;
  color: #fff;
  font-weight: bold;
}

.we-ticket.button-middle a {
  background: #fff;
  color: #f04869;
  border: 2px solid #f04869;
}

.we-ticket.button-middle a::before {
  border-color: #f04869;
}

.button-large {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.button-large a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 100vh;
  background: #f04869;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  /*border: 1px solid #000;*/
  box-shadow: 0px 4px 0px 0px #ba4159;
}

.button-large a img {
  display: inline-block;
  margin: 0 6px 0 0;
}

.lp-button:not(:last-of-type) {
  margin-bottom: 20px;
}

/* .button-square a::before {
  border-color: #333;
}
 */

@media screen and (min-width: 768px) {
  .button-box {
    display: flex;
    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: 15px 30px;
    font-size: 2.4rem;
  }

  .button-square a {
    min-width: 360px;
  }
}

/*--------------------------
|       前節ハイライト       |
---------------------------*/
.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: #0f6d97;
}

.safe-list {
  display: flex;
  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 {
  background: #fff;
}

.cheering h4 {
  color: #00abeb;
}

.cheering-list {
  display: flex;
  flex-wrap: wrap;
}

.cheering-list li {
  margin: 0 2% 20px 0;
  border-radius: 10px;
  box-shadow: 0px 3px 6px #00000029;
  border: 2px solid #49bdf0;
  overflow: hidden;
  background: #49bdf0;
}

.cheering-list li:not(.cheering-myvi) img {
  width: 100%;
}

.cheering-myvi {
  display: flex;
  flex-direction: column;
  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 {
  background: #fff;
}

.ticket-sec h3 {
  font-size: 1.8rem;
}

.ticket-sec .content-inner>div:nth-of-type(n+2) {
  margin: 40px 0 0 0;
}

/* .ticket-sec .has-border-top::before {
  background: #00abeb;
} */


@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: 56%;
}

.ticket-price table th:nth-of-type(n+2) {
  width: 22%;
}

.ticket-price th,
.ticket-price td {
  padding: 8px 10px;
  background: #f4f4f4;
}

.ticket-price td.advance,
.ticket-price td.today,
.ticket-price td.coupon {
  text-align: center;
}

.ticket-price th {
  background: #dcdcdc;
}

.ticket-price td:first-of-type {
  background: #ccc;
}

.ticket-price td.seat-sub {
  width: 28%;
  background: #f4f4f4;
}

.seat-sss td {
  background: #fde0e6;
}

.seat-sss td:first-of-type {
  background: #e26c84;
}

.seat-sss td.seat-sub {
  background: #ffb2c1;
}

.seat-ss td {
  background: #cddefd;
}

.seat-ss td:first-of-type {
  background: #5073b3;
}

.seat-s td {
  background: #ffecd4;
}

.seat-s td:first-of-type {
  background: #f7a744;
}

.seat-s td.seat-sub {
  background: #fbcc91;
}

.seat-szone td {
  background: #c9f2ef;
}

.seat-szone td:first-of-type {
  background: #00aa9d;
}

.seat-szone td.seat-sub {
  background: #7bdcd4;
}

.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-pre td.seat-sub {
  background: #51c380;
}

.seat-trial td {
  background: #dec0eb;
}

.seat-trial td:first-of-type {
  background: #873ca9;
}

.seat-trial td.seat-sub {
  background: #cb9ae1;
}

.seat-dantai td:first-of-type {
  background: #a98757;
}

.seat-dantai td {
  background: #f5e6d1;
}

.ticket-price .annotation {
  font-size: 1.2rem;
  vertical-align: top;
}

.annotation-list {
  max-width: 720px;
  margin: 0 auto;
}

.annotation-list li {
  position: relative;
  padding: 2px 0 2px 24px;
  font-size: 1.4rem;
}

.annotation-list li span {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {

  .ticket-price th,
  .ticket-price td {
    padding: 6px;
    font-size: 1.4rem;
  }
}

/*--購入方法--*/
.howto-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.howto-list-item {
  width: 100%;
  margin: 0 0 40px 0;
  background: #CEF0FF;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 10px;
  overflow: hidden;
}

.howto-list h4 {
  margin: 0;
  padding: 10px 20px;
  font-size: 1.8rem;
  color: #fff;
  background: #0f6d97;
  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-text-box ul:nth-child(n+2) {
  margin-top: 20px;
}

.howto-text-box ul.pay li:nth-child(n+2) {
  margin-top: 8px;
}

.howto-text-box ul.pay span {
  font-weight: bold;
}

.howto-text-box ul.pay li:first-child span {
  color: #0f6d97;
  font-size: 1.8rem;
}

.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: #0f6d97;
  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: #0f6d97;
}

.howto-value {
  background: #FFF4D8;
}

.howto-value h4 {
  background: #FFB703;
}

.howto-catch {
  font-weight: bold;
}

.howto-list-item .button-middle {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .howto-list h4 {
    padding: 10px 30px;
    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: flex;
    justify-content: space-between;
  }

  .value-ticket-list div {
    width: 32%;
  }

  .value-ticket-list:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
}

/*--------------------------
|          イベント         |
---------------------------*/
.event-sec {
  position: relative;
  /* background-color: #0d227c; */
  background-image: url(../images/bg_event-top.png), url(../images/bg_event-bottom.png), linear-gradient(180deg, #06A6E3, #0d227c);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: top center, bottom center, center center;
  background-size: contain, contain, cover;
  overflow: hidden;
}

/*25-26 夏祭りver*/
.limited-game-event {
  width: 100%;
  max-width: 780px;
  margin: 60px auto!important;
}

.event-sec.matsuri {
  background: linear-gradient(180deg, #051637 0%, #1c2c52 50%, #5c658b 100%);
}

.event-kazari {
  position: absolute;
}

.event-sec.matsuri .content-inner {
  padding-top: 160px;
}

.kazari1 {
  top: 0;
  left: 0;
}

.kazari2 {
  top: 0;
  right: 0;
}

.kazari4 {
  top: 20%;
  right: -5%;
}

.kazari5 {
  top: 35%;
  left: -5%;
}

.kazari6 {
  top: 60%;
  right: -5%;
}

@media screen and (max-width: 767px) {
  .event-sec.matsuri .content-inner {
    padding-top: 200px;
  }

  .event-kazari {
    width: 60%;
  }

  .kazari1 {
    display: none;
  }

  .kazari2 {
    width: 50%;
  }

  .kazari3 {
    top: 50px;
    left: -10%
  }

}

@media print,
(min-width: 768px) {

  .event-sec.matsuri .sec-intro {
    padding-bottom: 210px;
  }

  .event-sec.matsuri .sec-intro p {
    text-align: left;
  }

  .kazari1,
  .kazari2 {
    width: 40%;
    max-width: 360px;
  }

  .kazari3 {
    top: 7%;
    left: -5%
  }
}

.event-sec .sec-intro {
  text-align: center;
}

.event-sec h2 {
  display: inline-block;
  padding: 6px 10px 2px;
  color: #fff;
}

/* .event-sec::before {
  content: "";
  display: block;
  width: 100%;
  height: 600px;
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url(../images/bg_event_02.png);
  background-repeat: no-repeat;
  background-position: right 50%;
  background-size: contain;
} */

@media screen and (max-width: 767px) {
  .event-sec {
    background-size: 1500px, 1500px;
  }

  /* .event-sec::before {
    width: 1200px;
    height: 600px;
  } */
}

.event-box {
  padding: 40px 15px;
  background: #e6f8ff;
  border-radius: 20px;
}

.event-box>div:nth-of-type(n+2) {
  margin: 60px 0 0 0;
}

.event-box h3>span {
  position: relative;
  display: inline-block;
  padding: 15px;
  margin-bottom: 10px;
  min-width: 240px;
  /*z-index: 10;*/
  color: #333;
  line-height: 1.2;
  background: #fcc800;
}

.event-box h3>span::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -10px;
  left: 0;
  border-style: solid;
  border-width: 0 40px 10px 0;
  border-color: transparent #dfb100 transparent transparent;
}

.event-box h3>span::before {
  /*
  content: "";
  display: block;
  width: 120%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-8%) skewX(-24deg);
  background: #fdce48;
  */
}

.event-box h3>span span {
  display: block;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {}

@media print,
(min-width: 768px) {
  .event-box h3>span {
    min-width: 350px;
    font-size: 3.6rem;
  }
}

/*--イベント情報--*/
.event-list {
  display: flex;
  flex-wrap: wrap;
}

.event-list li {
  margin: 0 0 30px 0;
  border-radius: 20px;
  overflow: hidden;
}

/*
.event-list li:last-child {
  margin-bottom: 0;
}
*/

.event-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-text-box {
  padding: 20px;
  background: #fff;
}

.event-list-small .event-text-box {
  padding: 10px;
}

.event-text-box>div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.event-text-box h4 {
  margin: 0 0 15px 0;
  font-size: 1.6rem;
  color: #00abeb;
  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: #0f6d97;
  font-size: 1.4rem;
  color: #fff;
}

.north-event-modal-item .button-event,
.pitch-event-modal-item .button-event,
.special-event-modal-item .button-event,
.others-event-modal-item .button-event,
.event-modal-item .button-event,
.present-modal-item .button-event {
  background: #078d3f;
}

.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;
  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: flex;
    width: 100%;
  }

  .event-list-large li .event-img-box {
    width: 50%;
    order: 1;
  }

  .event-list-large li .event-text-box {
    width: 50%;
    border-right: 1px solid #dcdcdc;
  }
}

@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-modal-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.event-modal-flex li {
  width: 50%;
}

.text-kyocho {
  color: #ed0033;
  /* text-decoration: underline; */
}

/*--イベントマップ--*/
.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: flex;
  width: 100%;
}

.event-schedule-list dt {
  width: 20%;
  margin: 0 0 10px 0;
  padding: 10px 0;
  text-align: center;
  background: #0f6d97;
  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: #00abeb;
}

.event-schedule-list .match-time dd {
  /*background: #CCEEFC;*/
  color: #00abeb;
}

.event-schedule .senkou {
  max-width: 980px;
  padding: 0 0 0 1em;
  margin: 10px auto 0 auto;
  font-size: 1.5rem;
  line-height: 1.5;
  text-indent: -1em;
}

@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;
  }
}

/*--イベント注意事項--*/
.event-announce {
  margin-bottom: -20px;
  padding: 10px 15px;
  background: #fff;
}

.event-announce p {
  margin: 0;
  color: #ED0033;
  font-weight: bold;
}

@media print,
(min-width: 768px) {
  .event-announce {
    margin-bottom: -40px;
    padding: 20px;
  }
}

/*--------------------------
|        選手インビュー      |
---------------------------*/
.sec-intro {
  position: relative;
}

.event-sec .sec-intro p {
  color: #fff;
}

.player-catch-box {
  position: relative;
  -webkit-transition: all .4s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: all .4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all .4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}

.player-catch-box.viewon {
  opacity: 1;
  transform: translateY(0)
}

.player-catch-box span {
  position: absolute;
  font-size: 1.4rem;
  text-align: center;
  top: 50%;
  left: 0;
  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;
  transform: rotate(40deg);
}

.player-catch-box span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #000;
  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%;
    max-width: 240px;
  }

  .player-catch-box span {
    display: inline-block;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }

  .player-catch-box span::before {
    top: auto;
    bottom: 0;
    right: auto;
    left: -20px;
  }

  .player-catch-box span::after {
    right: -20px;
  }

  .player_01 span {
    top: -60px;
  }
}

@media screen and (min-width: 1200px) {
  .player-catch-box div {
    width: 100%;
  }
}

/*2025-26 夏祭りver*/

@media screen and (max-width: 767px) {
  .event-sec.matsuri .player-catch-box div {
    width: 100%;
    margin: 30px 0 0 0;
  }

  .player-catch-box.matsuri.player_02>div {
    width: 60%;
    margin: 20px auto 0 auto;
  }

  .player-catch-box.matsuri.player_03>div {
    width: 56%;
    margin: 20px auto 0 auto;
  }

}

@media print,
(min-width: 768px) {

  .event-sec.matsuri .player-catch-box div {
    max-width: 480px;
  }
}



/*--------------------------
|           グルメ          |
---------------------------*/
.gourmet-sec {
  /* background: #FFEFC2; */
  background-color: #ffefc2;
  /* background-image: radial-gradient(circle, rgba(255, 183, 3, .6) 3px, transparent 3px), radial-gradient(circle, rgba(255, 183, 3, .6) 3px, transparent 3px);
  background-position: 0 0, 13px 26px;
  background-size: 26px 52px; */
}

/* .gourmet-sec .has-border-top::before {
  background: #fdce48;
} */

.gourmet-sec h3,
.goods-sec h3 {
  position: relative;
}

.gourmet-sec h3 span,
.goods-sec h3 span,
.report-sec h3 span {
  position: relative;
  padding: 8px 24px;
  background: #FFB703;
  color: #fff;
  font-size: 1.8rem;
  border-bottom: 2px solid #DEB644;
}

/*
.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;
  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: #00abeb;
}

.gourmet-menu {
  margin: 0 0 24px;
}

.gourmet-text-box p span {
  display: inline-block;
  padding: 0px 4px;
  margin: 0 8px 0 0;
  background: #00abeb;
  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;
    transform: rotate(140deg);
  }

  .player_02 span::after {
    right: auto;
    left: 0;
    transform: rotate(-140deg);
  }
}

@media screen and (min-width: 768px) {
  .player_02 {
    right: auto;
    left: 15px;
  }

}

/*--------------------------
|           グッズ          |
---------------------------*/
.goods-style,
.goods-rank {
  padding: 80px 0 0 0;
}

.goods-sec {
  background: #CEF0FF;
}

/* .goods-sec .has-border-top::before {
  background: #00abeb;
} */

.goods-sec h3 span {
  background: #00abeb;
  border-color: #0083b5;
}

.goods-list {
  margin: 0 0 40px 0;
}

.goods-list li {
  margin: 0 10px 10px 10px;
  box-shadow: 0px 3px 6px #00000029;
}

.goods-text-box {
  padding: 16px;
  background: #fff;
}

.goods-text-box p {
  font-weight: bold;
}

.goods-text-box p:nth-of-type(n+2) {
  margin-top: 10px;
}

.goods-sec h4 {
  color: #0f6d97;
}

/*--------------------------
|         サポーター         |
---------------------------*/
.supporter-list li {
  margin: 0 10px;
  border: 3px solid #fff;
  box-shadow: 0px 3px 6px #00000029;
}


/*--------------------------
|         ランキング         |
---------------------------*/
.goods-rank-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.goods-rank-list li {
  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: #49bdf0;
  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: #49bdf0;
  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 {
  position: relative;
  /*background: url(../images/bg_blue.jpg);*/
}

.enjoy-sec::before {
  content: "";
  display: block;
  width: 120px;
  height: 180px;
  position: absolute;
  top: -40px;
  right: 2%;
  background: url(../images/myviy_03.png) no-repeat center top/ contain;
}

.enjoy-sec .content-inner {
  padding-bottom: 0;
}

.enjoy-sec h2 {
  margin: 0 0 40px 0;
  font-size: 2.8rem;
  color: #fff;
}

.enjoy-sec h2 span {
  color: #fdce48;
}

.enjoy-sec .content-inner>p {
  margin: 0 0 30px 0;
  color: #fff;
}

.enjoy-tool-list>div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0 20px 0;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 6px #00000029;
  overflow: hidden;
}

.enjoy-tool-list h3 {
  margin: 0 0 20px 0;
  font-size: 1.8rem;
  color: #2fb4ee;
  text-align: left;
}

.enjoy-tool-box {
  margin: 0 0 20px 0;
}

.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;
}

.enjoy-tool-link {
  position: relative;
  margin-top: 10px;
}

.enjoy-tool-link span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 2px 8px;
  transform: translate(-50%, -50%);
  background: #fff;
  font-weight: bold;
  color: #ED0033;
  white-space: nowrap;
}

.enjoy-tool-link.wait .button-square {
  pointer-events: none;
  opacity: .7;
}

.enjoy-content {
  padding: 8px;
  background: #f3f3f3;
}

@media screen and (max-width: 767px) {
  .enjoy-tool-box>div img {
    max-width: 150px;
  }
}

@media screen and (min-width: 768px) {
  .enjoy-sec::before {
    width: 200px;
    height: 280px;
    top: -60px;
  }

  .enjoy-sec h2 {
    font-size: 5.6rem;
  }

  .enjoy-tool-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .enjoy-tool-list>div {
    width: 49%;
  }

  .enjoy-tool-list>div.nobisuku {
    width: 100%;
  }

  .enjoy-tool-list h3 {
    font-size: 2.2rem;
  }

  .enjoy-tool-box {
    display: flex;
    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: 1367px) {
  .enjoy-sec::before {
    width: 240px;
    height: 360px;
    right: 8%;
  }
}

.enjoy-banner-box {
  padding: 20px 0 0 0;
}

.enjoy-banner-box>div:not(:last-of-type) {
  margin: 0 0 20px 0;
  box-shadow: 0px 3px 6px #00000029;
}

/*--選手インビュー調整--*/
.player_04 span {
  padding: 15px 20px;
  background: #fff;
  color: #0f6d97;
  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;
  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;
    transform: translateX(0);
  }

}

/*--------------------------
|           アクセス         |
---------------------------*/
.access-sec {
  background: #fdfdfd;
}

/* .access-sec .has-border-top::before {
  background: #00abeb;
} */

.stadium {
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.access-box {
  margin: 0 0 40px 0;
}

.stadium-info h3 {
  padding: 6px 15px;
  background: #00abeb;
  color: #fff;
}

.stadium-info h3 span {
  display: block;
  font-size: 80%;
}

.stadium-info>p {
  margin: 0 0 20px 0;
}

.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 {
    padding: 6px 20px;
    text-align: left;
    font-size: 2.4rem;
  }

  .access-box {
    display: flex;
    justify-content: space-between;
  }

  .access-box>div {
    width: 49%;
  }

  .stadium-info {
    order: 1;
  }
}

/*会場がユアスタON それ以外OFF*/
.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: #0f6d97;
}

@media screen and (min-width: 768px) {
  .subway {
    padding: 10px 30px;
  }
}


/*会場がユアスタOFF それ以外ON
.subway p {
  font-weight: bold;
  color: #0f6d97;
}

.subway p:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}
*/

/*セイホク交通案内*/
.seihoku-access-info h4 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  text-align: left;
}

.seihoku-access-info>p:nth-child(n+2),
.seihoku-access-info>ul:nth-child(n+2) {
  margin: 10px 0 0 0;
}

.seihoku-access-info>ul li {
  font-weight: normal;
}

/*--------------------------
|         SNSリンク         |
---------------------------*/
.sns-box {
  padding: 60px 15px;
  background: #f4f4f4;
}

.sns-box p {
  margin: 0 0 30px 0;
  text-align: center;
  font-weight: bold;
}

.sns-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.sns-list li {
  width: 15%;
}

.sns-list li a {
  display: block;
}

.sns-list li a img {
  width: 100%;
  max-width: 96px;
}

@media screen and (min-width: 768px) {
  .sns-box p {
    font-size: 2.4rem;
  }
}

/*--------------------------
|          フッター         |
---------------------------*/
.footer-bottom {
  position: relative;
  padding: 30px 15px;
  background-color: #00abeb;
  text-align: center;
}

.footer-bottom::before {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border-top: 4px solid #fcc800;
  border-bottom: 4px solid #007934;
}

.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;
  }
}

/*--------------------------
|          モーダル          |
---------------------------*/
.park-event-modal-box,
.sponsor-event-modal-box,
.others-event-modal-box,
.special-event-modal-box,
.present-modal-box,
.event-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: #00abeb;
}

.event-modal-text .button-event {
  margin: 30px auto 0 auto;
}

.event-modal-text .button-event a {
  display: block;
  color: #fff;
}

.event-link {
  text-decoration: underline;
  color: #0f6d97;
}

.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;
  }
}

@media screen and (min-width: 768px) {
  .mynavi-lp .fancybox-nav {
    height: 300px;
  }
}

/*--イベントマップモーダル--*/
.area-event {
  padding: 30px 15px;
}

.area-event p:first-of-type {
  padding: 10px 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background: #49bdf0;
}

.area-event dl {
  width: 100%;
  display: flex;
  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: #0f6d97;
  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;
  }
}

.north-event-modal-item .button-event,
.pitch-event-modal-item .button-event,
.present-modal-item .button-event {
  padding: 0;
}

.north-event-modal-item .button-event,
.pitch-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: 8px 24px;
  font-size: 1.6rem;
  border: 1px solid #fff;
  box-shadow: 0px 3px 6px #00000029;
}

.ticket-fix-button .button-large a img {
  width: 24px;
}

@media screen and (max-width: 767px) {
  .ticket-fix-button {
    bottom: 10px;
    left: 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 .4s .2s cubic-bezier(0.33, 1, 0.68, 1);
  -o-transition: all .4s .2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all .4s .2s cubic-bezier(0.33, 1, 0.68, 1);
  transform: translateY(40px);
  opacity: 0;
}

.fade-in.viewon {
  transform: translateY(0);
  opacity: 1;
}

/*--------------------------
|  2022-23 WEリーグカップ    |
---------------------------*/

/*-- パートナー紹介 --*/
.partner-sec {
  background: #cceefc;
}

.partner-title {
  margin: 0 0 30px 0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.partner-box {
  margin: 30px 0;
}

.partner-1st {
  margin-top: 40px;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2%;
}

.partner-list li {
  width: 49%;
}

.partner-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-3rd .partner-list li {
  display: flex;
  align-items: center;
  padding: 8px;
  background: #fff;
  color: #49bdf0;
}

.partner-box p {
  margin: 0 0 10px 0;
  color: #0f6d97;
}

.partner-box p span {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .partner-3rd .partner-list li {
    font-size: 1.5rem;
  }
}

@media print,
(min-width: 768px) {
  .partner-title {
    font-size: 2.4rem;
  }

  .partner-list li {
    width: 32%;
  }

  .partner-box p {
    font-size: 1.8rem;
  }

  .partner-box p span {
    font-size: 2.4rem;
  }
}

/*-- MDPバナー --*/
.mdp-banner-box {
  margin: 0 0 60px 0;
}

.mdp-banner-box a {
  display: block;
  border: 3px solid #f3f3f3;
}

@media screen and (min-width: 768px) {
  .mdp-banner-box {
    margin: 0 0 80px 0;
  }
}

@media screen and (min-width: 1200px) {
  .mdp-banner-box {
    padding: 10px;
    background: #f3f3f3;
  }
}

/*--------------------------
| 22.09.03 新潟戦限定スタイル |
---------------------------*/
.ishinomaki-event-map {
  margin: 60px 0 0 0;
}

.ishinomaki-event-map h3 {
  margin: 0 0 20px 0;
  color: #fff;
}

.event-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
  background: #f3f3f3;
  font-weight: bold;
  font-size: 1.8rem;
}

.ishinomaki-cont {
  margin: 0 0 60px 0;
}

.event-text-box h4 span,
.event-modal-title span {
  display: inline-block;
  padding: 2px 4px;
  margin: 0 0 4px 0;
  font-size: 1.6rem;
  color: #fff;
  background: #00abeb;
}

@media screen and (min-width: 768px) {
  .ishinomaki-event-map {
    margin: 80px 0 0 0;
  }

  .ishinomaki-cont {
    margin: 0 0 80px 0;
  }
}

/*--------------------------
| 22.09.11 ちふれ戦限定スタイル |
---------------------------*/
h3.matchday-event span {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
}

/*--------------------------
| 2022-23 WEリーグ追加スタイル |
---------------------------*/
.event-information-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

.event-information-list::before,
.event-information-list::after {
  content: "";
  display: block;
  width: 49%;
  height: 0;
}

.event-information-list::before {
  order: 1;
}

.event-information-list li {
  width: 49%;
  margin-bottom: 16px;
}

.event-information-list li a {
  position: relative;
  display: block;
  padding: 6px;
  border: 1px solid #00abeb;
  background: #00abeb;
  border-radius: 6px;
  color: #fff;
  box-shadow: 0px 4px 0px 0px #328db6;
}

.event-information-list li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 6px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: translateY(-60%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .event-information-list li a {
    font-size: 1.4rem;
  }
}

@media print,
(min-width: 768px) {
  .event-information-list {
    margin: 0 auto;
  }

  .event-information-list::before,
  .event-information-list::after,
  .event-information-list li {
    width: 23.5%;
  }

  .event-information-list li:nth-child(n+5) {
    margin: 10px 0 0 0;
  }

  .event-information-list li a {
    padding: 10px;
  }

  .event-information-list li a::before {
    right: 10px;
  }
}

.about-covit {
  padding: 20px 15px;
  background: #ed0033;
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
}

.about-covit a {
  color: #fff;
}

@media print,
(min-width: 768px) {
  .about-covit {
    padding: 30px 15px;
    font-size: 2.8rem;
  }
}

.report-sec {
  background-color: #fdfdfd;
  background-image: linear-gradient(#cef0ff 1px, transparent 0), linear-gradient(90deg, #cef0ff 1px, transparent 0);
  background-size: 20px 20px;
  background-position: center center;
}

/* .report-sec .has-border-top::before {
  background: #49bdf0;
} */

.report-sec h3 span {
  background: #2FB4EE;
  border-color: #3da2ce;
}

.report-list li {
  position: relative;
}

.report-caption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 8px;
  background: #2fb4ee;
  color: #fff;
  font-size: 1.4rem;
}

.next-homegame h3 {
  color: #0f6d97;
}

.next-homegame {
  background: #cef0ff;
}

.next-homegame-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 480px;
  padding: 16px 10px 16px 16px;
  margin: 0 auto;
  border: 2px solid #0f6d97;
  border-radius: 10px;
  color: #0f6d97;
}

.next-homegame-team {
  width: 120px;
}

.next-homegame-info {
  width: calc(100% - 130px);
}

.next-homegame-info {
  font-weight: bold;
  ;
}

.next-homegame-info p:first-of-type {
  line-height: 1.2;
  font-size: 1.4rem;
}

.next-homegame-info p:nth-of-type(2) {
  font-size: 3.2rem;
  line-height: 1.2;
}

.next-homegame-info p:nth-of-type(2) span {
  padding-left: 4px;
  font-size: 1.6rem;
}

.next-homegame-info p:last-of-type {
  font-size: 1.4rem;
}

.next-homegame-info p:last-of-type span {
  display: block;
}

@media print,
(min-width: 768px) {
  .next-homegame-box {
    padding: 20px 20px 20px 30px;
  }

  .next-homegame-info p:first-of-type {
    font-size: 2rem;
  }

  .next-homegame-info p:nth-of-type(2) {
    font-size: 4.8rem;
  }

  .next-homegame-info p:nth-of-type(2) span,
  .next-homegame-info p:last-of-type {
    font-size: 1.8rem;
  }

  .next-homegame-info p:last-of-type span {
    font-size: 1.4rem;
  }
}

.button-large.miyagi a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
}

.limited {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .button-large.miyagi a {
    font-size: 2rem;
  }

  .ticket-fix-button .button-large.miyagi a {
    font-size: 1.6rem;
  }

}

.gourmet-notes {
  position: relative;
  padding: 10px 15px;
  margin-top: 15px;
  background: #fff;
  border-radius: 6px;
  border-top-left-radius: 0;
  border: 2px solid #ed0033;
}

.gourmet-notes span {
  position: absolute;
  display: block;
  padding: 2px 8px;
  bottom: 100%;
  left: -2px;
  background: #ed0033;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.double {
  position: relative;
}

.double a {
  height: 100%;
  position: absolute;
  top: 0;
}

.double a:first-of-type {
  width: 53%;
  left: 0;
}

.double a:last-of-type {
  width: 43%;
  left: 54%;
}

.ticket-ohp {
  margin-top: 20px;
}

.ticket-ohp a {
  border: 2px solid #f04869;
  color: #f04869;
  background: #fff;
}

.ticket-ohp a::before,
.ticket-ohp a::after {
  border-color: #f04869;
}

/*--------------------------
| 22.11.30 リンクブロック |
---------------------------*/
.link-banner-block {
  background: #fdfdfd;
}

.link-banner-list li:nth-child(n+2) {
  margin-top: 20px;
}

.link-banner-list li a {
  display: block;
}

.link-banner-list li p {
  margin: 10px 0;
  text-align: center;
}

/*--------------------------
| 22.6.2 MDPキャッチコピー
---------------------------*/
.mdp-catch {
  margin: 0 0 10px 0;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.mdp-catch span {
  display: inline-block;
  position: relative;
}

.mdp-catch span::before,
.mdp-catch span::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  position: absolute;
  bottom: 4px;
  background: #fff;
}

.mdp-catch span::before {
  left: -20px;
  transform: rotate(45deg);
  transform-origin: bottom right;
}

.mdp-catch span::after {
  right: -20px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}

@media print,
(min-width: 768px) {
  .mdp-catch span {
    font-size: 2rem;
  }
}

/*--------------------------
| 2023-24 カップ戦追加
---------------------------*/
.pickup-copy {
  margin: 0 0 15px 0;
  text-align: center;
}

.pickup-copy span {
  display: inline-block;
  position: relative;
  padding: 0 30px;
  font-weight: bold;
  font-size: 2rem;
  color: #0f6d97;
  text-align: center;
}

.pickup-copy span::before,
.pickup-copy span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  position: absolute;
  bottom: 0;
  background: #0f6d97;
}

.pickup-copy span:before {
  left: 0;
  transform-origin: right bottom;
  transform: rotate(45deg);
}

.pickup-copy span::after {
  right: 0;
  transform-origin: left bottom;
  transform: rotate(-45deg);
}

@media print,
(min-width: 768px) {
  .pickup-copy {
    margin: 0 0 30px 0;
  }

  .pickup-copy span {
    padding: 0 40px;
    font-size: 2.8rem;
  }


  .pickup-copy span::before,
  .pickup-copy span::after {
    width: 30px;
    height: 2px;
  }
}

#lp-nav {
  background: #f4f4f4;
}

#lp-nav .content-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* .reading-info-sec {
  background: url(../images/bg_new.jpg) no-repeat center center/cover;
} */

.reading-info-inner>div {
  position: relative;
  padding: 40px 15px;
}

.reading-info-inner>div.offstage-info::before {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background: #00abeb;
  /* border-top: 4px solid #fcc800;
  border-bottom: 4px solid #007934; */
}

.reading-catch {
  position: absolute;
  top: -40px;
}

.mdp-info .reading-catch {
  left: 15px;
}

.offstage-info .reading-catch {
  right: 15px;
}

.mdp-info {
  background: url(../images/bg_offstage.jpg) no-repeat center center/cover;
}

.offstage-info {
  /* background: url(../images/bg_mizuiro.jpg) no-repeat center center/cover; */
  background-color: #fff;
  /* background-image: linear-gradient(#cef0ff 1px, transparent 0), linear-gradient(90deg, #cef0ff 1px, transparent 0); */
  background-image: linear-gradient(#f3f3f3 1px, transparent 0), linear-gradient(90deg, #f3f3f3 1px, transparent 0);
  background-size: 20px 20px;
  background-position: center center;
  /* border-top: 8px solid #00abeb; */
  /* border-bottom: 6px solid #00abeb; */
}

.reading-info-sec .offstage-info h2 {
  color: #333;
}

/* .reading-info-sec .mdp-info h2{
  position: relative;
}

.reading-info-sec .mdp-info h2::before{
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: #A07D39;
} */

@media screen and (max-width: 1600px) {
  .reading-catch {
    width: 200px;
  }
}

@media print,
(min-width: 768px) {
  .reading-catch {
    top: -80px;
  }

  .mdp-info .reading-catch {
    left: 30px;
  }

  .offstage-info .reading-catch {
    right: 30px;
  }
}

@media print,
(min-width: 1200px) {
  .reading-info-inner {
    display: flex;
  }

  .reading-info-inner>div {
    padding: 60px 15px;
    width: 50%;
  }
}

.reading-info-sec h2 {
  margin: 0 auto 20px;
  color: #333;
  font-size: 2.2rem;
  text-align: center;
}

.reading-info-sec h2 span:first-of-type {
  display: block;
  margin: 0 0 4px 0;
  font-weight: normal;
  font-size: 1.6rem;
}

.reading-info-sec h2 span:nth-of-type(2) {
  padding: 0 10px;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(252, 200, 0, .7) 60%, rgba(252, 200, 0, .7) 100%);
}

.mdp-info-thumb,
.reading-info-thumb {
  position: relative;
  max-width: 680px;
  margin: 20px auto 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.mdp-info-thumb>p,
.mdp-info-thumb a>p,
.reading-info-thumb>p,
.reading-info-thumb a>p {
  position: absolute;
}

.mdp-info-thumb.waiting>p,
.reading-info-thumb.waiting>p {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}

.mdp-info-thumb.waiting>p span,
.reading-info-thumb.waiting>p span {
  font-weight: bold;
  font-size: 2rem;
  color: #f4f4f4;
}

.reading-button a {
  padding: 15px;
}

.reading-button a::before {
  transform: translateY(-50%) rotate(135deg);
}

.reading-button.waiting a::before {
  content: "＋";
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  border: none;
  transform: translateY(-50%);
}

.reading-yokoku-list li {
  position: relative;
  padding-left: 1.2em;
}

.reading-yokoku-list li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.reading-info-thumb .free {
  padding: 20px 15px 10px 15px;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .7) 40%, rgba(0, 0, 0, .7) 100%);
}

.reading-info-thumb .free span {
  display: inline-block;
  padding: 0px 4px;
  line-height: 1.4;
  font-size: 80%;
  border: 1px solid #fff;
}

.reading-info-thumb .status {
  top: 0px;
  left: 0px;
}

.mdp-sec {
  background: url(../images/bg_mdp.jpg) no-repeat center center/cover;
}

.mdp-sec-intro {
  color: #fff;
}

.mdp-sec h2 {
  margin: 0 0 20px 0;
  text-align: center;
  font-size: 2.8rem;
}

.reading-list {
  margin: 0 0 40px 0;
}

.reading-list li {
  margin: 0 10px 10px 10px;
}

.reading-list li a {
  display: block;
  position: relative;
}

.reading-list li a>span,
.reading-list li a>p {
  position: absolute;
}

.reading-list li .reading-cat {
  top: 0;
  left: 0;
}

.reading-list li .reading-title {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 15px 10px 15px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .7) 100%);
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
}

.reading-cat {
  display: inline-block;
  padding: 2px 10px;
  color: #fff;
}

.reading-cat.column {
  background: #007a3c;
}

.reading-cat.interview {
  background: #FFB703;
}

.reading-cat.voice {
  background: #00abeb;
}


@media screen and (max-width: 767px) {
  .mdp-sec-intro {
    padding: 0 0 40px 0;
  }
}

@media print,
(min-width: 768px) {
  .reading-info-sec h2 {
    margin: 0 auto 40px;
    font-size: 2.8rem;
  }

  .reading-info-sec h2 span:nth-of-type(2) {
    font-size: 3.4rem;
  }

  .mdp-info-thumb,
  .reading-info-thumb {
    margin: 40px auto;
  }

  .reading-list li .reading-title {
    padding: 80px 15px 10px 15px;
  }

  .mdp-sec h2 {
    font-size: 3.6rem;
  }
}

.external-link-list {
  margin: 60px 0 0 0;
}

.external-link-list li a {
  position: relative;
  display: block;
  padding: 16px 0 16px 30px;
  font-weight: bold;
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.external-link-list li a span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .external-link-list li:nth-child(n+2) {
    margin: 20px 0 0 0;
  }
}

@media print,
(min-width: 768px) {
  .external-link-list {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .external-link-list::before,
  .external-link-list::after {
    content: "";
    display: block;
    width: 23.5%;
    height: 0;
  }

  .external-link-list::before {
    order: 1;
  }

  .external-link-list li {
    width: 23.5%;
  }
}

.stadium-map-box {
  margin: 20px 0;
  padding: 20px 10px;
  background: #fff;
  text-align: center;
}

.stadium-map-box>div {
  max-width: 720px;
  margin: 0 auto;
}

@media print,
(min-width: 768px) {
  .stadium-map-box {
    padding: 30px;
  }
}

.mdp {
  background: #fff;
}

.mdp-container {
  padding: 60px 15px;
}

.mdp-inner {
  max-width: 960px;
  margin: 0 auto;
}

.mdp-img-box {
  margin: 40px auto;
  text-align: center;
}

.highlights-content p {
  margin: 40px 0;
  line-height: 1.6;
}

.mdp-wrapper h1 {
  padding: 6px 12px;
  font-weight: normal;
  font-size: 1.6rem;
  color: #fff;
  background: #2FB4EE;
}

.mdp-wrapper h1 img {
  display: inline-block;
  width: 40px;
  margin: 0 8px 0 0;
}

.mdp-wrapper h1 div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 960px;
  margin: 0 auto;
  text-align: right;
}

.mdp-wrapper h2 {
  margin: 0 0 40px 0;
  padding: 0 0 8px 0;
  color: #2fb4ee;
  border-bottom: 1px solid #2fb4ee;
}

.mdp-wrapper h2 span {
  font-size: 70%;
}

.mdp-wrapper h3 {
  text-align: left;
  font-size: 2.4rem;
}

.mdp-wrapper h3 span {
  display: block;
  font-size: 60%;
}

@media screen and (max-width: 767px) {
  .mdp-wrapper h2 {
    line-height: 1.2;
  }
}

@media print,
(min-width: 768px) {
  .mdp-wrapper h1 {
    padding: 10px 15px;
  }

  .mdp-wrapper h2 {
    font-size: 3.2rem;
  }

  .mdp-wrapper h3 {
    font-size: 3.2rem;
  }
}

.mdp-button-box {
  margin: 80px 0 0 0;
}

.mdp-button-box>div {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.mdp-button-box>div a {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: block;
  padding: 20px;
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 10px;
}

.mdp-button-box>div a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.mdp-button-box>div.to-mdp a {
  background: #2fb4ee;
}

.mdp-button-box>div.to-lp a {
  background: #0f6d97;
}

@media print,
(min-width: 768px) {
  .interview-img-box {
    display: flex;
    justify-content: center;
  }
}

.home-player-box>span {
  display: block;
  margin: 0 0 20px 0;
  font-size: 1.4rem;
}

/* .home-player-box>div {
  margin: 0 calc(50% - 50vw);
  padding: 20px calc(50vw - 50%);
  background: #00abeb;
} */

.home-player-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 15px;
}

.home-player-list li a {
  display: block;
}

.home-player-list li.nishu a {
  pointer-events: none;
}

.home-player-name {
  position: relative;
  padding: 2px 8px;
  margin: 0 0 10px 0;
  background: #2fb4ee;
  color: #fff;
}

.nishu .home-player-name span {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  padding: 0 4px;
  font-size: 1.3rem;
  color: #000;
  background: #FCC800;
  border-radius: 4px;
}

.captain .home-player-name span {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  padding: 0 4px;
  font-size: 1.3rem;
  background: #ff4ca4;
  border-radius: 4px;
}

.home-player-profile {
  display: flex;
  justify-content: space-between;
  margin: 0 0 8px 0;
}

.home-player-profile .img-box {
  width: 45%;
}

.home-player-profile .text-box {
  width: 50%;
  /* color: #fff; */
}

.home-player-detail {
  line-height: 1.4;
}

.home-player-detail span {
  font-size: 1.3rem;
  line-height: 1.2;
}

.home-player-position {
  font-size: 2.2rem;
  line-height: 1.2;
}

.home-goal span {
  display: inline-block;
  margin-right: 4px;
  padding: 0 4px;
  min-width: 80px;
  background: #ace1f9;
  color: #0f6d97;
  text-align: center;
}

.home-player-list li a {
  pointer-events: none !important;
}

.home-player-list li a:hover {
  opacity: 1;
}

.hanrei {
  padding: 6px;
  margin: 40px 0 0 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .home-player-list li {
    width: 100%;
  }

  .home-player-list li:nth-child(n+2) {
    margin: 20px 0 0 0;
  }
}

@media print,
(min-width: 768px) {
  .home-player-list li {
    width: 48%;
  }

  .home-player-list li:nth-child(n+3) {
    margin: 30px 0 0 0;
  }
}

/*試合に向けてのコメント 2023.11追加*/
.voice-content>div.voice-item:nth-of-type(n+2) {
  margin: 40px 0 0 0;
}

.voice-detail {
  display: flex;
  align-items: flex-end;
  margin: 0 0 20px 0;
}

.voice-detail>div {
  flex-shrink: 1;
  flex-grow: 1;
  width: 40%;
  max-width: 150px;
  margin: 0 10px 0 0;
}

.voice-detail>p {
  flex-shrink: 2;
  flex-grow: 2;
  flex-basis: 0;
  font-weight: bold;
  font-size: 1.8rem;

}

@media print,
(min-width: 768px) {
  .voice-detail>div {
    margin: 0 20px 0 0;
  }
}

/*--------------------------
| 託児室追加
---------------------------*/
.takujisyo {
  max-width: 720px;
  margin: 40px auto;
  padding: 20px;
  background: #cef0ff;
  border-radius: 10px;
}

.takujisyo p {
  margin: 0 0 10px 0;
}

.takujisyo p:first-of-type {
  font-weight: bold;
  /* color: #0f6d97; */
}

.takujisyo p:nth-of-type(n+2) {
  font-size: 1.4rem;
}

.takujisyo a {
  font-size: 1.5rem;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .takujisyo>div:last-of-type {
    margin: 20px auto 0 auto;
    max-width: 280px;
  }
}

@media print,
(min-width: 768px) {
  .takujisyo {
    display: flex;
    justify-content: space-between;
  }

  .takujisyo>div:first-of-type {
    width: 60%;
  }

  .takujisyo>div:last-of-type {
    width: 36%;
  }
}

/*--------------------------
| OFF STAGE追加
---------------------------*/
.offstage-sec {
  background-color: #fff;
  /* background-image: linear-gradient(#cef0ff 1px, transparent 0), linear-gradient(90deg, #cef0ff 1px, transparent 0); */
  background-image: linear-gradient(#f3f3f3 1px, transparent 0), linear-gradient(90deg, #f3f3f3 1px, transparent 0);
  background-size: 20px 20px;
  background-position: center center;
}

/* .offstage-sec .has-border-top::before {
  background: #00abeb;
  height: 10px;
} */

.offstage-sec h2 {
  margin: 0 auto 20px;
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  color: #000;
}

.offstage-sec h2 span {
  display: inline-block;
  padding: 0 10px;
  line-height: 1.2;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(252, 200, 0, .7) 60%, rgba(252, 200, 0, .7) 100%);
}

.offstage-sec p {
  color: #000;
}

@media print,
(min-width: 768px) {
  .offstage-sec h2 {
    font-size: 4.8rem;
  }
}

.offstage-list {
  margin: 0 0 40px 0;
}

.offstage-list li {
  position: relative;
  margin: 0 10px 10px 10px;
  padding: 20px 10px;
  border: 2px solid #111;
  background: #fff;
  box-shadow: 2px 4px 0 #111;
}

.offstage-list li a {
  display: block;
}

/* .offstage-cat{
  display: flex;
  align-items: center;
  padding: 0 0 4px 0;
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  border-bottom: 1px solid #000;
} 

.offstage-cat img{
  width: 30px;
  padding: 0 8px 0 0;
}
*/

.offstage-cat {
  /* position: absolute;
  top: 0;
  right: 15px; */
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 8px 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
}

.history .offstage-cat {
  color: #2fb9eb;
}

.diary .offstage-cat {
  color: #eb2f5b;
}

.ranking .offstage-cat {
  color: #ebbf2f;
}

.offstage-cat img {
  display: inline-block;
  width: 20px;
  padding: 0 4px 4px 0;
}

.offstage-title {
  margin: 16px 0 0 0;
  font-weight: bold;
}

.offstage-title span {
  position: relative;
  display: inline-block;
  padding: 2px 24px;
  margin: 0 0 6px 0;
  color: #fff;
  font-size: 2rem;
  /* background: #d3c4a7; */
}

.offstage-title span::before,
.offstage-title span::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  position: absolute;
  bottom: 6px;
  background: #fff;
}

.offstage-title span::before {
  left: 2px;
  transform: rotate(45deg);
  transform-origin: bottom right;
}

.offstage-title span::after {
  right: 2px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}

.history .offstage-title span {
  background: #2fb9eb;
}

.diary .offstage-title span {
  background: #eb2f5b;
}

.ranking .offstage-title span {
  background: #ebbf2f;
}

.offstage-banner-box {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.offstage-banner-box>div {
  width: 48%;
  box-shadow: 0px 3px 6px #00000029;
}

@media screen and (max-width: 767px) {
  .offstage-banner-box>div {
    width: 100%;
  }

  .offstage-banner-box>div:nth-of-type(n+2) {
    margin: 20px 0 0 0;
  }
}

@media print,
(min-width: 768px) {
  .offstage-list li {
    padding: 20px 15px;
  }
}

/*--------------------------
| 引退選手 特別コラム
---------------------------*/
.special-column {
  max-width: 680px;
  margin: 0 auto;
}

.special-column a {
  display: block;
}

.special-column img {
  box-shadow: 0px 3px 6px #00000029;
}

.reading-info-sec .special-column-wrap {
  padding: 40px 15px;
  background-image: url(../images/bg_event-top.png), url(../images/bg_event-bottom.png), linear-gradient(180deg, #06A6E3, #0d227c);
  /* background: url(../images/1425412.jpg) no-repeat center center/cover; */
}

.offstage-sec .special-column {
  margin-bottom: 60px;
}