/* ---------------------------------------
  TITLE : HANSHIN Tigers
  URI : https://series.hanshintigers.jp/
  (C) HANSHIN Tigers.
--------------------------------------- */
.p-schedule {
  background: url(/2025/img/cs/background_stadium.jpg) no-repeat bottom center;
  background-size: contain;
  padding-bottom: 100px;
}
.p-schedule__heading {
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1.2;
  padding: 20px 0;
  text-align: center;
  border-top: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  margin: 50px auto;
}
.p-schedule__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr 30px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.p-schedule__grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-schedule__grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-schedule__grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.p-schedule__grid > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-schedule__grid > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.p-schedule__grid > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.p-schedule__item {
  background: #FFFFFF;
  position: relative;
}
.p-schedule__item::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #ffe100 transparent transparent transparent;
  border-width: 72px 72px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-schedule__item--undecided {
  background: rgba(255, 255, 255, 0.7);
}
.p-schedule__item--undecided::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: transparent url(/2025/img/cs/background_tape.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.p-schedule__item--undecided h5, .p-schedule__item--undecided p, .p-schedule__item--undecided div {
  opacity: 0.7;
}
.p-schedule__item__game {
  position: relative;
  z-index: 10;
  font-family: anton, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.15em;
  margin: 15px 0 0 15px;
}
.p-schedule__item__date {
  text-align: center;
  font-family: anton, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  margin: 15px 0;
  letter-spacing: 0.04em;
}
.p-schedule__item__date span {
  font-size: 28px;
  display: inline-block;
  margin-left: 5px;
}
.p-schedule__item__result {
  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;
}
.p-schedule__item__team img {
  width: 70px;
  height: auto;
  vertical-align: middle;
}
.p-schedule__item__score {
  font-family: anton, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  margin: 0 5px 15px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 88px;
}
.p-schedule__item__hyphen {
  display: block;
  margin: 0 10px;
  line-height: 0.9em;
  padding-bottom: 15px;
}
.p-schedule__item__text {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  margin-top: 15px;
  white-space: nowrap;
}
.p-schedule__item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 25px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-schedule__item__icon li {
  margin: 0 6px;
}
.p-schedule__item__icon li img.is-off {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .p-schedule {
    padding: 30px 0 20px 0;
  }
  .p-schedule__heading {
    font-size: 18px;
    line-height: 1.2;
    padding: 15px 0;
    margin: 20px auto;
  }
  .p-schedule__grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: min(100%, 800px);
    margin-bottom: 40px;
  }
  .p-schedule__item {
    width: 260px;
    margin: 0 auto;
  }
  .p-schedule__item::before {
    border-width: 48px 48px 0px 0px;
  }
  .p-schedule__item--undecided {
    background: rgba(255, 255, 255, 0.7);
  }
  .p-schedule__item--undecided::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: transparent url(/2025/img/cs/background_tape.png) no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .p-schedule__item--undecided h5, .p-schedule__item--undecided p, .p-schedule__item--undecided div {
    opacity: 0.7;
  }
  .p-schedule__item__game {
    font-size: 20px;
    margin: 10px 0 0 10px;
  }
  .p-schedule__item__date {
    font-size: 32px;
    margin: 12px 0;
    position: relative;
    z-index: 100;
  }
  .p-schedule__item__date span {
    font-size: 20px;
  }
  .p-schedule__item__result {
    margin: 0 10px;
  }
  .p-schedule__item__team img {
    width: 46px;
    height: auto;
  }
  .p-schedule__item__score {
    font-size: 40px;
    margin: 0 5px 5px 5px;
    min-height: 46px;
  }
  .p-schedule__item__hyphen {
    display: block;
    margin: 0 5px;
    line-height: 0.9em;
    padding-bottom: 10px;
  }
  .p-schedule__item__text {
    font-size: 11px;
    white-space: nowrap;
    margin-top: 10px;
  }
  .p-schedule__item__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 20px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-schedule__item__icon li {
    margin: 0 6px;
  }
  .p-schedule__item__icon li img {
    width: 40px;
    height: auto;
  }
  .p-schedule__item__icon li img.is-off {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    opacity: 0.5;
  }
}
.p-ticket {
  background: #ffd900 url(/2025/img/cs/background_tlogo.png) no-repeat top -100px left -50px;
  padding: 100px 0;
}
.p-ticket__wrapper {
  margin: 60px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-ticket__heading {
  font-size: 28px;
  padding: 20px 0;
  color: #000000;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  text-align: center;
}
.p-ticket__inner {
  margin-top: 50px;
  background: #FFFFFF;
  padding: 40px;
  text-align: center;
  width: 560px;
  min-height: 500px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-ticket__subhead {
  background: #000000;
  color: #FFFFFF;
  padding: 10px;
  line-height: 1;
  font-size: 24px;
  margin-bottom: 15px;
}
.p-ticket__subhead--gray {
  background: #616161;
}
.p-ticket__subhead--mt {
  margin-top: 20px;
}
.p-ticket__period {
  font-size: 24px;
  line-height: 1.4;
}
.p-ticket__period small {
  display: block;
  font-size: 14px;
  margin-top: -2px;
}
.p-ticket__notes {
  font-size: 14px;
  margin-top: 10px;
}
.p-ticket__button {
  display: block;
  width: 360px;
  height: 80px;
  line-height: 80px;
  color: #000000;
  text-align: center;
  border-radius: 40px;
  font-size: 20px;
  background: #ffe100;
  margin: 40px auto 0 auto;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.p-ticket__button:hover {
  background: #ddac00;
}

@media screen and (max-width: 767px) {
  .p-ticket {
    background: #ffd900 url(/2025/img/cs/background_tlogo.png) no-repeat top -50px left -50px;
    background-size: 600px auto;
    padding: 40px 0;
  }
  .p-ticket__wrapper {
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-ticket__unit {
    width: 100%;
  }
  .p-ticket__heading {
    font-size: 18px;
    padding: 15px 0;
    margin-top: 30px;
  }
  .p-ticket__inner {
    margin: 20px 0;
    width: auto;
    padding: 20px;
    min-height: auto;
  }
  .p-ticket__subhead {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .p-ticket__period {
    font-size: 18px;
    line-height: 1.4;
  }
  .p-ticket__period small {
    font-size: 12px;
  }
  .p-ticket__notes {
    font-size: 12px;
    margin-top: 10px;
  }
  .p-ticket__button {
    display: block;
    width: 100%;
    max-width: 280px;
    height: 50px;
    line-height: 50px;
    border-radius: 30px;
    font-size: 16px;
    margin: 20px auto 5px auto;
  }
  .p-ticket__button:hover {
    background: #ffe100;
  }
}
.p-news {
  background: #dddddd;
  padding: 80px 0 100px 0;
}
.p-news__inner {
  background: #FFFFFF;
  padding: 40px 30px 40px 40px;
  margin-top: 50px;
}
.p-news__inner .scrollarea {
  height: 200px;
  overflow: hidden;
}
.p-news a {
  font-weight: 300;
  text-align: left;
  display: block;
  padding: 10px 0;
  border-bottom: 1px dotted #8b8b8b;
  margin-bottom: 5px;
  position: relative;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.p-news a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #000000;
  border-width: 6px 0px 6px 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: auto;
  right: 20px;
}
.p-news a:hover {
  opacity: 0.7;
}
.p-news a dl {
  width: 100%;
}
.p-news a dl dt,
.p-news a dl dd {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  vertical-align: top;
}
.p-news a dl dt {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .p-news {
    padding: 40px 0 50px 0;
  }
  .p-news__inner {
    padding: 20px 15px;
    margin-top: 20px;
  }
  .p-news__inner .scrollarea {
    height: 280px;
    overflow: hidden;
  }
  .p-news a {
    padding-right: 20px;
  }
  .p-news a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #000000;
    border-width: 6px 0px 6px 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: auto;
    right: 0;
  }
  .p-news a:hover {
    opacity: 0.7;
  }
  .p-news a dl dt,
  .p-news a dl dd {
    font-size: 13px;
  }
  .p-news a dl dt {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.p-event {
  padding: 80px 0 100px;
  background: #000000 url(/2025/img/cs/background_stadium.jpg) no-repeat bottom center;
  background-size: contain;
}
.p-event__unit {
  margin-top: 50px;
}
.p-event__heading {
  background: #ffe100;
  text-align: center;
  padding: 10px;
  color: #000000;
  font-family: anton, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
}
.p-event__heading__game {
  background: #000000;
  display: inline-block;
  color: #ffe100;
  font-size: 28px;
  letter-spacing: 0.15em;
  padding: 2px 10px 5px 10px;
  vertical-align: middle;
  margin: 0 10px 5px 0;
}
.p-event__heading small {
  display: inline-block;
  font-size: 24px;
  margin-left: 5px;
}
.p-event__inner {
  background: #FFFFFF;
  padding: 50px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-event__block {
  width: 480px;
}
.p-event__block--landscape {
  width: 640px;
}
.p-event__block--vertical {
  width: 320px;
}
.p-event__block__photo {
  width: 100%;
  height: auto;
}
.p-event__block__text {
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-event {
    padding: 40px 0 50px;
  }
  .p-event__unit {
    margin-top: 30px;
  }
  .p-event__heading {
    font-size: 36px;
  }
  .p-event__heading__game {
    display: inline-block;
    font-size: 22px;
    margin: 0 10px 5px auto;
  }
  .p-event__heading small {
    font-size: 20px;
    margin-left: 5px;
  }
  .p-event__inner {
    padding: 20px 20px 1px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-event__block {
    width: auto;
    margin-bottom: 25px;
  }
  .p-event__block--landscape {
    width: auto;
  }
  .p-event__block--vertical {
    width: 100%;
    text-align: center;
  }
  .p-event__block--vertical .p-event__block__photo {
    width: 200px;
    height: auto;
  }
  .p-event__block__photo {
    width: 100%;
    height: auto;
  }
  .p-event__block__text {
    font-size: 13px;
  }
}
.p-column {
  background: #ffe100 url(/2025/img/cs/background_outer.jpg) no-repeat bottom center;
  padding: 80px 0 50px;
}
.p-column__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
.p-column__photo {
  width: 500px;
}
.p-column__photo img {
  width: 100%;
  height: auto;
}
.p-column__text {
  width: 660px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .p-column {
    background-size: 250% auto;
    padding: 40px 0 20px 0;
  }
  .p-column__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }
  .p-column__photo {
    width: auto;
  }
  .p-column__photo img {
    width: 100%;
    height: auto;
  }
  .p-column__text {
    width: auto;
    font-size: 13px;
    margin-top: 20px;
  }
}
.p-movie {
  padding: 80px 0;
}
.p-movie__inner video {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-movie {
    padding: 40px 0;
  }
  .p-movie__inner {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    margin-top: 30px;
  }
  .p-movie__inner video, .p-movie__inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.p-campaign__banner {
  text-align: center;
  margin: 50px auto;
}
.p-campaign__banner--v2025 {
  margin: 100px auto 0 auto;
}
.p-campaign__banner--v2025 img {
  border: 1px solid #FFFFFF;
}

@media screen and (max-width: 767px) {
  .p-campaign__banner {
    margin: 30px 4%;
  }
  .p-campaign__banner img {
    width: 100%;
    height: auto;
  }
  .p-campaign__banner--v2025 {
    margin: 30px 4% 0 4%;
  }
}
/*# sourceMappingURL=top.css.map */