/* ======== header ======== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");
/* ======== footer ======== */
#footer {
  padding: 0 0 24px;
  background: linear-gradient(220deg, rgb(0, 118, 204) 0%, rgb(0, 0, 0) 100%);
}
@media screen and (max-width: 767px) {
  #footer {
    background: linear-gradient(25deg, rgb(0, 0, 0) 0%, rgb(0, 118, 204) 100%);
    padding: 0 0 120px;
  }
}
#footer #float_btn {
  position: fixed;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  opacity: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(0deg, rgb(1, 1, 1) 0%, rgba(1, 1, 1, 0) 100%);
  transition: 0.3s;
}
#footer #float_btn.is-active {
  transform: translateY(0);
  opacity: 1;
}
#footer #pagetop a {
  display: block;
  width: 100%;
  height: 56px;
  background: url(../images/icon_top.svg) no-repeat center center #B3A369;
}
@media screen and (max-width: 767px) {
  #footer #pagetop a {
    height: 48px;
    background-size: 50px auto;
  }
}
#footer > .inner {
  width: 493px;
  margin: 42px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer > .inner {
    width: 100%;
    padding: 0 15px;
  }
}
#footer .logo img {
  width: 120px;
}
@media screen and (max-width: 767px) {
  #footer .logo img {
    width: 100px;
  }
}
#footer .sns {
  margin-top: 48px;
}
#footer .sns > p {
  font-weight: bold;
}
#footer .sns > ul {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 24px;
}
#footer .sns > ul > li {
  width: 36px;
}
@media screen and (max-width: 767px) {
  #footer .sns {
    margin-top: 42px;
  }
  #footer .sns > ul {
    margin-top: 16px;
  }
}
#footer nav {
  margin-top: 40px;
  font-size: 1.4rem;
}
#footer nav > ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#footer nav > ul > li {
  line-height: 1.2;
  padding: 0 16px;
  border-left: 1px solid #FFFFFF;
  margin-top: 16px;
}
#footer nav > ul > li:first-child {
  border-left: none;
}
#footer nav > ul > li a {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #footer nav > ul {
    flex-direction: column;
  }
  #footer nav > ul > li {
    border-left: none;
    border-bottom: 1px solid #FFFFFF;
    padding: 0;
    margin-top: 0;
    text-align: left;
  }
  #footer nav > ul > li:first-child {
    border-top: 1px solid #FFFFFF;
  }
  #footer nav > ul > li a {
    display: block;
    padding: 20px;
    background: url(../images/icon_arrow_single_wh.svg) no-repeat right 10px center;
  }
}
#footer small {
  display: block;
  margin-top: 42px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #footer small {
    font-size: 1.2rem;
  }
}

/* ======== web fonts import ======== */
/* ======== common settings ======== */
/* ----- settings ----- */
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  width: 100%;
  line-height: 1.8;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  word-break: break-all;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #006298;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    background-image: url(../images/bg_body_pc.png);
  }
}
@media screen and (max-width: 767px) {
  body:before {
    content: "";
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../images/bg_body_sp.png) no-repeat right bottom/cover;
  }
}

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

a {
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

sup {
  font-size: 70%;
  vertical-align: top;
}

/* ======== utility style ======== */
/* ----- media display ----- */
.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
/* ======== layout style ======== */
#menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
}
@media screen and (max-width: 767px) {
  #menu {
    width: 56px;
    height: 56px;
  }
}
#menu a .close {
  display: none;
}
#menu a.is-active .open {
  display: none;
}
#menu a.is-active .close {
  display: block;
}

header {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 199;
  width: 100%;
  height: 100vh;
  background: rgba(1, 1, 1, 0.7);
  transform: translateX(100%);
  transition: 0.5s;
}
header.is-active {
  opacity: 1;
  transform: translateX(0);
}
header.is-active > .inner {
  opacity: 1;
  transform: translateX(0);
}
header > .inner {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  max-width: 480px;
  min-height: 768px;
  background: url(../images/bg_menu_pc.webp) no-repeat right bottom/cover;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 102px 68px 102px;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  header > .inner {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    background: url(../images/bg_menu_sp.webp) no-repeat right bottom/cover;
    padding: 80px 16px 0;
  }
}
header > .inner nav {
  width: 340px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header > .inner nav {
    width: 100%;
  }
}
header > .inner nav > ul {
  list-style: none;
}
header > .inner nav > ul > li {
  margin-top: 18px;
}
header > .inner nav > ul > li:first-child {
  margin-top: 0;
}
header > .inner nav > ul > li a {
  display: block;
  background: url(../images/icon_arrow_double_xl_wh.svg) no-repeat right center;
}
header > .inner nav > ul > li a img {
  width: auto;
}
header > .inner nav > ul > li a img + span {
  display: block;
  font-size: 1.4rem;
}
header > .inner nav .ticket_btn {
  max-width: 100%;
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  header > .inner nav .ticket_btn {
    width: 100%;
  }
}

section h2.title {
  width: 600px;
}
@media screen and (max-width: 767px) {
  section h2.title {
    width: 358px;
  }
}

.scl_up {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scl_up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  margin-top: 36px;
  background: #FFFFFF;
  color: #010101;
  display: block;
  max-width: 400px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  border: 1px solid #010101;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    font-size: 1.6rem;
  }
}
.btn:hover {
  opacity: 0.7;
}
.btn:after {
  content: "";
  display: block;
  width: 18px;
  height: 14px;
  background: url(../images/icon_arrow_double_l_bk.svg) no-repeat center center/18px auto;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.ticket_btn {
  display: block;
  width: 400px;
  margin: 0 auto;
  padding: 15px;
  border: 2px solid #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: linear-gradient(90deg, rgb(0, 98, 152) 0%, rgb(27, 126, 181) 50%, rgb(0, 98, 152) 100%);
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ticket_btn {
    padding: 15px 0;
    width: 90%;
  }
}
.ticket_btn:after {
  content: "";
  display: block;
  width: 18px;
  height: 14px;
  background: url(../images/icon_arrow_double_l_wh.svg) no-repeat center center/18px auto;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .ticket_btn:after {
    width: 12px;
    height: 9px;
    background-size: 12px auto;
  }
}

.arrow {
  display: inline-block;
  padding-right: 20px;
}
.arrow.wh {
  background: url(../images/icon_arrow_double_s_wh.svg) no-repeat right center/14px auto;
}
.arrow.bk {
  background: url(../images/icon_arrow_double_s_bk.svg) no-repeat right center/14px auto;
}

#about {
  padding: 72px 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  #about {
    background: url(../images/bg_about_pc.webp) no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  #about {
    background: url(../images/bg_about_sp.webp) no-repeat center center/cover;
  }
}
#about > .inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #about > .inner {
    padding: 0 15px;
  }
}
#about h2 {
  max-width: 260px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #about h2 {
    max-width: 200px;
  }
}
#about h2 + p {
  margin-top: 42px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #about h2 + p {
    font-size: 1.6rem;
  }
}
#about .col {
  display: flex;
  align-items: center;
  margin-top: 64px;
}
#about .col > .image {
  width: 50%;
  margin-right: 3%;
}
#about .col > .text {
  width: 47%;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #about .col {
    flex-direction: column;
    margin-left: -15px;
    margin-right: -15px;
  }
  #about .col > .image {
    width: 100%;
    margin-right: 0;
  }
  #about .col > .text {
    width: 100%;
    font-size: 1.4rem;
    margin-top: 24px;
    padding: 0 15px;
  }
}

#present {
  padding: 80px 0 0;
  border-style: solid;
  border-width: 8px 0 0 0;
  -o-border-image: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
     border-image: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
  border-image-slice: 1;
}
@media screen and (min-width: 768px) {
  #present {
    background: url(../images/bg_present_pc.webp) no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  #present {
    padding: 64px 0 0;
    background: url(../images/bg_present_sp.webp) no-repeat center center/cover;
  }
}
#present > .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 100px;
}
#present .col {
  display: flex;
  align-items: center;
  margin-top: 42px;
}
#present .col > .image {
  width: 60%;
  margin-right: 3%;
}
#present .col > .text {
  width: 37%;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #present .col {
    flex-direction: column;
  }
  #present .col > .image {
    width: 100%;
    margin-right: 0;
  }
  #present .col > .text {
    width: 100%;
    font-size: 1.4rem;
    margin-top: 32px;
    padding: 0 15px;
  }
}
#present .col > .cell {
  width: 50%;
}
#present .col > .cell > .image {
  width: 100%;
  margin-bottom: 10px;
}
#present .col > .cell > .text {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #present .col > .cell {
    width: 100%;
    max-width: 640px;
  }
}
#present .col.present {
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #present .col.present {
    margin-left: 15px;
    margin-right: 15px;
  }
}
#present + .btm_img {
  margin-top: -57px;
}

#special_guest {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  #special_guest {
    padding: 64px 0;
  }
}
#special_guest > .inner {
  max-width: 1080px;
  margin: 0 auto;
}
#special_guest h2 + p {
  text-align: center;
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  #special_guest h2 + p {
    font-size: 1.4rem;
  }
}
#special_guest #sg_nav {
  max-width: 768px;
  margin: 120px auto 64px;
}
@media screen and (max-width: 767px) {
  #special_guest #sg_nav {
    margin: 32px 15px 56px;
  }
}
#special_guest #sg_nav h4 {
  font-size: 2rem;
  text-align: center;
  background: #010101;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  #special_guest #sg_nav h4 {
    font-size: 1.4rem;
  }
}
#special_guest #sg_nav ul {
  border: 1px solid #010101;
  border-top: none;
  list-style: none;
  display: flex;
}
#special_guest #sg_nav ul > li {
  width: 33.3333%;
  border-left: 1px solid #010101;
  background: #FFFFFF;
  text-align: center;
}
#special_guest #sg_nav ul > li:first-child {
  border-left: none;
}
#special_guest #sg_nav ul > li > a {
  display: block;
  padding: 15px 15px 35px;
  color: #010101;
  position: relative;
}
@media screen and (max-width: 767px) {
  #special_guest #sg_nav ul > li > a {
    padding: 10px 0 35px;
  }
}
#special_guest #sg_nav ul > li > a:after {
  content: "";
  display: block;
  width: 14px;
  height: 18px;
  background: url(../images/icon_arrow_double_l_be.svg) no-repeat center center/14px auto;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
#special_guest #sg_nav ul > li > a > img {
  height: 36px;
}
@media screen and (max-width: 767px) {
  #special_guest #sg_nav ul > li > a > img {
    height: 25px;
  }
}
#special_guest #sg_nav ul > li > a p {
  margin-top: 2px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #special_guest #sg_nav ul > li > a p {
    font-size: 1.4rem;
    font-weight: bold;
  }
}
#special_guest #sg_nav ul > li > a p > span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #special_guest #sg_nav ul > li > a p > span {
    font-size: 1rem;
  }
}
#special_guest .game_info {
  text-align: center;
  margin-top: 120px;
}
#special_guest .game_info#anc01 {
  margin-top: 0;
}
#special_guest .game_info.mt64 {
  margin-top: 64px;
}
#special_guest .game_info .title {
  font-size: 3rem;
  text-align: center;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .title {
    font-size: 2rem;
  }
}
#special_guest .game_info .title:before {
  content: "";
  display: block;
  width: 200%;
  margin-left: -100%;
  height: 3px;
  background: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
  position: absolute;
  left: -105%;
  top: 50%;
  transform: translateY(-50%);
}
#special_guest .game_info .title:after {
  content: "";
  display: block;
  width: 200%;
  margin-right: -100%;
  height: 3px;
  background: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
  position: absolute;
  right: -105%;
  top: 50%;
  transform: translateY(-50%);
}
#special_guest .game_info .title + p {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .title + p {
    padding: 0 15px;
    margin-top: 32px;
  }
}
#special_guest .game_info .title + p img {
  width: auto;
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .title + p img {
    max-width: 100%;
  }
}
#special_guest .game_info .bnr_box {
  max-width: 640px;
  margin: 48px auto 0;
}
#special_guest .game_info .bnr_box > p {
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
#special_guest .game_info .bnr_box > p a {
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .bnr_box > p a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .bnr_box {
    width: 100%;
  }
}
#special_guest .game_info .events {
  text-align: left;
  margin-top: 64px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#special_guest .game_info .events.item2coloumn {
  gap: 30px;
}
#special_guest .game_info .events.item3coloumn {
  gap: 15px;
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .events {
    margin-top: 42px;
    padding: 0 15px;
  }
  #special_guest .game_info .events.item2coloumn, #special_guest .game_info .events.item3coloumn {
    justify-content: flex-start;
    gap: 10px;
  }
}
#special_guest .game_info .events > .item {
  width: 350px;
}
#special_guest .game_info .events > .item.link_none a {
  cursor: default;
}
#special_guest .game_info .events > .item.link_none a:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .events > .item.link_none a .detail p {
    background: none;
  }
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .events > .item {
    margin-left: 0;
    margin-top: 20px;
  }
  #special_guest .game_info .events > .item.coloumn2 {
    width: calc(50% - 5px);
  }
}
#special_guest .game_info .events > .item:first-child {
  margin-left: 0;
}
#special_guest .game_info .events > .item .date {
  color: #B3A369;
  margin-top: 10px;
}
#special_guest .game_info .events > .item p {
  font-size: 1.8rem;
  margin-top: 5px;
}
#special_guest .game_info .events > .item span {
  margin-top: 5px;
  display: inline-block;
  font-size: 1.4rem;
  padding-right: 20px;
  background: url(../images/icon_arrow_double_s_wh.svg) no-repeat right center/14px auto;
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .events > .item a {
    display: flex;
    font-size: 1.4rem;
  }
  #special_guest .game_info .events > .item a .image {
    width: 135px;
  }
  #special_guest .game_info .events > .item a .detail {
    width: calc(100% - 135px);
    padding-left: 14px;
  }
  #special_guest .game_info .events > .item a .detail .date {
    margin-top: 0;
  }
  #special_guest .game_info .events > .item a .detail p {
    font-size: 1.4rem;
    padding-right: 20px;
    background: url(../images/icon_arrow_double_s_wh.svg) no-repeat right center/14px auto;
  }
  #special_guest .game_info .events > .item.column a, #special_guest .game_info .events > .item:first-child a {
    flex-direction: column;
  }
  #special_guest .game_info .events > .item.column a .image, #special_guest .game_info .events > .item:first-child a .image {
    width: 100%;
  }
  #special_guest .game_info .events > .item.column a .detail, #special_guest .game_info .events > .item:first-child a .detail {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
}
#special_guest .game_info .ticket_links {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .ticket_links {
    margin-top: 42px;
  }
}
#special_guest .game_info .ticket_links > ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .ticket_links > ul {
    padding: 0 15px;
  }
}
#special_guest .game_info .ticket_links > ul > li {
  width: 208px;
  margin-left: 8px;
}
#special_guest .game_info .ticket_links > ul > li:first-child {
  margin-left: 0;
}
#special_guest .game_info .ticket_links > ul > li a {
  display: block;
  text-align: center;
  padding: 12px 24px 12px 0;
  background: #FFFFFF;
  border-radius: 4px;
  color: #010101;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 3px 0 rgba(1, 1, 1, 0.2);
}
#special_guest .game_info .ticket_links > ul > li a .week {
  font-size: 1.6rem;
}
#special_guest .game_info .ticket_links > ul > li a .buy {
  font-size: 1.6rem;
  display: inline-block;
  padding-left: 24px;
  background: url(../images/icon_ticket.svg) no-repeat left center;
}
#special_guest .game_info .ticket_links > ul > li a:before {
  content: "";
  display: block;
  width: 24px;
  height: 100%;
  background: #006298;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 4px 4px 0;
}
#special_guest .game_info .ticket_links > ul > li a:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../images/icon_arrow_single_wh.svg) no-repeat left center/10px auto;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #special_guest .game_info .ticket_links > ul > li a {
    font-size: 1.4rem;
  }
  #special_guest .game_info .ticket_links > ul > li a .week {
    font-size: 1rem;
  }
  #special_guest .game_info .ticket_links > ul > li a .buy {
    font-size: 1.4rem;
    padding-left: 18px;
    background: url(../images/icon_ticket.svg) no-repeat left center/15px auto;
  }
}
#special_guest .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 300;
  background-color: rgba(1, 1, 1, 0.7);
}
#special_guest .modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
#special_guest .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
#special_guest .modal__content {
  position: relative;
  background-color: #FFFFFF;
  width: 100%;
  max-width: 410px;
  padding: 24px;
  color: #010101;
  border: 2px solid #010101;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #special_guest .modal__content {
    padding: 24px 16px;
  }
}
#special_guest .modal__content .detail {
  margin-top: 10px;
}
#special_guest .modal__content .detail .date {
  color: #B3A369;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #special_guest .modal__content .detail .date {
    font-size: 1.4rem;
  }
}
#special_guest .modal__content .detail .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  #special_guest .modal__content .detail .title {
    font-size: 1.6rem;
  }
}
#special_guest .modal__content .detail .title + p {
  border-top: 2px solid #006298;
  padding-top: 5px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  #special_guest .modal__content .detail .title + p {
    font-size: 1.4rem;
  }
}
#special_guest .modal__content .detail a {
  display: inline-block;
  margin-top: 2em;
  color: #006298;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #special_guest .modal__content .detail a {
    font-size: 1.4rem;
  }
}
#special_guest .modal__close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #special_guest .modal__close-btn {
    width: 18px;
    height: 18px;
  }
}
#special_guest .modal .swiper-button-prev,
#special_guest .modal .swiper-button-next {
  width: 24px;
  height: 24px;
}
#special_guest .modal .swiper-button-prev:after,
#special_guest .modal .swiper-button-next:after {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url(../images/icon_arrow_slider.svg) no-repeat center center;
}
@media screen and (max-width: 767px) {
  #special_guest .modal .swiper-button-prev,
  #special_guest .modal .swiper-button-next {
    top: auto;
    bottom: -30px;
  }
}
#special_guest .modal .swiper-button-prev {
  transform: rotate(180deg);
  left: -50px;
}
@media screen and (max-width: 767px) {
  #special_guest .modal .swiper-button-prev {
    transform: rotate(0);
    left: 0;
    width: 48px;
    height: 14px;
  }
  #special_guest .modal .swiper-button-prev:after {
    width: 48px;
    height: 14px;
    background: url(../images/icon_arrow_slider_prev_sp.svg) no-repeat center center;
  }
}
#special_guest .modal .swiper-button-next {
  right: -50px;
}
@media screen and (max-width: 767px) {
  #special_guest .modal .swiper-button-next {
    width: 48px;
    height: 14px;
    right: 0;
  }
  #special_guest .modal .swiper-button-next:after {
    width: 48px;
    height: 14px;
    background: url(../images/icon_arrow_slider_next_sp.svg) no-repeat center center;
  }
}
#special_guest .modal .swiper-pagination {
  bottom: -30px;
}
#special_guest .modal .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
}
#special_guest .modal .swiper-pagination .swiper-pagination-bullet-active {
  background: #FFFFFF;
}

#favorite {
  padding: 80px 0;
  border-style: solid;
  border-width: 8px 0 0 0;
  -o-border-image: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
     border-image: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
  border-image-slice: 1;
  background: url(../images/bg_favorite.png) no-repeat right -50px center/932px auto, linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(235, 235, 235) 100%);
  color: #010101;
}
@media screen and (max-width: 767px) {
  #favorite {
    padding: 64px 0;
  }
}
#favorite > .inner {
  max-width: 1080px;
  margin: 0 auto;
}
#favorite h2 + p {
  margin-top: 42px;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #favorite h2 + p {
    margin-top: 32px;
    font-size: 1.4rem;
    padding: 0 15px;
  }
}
#favorite .col {
  display: flex;
  align-items: center;
  margin-top: 42px;
}
#favorite .col > .image {
  width: 60%;
  margin-right: 3%;
}
#favorite .col > .text {
  width: 37%;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #favorite .col {
    flex-direction: column;
  }
  #favorite .col > .image {
    width: 100%;
    margin-right: 0;
  }
  #favorite .col > .text {
    width: 100%;
    font-size: 1.4rem;
    margin-top: 24px;
    padding: 0 15px;
  }
  #favorite .col > .text .btn {
    margin: 32px auto 0;
  }
}

#movie {
  padding: 80px 0;
  background: #006298;
  border-style: solid;
  border-width: 8px 0 0 0;
  -o-border-image: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
     border-image: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
  border-image-slice: 1;
}
@media screen and (max-width: 767px) {
  #movie {
    padding: 64px 0;
  }
}
#movie > .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  #movie > .inner {
    padding: 0;
  }
}
#movie .movie_box {
  max-width: 768px;
  margin: 42px auto 0;
  aspect-ratio: 16/9;
}
#movie .movie_box iframe {
  width: 100%;
  height: 100%;
}
#movie .movie_box p {
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  #movie .movie_box p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #movie .movie_box {
    width: 100%;
    padding: 0 15px;
  }
}
#movie + .btm_img {
  margin-top: -57px;
}

#goods {
  padding: 80px 0;
  background: linear-gradient(90deg, rgb(1, 1, 1) 0%, rgb(47, 47, 47) 50%, rgb(1, 1, 1) 100%);
  border-style: solid;
  border-width: 8px 0 0 0;
  -o-border-image: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
     border-image: linear-gradient(90deg, rgb(179, 163, 105) 0%, rgb(237, 216, 140) 50%, rgb(179, 163, 105) 100%);
  border-image-slice: 1;
}
@media screen and (max-width: 767px) {
  #goods {
    padding: 64px 0;
  }
}
#goods > .inner {
  max-width: 1080px;
  margin: 0 auto;
}
#goods .bnr_box {
  max-width: 640px;
  margin: 42px auto 0;
}
#goods .bnr_box > p {
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  #goods .bnr_box > p a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #goods .bnr_box {
    width: 100%;
  }
}
#goods + .btm_img {
  margin-top: -57px;
}

#gourmet {
  padding: 80px 0 0;
  background: url(../images/bg_gourmet.webp) no-repeat center center/cover;
  color: #010101;
}
@media screen and (max-width: 767px) {
  #gourmet {
    padding: 64px 0 0;
  }
}
#gourmet > .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 137px;
}
#gourmet .bnr_box {
  max-width: 640px;
  margin: 42px auto 0;
}
#gourmet .bnr_box > p {
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
#gourmet .bnr_box > p a {
  color: #010101;
}
@media screen and (max-width: 767px) {
  #gourmet .bnr_box > p a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #gourmet .bnr_box {
    width: 100%;
  }
}
#gourmet + .btm_img {
  margin-top: -57px;
}

#information {
  margin-top: -57px;
  padding: 103px 0 80px;
  background: url(../images/bg_information_pc.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  #information {
    background: url(../images/bg_information_sp.webp) no-repeat center center/cover;
  }
}
#information > .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}
#information h3.title {
  width: 334px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #information h3.title {
    width: 241px;
  }
}
#information .col {
  width: 768px;
  margin: 64px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 4%;
}
#information .col > .item {
  width: 46%;
}
#information .col > .item a {
  display: block;
  text-align: center;
}
#information .col > .item a figcaption {
  margin-top: 8px;
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #information .col > .item a figcaption {
    font-size: 1.4rem;
  }
}
#information .col > .item a figcaption span {
  display: inline-block;
  padding-right: 20px;
  background: url(../images/icon_arrow_double_s_wh.svg) no-repeat right top 12px/14px auto;
}
@media screen and (max-width: 767px) {
  #information .col > .item a figcaption span {
    background-position: right top 8px;
  }
}
@media screen and (max-width: 767px) {
  #information .col {
    width: 100%;
    flex-direction: column;
    margin-top: 40px;
  }
  #information .col > .item {
    width: 100%;
    margin-top: 32px;
  }
  #information .col > .item:first-child {
    margin-top: 0;
  }
}

#sponsor {
  width: 100%;
  padding-top: 120px;
  line-height: 1.2em;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #sponsor {
    padding-top: 60px;
  }
}
#sponsor .sponsor__inner {
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #sponsor .sponsor__inner {
    padding-bottom: 0;
  }
}
#sponsor .sponsor__inner p {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #006298;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #sponsor .sponsor__inner p {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
#sponsor .sponsor__inner .sponsor__wrap {
  max-width: 1360px;
  padding: 0 0 20px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #sponsor .sponsor__inner .sponsor__wrap {
    max-width: 1360px;
    padding: 0 10px 20px;
    margin: auto;
  }
}
#sponsor .sponsor__inner .sponsor__wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: auto;
}
#sponsor .sponsor__inner .sponsor__wrap ul.sizeL {
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  #sponsor .sponsor__inner .sponsor__wrap ul.sizeL {
    width: 100%;
    max-width: initial;
  }
}
#sponsor .sponsor__inner .sponsor__wrap ul.sizeL li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  #sponsor .sponsor__inner .sponsor__wrap ul.sizeL li {
    width: 80%;
    margin-bottom: 5%;
  }
}
#sponsor .sponsor__inner .sponsor__wrap ul.sizeL li img {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #sponsor .sponsor__inner .sponsor__wrap ul.sizeL li img {
    margin-bottom: 2%;
  }
}
#sponsor .sponsor__inner .sponsor__wrap ul li a {
  color: #444;
}
@media screen and (max-width: 767px) {
  #sponsor .sponsor__inner .sponsor__wrap ul li {
    padding: 0 10px;
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */