/******* common *******/
@font-face {
  font-family: "DIN Condensed";
  src: url("../font/DIN Condensed Bold.ttf") format("truetype");
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  font-weight: normal;
  font-family: "Noto Sans JP";
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE and Edge */
* {
  -ms-overflow-style: none;
}

/* Chrome, Safari, Opera */
::-webkit-scrollbar {
  display: none;
}
ul,
ol {
  list-style: none;
}
a {
  transition: all .3s;
}
a:hover {
  opacity: 0.7;
}
a,
a:visited {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
iframe {
  border: none;
}
.sp,
.pad {
  display: none;
}
.disable {
  pointer-events: none;
  opacity: 0.4;
}
main {
  position: relative;
}
section {
  position: relative;
}

.inner {
  width: 1200px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
}

.main_title {
  text-align: center;
  color: #fff;
  font-size: 80px;
  font-weight: 700;
  font-family: "DIN Condensed";
  line-height: 1;
  margin-bottom: 40px;
  display: grid;
}
.main_title span {
  color: #fff;
  font-size: 18px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 180%;
}
.main_title.white,
.main_title.white span {
  color: #fff;
}
.top_text {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 48px;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .main_title {
    font-size: 54px;
    margin-bottom: 24px;
  }
  .main_title span {
    font-size: 14px;
  }
  .title_head .main_title {
    align-items: start;
  }
  .top_text {
    text-align: left;
    font-size: 14px;
    margin-bottom: 32px;
  }
}

/* !animation
---------------------------------------------------------- */
@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }

  22% {
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    transform: translate(0, -1px) rotate(3deg);
  }

  25% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(3deg);
  }

  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes moveDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(5px);
  }
}
/* !background
---------------------------------------------------------- */
.bg_sticky {
  position: relative;
}
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.background .bg_img {
  position: sticky;
  top: 0;
  height: 100vh;
}
.background .bg_img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.border_left,
.border_right {
  width: 100%;
  height: 100vh;
  background-size: 30px 111px;
  background-repeat: repeat-y;
  position: sticky;
  top: 0;
}
.border_left {
  background-image: url(../image/ptn_pc_l.png);
  background-position: 20px 0;
}
.border_right {
  background-image: url(../image/ptn_pc_r.png);
  background-position: calc(100% - 20px) 0;
}

@media screen and (max-width: 767px) {
  .border_left,
  .border_right {
    background-size: 15px 50px;
  }
  .border_left {
    background-image: url(../image/ptn_sp_l.png);
    background-position: 0 0;
  }
  .border_right {
    background-image: url(../image/ptn_sp_r.png);
    background-position: 100% 0;
  }
}

/* !news_header
---------------------------------------------------------- */
.news_header {
  padding: 40px 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.news_header .new {
  color: #fff;
  font-family: "DIN Condensed";
  font-size: 22px;
  font-weight: 700;
  margin-right: 40px;
  translate: 0 2px;
}
.news_header .date {
  color: #fff;
  font-family: "DIN Condensed";
  font-size: 16px;
  font-weight: 700;
  margin-right: 16px;
}
.news_header_content {
  width: 794px;
  max-width: calc(100% - 64px);
  padding: 9px 0;
  border: 1px solid #fff;
  border-radius: 5em;
  overflow: hidden;
}
.news_header .news_header_detail {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  align-items: baseline;
}
.news_header .news_header_detail .text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}
/* .news_header .news_header_detail:hover .new_text {
  text-decoration: underline;
  color: #fff;
} */
.news_header .new_text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.news_header .arrow_icon {
  width: 18px;
  rotate: 90deg;
  aspect-ratio: 9/10;
  translate: 0 2px;
}

@media screen and (max-width: 767px) {
  .news_header {
    padding: 32px 0;
  }
  .news_header .arrow_icon {
    min-width: 18px;
  }
  .news_header_content {
    padding: 18px 0;
  }
  .news_header .swiper-wrapper {
    display: flex;
    align-items: center;
  }
  .news_header .swiper-slide {
    margin-right: 0;
  }
  .news_header .new {
    text-align: center;
    font-size: 17px;
    margin: 0;
    grid-column: span 2;
    translate: 0 0;
  }
  .news_header .date {
    font-size: 14px;
    margin-right: 12px;
  }
  .news_header .new_text {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news_header .news_header_detail {
    width: calc(100% - 72px);
    max-width: max-content;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 0;
  }
  .news_header .news_header_detail .text {
    overflow: hidden;
    align-items: end;
    gap: 0;
  }
  .news_header .white_arrow_down {
    width: 16px;
  }
  .news_header .arrow_down {
    width: 16px;
  }
}

/* !follow
---------------------------------------------------------- */
.follow {
  width: fit-content;
  position: fixed;
  bottom: 4%;
  right: 3%;
  z-index: 105;
}
.follow a {
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 8%;
  width: 268px;
  height: 61px;
  background-color: #fff;
  border-radius: 5em;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .follow {
    width: 100%;
    padding-bottom: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 90%);
    right: unset;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .follow a {
    font-size: 14px;
    width: 224px;
    height: 49px;
    margin-inline: auto;
  }
}

/* !kv
---------------------------------------------------------- */
.kv {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* !header
---------------------------------------------------------- */
.header {
  width: 100%;
  height: 72px;
  background-color: #000;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 120;
}
.header .inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .header_nav ul {
  display: flex;
  gap: 0 20px;
}
.header .header_nav ul li a {
  color: #fff;
  font-size: 20px;
  font-family: "DIN Condensed";
}
.header .btnMenu {
  display: none;
}

@media screen and (max-width: 767px) {
  .header {
    height: 64px;
  }
  .header .inner {
    max-width: calc(100% - 32px);
  }
  .header .header_logo img {
    width: 50px;
  }
  .header .header_nav {
    display: none;
  }
  .header .btnMenu,
  .menu_close_btn {
    height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
  }
  .menu_close_btn {
    position: absolute;
    top: 0;
    right: 17px;
    z-index: 1;
  }
  .header .btnMenu p,
  .menu_close_btn p {
    color: #fff;
    font-size: 14px;
    font-family: "DIN Condensed";
    font-weight: 700;
    line-height: 1;
    height: 28px;
    display: flex;
    align-items: end;
    position: relative;
  }
  .header .btnMenu p {
    letter-spacing: 13%;
    padding-left: 0.1em;
  }
  .menu_close_btn p {
    letter-spacing: 6%;
  }
  .header .btnMenu p::before,
  .header .btnMenu p::after {
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    position: absolute;
    left: 0;
  }
  .header .btnMenu p::before {
    top: 0;
  }
  .header .btnMenu p::after {
    top: 6px;
  }
  .menu_close_btn p::before,
  .menu_close_btn p::after {
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 2px;
    translate: -50% 0;
  }
  .menu_close_btn p::before {
    rotate: 15deg;
  }
  .menu_close_btn p::after {
    rotate: -15deg;
  }
}

/* !btn
---------------------------------------------------------- */
.btn_yellow,
.btn_blue,
.btn_white {
  background-color: #f4e829;
  border-radius: 38.58px;
  width: 380px;
  height: 76px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}
.btn_blue {
  background-color: #0068ba;
}
.btn_white {
  background-color: #fff;
}
.btn_yellow .txt,
.btn_blue .txt,
.btn_white .txt {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 900;
  line-height: 150%;
}
.btn_blue .txt {
  color: #f4e829;
}
.btn_white .txt {
  color: #e74291;
}
.btn_yellow .arrow-container,
.btn_blue .arrow-container,
.btn_white .arrow-container {
  border-radius: 28.37px;
  background-color: #0068ba;
  width: 62px;
  height: 34px;
  position: relative;
  display: block;
}
.btn_blue .arrow-container {
  background-color: #f4e829;
}
.btn_white .arrow-container {
  background-color: #e74291;
}
.btn_yellow .arrow-container .arrow-default,
.btn_blue .arrow-container .arrow-default,
.btn_white .arrow-container .arrow-default,
.btn_yellow .arrow-container .arrow-hover,
.btn_blue .arrow-container .arrow-hover,
.btn_white .arrow-container .arrow-hover {
  width: 18px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(80%);
  transition: transform 0.4s, opacity 0.3s;
}
.btn_yellow .arrow-container .arrow-default,
.btn_blue .arrow-container .arrow-default,
.btn_white .arrow-container .arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.btn_yellow .arrow-container .arrow-hover,
.btn_blue .arrow-container .arrow-hover,
.btn_white .arrow-container .arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}
.btn_yellow:hover .arrow-container .arrow-default,
.btn_blue:hover .arrow-container .arrow-default,
.btn_white:hover .arrow-container .arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}
.btn_yellow:hover .arrow-container .arrow-hover,
.btn_blue:hover .arrow-container .arrow-hover,
.btn_white:hover .arrow-container .arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

@media screen and (max-width: 767px) {
  .btn_yellow,
  .btn_blue,
  .btn_white {
    width: 311px;
    height: 60px;
  }
  .btn_yellow .txt,
  .btn_blue .txt,
  .btn_white .txt {
    font-size: 16px;
  }
  .btn_yellow .arrow-container,
  .btn_blue .arrow-container,
  .btn_white .arrow-container {
    width: 40px;
    height: 22px;
  }
  .btn_yellow .arrow-container .arrow-default,
  .btn_blue .arrow-container .arrow-default,
  .btn_white .arrow-container .arrow-default,
  .btn_yellow .arrow-container .arrow-hover,
  .btn_blue .arrow-container .arrow-hover,
  .btn_white .arrow-container .arrow-hover {
    width: 12px;
  }
}

/* !navigation
---------------------------------------------------------- */
#navigation {
  background-image: url(../image/bg_menu_pc.jpg);
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 121;
}
#navigation.open {
  opacity: 1;
  pointer-events: auto;
}

.disable {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.6;
}

#navigation .img {
  width: 33.5%;
  position: absolute;
  bottom: 7%;
  right: 5%;
  transform: rotate(-5deg);
  transform-origin: center;
  animation: katakata 4s infinite ease-in-out alternate;
}

@media screen and (max-width: 767px) {
  #navigation {
    background-image: url(../image/bg_sp.jpg);
  }
  #navigation .navigation_container {
    height: 100%;
    padding: 110px 0 50px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  #navigation .nav_list {
    text-align: center;
    margin-bottom: 48px;
    display: grid;
    gap: 32px 0;
  }
  .nav_item a {
    color: #fff;
    font-family: "DIN Condensed";
    font-size: 32px;
    font-weight: 700;
    max-width: max-content;
  }
  .nav_item a:hover {
    opacity: 0.7;
  }
  #navigation .navigation_container > a {
    font-size: 16px;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 8%;
    width: 268px;
    height: 61px;
    margin-inline: auto;
    background-color: #fff;
    border-radius: 5em;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
  }
}

/* !footer
---------------------------------------------------------- */
footer {
  background-color: #003A8F;
  padding: 64px 0 80px;
  position: relative;
  z-index: 2;
}
footer .inner {
  max-width: calc(100% - 32px);
}
footer .footer_logo {
  width: 97px;
  margin: 0 auto 36px;
}
footer .sns_text {
  color: #fff;
  text-align: center;
  font-family: "DIN Condensed";
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
}
footer .sns_sub_text {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
footer .sns_logo {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-content: center;
  max-width: max-content;
  margin: 24px auto;
}
footer .sns_logo .sns_icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .sns_logo .sns_icon a {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: 0.4s ease;
  display: block;
}

footer .sns_logo .sns_icon a:hover {
  width: 48px;
  height: 48px;
}

footer .sns_logo .sns_icon a img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

footer .site_link {
  display: flex;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin: 42px auto 42px;
}
footer .site_link_text {
  position: relative;
}
footer .site_link_text:not(:last-of-type) {
  border-right: 1px solid #fff;
}
footer .site_link_text::after {
  content: "";
  display: block;
  background-color: currentColor;
  bottom: 0;
  height: 1.3px;
  left: 0;
  right: auto;
  width: 0;
  position: absolute;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(1, 0.61, 0.355, 0.215);
  transition-property: width;
  color: #f1f1f1;
}
footer .site_link_text a {
  margin: 0 36px;
  transition: 0.4s ease;
}
footer .site_link_text a:hover {
  opacity: 0.7;
}
footer .copyright {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: "DIN Condensed";
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 64px 0 80px;
  }
  footer .footer_logo {
    width: 80px;
    margin: 0 auto 28px;
  }
  footer .sns_logo {
    gap: 8px;
  }
  footer .sns_text {
    font-size: 24px;
  }
  footer .sns_sub_text {
    font-size: 14px;
  }
  footer .sns_logo .sns_icon {
    width: 40px;
    height: 40px;
  }
  footer .site_link {
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px 0;
  }
  footer .site_link_list {
    margin-bottom: 42px;
  }
  footer .site_link_list .site_link {
    margin: 16px auto 0;
  }
  footer .site_link_text a {
    margin: 0 20px;
  }
  footer .copyright {
    font-size: 12px;
  }
}


/* !ページ訪問時 モダール
---------------------------------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.8);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  width: 792px;
  max-width: calc(100% - 64px);
}
.modal-content iframe {
  width: 100%;
  margin-bottom: 36px;
  aspect-ratio: 16 / 9;
}
.modal-close {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 8%;
  width: 184px;
  height: 53px;
  margin-inline: auto;
  border: none;
  border-radius: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .3s;
}
.modal-close:hover {
  opacity: 0.7;
}
.modal-close img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .modal-content {
    max-width: calc(100% - 32px);
  }
  .modal-close {
    font-size: 14px;
    width: 155px;
    height: 41px;
  }
}


/* !GAME INFO
---------------------------------------------------------- */
#nav_info {
  padding-top: 110px;
  overflow: hidden;
  position: relative;
}
#nav_info .inner .info_box {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
#nav_info .inner .info_box h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px 0;
}
#nav_info .inner .info_box h2 img:first-of-type {
  width: 75px;
}
#nav_info .inner .info_box h2 img:nth-of-type(2) {
  width: 384px;
}
#nav_info .inner .info_box .schedule img {
  width: 460px;
  margin-bottom: 24px;
}
#nav_info .inner .info_box .schedule p.stadium {
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  font-family: "DIN Condensed";
}
#nav_info .inner .info_box a {
  font-size: 18px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 8%;
  width: 384px;
  height: 72px;
  background-color: #fff;
  border-radius: 5em;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

#nav_info .inner_bottom {
  position: relative;
  width: 798px;
  max-width: calc(100% - 64px);
  margin: 100px auto 1px;
}
#nav_info .inner_bottom p {
  color: #fff;
  font-weight: 700;
}
#nav_info .inner_bottom p.larte_text {
  text-align: center;
  font-size: 28px;
  line-height: 150%;
  max-width: max-content;
  padding: 10px;
  margin: 0 auto 32px;
  background: linear-gradient(90deg,rgba(255, 120, 50, 1) 0%, rgba(0, 50, 160, 1) 33%, rgba(0, 215, 0, 1) 67%, rgba(240, 175, 0, 1) 100%);
}
#nav_info .inner_bottom p.small_text {
  font-size: 18px;
  line-height: 200%;
  margin-bottom: 48px;
}
#nav_info .inner_bottom .start {
  padding: 32px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: center;
  gap: 0 56px;
}
#nav_info .inner_bottom .start img {
  width: auto;
  height: 28px;
}

@media screen and (max-width: 768px) {
  #nav_info {
    padding-top: 80px;
  }
  #nav_info .inner .info_box h2 img:first-of-type {
    width: 64px;
  }
  #nav_info .inner .info_box h2 img:nth-of-type(2) {
    width: 163px;
  }
  #nav_info .inner .info_box .schedule img {
    width: 300px;
    margin-bottom: 16px;
  }
  #nav_info .inner .info_box .schedule p.stadium {
    font-size: 18px;
  }
  #nav_info .inner .info_box a {
    font-size: 16px;
    width: 311px;
    height: 61px;
  }

  #nav_info .inner_bottom {
    margin: 80px auto 0;
  }
  #nav_info .inner_bottom p.larte_text {
    font-size: 22px;
    padding: 0;
    background: none;
    display: grid;
    gap: 8px 0;
  }
  #nav_info .inner_bottom p.larte_text span {
    padding: 10px 10px;
    max-width: max-content;
    margin-inline: auto;
    background: linear-gradient(90deg,rgba(255, 120, 50, 1) 0%, rgba(0, 50, 160, 1) 33%, rgba(0, 215, 0, 1) 67%, rgba(240, 175, 0, 1) 100%);
  }
  #nav_info .inner_bottom p.small_text {
    font-size: 16px;
    margin-bottom: 40px;
  }
  #nav_info .inner_bottom .start {
    padding: 28px 0;
  }
  #nav_info .inner_bottom .start img {
    height: 62px;
  }
}

/* !GUESTS
---------------------------------------------------------- */
#nav_guests {
  padding-top: 120px;
}
#nav_guests .inner .guests_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
#nav_guests .inner .guests_box img {
  width: calc(50% - 12px);
}

@media screen and (max-width: 768px) {
  #nav_guests {
    padding-top: 80px;
  }
  #nav_guests .inner .guests_box {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  #nav_guests .inner .guests_box img {
    width: 100%;
  }
}

/* !EVENTS
---------------------------------------------------------- */
#nav_events {
  padding-top: 120px;
}
#nav_events .inner .events_list {
  margin-bottom: 120px;
}
#nav_events .inner .events_list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 56px;
}
#nav_events .inner .events_list li:not(:last-of-type) {
  margin-bottom: 48px;
}
#nav_events .inner .events_list li .info h3 {
  color: #fff;
  font-size: 28px;
  line-height: 150%;
  margin-bottom: 16px;
}
#nav_events .inner .events_list li .info p.txt {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 40px;
}
#nav_events .inner .events_list li .info a {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 8%;
  width: 166px;
  height: 45px;
  background-color: #fff;
  border-radius: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#nav_events .inner .note_box {
  max-width: 998px;
  padding: 64px;
  margin-inline: auto;
  border: 1px solid #fff;
}
#nav_events .inner .note_box .img {
  width: 384px;
  margin: 0 auto 48px;
}
#nav_events .inner .note_box .img img {
  display: block;
}
#nav_events .inner .note_box p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 48px;
}
#nav_events .inner .note_box p a {
  color: #0096E0;
  text-decoration: underline;
}
#nav_events .inner .note_box > a {
  font-size: 18px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 8%;
  width: 384px;
  height: 72px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 5em;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  #nav_events {
    padding-top: 80px;
  }
  #nav_events .inner .events_list {
    margin-bottom: 80px;
  }
  #nav_events .inner .top_text {
    font-size: 16px;
    margin-bottom: 48px;
  }
  #nav_events .inner .events_list li {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  #nav_events .inner .events_list li:not(:last-of-type) {
    margin-bottom: 64px;
  }
  #nav_events .inner .events_list li .info h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  #nav_events .inner .events_list li .info p.txt {
    font-size: 14px;
    margin-bottom: 32px;
  }
  #nav_events .inner .events_list li .info a {
    font-size: 14px;
    width: 279px;
    height: 49px;
    margin-inline: auto;
  }
  #nav_events .inner .note_box {
    padding: 24px;
  }
  #nav_events .inner .note_box .img {
    width: 161px;
    margin: 0 auto 24px;
  }
  #nav_events .inner .note_box p {
    font-size: 12px;
    margin-bottom: 24px;
  }
  #nav_events .inner .note_box > a {
    font-size: 16px;
    width: 100%;
    height: 61px;
  }
}

/* !GOODS & FOODS
---------------------------------------------------------- */
#nav_goods,
#nav_foods {
  padding-top: 120px;
}
#nav_goods .inner .goods_list,
#nav_foods .inner .foods_list {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 24px;
}
#nav_goods .inner .goods_list li a,
#nav_foods .inner .foods_list li a {
  pointer-events: none;
}
#nav_goods .inner .goods_list li .img,
#nav_foods .inner .foods_list li .img {
  margin-bottom: 20px;
}
#nav_goods .inner .goods_list li .info p,
#nav_foods .inner .foods_list li .info p {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
}
#nav_goods .inner .goods_list li .info p.name,
#nav_foods .inner .foods_list li .info p.name {
  font-size: 18px;
  margin-bottom: 8px;
}
#nav_goods .inner .goods_list li .info p.price,
#nav_foods .inner .foods_list li .info p.price {
  font-size: 16px;
}
#nav_goods .inner > a,
#nav_foods .inner > a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 8%;
  width: 362px;
  height: 72px;
  margin-inline: auto;
  border: 2px solid #fff;
  border-radius: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #nav_goods,
  #nav_foods {
    padding-top: 80px;
  }
  #nav_goods .inner .top_text,
  #nav_foods .inner .top_text {
    margin-bottom: 40px;
  }
  #nav_goods .inner .goods_list,
  #nav_foods .inner .foods_list {
    margin-bottom: 48px;
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
  #nav_goods .inner .goods_list li a,
  #nav_foods .inner .foods_list li a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  #nav_goods .inner .goods_list li .img,
  #nav_foods .inner .foods_list li .img {
    margin: 0;
  }
  #nav_goods .inner .goods_list li .info p.name,
  #nav_foods .inner .foods_list li .info p.name {
    font-size: 16px;
    margin-bottom: 12px;
  }
  #nav_goods .inner .goods_list li .info p.price,
  #nav_foods .inner .foods_list li .info p.price {
    font-size: 12px;
  }
  #nav_goods .inner > a,
  #nav_foods .inner > a {
    font-size: 16px;
    width: 100%;
    height: 61px;
  }
}

/* !NEWS
---------------------------------------------------------- */
#nav_news {
  padding-top: 120px;
  padding-bottom: 92px;
}
#nav_news .inner .main_title {
  margin-bottom: 64px;
}
#nav_news .inner .news_list {
  max-width: 1000px;
  margin-inline: auto;
  border-top: 1px solid #fff;
}
#nav_news .inner .news_list li {
  padding: 32px 0;
  border-bottom: 1px solid #fff;
  display: grid;
  align-items: center;
  grid-template-columns: 112px 1fr;
}
#nav_news .inner .news_list li p.date {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: "DIN Condensed";
  line-height: 150%;
}
#nav_news .inner .news_list li a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #nav_news {
    padding-top: 80px;
    padding-bottom: 110px;
  }
  #nav_news .inner .main_title {
    margin-bottom: 48px;
  }
  #nav_news .inner .news_list li {
    padding: 20px 0;
    display: block;
  }
  #nav_news .inner .news_list li p.date {
    font-size: 14px;
    margin-bottom: 4px;
  }
  #nav_news .inner .news_list li a {
    font-size: 14px;
  }
}


/* !bottom slider
---------------------------------------------------------- */
.bottom_slider {
  overflow: hidden;
  width: 100%;
  padding-bottom: 36px;
  position: relative;
  z-index: 2;
}
.bottom_slider ul li {
  display: flex !important;
  align-items: center;
  gap: 0px;
  flex-shrink: 0;
}
.bottom_slider ul li p {
  color: #fff;
  font-family: "DIN Condensed";
  font-size: 141px;
  font-weight: 700;
  line-height: 100%;
  white-space: nowrap;
  width: fit-content;
  background: linear-gradient(90deg, rgba(255, 120, 50, 1) 0%, rgba(0, 50, 160, 1) 33%, rgba(0, 215, 0, 1) 67%, rgba(240, 175, 0, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* スライド要素のスタイル */
.bottom_slider li {
  float: left;
  width: auto !important; /* 自動幅 */
}

.bottom_slider li img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Slickのスタイル調整 */
.bottom_slider .slick-list {
  overflow: visible;
}

.bottom_slider .slick-track {
  display: flex;
  gap: 48px; /* トラック内の要素間隔 */
}

/* クローン要素の表示調整 */
.bottom_slider .slick-slide {
  opacity: 1 !important;
  visibility: visible !important;
  width: auto !important;
}

@media screen and (max-width: 768px) {
  .bottom_slider {
    padding-bottom: 20px;
  }
  .bottom_slider ul li {
    gap: 0px;
  }
  .bottom_slider ul li p {
    font-size: 72px;
  }
  .bottom_slider ul li img {
    width: 136px;
    height: auto;
  }
  .bottom_slider .slick-slide:not(:first-child) {
    margin-left: -36px;
  }
}

/* !coming soon
---------------------------------------------------------- */
.comingsoon {
  margin: 120px auto;
  width: 620px;
  max-width: calc(100% - 64px);
}

@media screen and (max-width: 768px) {
  .comingsoon {
    margin: 40px auto 52px;
    width: 100%;
  }
}
