@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul,
ol {
  list-style: none;
}

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

.sp_only {
  display: none !important;
}

.displaynone {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp_only {
    display: block !important;
  }

  .pc_only {
    display: none !important;
  }
}

/* ----全体調整---- */

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

p,
h5,
h4,
h3,
h2,
h1,
a,
dd,
dt,
li,
figcaption,
button,
input,
label {
  line-height: 1.8;
}

/* header */
header {
  background-color: #000;
}

.pc_header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  transition: transform 0.4s ease-in-out;
  transform: translateY(0);
}

.pc_header.unfixed {
  transform: translateY(-100%);
}

.header_inner {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_inner .site_title {
  width: 182px;
}

.header_menu li {
  margin-bottom: 8.58px;
  height: 31px;
  width: 150px;
}

.header_menu li:last-child {
  margin-bottom: 0;
}

.header_menu a {
  background: #c4a115;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.2px;
  height: 100%;
}

.header_menu a span {
  margin-right: 5px;
}

/* gnav */

.gnav_wrap {
  width: 697px;
}

.gnav > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gnav > ul dt,
.gnav > ul a dt {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.gnav > ul dd,
.gnav > ul a dd {
  color: #c4a115;
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
}

.gnav > ul li:hover {
  cursor: pointer;
}

.gnav dl {
  position: relative;
  padding-bottom: 16px;
}

.gnav dl::after {
  content: "";
  background: url(../images/arrow_bottom.png) center center no-repeat;
  background-size: cover;
  display: block;
  height: 8px;
  width: 13px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transition: 0.3s;
}
.gnav dl:hover::after {
  background: url(../images/arrow_bottom_active.png) center center no-repeat;
  transition: 0.3s;
}

.gnav dl.active::after {
  background: url(../images/arrow_bottom_active.png) center center no-repeat;
  transition: 0.3s;
}

.sub_menu_box {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 96px;
  width: 100%;
  height: 37px;
  display: none;
}
.sub_menu {
  background: #1b2026;
  width: 100%;
  height: 37px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub_menu a {
  color: #fff;
}

.sub_menu a:hover {
  text-decoration: underline;
}

.sub_menu li {
  margin-right: 62px;
}

.sub_menu li:last-child {
  margin-right: 0;
}



/* フッター */

footer {
  background: #000;
  padding-top: 60.26px;
  padding-bottom: 27px;
}

footer .container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.footer_link_block > ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}

.footer_link_block dt {
  color: #c4a115;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.footer_link_block dt a:hover {
  text-decoration: underline;
}

.footer_link_block dd.centering {
  width: fit-content;
  margin-inline: auto;
}

.footer_link_block dd a {
  color: #99a1af;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.footer_link_block dd a:hover {
  text-decoration: underline;
}
.footer_link_block dd ul {
  margin-top: 8px;
}
.footer_link_block dd li {
  font-weight: 400;
  padding-left: 18px;
  padding-right: 18px;
  margin-bottom: 5px;
  white-space: nowrap;
}

.footer_cont {
  border-bottom: #4c4c4c solid 1px;
  border-top: #4c4c4c solid 1px;
  padding: 30px 0 31px 0;
  margin-top: 76px;
  max-width: 1200px;
  width: 100%;
}

.footer_cont_inner {
  max-width: calc(1040px - 156px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_logo {
  width: 240px;
}

.footer_logo img {
  width: 100%;
}

.footer_cont_link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 34px;
  max-width: 365px;
}

.footer_cont_link ul li {
  font-size: 14px;
}

.footer_cont_link ul li:last-child {
  margin-right: 0;
}

.footer_cont_link ul li a {
  color: #99a1af;
  font-weight: 400;
}

.footer_cont_link ul li a:hover {
  text-decoration: underline;
}

.footer_contact ul {
  display: flex;
}

.footer_contact ul li {
  margin-right: 8.58px;
  text-align: center;
}

.footer_contact ul li:last-child {
  margin-right: 0;
}

.footer_contact ul li a {
  background: #c4a115;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 13.2px;
  font-weight: 500;
  width: 150px;
}
.footer_contact li.download {
  display: none;
}
.footer_contact li.download a span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/icon_head_dl.png) left center no-repeat;
  height: 31.07px;
  padding-left: 25px;
}

.footer_contact li.contact a span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/icon_head_mail.png) left center no-repeat;
  height: 31.07px;
  padding-left: 30px;
}

.footer_social_link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.footer_social_link li {
  margin: 0 7.1px;
}

.copyright_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.copyright,
.copyright_text {
  color: #99a1af;
  font-size: 13.14px;
  font-family: "Inter", sans-serif;
}

/* スマホ対応 */

.sp_header {
  display: none;
  height: 64px;
}

.sp_menu {
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.sp_menu:before {
  content: "";
  background: url(../images/button_menu.png) center center no-repeat;
  background-size: cover;
  display: block;
  height: 42px;
  width: 42px;
}

.sp_menu_block {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態で画面右外に隠す */
  width: 100%;
  height: 100vh;
  z-index: 10000;
  transition: right 0.4s ease-out;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}

.sp_menu_block.open {
  right: 0;
}

.sp_menu_head {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
}

.sp_close:before {
  content: "";
  background: url(../images/button_close.png) center center no-repeat;
  background-size: cover;
  display: block;
  height: 42px;
  width: 42px;
  cursor: pointer;
}

.sp_site_logo {
  margin-top: 60px;
  text-align: center;
}

.sp_site_logo a {
  max-width: 242px;
  width: 100%;
  margin-inline: auto;
}

.sp_menu_inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.sp_link_list_block {
  margin-top: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.sp_link_list_block > ul > li {
  font-size: 18px;
  font-weight: 700;
  color: #c4a115;
  margin-bottom: 30px;
}

.sp_link_list_block > ul {
  margin-right: 70px;
}

.sp_link_list_block > ul:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.sp_link_list_block > ul > li > ul {
  margin-top: 15px;
}

.sp_link_list_block > ul > li > ul > li {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 4px;
}

.sp_link_list_block a:hover {
  text-decoration: underline;
}

.sp_bottom_menu {
  border-top: #fff solid 1px;
  margin-top: 56px;
  padding-top: 21px;
}

.sp_bottom_link {
  display: flex;
  justify-content: center;
}

.sp_bottom_link li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-right: 38px;
}

.sp_bottom_link li:last-child {
  margin-right: 0;
}

.sp_bottom_link li a:hover {
  text-decoration: underline;
}

.sp_contact_link {
  display: flex;
  justify-content: center;
  margin-top: 23px;
}

.sp_contact_link li {
  font-size: 20px;
  font-weight: 500;
  margin-right: 20px;
  width: 268px;
}

.sp_contact_link li:last-child {
  margin-right: 0;
}

.sp_contact_link li a {
  background: #c4a115;
  color: #fff;
  display: block;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp_contact_link li a span {
  margin-right: 10px;
  display: flex;
}

.sp_sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.sp_sns_link li {
  margin-right: 14.2px;
}

.sp_sns_link li:last-child {
  margin-right: 0;
}

body.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none; /* バウンススクロール（elastic scroll）を抑制 */
}

/* iOS/Androidでの追加対策（推奨） */
html.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}



@media screen and (max-width: 1099px) {

  .pc_header {
    display: none;
  }
  .sp_header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: none;
    background-size: cover;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .partners_list_large .partners_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners_list_middle .partners_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer_link_block > ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: fit-content;
    margin-inline: auto;
  }
  .footer_cont_inner {
    flex-direction: column;
    gap: 18px;
  }
  .copyright_block {
    display: block;
    text-align: center;
  }
  .copyright_text {
    margin-top: 10px;
  }
  .footer_cont_link {
    width: auto;
  }
  .footer_cont_link ul li {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  #partners {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #partners .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  #partners .pc_only {
    display: none;
  }
  #partners .sp_only {
    display: block !important;
    width: 323px;
  }
  #partners hgroup p {
    font-size: 17px;
    color: #c4a115;
  }
  #partners hgroup {
    margin-bottom: 26px;
  }
  .partners_list_large .partners_list {
    gap: 12px;
  }
  .partners_list_middle {
    margin-top: 20px;
  }
  .partners_list_middle .partners_list {
    gap: 9px;
  }
  #banner_link {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #banner_link .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .banner_list_large {
    gap: 6.33px;
  }
  .banner_list_middle {
    gap: 5px;
  }
  .footer_link_block > ul {
    grid-template-columns: repeat(1, 1fr);
    margin-right: 50px;
    margin-left: 0;
    gap: 16px;
  }
  .footer_link_block > ul:last-child {
    margin-right: 0;
  }
  .footer_link_block dt {
    text-align: left;
  }
  .footer_link_block dd li {
    padding-left: 1em;
    padding-right: 0;
  }
  .footer_link_block dd.centering li a {
    text-align: left;
  }
  footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  footer .container .pc_only {
    display: none;
  }
  footer .container .sp_only {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
  }
  .footer_cont {
    margin-top: 26px;
    padding-top: 30px;
  }
  .footer_logo {
    width: 285px;
  }
  .footer_cont_link ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 10px 36px;
  }
  .footer_cont_link ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer_contact ul {
    display: block;
  }
  .footer_contact ul li {
    margin-right: 0;
    margin-bottom: 10.69px;
  }
  .footer_contact ul li a {
    width: 268px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  .footer_link_block dt {
    font-size: 18px;
    font-weight: 700;
  }
  .copyright {
    margin-left: -5px;
    margin-right: -5px;
  }
  .copyright,
  .copyright_text {
    font-size: 12px;
  }
  .copyright_text {
    line-height: 1.4;
    margin-top: 12px;
  }
  .countdown_block dd .number {
    padding-right: 3.259452411994785vw;
    margin-right: 1.955671447196871vw;
  }
  .countdown_box_bottom {
    padding-right: calc(3.259452411994785vw + 1.955671447196871vw);
  }
  .countdown_box_bottom img {
    display: block;
    margin-top: 3.0719999999999996vw;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .sp_contact_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 23px;
    align-items: center;
  }
  .sp_contact_link li {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .sp_menu_block {
    padding-left: 5px;
    padding-right: 5px;
    height: 100dvh;
  }
  .home_standings_table tbody td span {
    height: 6.4vw;
    width: 6.4vw;
  }
}

/* 個別ページ */

#page_content {
  background: #353535;
  padding: 96px 0 0 0;
}

.panks_list {
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.panks_list ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.panks_list ul li {
  color: #fff;
  font-size: 10px;
}

.panks_list ul li a {
  display: inline-block;
}

.panks_list ul li a:hover {
  text-decoration: underline;
}

.panks_list ul li:after {
  content: ">";
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.panks_list ul li:last-child::after {
  content: "";
  display: none;
}

#page_content .inner {
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.page_title {
  margin-top: 67px;
}

.page_title h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.page_title p {
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-top: 20px;
}

.contents_head {
  margin-top: 40px;
}

.contents_head .pc_only {
  display: none;
}

.contents_head p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.9375;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 1099px) {
  #page_content {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  #page_content:not(:has(.pageMV)) .pageContents {
    padding-top: 50px;
  }
}


/* オフィシャルパートナーズ */

#partners {
  background: url(../images/bg_partners.png) center top no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}

#partners .sponsor {
  padding: 0;
}

#partners .container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

#partners hgroup {
  margin-bottom: 58px;
}
#partners hgroup p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.partners_list_large .partners_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.partners_list_middle {
  margin-top: 48px;
}

.partners_list_middle .partners_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22.53px;
}

/* バナー */

#banner_link {
  background: url(../images/bg_banner.png) top center no-repeat;
  background-size: cover;
  padding-top: 53px;
  padding-bottom: 53px;
  display: none;
}

#banner_link .container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.banner_large_block {
  margin-bottom: 20px;
}

.banner_list_large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.banner_list_large li {
  display: flex;
  align-items: center;
}

.banner_list_middle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22.53px;
  width: 100%;
}

/* 下層ページ共通 */
.mt16 {
  margin-top: 16px;
}

.mt40 {
  margin-top: 40px;
}

.pl24 {
  padding-left: 24px;
}

.text-indent {
  margin-left: -24px;
}

.text-center {
  text-align: center;
}

.container1080 {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

.container900 {
  max-width: 940px;
  margin-inline: auto;
  padding-inline: 20px;
}

.container800 {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: 20px;
}

.pageContents {
  background-image: url(../../assets/images/common/bg-page.png);
  background-position: left top;
  background-repeat: repeat;
  background-size: contain;
}

.pageContents {
  color: var(--colorWhite);
}

.section__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 40px;
}

.section__title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--colorGold) 9.2%, var(--colorWhite) 9.2%);
  left: 0;
  bottom: 0;
  position: absolute;
}

.section__subtitle {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
}

.section__subtitle::before {
  content: "";
  position: absolute;
  background: var(--colorGold);
  width: 8px;
  height: 2px;
  left: 0;
  top: 16px;
}

.pageMV {
  height: 360px;
  background-image: url(../images/bg-page-mv.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pageMV .container1080 {
  height: 100%;
  align-content: center;
}

.pageMV__title {
  font-size: 88px;
  font-family: var(--familyBarlowCondensed);
  font-weight: 700;
  line-height: 1;
  color: #E70010;
}

.pageMV__subtitle {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--colorWhite);
}

.breadcrumb {
  padding-block: 10px;
}

.breadcrumbList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 41px;
}

.breadcrumbList__item {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-decoration: underline;
  position: relative;
}

.breadcrumbList__item::before {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: 50%;
  display: inline-block;
  vertical-align: middle;
  color: var(--colorGray);
  line-height: 1;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
}

.breadcrumbList__item:last-child::before {
  display: none;
}

.pageSection {
  padding-top: 80px;
}

.pageSection:nth-of-type(1) {
  padding-top: 100px;
}

.pageSection:nth-last-of-type(1) {
  padding-bottom: 80px;
}

.page__lead {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.page__text {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

ol.pageList {
  list-style-type: decimal;
  padding-left: 24px;
  display: grid;
  gap: 16px;
}

ul .pageList__item {
  position: relative;
}

ul .pageList__item::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--colorWhite);
  border-radius: 50%;
  top: 14px;
  left: -1rem;
}

.pageList__item {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.pageTable th,
.pageTable td {
  border: 1px solid var(--colorGray);
  padding: 20px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: start;
  vertical-align: baseline;
  border-collapse: collapse;
}

.pageTable th {
  border-right: none;
  width: 300px;
}

.pageTable dl {
  display: flex;
  gap: 17px;
}

.commonLink {
  max-width: 280px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  position: relative;
  border: 1px solid var(--colorWhite);
  transition: all .3s;
}

.commonLink::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
  display: inline-block;
  vertical-align: middle;
  color: var(--colorWhite);
  line-height: 1;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
}

.commonLink--target::after {
  content: "";
  background-image: url(../images/common/icon-target.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  border: none;
}

.commonLink--back::after {
  right: unset;
  left: 2rem;
  transform: translateY(-50%) rotate(225deg);
}

.commonLink--orange {
    font-size: 9.75px;
    font-weight: 700;
    line-height: 1.54;
    color: #FF6B35;
    position: relative;
    padding-right: 16px;
}

.commonLink--orange::after {
    content: "";
    position: absolute;
    width: 11.14px;
    height: 11.14px;
    background-image: url(../images/common/icon-arrow-orange.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.sponsor {
  padding-block: 100px;
}

.sponsorList {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sponsorList__item img {
  width: 100%;
}

.sponsorList__item.col-3 {
  width: calc((100% - 48px) / 3);
}

.sponsorList__item.col-4 {
  width: calc((100% - 72px) / 4);
}

@media (hover :hover) {
  .commonLink:hover {
    color: var(--colorBlack);
    background-color: var(--colorWhite);
    cursor: pointer;
  }

  .commonLink:hover::after {
    color: var(--colorBlack);
  }
}

@media screen and (max-width: 767px) {
  .pageMV {
    height: 200px;
  }

  .pageMV__title {
    font-size: 40px;
  }

  .pageMV__subtitle {
    font-size: 16px;
    margin-top: 8px;
  }

  .section__title {
    font-size: 18px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .section__title::before {
    background: linear-gradient(to right, var(--colorGold) 29.8%, var(--colorWhite) 29.8%);
  }

  .section__subtitle {
    font-size: 16px;
  }

  .breadcrumbList__item {
    font-size: 10px;
  }

  .pageSection:nth-of-type(1) {
    padding-top: 40px;
  }

  .page__lead {
    font-size: 14px;
    text-align: start;
  }

  .section__subtitle::before {
    top: 11px;
  }

  .sponsor {
    padding: 40px 20px;
  }

  .sponsorList__item.col-3 {
    width: 100%;
  }

  .sponsorList__item.col-4 {
    width: 100%;
  }

  .pageList__item {
    font-size: 14px;
  }

  .page__text {
    font-size: 14px;
  }

  ul .pageList__item::before {
    top: 10px;
  }

  .pageTable__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
  }

  .pageTable {
    min-width: 1080px;
  }

  .pageTable__wrap::-webkit-scrollbar {
      height: 12px;
  }

  .pageTable__wrap::-webkit-scrollbar-track {
      background: var(--colorWhite);
      border-radius: 10px;
  }

  .pageTable__wrap::-webkit-scrollbar-thumb {
      background: var(--colorGray);
      border-radius: 10px;
  }

  .pageTable th, .pageTable td {
    font-size: 14px;
  }
}

/* 投稿一覧 */
.tag-filter-list {
  display: flex;
  gap: 16px;
}

.tag-filter-item {
  border: 1px solid var(--colorGray);
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-filter-item.active {
  background: var(--colorWhite);
  color: var(--colorBlack);
}


.archiveSection {
  padding-block: 100px 40px;
}

.archiveList {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px 3.7%;
  margin-top: 40px;
}

.archiveList__thmb img {
  aspect-ratio: 333 / 187;
  object-fit: cover;
  object-position: center;
}

.archiveList__content {
  padding-top: 16px;
}

.archiveList__date {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--familyBebasNeue);
}

.archiveList__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.archiveList__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.archiveList__tag {
  border: 1px solid var(--colorGray);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding-inline: 0.5rem;
}

.archiveList__title {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.archiveList__content .commonLink--orange {
  font-size: 10px;
  width: fit-content;
  margin: 8px 0 0 auto;
}

/* ページネーション */
.pagination-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.pagination-wrapper ul.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
  align-items: center;
}

.pagination-wrapper .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding-inline: 12px;
  color: var(--colorWhite);
  text-decoration: none;
  font-family: var(--familyBebasNeue);
  font-size: 20px;
  font-weight: 400;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.pagination-wrapper .page-item:first-child .page-link::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--colorWhite);
  line-height: 1;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}

.pagination-wrapper .page-item:last-child .page-link::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--colorWhite);
  line-height: 1;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.pagination-wrapper .page-item.disabled .page-link::before {
  content: none;
}

.pagination-wrapper .page-item.active .page-link {
  border-color: var(--colorGray);
}

.pagination-wrapper .page-item.disabled .page-link {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-wrapper .page-item.disabled .page-link.dash {
  opacity: 1;
  min-width: 12px;
  width: 12px;
}

@media (hover :hover) {
  .pagination-wrapper a.page-link:hover {
    border-color: var(--colorWhite);
    }
}


@media screen and (max-width: 767px) {
  .tag-filter-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tag-filter-item {
    width: 100%;
  }

  .archiveSection {
    padding-top: 40px;
  }
  
  .archiveList {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .archiveList__content {
    padding: 10px 8px;
  }

  .archiveList__meta {
    display: grid;
    gap: 8px;
  }

  .archiveList__date {
    font-size: 12px;
  }

  .archiveList__title {
    font-size: 12px;
    margin-top: 8px;
  }
}

/* 詳細ページ */
.lower__section {
  padding-block: 100px 40px;
}

.lower__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.lower__date {
  font-size: 14px;
  font-family: var(--familyBebasNeue);
  letter-spacing: 0.04em;
}

.lower__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.lower__tag {
  border: 1px solid var(--colorGray);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding-inline: 0.5rem;
}

.lowerContents__img {
  max-width: 800px;
  margin: 40px auto 0;
}

.lowerContents__img img {
  width: 100%;
}

.lowerContents h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 40px;
  padding-left: 18px;
  position: relative;
}

.lowerContents h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 2px;
  background: var(--colorGold);
}

.lowerContents p {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 24px;
}

.lowerContents a {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--colorGold);
  margin-top: 24px;
  text-decoration: underline;
}

.lowerContents ul,
.lowerContents ol {
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.lowerContents ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
}

.lowerContents ul li,
.lowerContents ol li {
  position: relative;
  padding-left: 24px;
}

.lowerContents ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--colorWhite);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 9.5px;
}

.lowerContents ol li {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .lower__section {
    padding-block: 40px 24px;
  }

  .lower__meta {
    margin-bottom: 8px;
  }

  .lowerContents h2 {
    font-size: 16px;
  }

  .lowerContents h2::before {
    top: 12px;
  }

  .lowerContents p {
    font-size: 14px;
  }

  .lowerContents a {
    font-size: 14px;
  }

  .lowerContents ul,
  .lowerContents ol {
    font-size: 14px;
  }
}

/* 大会情報バナー */
.eventBanner {
  margin: 64px auto 0;
  max-width: 736px;
  transition: 0.3s;
}

@media (hover :hover) {
  .eventBanner:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .eventBanner {
    margin: 32px auto 0;
  }
}