@charset "utf-8";

:root {
  --main-color: #006298;
  --sub-color: #009cdb;
  --accent-color: #b7a55c;
}

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ----- common parts ----- */
@media screen and (min-width: 768px) {
  body .s {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body .l {
    display: none;
  }
}

.hamburgerBtn {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.hamburgerBtn span {
  position: absolute;
  left: 14px;
  height: 2px;
  display: inline-block;
  width: 45%;
  background: #fff;
  border-radius: 2px;
  transition: top 0.4s;
}
.hamburgerBtn span:nth-of-type(1) {
  top: 16px;
}
.hamburgerBtn span:nth-of-type(2) {
  top: 24px;
}
.hamburgerBtn span:nth-of-type(3) {
  top: 32px;
}
.hamburgerBtn.is-active span:nth-of-type(1),
.hamburgerBtn.is-active span:nth-of-type(3) {
  top: 24px;
}

.nomalBtn {
  position: relative;
  display: block;
  width: fit-content;
  padding: 13px 18px;
  border-radius: 999px;
  border: 2px solid;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.3rem;
  overflow: hidden;
}
@media (hover: hover) {
  .nomalBtn {
    transition: ease 0.2s;
  }
  .nomalBtn span {
    position: relative;
    z-index: 3;
  }
  .nomalBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
  }
  .nomalBtn:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .nomalBtn._newWindow:hover::after {
    z-index: 3;
  }
}

._newWindow::after {
  content: '';
  position: absolute;
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: center/contain no-repeat url(../../common/img/icon_new_window-white.svg);
}
.nomalBtn._newWindow {
  padding-right: calc(10px + 1.5em);
}
.nomalBtn._newWindow::after {
  top: 50%;
  right: 10px;
  transform: translateY(-40%);
}

.detailBtn {
  position: relative;
  margin-left: auto;
  display: block;
  width: fit-content;
  padding: 0 20px 0 10px;
  line-height: 2;
  font-size: 1.2rem;
}
.detailBtn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 5px;
  height: 5px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translateY(-40%);
}
@media (hover: hover) {
  .detailBtn:after {
    transition: right 0.3s;
  }
  .detailBtn:hover:after {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .detailBtn {
    font-size: 1.4rem;
  }
}

.moreBtn {
  position: absolute;
  top: 58px;
  right: 0;
  z-index: 1;
  display: block;
  padding-right: 15px;
  font-weight: 700;
  font-size: 1.4rem;
}
.moreBtn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(45deg) translateY(-40%);
}
@media (hover: hover) {
  .moreBtn:after {
    transition: right 0.3s;
  }
  .moreBtn:hover:after {
    right: 0px;
  }
}
@media screen and (min-width: 768px) {
  .moreBtn {
    top: 12px;
    padding-right: 20px;
    font-size: 1.6rem;
  }
}

.moreAcBtn {
  width: 120px;
  height: 35px;
  border: 1px solid;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  cursor: pointer;
}
.moreAcBtn::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
  transform-origin: 4px 4px;
  transition: transform 0.3s;
}
.moreAcBtn.is-open::after {
  transform: rotate(calc(45deg + 180deg));
}
@media screen and (min-width: 768px) {
  .moreAcBtn {
    display: none;
  }
}

.ticketBtn {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 5;
  width: 100px;
  height: 80px;
  border-radius: 999px 0 0 999px;
  padding-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .ticketBtn {
    bottom: 40px;
    width: 180px;
    height: 100px;
    font-size: 2.4rem;
  }
}

.scrollUpBtn {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  width: 40px;
  height: 40px;
  padding-top: 3px;
  display: none;
  justify-content: center;
  align-items: center;
}
.scrollUpBtn::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: rotate(45deg);
}
.scrollUpBtn.is-show {
  display: flex;
}

.js-accordion {
  cursor: pointer;
}

/* sec common */
.sec {
  width: 100%;
  padding: 50px 5.333333333333334vw;
}
.sec-ttl {
  line-height: 1;
  font-weight: 900;
  font-size: 3.2rem;
}
.sec-ttlE {
  margin-bottom: 30px;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .sec {
    padding: 80px 40px 100px;
  }
  .sec-inner {
    margin: auto;
    max-width: 1080px;
  }
  .sec-ttlWrapper {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .sec-ttlWrapper > * {
    margin-bottom: 0;
  }
  .sec-ttl {
    text-align: center;
    font-size: 4rem;
  }
  .sec-ttlE {
    text-align: center;
    font-size: 2.4rem;
  }
}

/* ----- header ----- */
.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  width: 100%;
}
.header-hamburgerBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.header-menu {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: left 0.3s;
}
.header-fightersLogo {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  display: block;
  width: 50px;
}
@media (hover: hover) {
  .header-fightersLogo:hover {
    opacity: 0.8;
  }
}
.header-nav {
  padding: 100px 40px 40px;
  border-bottom: 1px solid;
}
.header-nav ul li + li {
  margin-top: 25px;
}
.header-nav ul li a {
  display: block;
}
.header-nav ul li a h2 {
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 700;
}
.header-nav ul li a p {
  line-height: 1.5;
  font-size: 1.2rem;
}

/* ----- series ----- */
.series {
  padding: 30px 40px;
}
.series h2 {
  position: relative;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.series h2::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform-origin: 7px 7px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.series h2.is-open::after {
  transform: rotate(calc(45deg + 180deg));
}
.series ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.series ul li {
  position: relative;
  width: calc((100% - 10px) / 2);
  aspect-ratio: 1200 / 630;
  border-radius: 5px;
  overflow: hidden;
}
.series ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.series ul li a img {
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}
@media (hover: hover) {
  .series ul li::before,
  .series ul li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    transition: width 0.2s linear;
    transition-delay: 0.2s;
  }
  .series ul li::before {
    top: 0;
    right: 0;
  }
  .series ul li::after {
    bottom: 0;
    left: 0;
  }
  .series ul li:hover::before,
  .series ul li:hover::after {
    width: 100%;
  }
  .series ul li a::before,
  .series ul li a::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 0;
    transition: height 0.2s linear;
  }
  .series ul li a::before {
    top: 0;
    left: 0;
  }
  .series ul li a::after {
    bottom: 0;
    right: 0;
  }
  .series ul li a:hover::before,
  .series ul li a:hover::after {
    height: 100%;
  }
}

.header-menu.is-navOpen {
  left: 0;
}
body.is-navOpen {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .header-hamburgerBtn.is-active {
    right: 20px;
  }

  .header-fightersLogo {
    top: 20px;
    left: 20px;
    width: 60px;
  }
  .header-nav {
    border-bottom: 2px solid;
  }
  .header-nav ul {
    margin: auto;
    max-width: 980px;
  }
  .header-nav ul li a h2 {
    font-size: 2.4rem;
  }
  .header-nav ul li a p {
    font-size: 1.6rem;
  }
  .series h2 {
    margin: 0 auto 20px;
    max-width: 980px;
    font-size: 2.4rem;
  }
  .series h2::after {
    top: 30%;
  }
  .series ul {
    margin: auto;
    max-width: 980px;
    gap: 28px;
  }
  .series ul li {
    width: 224px;
  }
}

/* mv */
.mv {
  position: relative;
}
.mv-image {
  display: block;
}
.mv-fightersLogo {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: 50px;
}
@media (hover: hover) {
  .mv-fightersLogo:hover {
    opacity: 0.8;
  }
}
.mv-opening {
  padding: 30px 10.666666666666668vw 50px;
  text-align: center;
  line-height: 1.75;
  background: top/cover no-repeat;
}
.mv-openingTtl {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .mv-fightersLogo {
    top: 20px;
    left: 20px;
    width: 60px;
  }
  .mv-opening {
    padding: 40px 40px 80px;
  }
  .mv-openingTtl {
    margin-bottom: 20px;
    font-size: 3.2rem;
  }
  .mv-openingTxt {
    font-size: 2rem;
  }
}

/* present */
.presentCard {
  position: relative;
}
.presentCard + .presentCard {
  margin-top: 30px;
}
.presentCard img {
  margin-bottom: 15px;
  display: block;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
}
.presentCard-targetBorder {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  width: 65px;
  height: 65px;
  padding: 2px;
  border-radius: 50%;
}
.presentCard-target {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.presentCard-target p {
  line-height: 1.25;
  text-align: center;
  font-size: 1rem;
  color: #010101;
}
.presentCard-target p span {
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
}
.presentCard-target._all p span {
  font-size: 1.2rem;
}
.presentCard-date {
  margin-bottom: 5px;
  line-height: 1.25;
  font-weight: 500;
  font-size: 1.6rem;
}
.presentCard h3 {
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.8rem;
}

.present-note {
  margin-top: 40px;
  font-size: 1.2rem;
}
.present-note::before {
  content: '※';
  color: #ff0000;
}

@media screen and (min-width: 768px) {
  .present-list {
    margin: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  .presentCard {
    width: calc((100% - 30px) / 2);
    max-width: 340px;
  }
  .presentCard + .presentCard {
    margin-top: 0;
  }
  .presentCard-date {
    font-size: 2rem;
  }
  .presentCard h3 {
    font-size: 2.4rem;
  }

  .present-note {
    font-size: 1.4rem;
  }
}

/* event */
.eventCard + .eventCard {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #666;
}
.eventCard figure {
  position: relative;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.eventCard figure img {
  aspect-ratio: 16 / 9;
}
.eventCard-caption {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 1.2rem;
}
.eventCard-caption::before {
  content: '※';
}
.eventCard-date {
  margin-bottom: 5px;
  width: fit-content;
  display: flex;
  line-height: 1.75;
  font-size: 1.6rem;
}
.eventCard-date span:first-child {
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.eventCard-date span:last-child {
  padding: 0 15px;
}
.eventCard h3 {
  margin-bottom: 5px;
  line-height: 1.5;
  font-size: 1.8rem;
}
.eventCard-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 400;
}
.eventCard-notes li {
  padding-inline-start: 1em;
  line-height: 1.5;
  text-indent: -1em;
  font-size: 1.4rem;
}
.eventCard-notes li::before {
  content: '※';
  color: #ff0000;
}

@media screen and (min-width: 768px) {
  .event .sec-inner {
    max-width: 980px;
  }
  .eventCard {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .eventCard figure {
    margin-bottom: 0;
    display: block;
    width: 45%;
  }
  .eventCard-contents {
    width: calc(55% - 40px);
  }
  .eventCard-date {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  .eventCard h3 {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
  .eventCard-text {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .eventCard-text:has(+ .eventCard-notes) {
    margin-bottom: 5px;
  }
  .eventCard-notes {
    margin-bottom: 20px;
  }
  .eventCard .detailBtn {
    margin-left: 0;
    padding-left: 0;
  }
}

/* schdule */
.schedule-list {
  container: scheduleCard / inline-size;
}
.schedule-list li + li {
  margin-top: 20px;
}
.scheduleCard {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.scheduleCard-contents {
  display: grid;
  grid-template-columns: 70% 30%;
}
.scheduleCard-when {
  font-family: 'Oswald', sans-serif;
  color: #010101;
}
.scheduleCard-when._sat ._weekColor {
  color: var(--sub-color);
}
.scheduleCard-when._sun ._weekColor {
  color: #ff0000;
}
.scheduleCard-when._beerDay::after {
  content: '';
  display: inline-block;
  width: 34px;
  height: auto;
  aspect-ratio: 53 / 54;
  padding-inline-start: 10px;
  background: center/contain no-repeat url(../../common/img/schesule_beer.webp);
}
.scheduleCard-date {
  font-size: 3.6rem;
  font-weight: 700;
}
.scheduleCard-week {
  font-size: 1.2rem;
}
.scheduleCard-time {
  font-size: 2rem;
}
.scheduleCard-opponent {
  grid-row: 2;
  line-height: 1.5;
  font-size: 1.4rem;
}
.scheduleCard-opponentLogo {
  grid-row: span 2;
  margin: auto;
  display: block;
  width: 50px;
}
.scheduleCard-opponentLogo._eagles {
  width: auto;
  height: 50px;
  aspect-ratio: 138 / 106;
}
.scheduleCard-opponentLogo._marines {
  width: auto;
  height: 50px;
  aspect-ratio: 123 / 107;
}
.scheduleCard-opponentLogo._hawks {
  width: auto;
  height: 50px;
  aspect-ratio: 109 / 105;
}
.scheduleCard-opponentLogo._buffaloes {
  width: auto;
  height: 50px;
  aspect-ratio: 101 / 118;
}
.scheduleCard-opponentLogo._lions {
  aspect-ratio: 95 / 103;
}
.scheduleCard-opponentLogo._baystars {
  aspect-ratio: 87 / 125;
}
.scheduleCard-opponentLogo._dragons {
  aspect-ratio: 82 / 106;
}
.scheduleCard-opponentLogo._giants {
  width: auto;
  height: 50px;
  aspect-ratio: 124 / 115;
}
.scheduleCard-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
}
/* roof open */
.scheduleCard._roofOpenDay .scheduleCard-when::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: auto;
  aspect-ratio: 617 / 778;
  padding-inline-start: 10px;
  background: center/contain no-repeat url(../img/logo_roofopen.webp);
}

@container (480px <= width) {
  .scheduleCard {
    padding: 20px 40px;
    border-radius: 5px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .scheduleCard-contents {
    width: 250px;
  }
  .scheduleCard-btns {
    width: 130px;
    flex-wrap: wrap;
  }
  .scheduleCard._roofOpenDay .scheduleCard-when::after {
    margin-top: 5px;
  }
}
@container (620px <= width) {
  .scheduleCard-btns {
    width: 290px;
    flex-wrap: nowrap;
  }
}
@container (800px <= width) {
  .scheduleCard {
    gap: 15px;
  }
  .scheduleCard-contents {
    width: auto;
    display: flex;
    align-items: center;
  }
  .scheduleCard-date {
    font-size: 4rem;
  }
  .scheduleCard-week {
    font-size: 1.6rem;
  }
  .scheduleCard-time {
    font-size: 2.4rem;
  }
  .scheduleCard-opponent {
    margin-inline-start: 30px;
    font-weight: 700;
    font-size: 1.6rem;
  }
  .scheduleCard-opponentLogo {
    margin: 0 0 0 5px;
  }
  .scheduleCard-btns {
    width: auto;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .scheduleCard-when._beerDay::after {
    width: 42px;
    padding-inline-start: 20px;
  }
  .scheduleCard._roofOpenDay .scheduleCard-when::after {
    margin-top: 0;
  }
}

/* goods */
.goods .sec-inner {
  position: relative;
}
.goods-slider {
  margin-right: -20px;
}

.goodsCard {
  width: 180px;
  aspect-ratio: 1 / 1;
  padding: 13px;
  background-color: #fff;
  border-radius: 10px;
}
.goodsCard img {
  margin-bottom: 15px;
  display: block;
}
.goodsCard h3 {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.6rem;
}
.goodsCard-price {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .goodsCard {
    width: 200px;
  }
  .goodsCard img {
    margin-bottom: 20px;
  }
  .goodsCard h3 {
    font-size: 1.8rem;
  }
  .goodsCard-price {
    font-size: 1.4rem;
  }
  .goods-slider {
    margin-right: 0;
  }
}

/* gourmet */
.gourmet .sec-inner {
  position: relative;
}
.gourmet .sec-ttl {
  font-size: 2.6rem;
}

.gourmetCard {
  position: relative;
  display: block;
  width: 180px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
}
.gourmetCard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58px;
  backdrop-filter: blur(5px) brightness(0.5);
}
.gourmetCard img {
  display: block;
}
.gourmetCard-text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 10px 15px;
  color: #fff;
}
.gourmetCard h3 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.6rem;
}
.gourmetCard h3._fontS {
  font-size: 1.3rem;
}
.gourmetCard-price {
  font-size: 1.2rem;
}

.gourmet-slider {
  margin-right: -20px;
}

.moreBtn._gourmet {
  top: 55px;
}

@media screen and (min-width: 768px) {
  .gourmet .sec-ttl {
    font-size: 4rem;
  }

  .gourmetCard {
    width: 200px;
  }
  .gourmetCard::after {
    height: 62px;
  }
  .gourmetCard h3 {
    font-size: 1.8rem;
  }
  .gourmetCard h3._fontS {
    font-size: 1.4rem;
  }
  .gourmetCard-price {
    font-size: 1.4rem;
  }

  .gourmet-slider {
    margin-right: 0;
  }

  .moreBtn._gourmet {
    top: 12px;
  }
}

/* guest */
.guestCard + .guestCard {
  margin-top: 30px;
}
.guestCard img {
  display: block;
  border-radius: 10px;
}
.guestCard-date {
  margin: 15px 0 5px;
  width: fit-content;
  line-height: 1.75;
  font-size: 1.4rem;
}
.guestCard-date span {
  display: inline-block;
  padding: 0 10px;
}
.guestCard-date span:last-child {
  padding: 0 15px;
}
.guestCard h3 {
  margin-bottom: 5px;
  line-height: 1.5;
  font-size: 1.8rem;
}
.guestCard-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.5;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .guest-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .guestCard {
    width: calc((100% - 40px) / 2);
    max-width: calc((1080px - 40px * 2) / 3);
  }
  .guestCard + .guestCard {
    margin-top: 0;
  }
  .guestCard-date {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .guestCard h3 {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  .guestCard-text {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
}

/* news */
.news {
  overflow: hidden;
}
.news-list {
  position: relative;
  z-index: 0;
}
.news-list:first-of-type:before {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  height: auto;
  background: center/contain no-repeat;
}
.news-list > li {
  border-bottom: 1px solid #e8e8e8;
}
.news-list:first-of-type > li:first-of-type {
  border-top: 1px solid #e8e8e8;
}
.news-list li._new .newsCard-attr::before {
  content: 'NEW';
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff0000;
}
.js-accordion-contents {
  display: none;
}

.newsCard a {
  display: block;
  padding: 20px 0;
}
.newsCard-attr {
  margin-bottom: 5px;
  display: flex;
  gap: 5px;
  line-height: 1.5;
}
.newsCard-date {
  font-size: 1.2rem;
  color: #999;
}
.newsCard-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  font-size: 1.2rem;
}
.newsCard-tag li {
  padding: 0 10px;
  border-radius: 3px;
}
.newsCard-tag li._event {
  background-color: #ff0000;
  color: #fafafa;
}
.newsCard-tag li._goods {
  background-color: #00cc99;
  color: #fafafa;
}
.newsCard-tag li._ticket {
  background-color: #99cc33;
  color: #fafafa;
}
.newsCard-tag li._campaign {
  background-color: #cc6600;
  color: #fafafa;
}
.newsCard-tag li._presrelease {
  background-color: #999933;
  color: #fff;
}
.newsCard-tag li._gourmet {
  background-color: #f7991d;
  color: #fff;
}
.newsCard-tag li._fav {
  background-color: #000066;
  color: #fff;
}
.newsCard-tag li._academy {
  background-color: #ff6699;
  color: #fff;
}
.newsCard-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5;
  font-size: 1.4rem;
}
@media (hover: hover) {
  .newsCard-ttl {
    position: relative;
  }
  .newsCard-ttl:after {
    content: '';
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    transform: translateX(-100%);
    transition: transform 1s;
  }
  .newsCard a:hover .newsCard-ttl:after {
    transform: translateX(0);
  }
}

.news-moreAcBtn {
  margin: 25px auto 0;
}

@media screen and (min-width: 768px) {
  .news {
    background-color: #f1f1f1;
  }
  .news-list {
    padding: 10px 50px;
    overflow: hidden;
  }
  .news-list:first-of-type {
    padding-bottom: 0;
    border-radius: 10px 10px 0 0;
  }
  .news-list:first-of-type:before {
    top: 0;
    right: -30px;
  }
  .news-list:last-of-type {
    padding-top: 0;
    border-radius: 0 0 10px 10px;
  }
  .news-list:last-of-type > li:last-of-type {
    border-bottom: none;
  }
  .news-list:first-of-type > li:first-of-type {
    border-top: none;
  }
  .news-list li._new .newsCard-attr::before {
    font-size: 1.4rem;
  }

  .js-accordion-contents {
    display: block;
  }

  .newsCard-date {
    font-size: 1.4rem;
  }
  .newsCard-tag {
    font-size: 1.4rem;
  }
  .newsCard-ttl {
    font-size: 1.6rem;
  }
}

/* sponsor */
.sponsor h2 {
  margin: 0 auto 50px;
}
.sponsor-list {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-wrap: wrap;
  gap: 0 15px;
}
.sponsor-list + .sponsor-list {
  margin-top: 10px;
}
.sponsor-list li a {
  height: 100%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.sponsor-list li a p {
  text-align: center;
  font-size: 1.4rem;
}
.sponsor-list._m li a p {
  font-size: 1.2rem;
}
.sponsor-list._s li a p {
  font-size: 1rem;
}
.sponsor-list._l li {
  width: 100%;
  max-width: 400px;
}
.sponsor-list._m li {
  max-width: 200px;
}
.sponsor-list._s li {
  max-width: 150px;
}
@media (hover: hover) {
  .sponsor-list li a:hover {
    opacity: 0.7;
  }
}

@media screen and (768px <= width) {
  .sponsor-list + .sponsor-list {
    margin-top: 0;
  }

  .sponsor-list li a p {
    font-size: 1.6rem;
  }
  .sponsor-list._m li a p {
    font-size: 1.4rem;
  }
  .sponsor-list._s li a p {
    font-size: 1.2rem;
  }
}

/* ----- series _foot ----- */
.series._foot {
  padding: 30px 5.333333333333334vw;
}
.series._foot h2 {
  margin-bottom: 0;
  transition: margin-bottom 0.5s;
}
.series._foot h2.is-open {
  margin-bottom: 20px;
}

/* ----- footer ----- */
.footer {
  width: 100%;
  padding: 25px 20px 10px;
}
.footer-inner {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.footer-logo {
  display: block;
  width: 50%;
  min-width: 200px;
  max-width: 300px;
}
@media (hover: hover) {
  .footer-logo:hover {
    opacity: 0.7;
  }
}
.footer-share h2 {
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Teko', sans-serif;
  font-size: 3.2rem;
  color: #fff;
}
.footer-share ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer-share ul li {
  width: 44px;
  height: 44px;
}
.footer-share ul li a {
  display: block;
}
.footer-share ul li._x a {
  padding: 3px;
}
@media (hover: hover) {
  .footer-share ul li a {
    transition: transform 0.3s;
  }
  .footer-share ul li a:hover {
    transform: scale(1.2);
  }
}
.footer-copyright {
  display: block;
  width: 100%;
  line-height: 1.5;
  text-align: center;
  font-size: 1rem;
  color: #ccc;
}

@media screen and (min-width: 768px) {
  .footer-share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .footer-share h2 {
    padding-top: 15px;
  }
  .footer-share ul {
    gap: 10px;
  }
}
