@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;
}

/* ----全体調整---- */

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* 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:first-child {
  display: none;
}

.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 {
}

.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;
}

.gnav dl {
  position: relative;
  padding-bottom: 14px;
}

.gnav dl::after {
  content: "";
  background: url(../imgs/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(../imgs/arrow_bottom_active.png) center center no-repeat;
  transition: 0.3s;
}

.gnav dl.active::after {
  background: url(../imgs/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;
}

/* メインビジュアル */

#main_visual {
  background: url(../imgs/bg_countdown.png) center center no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  margin-top: 96px;
}

.home_countdown_title {
  position: relative;
  text-align: center;
}

.home_countdown_title .title_year {
  display: block;
  max-width: 287px;
  position: absolute;
  top: -90px;
  left: -100px;
  z-index: 2;
}
.home_countdown_title .title_year img {
  height: auto;
  width: 100%;
}

.home_countdown_copy {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.2em;
  margin-top: 50px;
  text-shadow: 1px 10px 5px rgba(0, 0, 0, 1);
}

.home_countdown_block {
  max-width: 1051px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 160px;
}

.title_jp {
  display: inline-block;
  margin-top: 40px;
}

.title_en img,
.title_jp img {
  filter: drop-shadow(1px 10px 10px rgba(0, 0, 0, 1));
}

/* カウントダウン*/

.countdown_block {
  margin-top: 50px;
  text-align: center;
}

.countdown {
  color: #e70010;
  font-size: 40px;
  font-weight: 800;
  text-shadow: 1px 5px 5px rgba(0, 0, 0, 1);
  line-height: 1;
}

.countdown .number {
  font-size: 110px;
  font-family: "DSEG7 Classic";
}

.countdown ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  line-height: 1;
}

.countdown ul dt {
  position: relative;
}

.countdown ul dt:after {
  content: "";
  background: url(../imgs/img_count_dot.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: -13px;
  width: 5px;
  height: 20px;
}

.countdown ul li:last-child dt:after {
  content: "";
  display: none;
}

.countdown ul .number {
  font-size: 40px;
  font-family: "DSEG7 Classic";
}

.countdown ul img {
  max-width: 60px;
  height: auto;
}

.countdown ul dl {
  line-height: 0.6;
}

.countdown ul dl dt {
  line-height: 1;
}

/* スライダー */

.slick_slider {
  width: 100%;
  height: 196px;
  margin-top: 108px;
}

.slick-list {
  height: 196px;
  overflow: initial;
}

.slick-slide {
  width: 390px !important;
}

.slick-slide.uenohara {
  width: 620px !important;
}

.slick-slide .inner {
  padding: 0 10px;
}

.slick-slide.uenohara .inner {
  display: flex;
}

.slider_box {
  min-height: 196px;
  max-width: 100%;
  width: 100%;
  background: #385da6 url("../imgs/slider_sample_1.png") left top no-repeat;
  background-size: contain;
  border-radius: 10px 10px 0 0;
  padding: 15px 28px 15px 156px;
}

.slider_box.slider_2 {
  background: #385da6 url("../imgs/slider_sample_2.png") left top no-repeat;
  background-size: contain;
}

.slider_box.slider_3 {
  background: #385da6 url("../imgs/slider_sample_3.png") left top no-repeat;
  background-size: contain;
}

.slider_box.slider_4 {
  background: #385da6 url("../imgs/slider_sample_4.png") left top no-repeat;
  background-size: contain;
}

.slider_box.slider_5 {
  background: #385da6 url("../imgs/slider_sample_5.png") left top no-repeat;
  background-size: contain;
}

.slider_box.slider_6 {
  background: #b00b22 url("../imgs/slider_sample_6.png") left top no-repeat;
  background-size: contain;
}

.slider_box.slider_6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-block: 7px;
  line-height: 1.2;
}

.slider_box.slider_6 dt {
  grid-column: 1 / -1;
}

.slider_box.slider_6 dd:not(.uenohara-copy) {
  grid-column: 1;
}

.slider_box.slider_6 .uenohara-copy {
  grid-column: 2;
  grid-row: 2;
  position: relative;
}

.slider_box.slider_6 .uenohara-copy p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  position: absolute;
  top: -28px;
}

.slider_box .round {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  display: block;
}

.slider_box .area {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 29px;
  font-weight: 800;
  display: block;
  letter-spacing: 0.5em;
}

.slider_box .venue {
  background: url(../imgs/icon_area_1.png) left center no-repeat;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding-left: 23px;
}

.slider_box .day_time {
  background: url(../imgs/icon_area_2.png) left center no-repeat;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  padding-left: 23px;
  display: flex;
  align-items: center;
}

.slider_box .day_time span {
  display: inline-block;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 0 0.2em;
}

.slider_box .cost {
  font-size: 12px;
  color: #fff;
}
.slider_box .link {
  margin-top: 5px;
}
.slider_box .link a {
  background: #f8d134;
  color: #000;
  display: inline-block;
  font-size: 14.46px;
  padding: 3px 15.41px 4px 15.41px;
  pointer-events: none;
}

.swiper-slide {
  width: auto !important; /* 100% を強制解除 */
  flex-shrink: 0; /* スライドが縮小されないようにする */
}

.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  padding: 10px;
}

.custom-prev {
  left: 30px;
}
.custom-next {
  right: 30px;
}

/* ホームコンテンツ */

#home_contents {
  background: #1e2024 url(../imgs/bg_topics.png) top left no-repeat;
  padding-bottom: 36px;
  display: none;
}

#home_contents .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
}

.home_topics {
  max-width: 894px;
  padding-top: 100px;
  padding-right: 42px;
}

.home_topics hgroup p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.topics_link {
  margin-top: -20px;
  text-align: right;
}

.topics_link a {
  background: url(../imgs/arrow_double.png) bottom 3px right no-repeat;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 600;
  padding-right: 24px;
}

.topics_list_box {
  margin-top: 25px;
}
.topics_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

.topics_list_inner {
  background: #fff;
}

.topics_tag_list {
  display: flex;
  margin-bottom: 8.31px;
}

.topics_tag_list li {
  background: #999;
  font-size: 9.43px;
  font-weight: 400;
  padding: 1.72px 4.15px;
  margin-right: 6px;
  margin-top: -4px;
}

.topics_tag_list li.info {
  background: #4ecdc4;
}

.topics_tag_list li.match {
  background: #ff6b35;
}

.topics_tag_list li.social {
  background: #ffd93d;
}
.topics_tag_list li.media {
  background: #d8028c;
}

.topics_tag_list li:last-child {
  margin-right: 0;
}

.topics_list_inner dd {
  padding: 0 15px 20px 15px;
}

.topics_post_title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.23;
}

.topics_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.79px;
  margin-top: 8px;
}

.topics_bottom .topics_date {
  background: url(../imgs/icon_area_black.png) center left no-repeat;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  padding-left: 16px;
}

.topics_bottom .topics_post_link a {
  background: url(../imgs/icon_arrow_right.png) top 4px right no-repeat;
  color: #ff6b35;
  padding-right: 14px;
}

.topics_bottom .topics_post_link a:hover {
  text-decoration: underline;
}

.home_standings_block {
  max-width: 425px;
  width: 100%;
  background:
    url("../imgs/bg_standings.png") center top no-repeat,
    linear-gradient(180deg, #000000 70%, #1e2024 100%);
  background-size: contain, cover;
  background-repeat: no-repeat, no-repeat;
  padding-top: 120px;
}

.home_standings_block hgroup {
  text-align: center;
}

.home_standings_block hgroup p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
}

.home_standings_table {
  border-spacing: 0;
  margin-top: 16px;
  margin-left: 20px;
  margin-right: 20px;
  width: calc(100% - 40px);
}

.home_standings_table thead {
  background: rgba(255, 255, 255, 0.2);
}

.home_standings_table thead th {
  color: #fff;
  font-size: 12px;
  padding: 23px 0 10px 0;
  border-bottom: #dfe1e6 solid 2px;
}

.home_standings_table thead th:nth-child(2) {
  font-size: 15px;
}

.home_standings_table tbody tr {
  background: linear-gradient(to right, #202020 65%, rgba(32, 32, 32, 0) 100%);
}

.home_standings_table tbody tr:nth-child(1) {
  background: linear-gradient(to right, #33160b 65%, rgba(51, 22, 11, 0) 100%);
}

.home_standings_table tbody tr:nth-child(2) {
  background: linear-gradient(to right, #342c0d 65%, rgba(52, 44, 13, 0) 100%);
}

.home_standings_table tbody tr:nth-child(3) {
  background: linear-gradient(to right, #112a28 65%, rgba(17, 42, 40, 0) 100%);
}

.home_standings_table tbody td {
  color: #fff;
  text-align: center;
  border-top: #000 solid 3px;
  padding: 7px;
}

.home_standings_table tbody td:nth-child(1) {
  background: url(../imgs/border_left.png) top left repeat-y;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  width: 11.37%;
}

.home_standings_table tbody td:nth-child(2) {
  font-size: 14px;
  text-align: left;
  width: 60.72%;
}

.home_standings_table tbody td:nth-child(3) {
  color: #00c950;
  font-size: 15px;
  width: 12.92%;
}

.home_standings_table tbody td:nth-child(4) {
  color: #e7000b;
  font-size: 15px;
  width: 15.5%;
}

.home_standings_table tbody td span {
  width: 24px;
  height: 24px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.home_standings_table tbody td.standings_1 {
  background: url(../imgs/border_left_1.png) top left repeat-y;
}

.home_standings_table tbody td.standings_1 span {
  background: #ff6b35;
  color: #000;
}

.home_standings_table tbody td.standings_2 {
  background: url(../imgs/border_left_2.png) top left repeat-y;
}

.home_standings_table tbody td.standings_2 span {
  background: #ffd93d;
  color: #000;
}
.home_standings_table tbody td.standings_3 {
  background: url(../imgs/border_left_3.png) top left repeat-y;
}
.home_standings_table tbody td.standings_3 span {
  background: #4ecdc4;
  color: #000;
}

.standings_link {
  margin-top: 16px;
  text-align: center;
}

.standings_link a {
  display: inline-block;
  background: url(../imgs/arrow_double.png) top 6px right no-repeat;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding-right: 20px;
}

/* ソーシャルメディア */
#home_sns {
  background: url(../imgs/bg_sns.png) left top repeat-x;
  padding-bottom: 90px;
  background-size: contain;
}

/* #home_sns .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
} */

#home_sns .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
}

.home_youtube_block {
  padding-top: 90px;
  max-width: 790px;
  width: 100%;
}

.home_youtube_block hgroup {
  text-align: center;
}

.home_youtube_block hgroup h2 {
  color: #c4a115;
  font-size: 40px;
  font-weight: 700;
}

.home_youtube_block hgroup h2 {
  position: relative;
  text-align: center;
}

.home_youtube_block hgroup h2 span {
  position: relative;
  display: inline-block;
}

.home_youtube_block hgroup h2 span::before,
.home_youtube_block hgroup h2 span::after {
  content: "";
  position: absolute;
  top: 88%;
  width: 45px;
  height: 1px;
  background: #fff;
}

.home_youtube_block hgroup h2 span::before {
  left: -50px;
  transform: rotate(60deg);
  transform-origin: right center;
}

.home_youtube_block hgroup h2 span::after {
  right: -50px;
  transform: rotate(-60deg);
  transform-origin: left center;
}

.home_youtube_block hgroup p {
  font-size: 30px;
  color: #fff;
  margin-top: 3px;
  margin-bottom: 16px;
}

.home_youutbe_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(to bottom, #e5000b, #880007);
  font-size: 19.4px;
  font-weight: 700;
  padding: 6px 0 9px 0px;
  margin-bottom: 13px;
}

.home_youutbe_title span {
  background: url(../imgs/icon_title_youtube.png) left center no-repeat;
  padding-left: 50px;
}

.home_youutbe_list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 14px;
}

.home_youutbe_list iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  display: block;
}

.home_instagram_block {
  background: url(../imgs/bg_sns_right.png) top 50px right no-repeat;
  background-size: 95%;
  padding-top: 192px;
  padding-right: 64.5px;
  max-width: 518px;
  width: 100%;
}

.home_instagram_block_inner {
  max-width: 297px;
  width: 100%;
  margin-left: auto;
}

.home_instagram_block hgroup {
  background: linear-gradient(to right, #9810fa, #e60076);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 12px 5px 24px;
  color: #fff;
}

.home_instagram_block hgroup h2 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.home_instagram_block hgroup .insta_link {
  display: inline-block;
  background: url(../imgs/arrow_double.png) center right no-repeat;
  padding-right: 24px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.home_insta_list {
  display: block;
}

.home_insta_list li {
  transform-origin: top left;
  transform: scale(0.91);
}

.home_insta_list li:last-child {
  margin-top: -46px;
}

/* .home_insta_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
} */

/* オフィシャルパートナーズ */

#partners {
  background: url(../imgs/bg_partners.png) center top no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

#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(../imgs/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%;
}

/* フッター */

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 a {
  color: #99a1af;
  font-size: 15px;
  font-weight: 400;
}

.footer_link_block dd a:hover {
  text-decoration: underline;
}
.footer_link_block dd ul {
  margin-top: 10px;
}
.footer_link_block dd li {
  font-weight: 400;
  padding-left: 18px;
  padding-right: 18px;
  margin-bottom: 5px;
  white-space: nowrap;
}

.footer_link_block dd.centering li a {
  display: block;
  text-align: center;
}

.footer_cont {
  border-bottom: #4c4c4c solid 1px;
  border-top: #4c4c4c solid 1px;
  padding: 47px 0 31px 0;
  margin-top: 76px;
  max-width: 1200px;
  width: 100%;
}

.footer_cont_inner {
  max-width: 1044px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_logo {
  width: 244px;
}

.footer_cont_link {
  width: 50%;
}

.footer_cont_link ul {
  display: flex;
  margin: 5px;
}

.footer_cont_link ul:first-child {
  display: none;
}

.footer_cont_link ul li {
  font-size: 14px;
  margin-right: 34px;
}

.footer_cont_link ul li:last-child {
  margin-right: 0;
}

.footer_cont_link ul li:first-child,
.footer_cont_link ul li:last-child {
  display: none;
}

.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(../imgs/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(../imgs/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: 15px;
}

.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(../imgs/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(../imgs/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 img {
  max-width: 242px;
  width: 100%;
}

.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;
  display: none;
}

.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:first-child {
  display: none;
}

.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: 1279px) {
  .home_countdown_title .title_year {
    position: static;
    margin-left: auto;
    margin-right: auto;
  }
  .home_youtube_block hgroup .sp_only {
    display: block !important;
  }
}

@media screen and (max-width: 1099px) {
  #main_visual {
    margin-top: 0;
  }
  .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;
  }
  .home_countdown_block {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 830px;
  }
  .home_countdown_head .pc_only {
    display: none;
  }
  .home_countdown_title .title_year img {
    filter: drop-shadow(1px 10px 10px rgba(0, 0, 0, 1));
  }
  .title_en {
    display: block;
  }
  .home_countdown_copy {
    line-height: 1.6;
  }
  .home_countdown_copy .sp_only {
    display: block !important;
  }
  #home_contents .container {
    display: block;
    padding-left: 30px;
    padding-right: 30px;
  }
  .home_topics {
    padding-right: 0;
    max-width: 100%;
  }
  .home_standings_block {
    max-width: 100%;
  }
  #home_sns {
    background: url(../imgs/bg_sns.png) left top;
    background-size: contain;
  }
  #home_sns .container {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .home_youtube_block {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
  }
  .home_instagram_block {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .home_instagram_block {
    background-size: auto;
  }
  .home_instagram_block_inner {
    margin-right: auto;
    max-width: 560px;
  }
  .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;
  }
  .footer_cont_inner {
    flex-direction: column;
    gap: 20px;
  }
  .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) {
  .home_countdown_block {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 24vw;
  }
  .countdown_block {
    margin-top: 10.666666666666668vw;
  }
  .title_jp {
    margin-top: 4.464285714285714vw;
    max-width: 53.57142857142857vw;
    width: 100%;
  }
  .home_countdown_title .title_year {
    max-width: 34.226190476190474vw;
    width: 100%;
  }
  .home_countdown_copy {
    font-size: 5.208333333333334vw;
    margin-top: 6.510416666666667vw;
    letter-spacing: 0.2em;
  }
  .countdown .number {
    font-size: 21.333333333333336vw;
  }
  .slick-slide {
    width: 160px !important;
  }
  .slider_box {
    height: 167px;
    width: 146px;
    background: #385da6 url("../imgs/slider_sample_1_sp.png") top center no-repeat;
    background-size: contain;
    padding: 60px 10px 0 10px;
  }
  .slider_box.slider_2 {
    background: #385da6 url("../imgs/slider_sample_2_sp.png") top center no-repeat;
    background-size: contain;
  }

  .slider_box.slider_3 {
    background: #385da6 url("../imgs/slider_sample_3_sp.png") top center no-repeat;
    background-size: contain;
  }

  .slider_box.slider_4 {
    background: #385da6 url("../imgs/slider_sample_4_sp.png") top center no-repeat;
    background-size: contain;
  }

  .slider_box.slider_5 {
    background: #385da6 url("../imgs/slider_sample_5_sp.png") top center no-repeat;
    background-size: contain;
  }

  .slider_box.slider_6 {
    background: #b00b22 url("../imgs/slider_sample_6_sp.png") top center no-repeat;
    background-size: contain;
  }

  .slider_box.slider_6 .uenohara-copy p {
    font-size: 0.75rem;
  }

  .slider_box.slider_6 {
    background-size: 100% 104%;
    width: 366px;
    padding-block: 50px 16px;
  }

  .slick-slide.uenohara {
    width: 366px !important;
  }

  .slider_box .round {
    font-size: 10.5px;
    margin-right: 0;
    line-height: 1.2;
  }
  .slider_box .area {
    font-size: 17.58px;
    line-height: 1.6;
  }
  .slider_box dt {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .slider_box .venue {
    font-size: 9.09px;
    margin-bottom: 5px;
  }
  .slider_box .day_time {
    font-size: 14.03px;
  }
  .slider_box .day_time span {
    font-size: 7.86px;
  }
  .slider_box .cost {
    font-size: 12px;
  }
  .slider_box .link {
    text-align: center;
  }
  .slider_box .link a {
    font-size: 8.77px;
    padding: 3px 15.41px 4px 15.41px;
  }
  .custom-prev {
    left: 10px;
  }
  .custom-next {
    right: 10px;
  }

  #home_contents {
    background: #1e2024 url(../imgs/bg_topics.png) top right no-repeat;
    background-size: auto;
    padding-bottom: 36px;
    background-size: 60%;
  }
  #home_contents .container {
    padding-left: 0;
    padding-right: 0;
  }
  .home_topics {
    padding-top: 50px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .home_topics h2 {
    width: 260px;
  }
  .home_topics hgroup p {
    color: #c4a115;
    font-size: 17px;
  }
  .topics_link {
    display: none;
  }
  .topics_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .topics_post_title {
    font-size: 2.1173333333333337vw;
  }
  .topics_list_inner dd {
    padding: 0 8.96px 10.59px 8.96px;
  }
  .topics_tag_list li {
    font-size: 1.5359999999999998vw;
  }
  .topics_bottom {
    font-size: 1.7573333333333334vw;
  }
  .home_standings_table tbody td {
    padding: 3px;
  }
  .home_standings_table tbody td:nth-child(1) {
    font-size: 4.029333333333334vw;
  }
  .home_standings_table tbody td:nth-child(2) {
    font-size: 3.317333333333333vw;
  }
  .home_standings_table tbody td:nth-child(3) {
    font-size: 3.554666666666666vw;
  }
  .home_standings_table tbody td:nth-child(4) {
    font-size: 3.554666666666666vw;
  }
  .home_youtube_block {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 50px;
  }
  .home_youtube_block hgroup h2 {
    font-size: 9.466666666666667vw;
  }
  .home_youtube_block hgroup h2 span::before {
    left: -43px;
  }
  .home_youtube_block hgroup h2 span::after {
    right: -43px;
  }
  .home_youtube_block hgroup p {
    font-size: 4.738666666666667vw;
  }
  .home_youutbe_title {
    font-size: 4.597333333333333vw;
  }
  .home_youutbe_list ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .home_instagram_block {
    background: url(../imgs/bg_sns_right.png) top 50px right no-repeat;
    padding-left: 16px;
    padding-right: 16px;
    background-size: 100%;
  }
  #home_sns {
    background: url(../imgs/bg_sns.png) left top;
    padding-bottom: 50px;
  }
  #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: 85px;
  }
  .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: 21px;
  }
  .footer_logo {
    width: 285px;
  }
  .footer_cont_link ul {
    display: block;
    text-align: center;
  }
  .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;
  }
  .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: 57.28px 0 134px 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;
}
.form_block {
  margin-top: 50px;
}
.form_block_inner {
  background: #fff;
  border-radius: 30px;
  padding: 34px 80px 60px 80px;
}
.form_line {
  margin-bottom: 20px;
}
.form_line input,
.form_line textarea,
.form_line select {
  background: #fff;
  border: #5f5f5f solid 1px;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px;
  width: 100%;
}
.form_line dd {
  margin-top: 10px;
}
.form_line .required span:after {
  content: "*";
  color: #e50012;
  margin-left: 0.25em;
}

.form_policy_check {
  color: #fff;
  font-size: 10px;
  margin-top: 42px;
  text-align: center;
}

.form_policy_check label {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form_policy_check input {
  margin-right: 10px;
  transform: scale(1.2);
}

.form_policy_check input[type="checkbox"] {
  accent-color: #99a1af;
}

.form_policy_check a {
  display: inline;
  text-decoration: underline;
}

.form_policy_check a:hover {
  text-decoration: none;
}

.form_submit_block {
  margin-top:;
}

.form_submit_block,
.top_link {
  display: flex;
  justify-content: center;
  margin-top: 57px;
}

.form_submit_block input,
.top_link a {
  background-color: #c4a115;
  border: none;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 287px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.contact__confirm-btn {
  margin-top: 30px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact__confirm-btn input {
  background-color: #c4a115;
  border: none;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 287px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.contact__confirm-btn button {
  background-color: #99a1af;
  border: none;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 287px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

#validation-message {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
  display: none;
}

.contact__validation {
  margin-top: 10px;
  display: none;
}

@media screen and (max-width: 1099px) {
  .form_block_inner {
    padding: 34px 40px 20px 40px;
  }
  .home_insta_list li {
    transform-origin: top left;
    transform: scale(1.037);
  }
  .home_insta_list li:last-child {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  #page_content {
    padding: 57.28px 0 6.976744186046512vw 0;
  }
  .contents_head .pc_only {
    display: block;
  }
  .page_title h1 {
    font-size: 5.5813953488372094vw;
  }
  .page_title p {
    font-size: 5.5813953488372094vw;
    margin-top: 3.255813953488372vw;
  }
  .form_block {
    margin-top: 9.30232558139535vw;
  }
  .form_block_inner {
    padding: 8.604651162790699vw 4.651162790697675vw 4.651162790697675vw 4.651162790697675vw;
  }
  .form_policy_check {
    margin-top: 6.976744186046512vw;
  }
  .form_submit_block,
  .top_link {
    margin-top: 13.25581395348837vw;
  }
  .contact__confirm-btn {
    display: block;
  }
  .contact__confirm-btn input,
  .contact__confirm-btn button {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .home_insta_list li {
    transform-origin: top left;
    transform: none;
  }
  .home_insta_list li:last-child {
    margin-top: 2px;
  }
  .home_insta_list iframe {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* プライバシーポリシー */

.policy_block {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9375;
}

.policy_block h2 {
  font-size: 36px;
  border-left: #8f8f8f solid 7px;
  line-height: 1.4;
  margin-top: 50px;
  margin-bottom: 42px;
  padding-left: 13px;
  margin-left: -20px;
}

.policy_block ol {
  list-style-type: decimal;
  margin-left: 1.4em;
}

.policy_block ul {
  list-style-type: disc;
  margin-left: 1.2em;
}

.table_policy {
  border-collapse: collapse;
}

.table_policy th,
.table_policy td {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  text-align: left;
  padding: 12px 17px;
}

.table_policy th {
  width: 22%;
}

.table_policy td {
  width: 78%;
  padding: 12px 50px;
}

.policy_block .mt50 {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .policy_block {
    font-size: 3.7209302325581395vw;
  }
  .policy_block h2 {
    font-size: 3.7209302325581395vw;
    line-height: 1.7;
    margin-left: -10px;
    margin-top: 11.627906976744185vw;
    margin-bottom: 5.348837209302325vw;
  }
  .table_policy {
    font-size: 2.7906976744186047vw;
  }
  .table_policy th,
  .table_policy td {
    padding: 10px;
  }
  .table_policy th {
    width: 33.3%;
  }
  .table_policy td {
    width: 66.6%;
  }
}
