@charset "UTF-8";
/* setting */
:root {
  --yellow: #d8a23d;
}

/* base */
* {
  box-sizing: border-box;
}

html {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  background: #000;
}

figure {
  margin: 0;
}

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

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.pc-only,
.sp-only {
  display: none;
}

@media (min-width: 769px) {
  .pc-only {
    display: inherit;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: inherit;
  }
}
.go {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 700;
}

body {
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
  overflow-x: hidden;
  line-height: 1.6;
}
body:has(.header-nav.is-active) {
  overflow: hidden;
}

.opening {
  background: #000;
  width: 100vw;
  height: 100vh;
  z-index: 1500;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.opening img {
  max-width: 200px;
  -webkit-animation: fade 2s infinite;
  animation: fade 2s infinite;
}
.opening.is-hidden {
  opacity: 1;
  z-index: -50;
}

@-webkit-keyframes fade {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fade {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.overlay {
  display: none;
}
.overlay.is-active {
  display: block;
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

.inner {
  width: min(100%, 1000px);
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .inner {
    padding: 0 20px;
  }
}
.title {
  font-size: clamp(1.625rem, 5vw, 1.875rem);
  border-bottom: 1px solid #fff;
  padding-bottom: 0.625rem;
  letter-spacing: 0.2em;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .title {
    margin-bottom: 1.875rem;
    letter-spacing: 0.1em;
  }
}
.title-flex {
  display: flex;
  justify-content: space-between;
  align-items: self-end;
}
.title-right {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .title-right {
    font-size: 0.875rem;
  }
}

.title2 {
  text-align: center;
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .title2 {
    margin-bottom: 0.625rem;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}
.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(0,0,0,0.7);
}
@media (max-width: 768px) {
  .header {
    padding: 0 0.625rem 1.25rem;
  }
}
.header.is-scroll {
  background: rgba(0, 0, 0, 0.5);
}
.header-logo {

}
@media (max-width: 768px) {
  .header-logo {
    max-width: 150px;
    aspect-ratio: 150/30;
  }
  .header-logo img {
    vertical-align: sub;
  }
}
@media (max-width: 1000px) {
  .header-nav {
    position: fixed;
    right: -200vw;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 85%;
    padding: 6.25rem 1.875rem;
    overflow-y: scroll;
    height: 100%;
    transition: 0.3s;
  }
}
@media (max-width: 980px) and (max-width: 980px) {
  .header-nav {
    padding-bottom: 1.875rem;
  }
}
@media (max-width: 1000px) {
  .header-nav.is-active {
    right: 0;
    z-index: 5;
  }
  .header-nav.is-active .header-nav__close {
    display: block;
  }
}
.header-nav__close {
  display: none;
}
@media (max-width: 1000px) {
  .header-nav__close {
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 5;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
  height: 80px;
}
@media (max-width: 1000px) {
  .header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 4.375rem;
    height: max-content;
  }
}
.header-nav__item {
  height: 100%;
  text-align: center;
}
@media (max-width: 1000px) {
  .header-nav__item {
    width: 100%;
    margin: 0;
    height: auto;;
    text-align: left;
  }
}
@media (max-width: 1000px) {
  .header-nav__item:nth-child(8) {
    border-top: 1px solid var(--yellow);
    padding-top: 1.25rem;
  }
}

.header-nav__list-child {
  display: flex;
  flex-direction: column;
}

.header-nav__list-child-item > a {
  background: rgba(255,255,255,0.8);
  padding: 15px 10px;
  color : #000;
  display: flex;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  transition: .3s all;
}

@media (max-width: 1000px) {
  .header-nav__list-child-item > a {
    font-size: 14px;
    padding: 10px 10px;
  }
}

@media (max-width: 1000px) {
  .header-nav__list-child-item > a {
    background: transparent;
    padding: 15px 10px 15px 30px;
    color : #000;
    display: flex;
    justify-content: flex-start;
    font-weight: 700;
    text-align: left;
    transition: .3s all;
    color : #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    position: relative;
  }
  
  .header-nav__item > a:after,
  .header-nav__list-child-item > a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--yellow);
    border-right: 2px solid var(--yellow);
    transform: rotate(45deg) translateY(-50%);
    
    position: absolute;
    right: 20px;
    top : 50%;
  }
  .header-nav__item:has(.header-nav__list-child) > a:after {
    display: none;
  }

}

.header-nav__list-child {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: .3s all;
}

@media (max-width: 1000px) {
  .header-nav__list-child {
    visibility: visible;
    opacity: 1;
    pointer-events: inherit;
    border-top : 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media (any-hover: hover)  {
.header-nav__list-child-item > a:hover {
  opacity: 1; 
  background: rgba(255,255,255,0.9);
}
}

@media (max-width: 1000px) {
.header-nav__list-child-item > a:hover {
  opacity: 1; 
  background: transparent;
}
}

.header-nav__item--col {
  color: var(--yellow);
  display: block;
  font-size : 10px;
  transition: 0.3s;
}

.header-nav__item > a {
  transition: 0.3s;
  height: 100%;
  letter-spacing: 0.2em;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 2.5vw;
  position: relative;
}

@media (max-width: 1000px) {
  .header-nav__item > a {
    font-size: 14px;
    display: block;
    border-top: 1px solid #D8A23D;
    padding: 15px 10px;
    height: auto;
  }
}

@media (any-hover: hover)  {
.header-nav__item:hover > a {
  opacity: 1;
  color: #000;
  background: rgba(219,181,110,1);
}
.header-nav__item:hover a .header-nav__item--col {
  color : #fff;
}
}

 .header-nav__item:hover .header-nav__list-child {
  visibility: visible;
  opacity: 1;
  pointer-events: inherit;
}
@media (max-width: 768px) {
    .header-nav__item:hover > a {
      opacity: 1;
      color: #fff;
      background: transparent;
    }
  .header-nav__item:hover a .header-nav__item--col {
    color : rgba(219,181,110,1);
  }
 
}



.header-nav__item.is-current > a {
  color: var(--yellow);
}
.header-nav__item.is-current:hover > a {
  color: #000;
}
.header-nav__item--ticket {
  position: relative;
  top: -11px;
  left: 20px;
  margin-left: 20px;
  display: none;
}
@media (max-width: 1000px) {
  .header-nav__item--ticket {
    top: 0;
    left: 0;
    margin-left: 0;
    display: block;
    margin-top: 20px;
  }
}
.header-nav__item--ticket img {
  position: absolute;
  top: 20px;
  left: -45px;
  z-index: 2;
}
@media (max-width: 1000px) {
  .header-nav__item--ticket img {
    display: none;
  }
}
.header-nav__item--ticket a {
  position: relative;
  background: #e52551;
  border: 3px solid #fff;
  width: 111px;
  height: 111px;
  border-radius: 111px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
@media (max-width: 1000px) {
  .header-nav__item--ticket a {
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 0.9375rem 1.25rem;
    margin-top: 10px;
    border: none;
    border: 3px solid #fff;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    background: #e52551 url("../img/bg_nav_ticket_sp.svg") right center/auto 100% no-repeat;
  }
}
@media (any-hover: hover) {
  .header-nav__item--ticket a:hover {
    background: var(--yellow);
  }
}
.header-nav__item--ticket span {
  font-size: 1.25rem;
  color: #fff;
  position: relative;
  top: 0;
  left: -2px;
}
@media (max-width: 1000px) {
  .header-nav__item--ticket span {
    top: 0;
    left: 0;
  }
}
.header-nav .footer-sns {
  display: none;
}
@media (max-width: 900px) {
  .header-nav .footer-sns {
    display: flex;
    justify-self: center;
  }
}
.header-nav .footer-copy {
  display: none;
}
@media (max-width: 900px) {
  .header-nav .footer-copy {
    display: block;
    text-align: center;
  }
}
.header-toggle {
  display: none;
}
@media (max-width: 1000px) {
  .header-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 10px;
  }
}

.main {
  background: #000;
  overflow: hidden;
}

.mv {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mv {
    width: 100%;
  }
}
.mv.is-end {
  background: url("../img/bg_mv.jpg") center center/cover no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .mv.is-end {
    background: url("../img/bg_mv_sp.jpg") center center/cover no-repeat;
  }
}
.mv video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
}
.mv-main {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(100%, 535px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv-main__logo {
  margin-bottom: 0.625rem;
}
@media (max-width: 768px) {
  .mv-main__logo {
    max-width: 350px;
    margin: 0 auto 0.625rem;
  }
}
.mv-main__logo img {
  width: 100%;
}
.mv-main__icon {
  text-align: center;
  margin: 5px 0;
}
.mv-main__icon span {
  border: 1px solid #fff;
  display: inline-block;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  padding: 5px 3.125rem;
  line-height: 1;
}
.mv-main__date {
  margin-bottom: 0.3125rem;
  text-align: center;
}
.mv-main__text {
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .mv-main__text {
    font-size: 0.8125rem;
  }
}

.first {
  position: relative;
  background: url("../img/bg_first.png") bottom center/cover no-repeat;
  background-attachment: fixed;
  z-index: 2;
}
@media (max-width: 768px) {
  .first {
    background: url("../img/bg_first_sp.png") bottom center/cover no-repeat;
  }
}
.first .inner {
  position: relative;
  z-index: 8;
  padding: 14.375rem 0 9.375rem;
}
@media (max-width: 768px) {
  .first .inner {
    padding: 8.75rem 1.25rem 6.25rem;
  }
}
.first-lead {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .first-lead {
    font-size: 0.875rem;
    margin-bottom: 1.875rem;
  }
}
.first-lead--first {
  margin-bottom: 0.625rem;
}
.first-movie {
  width: min(100%, 700px);
  margin: 0 auto;
}
.first-movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.topinfo {
  position: relative;
  z-index: 2;
  padding: 20.625rem 0 10.625rem;
  background: url("../img/bg_line.png") center 100px / auto 83px no-repeat;
  background-color: #000;
}
@media (max-width: 768px) {
  .topinfo {
    background: #000 url("../img/bg_line_sp.png") no-repeat center 0/100% auto;
    padding: 7.5rem 0 6.25rem;
  }
}
.topinfo .inner {
  width: min(100%, 800px);
}
.topinfo-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .topinfo-list {
    margin-bottom: 4.375rem;
  }
}
.topinfo-list__item {
  font-size: 0.875rem;
}
.topinfo-list__item a {
  display: flex;
  gap: 0.9375rem;
}
@media (max-width: 768px) {
  .topinfo-list__item a {
    flex-direction: column;
    gap: 0;
  }
}
@media (any-hover: hover) {
  .topinfo-list__item a:hover {
    opacity: 1;
  }
}
.topinfo-nav {
  width: min(100%, 230px);
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .topinfo-nav {
    max-width: 240px;
  }
}
.topinfo-nav img {
  width: min(100%, 38px);
  position: absolute;
  bottom: -5px;
  left: 5px;
  z-index: 5;
}
.topinfo-nav a {
  color: #000;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: block;
  padding: 0.625rem;
  border-radius: 10px;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.topinfo-nav a span {
  position: relative;
  z-index: 5;
  left: 40px;
}
.topinfo-nav a::after {
  content: "";
  width: 96px;
  height: 6px;
  background: url("../img/img_arrow.svg") 95% 60%/100% auto no-repeat;
  display: block;
  position: absolute;
  bottom: 15px;
  right: 10px;
  z-index: 5;
}
.topinfo-nav a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--yellow);
  border-radius: 10px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .topinfo-nav a:hover {
    opacity: 1;
  }
  .topinfo-nav a:hover::before {
    width: 100%;
  }
}

.sec01 {
  position: relative;
  z-index: 2;
  padding: 20rem 0 3.75rem;
  overflow-x: hidden;
  background: #000 url("../img/bg_line.png") center 0 / auto 83px no-repeat;
}
@media (max-width: 768px) {
  .sec01 {
    background: #000 url("../img/bg_line_sp.png") no-repeat center 0/100% auto;
    padding: 7.5rem 0 3.125rem;
  }
}
.sec01 .acorion-detail__inner {
  flex-direction: column;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .sec01 .acorion-detail__inner {
    flex-direction: column;
  }
}
.sec01-head .inner {
  position: relative;
}
@media (max-width: 1100px) {
  .sec01-head .inner {
    display: flex;
    flex-direction: column;
  }
}
.sec01-head-title {
  margin-bottom: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec01-head-title__bg {
  background: var(--yellow);
  font-size: clamp(1.6875rem, 5vw, 2.6875rem);
  color: #000;
  padding: 0.3125rem 0 0.3125rem 1.875rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  width: 100vw;
}
@media (max-width: 768px) {
  .sec01-head-title__bg {
    width: calc(100% + 20px);
    padding: 0.3125rem 0.625rem;
    letter-spacing: 0;
  }
}
.sec01-head-title__bg .small {
  font-size: clamp(1.25rem, 5vw, 2rem);
}
.sec01-head__lead {
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.sec01-head__inner {
  position: relative;
  left: 330px;
  width: min(100%, 670px);
  z-index: 5;
  margin-bottom: 6.25rem;
}
@media (max-width: 1100px) {
  .sec01-head__inner {
    left: 0;
    width: 100%;
    order: 2;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 768px) {
  .sec01-head__inner {
    left: 0;
    order: 2;
    margin-top: -80px;
    margin-bottom: 0px;
  }
}
.sec01-head__bg {
  position: absolute;
  top: -150px;
  left: -390px;
  width: min(100%, 665px);
}
@media (max-width: 1100px) {
  .sec01-head__bg {
    position: relative;
    width: 100%;
    max-width: 400px;
    left: 0%;
    top: 0;
    margin: 0 auto 1.25rem;
  }
}
@media (max-width: 768px) {
  .sec01-head__bg {
    position: relative;
    top: 0;
    left: -80px;
    width: 416px;
    order: 1;
  }
}
.sec01-image {
  margin-bottom: 3.125rem;
  display: flex;
  justify-content: flex-end;
  gap: 3.125rem;
}
@media (max-width: 1100px) {
  .sec01-image {
    justify-content: center;
    gap: 1.875rem;
    order: 3;
  }
}
@media (max-width: 767px) {
  .sec01-image {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.sec01-image__set {
  width: min(100%, 310px);
}
@media (max-width: 768px) {
  .sec01-image__set {
    width: min(100%, 390px);
    margin: 0 auto;
  }
}
.sec01-image__caption {
  text-align: center;
  font-size: 0.75rem;
  padding: 0.625rem;
  padding-top: 0.625rem;
}

.sec02 {
  background: #000;
  position: relative;
  z-index: 2;
  padding: 3.125rem 0 5rem;
}
@media (max-width: 768px) {
  .sec02 {
    padding: 0rem 0 5rem;
  }
}
.sec02 .acorion-detail__inner {
  flex-direction: column;
  display: flex;
  gap: 30px;
}
.sec02-head {
  min-height: 592px;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .sec02-head {
    margin-bottom: 0;
  }
}
.sec02-head .inner {
  position: relative;
  padding-top: 50px;
}
.sec02-head-title {
  margin-bottom: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .sec02-head-title {
    margin-bottom: 1.875rem;
  }
}
.sec02-head-title__bg {
  font-size: clamp(1.5rem, 5vw, 2.6875rem);
  color: #000;
  padding: 0.3125rem 1.875rem 0.3125rem 0;
  letter-spacing: 0.1em;
  line-height: 1.3;
  position: relative;
}
@media (max-width: 768px) {
  .sec02-head-title__bg {
    padding: 0.3125rem 0.625rem 0.3125rem 0;
    letter-spacing: 0;
    width: 100%;
  }
}
@media (max-width: 375px) {
  .sec02-head-title__bg {
    font-size: 1.25rem;
  }
}
.sec02-head-title__bg::before {
  content: "";
  background: var(--yellow);
  display: block;
  width: 200vw;
  height: 63px;
  right: 0;
  top: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .sec02-head-title__bg::before {
    top: 0;
    left: -20px;
    width: 100%;
    height: 60px;
  }
}
@media (max-width: 650px) {
  .sec02-head-title__bg::before {
    top: 0;
    left: -20px;
    width: 100%;
    height: 48px;
  }
}
@media (max-width: 520px) {
  .sec02-head-title__bg::before {
    top: -4px;
  }
}
@media (max-width: 375px) {
  .sec02-head-title__bg::before {
    height: 42px;
  }
}
.sec02-head-title__bg .small {
  font-size: clamp(1.125rem, 5vw, 2rem);
}
@media (max-width: 375px) {
  .sec02-head-title__bg .small {
    font-size: 1rem;
  }
}
.sec02-head-title__inner {
  z-index: 5;
  position: relative;
}
.sec02-head__lead {
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .sec02-head__lead {
    padding: 0;
  }
}
.sec02-head__lead--first {
  margin-bottom: 1.25rem;
}
.sec02-head__inner {
  position: absolute;
  top: 50px;
  left: 0;
  width: min(100%, 670px);
  z-index: 5;
}
@media (max-width: 1100px) {
  .sec02-head__inner {
    position: relative;
    top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .sec02-head__inner {
    margin-bottom: 1.875rem;
  }
}
.sec02-image {
  position: relative;
  left: 30%;
  width: 66vw;
  top: 0;
  height: 592px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec02-image {
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.sec02-image img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
  height: 100%;
  width: 60vw;
}
@media (max-width: 768px) {
  .sec02-image img {
    width: 100%;
  }
}
.sec02-image__caption {
  text-align: right;
  font-size: 0.75rem;
  padding-top: 0.9375rem;
}
@media (max-width: 768px) {
  .sec02-image__caption {
    text-align: center;
    margin-bottom: 1.875rem;
  }
}

.sec03 {
  position: relative;
  z-index: 2;
  padding: 3.125rem 0 11.25rem;
  background: #000 url("../img/bg_line.png") center bottom/auto 83px no-repeat;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .sec03 {
    background: #000 url("../img/bg_line_sp.png") no-repeat center bottom/100% auto;
    padding: 1.25rem 0 7.5rem;
  }
}
.sec03-head {
  height: 300px;
}
@media (max-width: 768px) {
  .sec03-head {
    height: 100%;
  }
}
.sec03-head .inner {
  position: relative;
}
.sec03-head-title {
  margin-bottom: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .sec03-head-title {
    margin-bottom: 1.875rem;
  }
}
.sec03-head-title__bg {
  background: var(--yellow);
  font-size: clamp(1.6875rem, 5vw, 2.6875rem);
  color: #000;
  padding: 0.3125rem 0 0.3125rem 1.875rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  width: 100vw;
}
@media (max-width: 768px) {
  .sec03-head-title__bg {
    width: calc(100% + 20px);
    padding: 0.3125rem 0.625rem;
    letter-spacing: 0;
  }
}
.sec03-head-title__bg .small {
  font-size: clamp(1.25rem, 5vw, 2rem);
}
.sec03-head__lead {
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .sec03-head__lead {
    margin-bottom: 1.875rem;
  }
}
.sec03-head__inner {
  position: relative;
  left: 330px;
  width: min(100%, 670px);
  z-index: 5;
}
@media (max-width: 1100px) {
  .sec03-head__inner {
    left: 0;
    width: 100%;
  }
}
.sec03-head__bg {
  position: absolute;
  top: -80px;
  left: -270px;
  width: min(100%, 564px);
}
@media (max-width: 1100px) {
  .sec03-head__bg {
    display: none;
  }
}
.sec03-image {
  margin: 0 auto 3.125rem;
}
@media (max-width: 768px) {
  .sec03-image {
    margin: 0 20px 1.875rem;
  }
}
.sec03-image__caption {
  text-align: center;
  font-size: 0.75rem;
  padding: 0.625rem;
}

.acorion {
  background: #000;
  position: relative;
  z-index: 2;
  border: 1px solid var(--yellow);
  border-radius: 6px;
  margin: 0 0.625rem;
}
@media (max-width: 768px) {
  .acorion {
    margin: 0;
  }
}
.acorion-title {
  text-align: center;
  font-size: 1.25rem;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.625rem 0;
  position: relative;
  cursor: pointer;
}
.acorion-title::before {
  content: "";
  width: 15px;
  height: 2px;
  background: var(--yellow);
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.acorion-title::after {
  content: "";
  height: 15px;
  width: 2px;
  background: var(--yellow);
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.acorion-title.is-active::after {
  display: none;
}
.acorion-detail {
  border-top: 1px solid var(--yellow);
  padding: 1.875rem 3.75rem 1.875rem 1.25rem;
  flex: 1;
  display: none;
}
@media (max-width: 768px) {
  .acorion-detail {
    padding: 1.875rem 0;
    margin: 0 1.875rem;
  }
}
.acorion-detail__inner {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media (max-width: 768px) {
  .acorion-detail__inner {
    flex-direction: column;
    gap: 1.875rem;
  }
}
.acorion-detail__set {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media (max-width: 768px) {
  .acorion-detail__set {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.acorion-detail__image {
  width: min(100%, 300px);
}
.acorion-detail__main {
  flex: 1;
  padding: 0.625rem;
}
@media (max-width: 768px) {
  .acorion-detail__main {
    padding: 0;
  }
}
.acorion-detail__label {
  color: var(--yellow);
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.acorion-detail__text {
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sec04 {
  position: relative;
  z-index: 2;
  padding: 4.375rem 0 10.625rem;
  background: #000 url("../img/bg_line.png") no-repeat center bottom/auto 83px;
  background-color: #000;
}
@media (max-width: 768px) {
  .sec04 {
    background: #000 url("../img/bg_line_sp.png") no-repeat center bottom/100% auto;
    padding-bottom: 8.125rem;
    padding-top: 3.75rem;
  }
}
.sec04 .inner {
  padding: 0 50px;
}
@media (max-width: 768px) {
  .sec04 .inner {
    padding: 0 20px;
  }
}
.sec04-title {
  text-align: center;
  color: var(--yellow);
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 3.75rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sec04-title {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
.sec04-box {
  margin-bottom: 4.375rem;
}
.sec04-box__bottom {
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .sec04-box__bottom {
    margin-bottom: 2.5rem;
  }
}
.sec04-box__label {
  font-size: 1.25rem;
  text-align: center;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.sec04-box__text {
  font-size: 0.875rem;
  margin-bottom: 4.375rem;
}
.sec04-box__btn {
  width: min(100%, 313px);
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .sec04-box__btn {
    width: min(100%, 350px);
  }
}
.sec04-box__btn img {
  width: min(100%, 48px);
  position: absolute;
  bottom: -5px;
  left: 10px;
  z-index: 5;
}
@media (max-width: 768px) {
  .sec04-box__btn img {
    left: 10px;
  }
}
.sec04-box__btn a {
  color: #000;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: block;
  padding: 0.625rem;
  border-radius: 10px;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.sec04-box__btn a span {
  position: relative;
  z-index: 5;
  left: 60px;
}
.sec04-box__btn a::after {
  content: "";
  width: 96px;
  height: 6px;
  background: url("../img/img_arrow.svg") 95% 60%/100% auto no-repeat;
  display: block;
  position: absolute;
  bottom: 15px;
  right: 20px;
  z-index: 5;
}
.sec04-box__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--yellow);
  border-radius: 10px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .sec04-box__btn a:hover {
    opacity: 1;
  }
  .sec04-box__btn a:hover::before {
    width: 100%;
  }
}
.sec04-box__inner {
  display: flex;
  gap: 0.9375rem;
}
@media (max-width: 768px) {
  .sec04-box__inner {
    flex-direction: column;
  }
}
.sec04-box__image {
  width: min(100%, 170px);
}
@media (max-width: 768px) {
  .sec04-box__image {
    margin: 0 auto;
  }
}
.sec04-box__detail {
  flex: 1;
}
.sec04-box__name {
  font-weight: 800;
  margin-bottom: 0.625rem;
}
.sec04-box__desc {
  font-size: 0.875rem;
}
.sec04-slider {
  margin-bottom: 4.375rem;
}
.sec04-slider__inner {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.sec04-banner {
  margin-bottom: 3.75rem;
}
@media (max-width: 768px) {
  .sec04-banner {
    margin-bottom: 3.125rem;
  }
}
.sec04-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent url("../img/bg_sec04_banner.png") no-repeat center center/cover;
  height: 100%;
  aspect-ratio: 900/120;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .sec04-banner a {
    background: transparent url("../img/bg_sec04_banner_sp.png") no-repeat center center/cover;
    aspect-ratio: 1;
    max-height: 120px;
    width: 100%;
    border-radius: 6px;
  }
}
.sec04-youtube {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.sec04-youtube a {
  font-weight: 800;
  padding: 0.75rem 0 0.75rem 3.125rem;
  transition: 0.3s;
  position: relative;
  background: transparent url("") no-repeat left center/auto 100%;
}
.sec04-youtube a::before {
  content: "";
  background-image: url("../img/icon_link.svg");
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .sec04-youtube a:hover {
    opacity: 1;
    color: var(--yellow);
  }
  .sec04-youtube a:hover::before {
    background-color: var(--yellow);
  }
}

.sec04-youtube-iframe iframe {
  width: 100%;
  height: 100%;
  aspect-ratio : 16/9;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button:before {
  color: #4e4e4e;
  font-size: 10px;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: var(--yellow);
}

.ticket {
  background: #000;
  position: relative;
  z-index: 2;
  padding: 5rem 0 4.375rem;
}
@media (max-width: 768px) {
  .ticket {
    padding-top: 1.875rem;
  }
}
.ticket .inner {
  padding: 0 50px;
}
@media (max-width: 768px) {
  .ticket .inner {
    padding: 0 20px;
  }
}
.ticket-title {
  background: url("../img/bg_ticket_title.png") 60px 10px / auto 80% no-repeat transparent;
  padding-top: 3.125rem;
}
@media (max-width: 768px) {
  .ticket-title {
    background: url("../img/bg_ticket_title.png") 60px 40px / auto 50% no-repeat transparent;
  }
}
.ticket-table {
  border: 1px solid #646464;
  width: 100%;
  margin-bottom: 1.25rem;
}
.ticket-table th,
.ticket-table td {
  padding: 0.9375rem 1.875rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  width: 50%;
  border: 1px solid #646464;
  text-align: left;
}
@media (max-width: 768px) {
  .ticket-table th,
  .ticket-table td {
    font-size: 1rem;
    text-align: center;
    padding: 0.9375rem 0.625rem;
  }
}
.ticket-list {
  margin-bottom: 1.875rem;
}
.ticket-list__item {
  font-size: 0.75rem;
  padding-left: 0.75rem;
  text-indent: -0.75rem;
}
.ticket-list__item::before {
  content: "●";
}
.ticket-list__item a {
  text-decoration: underline;
}
.ticket-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .ticket-banner {
    gap: 0.625rem;
  }
}
.ticket-banner__item {
  border: 1px solid #646464;
  padding: 30px;
  width: min(200px, 25% - 1.875rem);
}
@media (max-width: 768px) {
  .ticket-banner__item {
    padding: 10px;
    width: min(200px, 25% - 0.625rem);
  }
}

.time {
  background: #000;
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .time {
    padding-bottom: 3.125rem;
  }
}
.time .inner {
  padding: 0 50px;
}
@media (max-width: 768px) {
  .time .inner {
    padding: 0 20px;
  }
}
.time-title {
  background: url("../img/bg_time_title.png") 130px 0px / auto 100% no-repeat transparent;
  padding-top: 3.125rem;
}
@media (max-width: 768px) {
  .time-title {
    background: url("../img/bg_time_title.png") 30% 0px / auto 100% no-repeat transparent;
  }
}
.time-wrap {
  display: flex;
  gap: 3.125rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .time-wrap {
    flex-direction: column;
    gap: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
.time-wrap__date {
  margin-bottom: 0.625rem;
}
.time-wrap__calender {
  max-width: 420px;
}
.time-detail {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.275rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .time-detail {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.625rem;
    margin-bottom: 1.875rem;
  }
}
.time-detail__icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
}
.time-detail__icon--01 {
  background: #d8a23d;
}
.time-detail__icon--02 {
  background: #004758;
}
.time-detail__icon--03 {
  background: #898989;
}
.time-detail__set {
  display: flex;
  align-items: center;
  gap: 10px;
}
.time-detail__set--pc {
display: flex;
}
.time-detail__set--sp {
display: none;
}
@media (max-width: 520px) {
  .time-detail__set--pc {
  display: none;
  }
  .time-detail__set--sp {
  display: flex;
  }
}
.time-detail__set--wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.time-list__item {
  font-size: 0.75rem;
  padding-left: 0.75rem;
  text-indent: -0.75rem;
}
.time-list__item::before {
  content: "※";
}

.access {
  background: #000;
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .access {
    padding-bottom: 2.5rem;
  }
}
.access .inner {
  padding: 0 50px;
}
@media (max-width: 768px) {
  .access .inner {
    padding: 0 20px;
  }
}
.access-title {
  background: url("../img/bg_access_title.png") 100px center/auto 100% no-repeat transparent;
  padding-top: 3.125rem;
}
.access-head {
  display: flex;
  gap: 3.125rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .access-head {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.access-head__box {
  width: calc(50% - 1.5625rem);
  border: 1px solid #646464;
  padding: 30px;
}
@media (max-width: 768px) {
  .access-head__box {
    width: 100%;
  }
}
.access-head__text {
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}
.access-head__text.is-indent {
  padding-left: 0.75rem;
  text-indent: -0.75rem;
}
.access-head__text:last-child {
  margin-bottom: 0;
}
.access-head__text a {
  text-decoration: underline;
}
.access-map {
  margin-bottom: 4.375rem;
}
@media (max-width: 768px) {
  .access-map {
    margin-bottom: 1.875rem;
  }
}
.access-map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 900/458;
}
@media (max-width: 768px) {
  .access-map iframe {
    aspect-ratio: 2/1;
  }
}
.access-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.access-detail-list__item {
  font-size: 0.75rem;
  padding-left: 0.75rem;
  text-indent: -0.75rem;
}
.access-detail-list__item::before {
  content: "●";
}

.banner {
  background: #000;
  position: relative;
  z-index: 2;
  padding-bottom: 6.25rem;
}
@media (max-width: 768px) {
  .banner {
    padding-bottom: 2.5rem;
  }
}
.banner .inner {
  padding: 0 50px;
}
@media (max-width: 768px) {
  .banner .inner {
    padding: 0 20px;
  }
}
.banner-list {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .banner-list {
    gap: 1.5625rem;
    justify-content: flex-start;
  }
}
.banner-list__item {
  width: calc(30% - 1.5rem);
}
@media (max-width: 768px) {
  .banner-list__item {
    width: calc(50% - 0.9375rem);
  }
}

.breadcrumb-list {
  display: flex;
}
.breadcrumb-list__item {
  font-size: 0.75rem;
  position: relative;
  padding-right: 20px;
}
.breadcrumb-list__item::before {
  content: "";
}
.breadcrumb-list__item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.breadcrumb-list__item:last-child::before {
  display: none;
}

.lower {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .lower {
    padding-top: 70px;
  }
}
.lower-line {
  background: transparent url("../img/bg_line.png") no-repeat center 20px / auto 83px;
}
@media (max-width: 768px) {
  .lower-line {
    background: transparent url("../img/bg_line_sp.png") no-repeat center bottom/100% auto;
  }
}
.lower-title {
  text-align: center;
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .lower-title {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 768px) {
  .lower-mystery {
    background: transparent url("../img/bg_mystery_sp.jpg") no-repeat center -140px/100% auto;
  }
}
@media (max-width: 700px) {
  .lower-mystery {
    background-position-y: -100px;
  }
}
@media (max-width: 600px) {
  .lower-mystery {
    background-position-y: -50px;
  }
}
@media (max-width: 500px) {
  .lower-mystery {
    background-position-y: 0px;
  }
}
@media (max-width: 450px) {
  .lower-mystery {
    background-position-y: 50px;
  }
}

.info {
  padding-top: 8.125rem;
  padding-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .info {
    padding: 1.875rem 0 3.75rem;
  }
}
.info-list {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .info-list {
    gap: 0.625rem;
  }
}
.info-list__thum {
  overflow: hidden;
  aspect-ratio: 290/250;
  margin-bottom: 0.625rem;
}
.info-list__thum img {
  transition: 0.3s;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.info-list__head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 768px) {
  .info-list__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.info-list__icon {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #fff;
  padding: 2px 10px;
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
}
.info-list__date {
  flex: 1;
  color: #fff;
  font-size: 0.75rem;
}
.info-list__text {
  flex-grow: 1;
}
.info-list__title {
  font-weight: 800;
}
.info-list__item {
  width: calc(33.3333333333% - 0.9375rem);
}
@media (max-width: 768px) {
  .info-list__item {
    width: calc(50% - 0.3125rem);
  }
}
.info-list__item a {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  padding: 0.9375rem;
  border: 1px solid #5c5c5c;
  background: #343434;
  transition: 0.3s;
  height: 100%;
}
@media (max-width: 768px) {
  .info-list__item a {
    padding: 0.5rem;
    gap: 0.5rem;
  }
}
@media (hover: hover) {
  .info-list__item a:hover {
    opacity: 1;
    background: #4f4e4e;
  }
  .info-list__item a:hover .info-list__thum img {
    transform: scale(1.1);
  }
}
.info-list__item.is-feature a {
  background: var(--yellow);
}
.info-list__item.is-feature a .info-list__icon {
  color: var(--yellow);
}
.info-list__item.is-feature a .info-list__date {
  color: #000;
}
.info-list__item.is-feature a .info-list__title {
  color: #000;
}
.info-detail__head {
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.info-detail .lower-title {
  text-align: left;
  margin-bottom: 1.25rem;
}
.info-detail__image {
  margin-bottom: 1.875rem;
  text-align: center;
}
.info-detail__main {
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .info-detail__main {
    padding-bottom: 3.75rem;
  }
}
.info-detail__main--1026 .wp-block-media-text {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  gap: 10px;
  background: #111;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 520px) {
  .info-detail__main--1026 .wp-block-media-text {
    flex-direction: column;
  }
}
.info-detail__main--1026 .wp-block-media-text:last-child {
  margin-bottom: 0;
}
.info-detail__main--1026 .wp-block-media-text figure {
  max-width: 200px;
  border-radius: 8px;
  overflow: hidden;
}
.info-detail__main--1026 .wp-block-media-text > div {
  flex: 1;
}
.info-detail__main p {
  margin-bottom: 1.25rem;
}
.info-detail__main p:last-child {
  margin-bottom: 0;
}
.info-detail__main a {
  text-decoration: underline;
}
.info-back a {
  background: #333;
  width: min(100%, 400px);
  display: block;
  padding: 20px;
  text-align: center;
  color: #fff;
  margin: 0 auto 0;
  position: relative;
}
.info-back a::before {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #fff;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}

.info-event {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
 .info-event {
    grid-template-columns: 1fr;
  }
}

.info-event:has(li:only-child) {
  grid-template-columns: 1fr;
}

.info-event li {
  width: 100%;
}

.info-wrapper {
  margin-bottom: 60px; 
}

.info-event .info-list__text {
  margin-bottom: 20px;
}

.info-event .info-list__text2 {
  display: block;
  color :#fff;
  padding: 5px 0 0;
  font-size: 14px;
}

.info-event a {
display: flex;
flex-direction: row;
background: none;
border: none;
height : auto;
padding: 20px;
gap : 20px;
align-items: center;
}

.info-event .info-list__thum {
  width: 140px;
  border : 1px solid #111;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-event .info-list__thum img {
  margin: 0 auto;
}

.wp-block-media-text > .wp-block-media-text__content {
  padding: 20px;
}

@media (max-width: 768px) {
  .wp-block-media-text {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 768px) {
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
    margin-bottom: 0.625rem;
  }
}

.wp-block-media-text.card {
  display: flex;
  gap: 30px;
  background: #333;
  padding: 25px;
  position: relative;
  transition: 0.3s;
}
@media (max-width: 520px) {
  .wp-block-media-text.card {
    flex-direction: column;
    gap: 20px;
  }
}

.wp-block-media-text.card:hover {
  background: #444;
}

.wp-block-media-text.card figure {
  width: min(100%, 100px);
}
@media (max-width: 768px) {
  .wp-block-media-text.card figure {
    width: min(100%, 150px);
  }
}

.wp-block-media-text.card > div {
  flex: 1;
}

.wp-block-media-text.card > div p {
  text-decoration: underline;
}

.wp-block-embed.is-type-video iframe {
  margin: 0 auto;
  display: block;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  font-size: 1.125rem;
  font-weight: 800;
  border-radius: 4px;
  color: #fff;
  width: 32px;
  height: 32px;
}
.wp-pagenavi a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #484848;
  font-size: 1.125rem;
  font-weight: 800;
  border-radius: 4px;
  color: #fff;
  width: 32px;
  height: 32px;
}

.contact {
  padding-top: 8.125rem;
  padding-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .contact {
    padding: 1.875rem 0 3.75rem;
  }
}
.contact-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact-head__text1 {
  font-weight: 800;
  margin-bottom: 0.625rem;
}
.contact-head__text1 a {
  text-decoration: underline;
  color: var(--yellow);
  letter-spacing: 0.1em;
}
.contact-head__text2 {
  font-size: 0.875rem;
}
.contact-detail {
  margin-bottom: 1.25rem;
  padding: 1.25rem 0rem;
}
@media (max-width: 768px) {
  .contact-detail {
    padding: 1.25rem 0;
  }
}
.contact-detail-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-detail-table {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-detail-table > div {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
@media (max-width: 768px) {
  .contact-detail-table > div {
    border-left: 1px solid white;
    border-bottom: 1px solid white;
  }
}
.contact-detail-table__title {
  grid-row: span 3;
  border: 1px solid white;
  padding: 15px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .contact-detail-table__title {
    grid-column: span 2;
    border-bottom: none;
    text-align: center;
  }
}
.contact-detail-table__small {
  font-size: 0.875rem;
}
.contact-detail-table__cell {
  padding: 15px;
  font-size: 1.125rem;
  font-weight: 800;
}
.contact-detail-table__cell:nth-child(2),
.contact-detail-table__cell:nth-child(3) {
  border-top: 1px solid white;
}
@media (max-width: 768px) {
  .contact-detail-table__cell:nth-child(2),
  .contact-detail-table__cell:nth-child(3) {
    border-top: none;
  }
}
@media (max-width: 768px) {
  .contact-detail-table__cell:nth-child(3),
  .contact-detail-table__cell:nth-child(5),
  .contact-detail-table__cell:nth-child(7) {
    text-align: right;
  }
}
.contact-detail-table:last-child .contact-detail-table__title,
.contact-detail-table:last-child .contact-detail-table__cell:nth-child(2),
.contact-detail-table:last-child .contact-detail-table__cell:nth-child(3) {
  border-top: none;
}
.contact-detail-note__item {
  font-size: 0.75rem;
}
.contact-detail-note__item::before {
  content: "●";
}
.contact-nav {
  margin-bottom: 3.75rem;
}
@media (max-width: 768px) {
  .contact-nav {
    margin-bottom: 1.875rem;
  }
}
.contact-nav:last-child {
  margin-bottom: 0;
}
.contact-nav__arrow {
  position: relative;
}
.contact-nav__arrow::before {
  content: "";
  background: transparent url("../img/img_arrow_yellow.svg") no-repeat center center/cover;
  width: 96px;
  height: 6px;
  position: absolute;
  bottom: 10px;
  right: -113px;
  display: block;
}
@media (max-width: 768px) {
  .contact-nav__arrow::before {
    display: none;
  }
}
.contact-nav a {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--yellow);
  padding: 1.875rem 0.625rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.1em;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .contact-nav a {
    padding: 1.25rem 0.625rem;
    background: transparent url("../img/img_arrow_yellow.svg") no-repeat 95% 60%/50px auto;
    font-size: 1.125rem;
  }
}
@media (max-width: 420px) {
  .contact-nav a {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .contact-nav a:hover {
    opacity: 1;
    background: var(--yellow);
    color: #fff;
  }
  .contact-nav a:hover .contact-nav__arrow::before {
    background: transparent url("../img/img_arrow_white.svg") no-repeat center center/cover;
  }
}
.contact-nav__nomarigin {
  margin-bottom: 0;
}

.faq {
  padding-top: 8.125rem;
  padding-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .faq {
    padding: 1.875rem 0;
  }
}
.faq-nav {
  margin-bottom: 3.125rem;
}
.faq-nav-list {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .faq-nav-list {
    flex-direction: column;
    gap: 0.3125rem;
  }
}
.faq-nav-list__item {
  width: min(100%, 33.3333333333% - 0.625rem);
}
@media (max-width: 768px) {
  .faq-nav-list__item {
    width: 100%;
  }
}
.faq-nav-list__item a {
  display: block;
  display: block;
  background: #343434;
  border: 1px solid #5c5c5c;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.875rem;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 0.1em;
}
.faq-nav-list__item a::before {
  content: "▼";
}
.faq-title {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}
.faq-article {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .faq-article {
    margin-bottom: 1.875rem;
  }
}
.faq-article:last-child {
  margin-bottom: 0;
}
.faq-set {
  padding: 0 30px 3.125rem;
}
@media (max-width: 768px) {
  .faq-set {
    padding: 0 0 1.875rem;
    margin-bottom: 0;
  }
}
.faq-set:last-child {
  padding-bottom: 0;
}
.faq-sub {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #707070;
  padding-bottom: 5px;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .faq-sub {
    font-size: 1.125rem;
  }
}
.faq-note {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.faq-note__item {
  text-indent: -0.875rem;
  padding-left: 0.875rem;
  font-size: 0.875rem;
}
.faq-note__item::before {
  content: "●";
}
.faq-image {
  width: min(100%, 470px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq-image {
    margin-top: 10px;
  }
}
.faq-group {
  padding: 0 30px 5.625rem;
}
@media (max-width: 768px) {
  .faq-group {
    padding: 0 0 1.875rem;
  }
}
.faq-group:last-child {
  padding-bottom: 0;
}
.faq-group-set {
  padding: 1.5625rem 0 1.5625rem;
  border-bottom: 1px solid #707070;
}
.faq-group-set:first-child {
  padding-top: 0;
}
.faq-group-set__title {
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
  position: relative;
  padding: 0 0 0 2.5rem;
}
.faq-group-set__title::before {
  content: "Q";
  width: 26px;
  height: 26px;
  background: var(--yellow);
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
.faq-group-set__text {
  font-size: 0.875rem;
  position: relative;
  padding: 0 0 0 2.5rem;
  line-height: 2.4;
}
@media (max-width: 768px) {
  .faq-group-set__text {
    line-height: 2;
  }
}
.faq-group-set__text--small {
  font-size: 0.75rem;
  display: block;
}
.faq-group-set__text a {
  text-decoration: underline;
}
.faq-group-set__text::before {
  content: "A";
  width: 26px;
  height: 26px;
  font-weight: 800;
  font-size: 1rem;
  background: #d85b3d;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 4px;
}
.faq-group-set__p {
  margin-bottom: 1.875rem;
}

.mystery {
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
}
.mystery-head {
  margin-bottom: 4.375rem;
  position: relative;
}
.mystery-head__top {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 23.125rem;
  position: relative;
  z-index: 5;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .mystery-head__top {
    
  }
}
@media (max-width: 900px) {
  .mystery-head__top {
    margin-bottom: 16.875rem;
  }
}
@media (max-width: 768px) {
  .mystery-head__top {
    margin-bottom: 16.875rem;
  }
}
@media (max-width: 400px) {
  .mystery-head__top {
    margin-bottom: 10.625rem;
  }
}
.mystery-head__bg {
  position: absolute;
  top: -180px;
  left: -300px;
}
@media (max-width: 1100px) {
  .mystery-head__bg {
    top: -150px;
    left: -200px;
  }
}
@media (max-width: 900px) {
  .mystery-head__bg {
    top: -100px;
    left: -100px;
  }
}
@media (max-width: 768px) {
  .mystery-head__bg {
    display: none;
  }
}
.mystery-head__title {
  font-size: clamp(1.6875rem, 5vw, 2.6875rem);
  font-weight: 800;
  color: #000;
  padding: 0.3125rem 1.875rem 0.3125rem 0;
  letter-spacing: 0.1em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.mystery-head__title::before {
  content: "";
  background: var(--yellow);
  display: block;
  width: 200vw;
  height: 63px;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}
@media (max-width: 768px) {
  .mystery-head__title::before {
    top: 2px;
    height: 53px;
    width: calc(100% + 20px);
    left: -20px;
  }
}
@media (max-width: 600px) {
  .mystery-head__title::before {
    top: -5px;
  }
}
.mystery-head__sub {
  font-weight: 800;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .mystery-head__sub {
    letter-spacing: 0;
  }
}
.mystery-head__bottom {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 2;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .mystery-head__bottom {
    letter-spacing: 0;
  }
}
.mystery-group {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 4.375rem;
}
@media (max-width: 768px) {
  .mystery-group {
    flex-direction: column;
    margin-bottom: 3.125rem;
  }
}
.mystery-group:last-child {
  margin-bottom: 0;
}
.mystery-group-rev {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .mystery-group-rev {
    flex-direction: column;
  }
}
.mystery-group__set {
  padding-top: 5px;
  width: min(50%, 480px);
}
@media (max-width: 768px) {
  .mystery-group__set {
    width: 100%;
  }
}
.mystery-group__head {
  padding-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .mystery-group__head {
    padding-bottom: 1.25rem;
  }
}
.mystery-group__title {
  display: flex;
  flex-direction: column;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--yellow);
}
@media (max-width: 768px) {
  .mystery-group__title {
    font-size: 1.5rem;
  }
}
.mystery-group__label {
  font-size: 1.625rem;
  color: var(--yellow);
  border-bottom: 1px solid var(--yellow);
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .mystery-group__label {
    font-size: 1.3125rem;
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 768px) {
  .mystery-group__lead {
    font-size: 0.75rem;
  }
}
.mystery-group-main {
  border: 1px solid #5c5c5c;
  padding: 1.5625rem 1.25rem 1.5625rem;
}
.mystery-group-main__title {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}
@media (max-width: 768px) {
  .mystery-group-main__title {
    font-size: 1rem;
  }
}
.mystery-group-main__text {
  font-size: 0.875rem;
  line-height: 1.8;
}
.mystery-group-slider {
  flex: 1;
  width: min(50%, 480px);
}
@media (max-width: 768px) {
  .mystery-group-slider {
    width: 100%;
  }
}

.banner-vr {
  flex-direction: column-reverse;
  display: flex;
}
.banner-vr figcaption {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .banner-vr figcaption {
    font-size: 16px;
  }
}


.topevent {
  position: relative;
  z-index: 2;
  padding: 5.625rem 0 2rem;
  background-color: #000;
}
@media (max-width: 768px) {
  .topevent {
    background: #000 url("../img/bg_line_sp.png") no-repeat center 0/100% auto;
    padding: 7.5rem 0 6.25rem;
  }
}
.topevent .inner {
  width: min(100%, 800px);
}
.topevent-list {
  display: grid;
  grid-template-columns:  1fr;
  gap : 20px;
  margin-bottom: 50px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .topevent-list {
    grid-template-columns: 1fr;
  }
}

.top-ambassador {

  margin-top: 60px;
}

.top-ambassador__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .top-ambassador__wrap {
    grid-template-columns:  1fr;
  }
}

.top-ambassador__wrap figure {
  text-align: center;
}

.top-ambassador__wrap figure img {
  margin-bottom: 10px;
}

.ambassador {
  padding-top: 4.125rem;
  padding-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .ambassador {
    padding: 1.875rem 0;
  }
}

.ambassador-wrap {
  padding-bottom: 6.55rem;
  margin-bottom: 6.55rem;
  border-bottom : 1px solid var(--yellow);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}

@media (max-width: 768px) {
  .ambassador-wrap {
   padding-bottom: 4.55rem;
   margin-bottom: 4.55rem;
  }
}


.ambassador-wrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ambassador-head {
  display: flex;
  gap : 2rem;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .ambassador-head {
   flex-direction: column;
   gap : 1rem;
   margin-bottom: 2rem;
  }
}

.ambassador .mystery-head__top {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ambassador .mystery-head {
   margin-bottom: 2rem;
  }
}

.ambassador-image {
  width: 50%;
}

.ambassador-image__copy {
  color: #fff;
  font-size: 11px;
  text-align: right;
  display: block;
  padding: 5px 0 0;
}

@media (max-width: 768px) {
  .ambassador-image {
   width: 100%;
  }
}

.ambassador-detail {
  flex: 1;
  padding: 4rem 0 0;
}

@media (max-width: 768px) {
  .ambassador-detail {
   padding: 0;
  }
}

.ambassador-name {
  font-size: 30px;
  margin-bottom: 10px;
}

.ambassador-lead {
  margin-bottom: 3rem;
  font-size: 14px;
}

@media (max-width: 768px) {
  .ambassador-lead {
   margin-bottom: 2rem;
  }
}

.ambassador-profile__label {
  color: var(--yellow);
  font-size: 20px;
}

.ambassador-profile__text {
  font-size: 12px;
}

.ambassador-comment__text {
  font-size: 14px;
  margin-bottom: 20px;
}

.ambassador-comment iframe {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 700px;
  height: 100%;
  aspect-ratio: 16/9;
}

.toticket {
 position: fixed;
 bottom:0px;
 right: 0px;
 z-index: 999;
 max-width: 143px;
}


.toticket a {
  position: relative;
  
  transition: 0.3s;
  z-index: 5;
}

.footer {
  background: #000;
  position: relative;
  z-index: 2;
  padding: 1.875rem 0 3.125rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .footer {
    padding: 1.875rem 0 5.3125rem;
  }
}
.footer-logo {
  max-width: 106px;
  margin: 0 auto 1.875rem;
}
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .footer-sns {
    margin-bottom: 1.5625rem;
  }
}
.footer-copy {
  text-align: center;
  font-size: 0.75rem;

}

.footer-copy-bottom {
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 30px
}
/*# sourceMappingURL=layout.css.map */


/* WordPress Gutenberg Default Color Palette */

/* インラインカラー基本クラス */
.has-inline-color {
  color: inherit;
}

/* テキストカラー */
.has-black-color { color: #000000; }
.has-cyan-bluish-gray-color { color: #abb8c3; }
.has-white-color { color: #ffffff; }
.has-pale-pink-color { color: #f78da7; }
.has-vivid-red-color { color: #cf2e2e; }
.has-luminous-vivid-orange-color { color: #ff6900; }
.has-luminous-vivid-amber-color { color: #fcb900; }
.has-light-green-cyan-color { color: #7bdcb5; }
.has-vivid-green-cyan-color { color: #00d084; }
.has-pale-cyan-blue-color { color: #8ed1fc; }
.has-vivid-cyan-blue-color { color: #0693e6; }
.has-vivid-purple-color { color: #9b51e0; }
.has-very-dark-gray-color { color: #313131; }

/* 背景カラー */
.has-black-background-color { background-color: #000000; }
.has-cyan-bluish-gray-background-color { background-color: #abb8c3; }
.has-white-background-color { background-color: #ffffff; }
.has-pale-pink-background-color { background-color: #f78da7; }
.has-vivid-red-background-color { background-color: #cf2e2e; }
.has-luminous-vivid-orange-background-color { background-color: #ff6900; }
.has-luminous-vivid-amber-background-color { background-color: #fcb900; }
.has-light-green-cyan-background-color { background-color: #7bdcb5; }
.has-vivid-green-cyan-background-color { background-color: #00d084; }
.has-pale-cyan-blue-background-color { background-color: #8ed1fc; }
.has-vivid-cyan-blue-background-color { background-color: #0693e6; }
.has-vivid-purple-background-color { background-color: #9b51e0; }
.has-very-dark-gray-background-color { background-color: #313131; }

/* ========================================
   WordPress Gallery Block Styles
   ======================================== */

/* 基本ギャラリースタイル */
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 1.5em;
}

.wp-block-gallery.has-nested-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}

.wp-block-gallery figure.wp-block-image {
  margin: 0;
  position: relative;
  box-sizing: border-box;
  flex-grow: 1;
}

.wp-block-gallery figure.wp-block-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* is-cropped: 画像をクロップして揃える */
.wp-block-gallery.is-cropped figure.wp-block-image {
  align-self: inherit;
}

.wp-block-gallery.is-cropped figure.wp-block-image > a,
.wp-block-gallery.is-cropped figure.wp-block-image > img {
  display: block;
  width: 100%;
  height: 100%;
  flex: 1;
  object-fit: cover;
}

/* ========================================
   カラム数バリエーション
   ======================================== */

/* デフォルト（3カラム） */
.wp-block-gallery.columns-default figure.wp-block-image {
  width: calc((100% - 3em) / 3);
}

/* 1カラム */
.wp-block-gallery.columns-1 figure.wp-block-image {
  width: 100%;
}

/* 2カラム */
.wp-block-gallery.columns-2 figure.wp-block-image {
  width: calc((100% - 1.5em) / 2);
}

/* 3カラム */
.wp-block-gallery.columns-3 figure.wp-block-image {
  width: calc((100% - 3em) / 3);
}

/* 4カラム */
.wp-block-gallery.columns-4 figure.wp-block-image {
  width: calc((100% - 4.5em) / 4);
}

/* 5カラム */
.wp-block-gallery.columns-5 figure.wp-block-image {
  width: calc((100% - 6em) / 5);
}

/* 6カラム */
.wp-block-gallery.columns-6 figure.wp-block-image {
  width: calc((100% - 7.5em) / 6);
}

/* 7カラム */
.wp-block-gallery.columns-7 figure.wp-block-image {
  width: calc((100% - 9em) / 7);
}

/* 8カラム */
.wp-block-gallery.columns-8 figure.wp-block-image {
  width: calc((100% - 10.5em) / 8);
}

/* ========================================
   figcaption スタイル
   ======================================== */

.wp-block-gallery figure.wp-block-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 40px 10px 9px;
  margin-bottom: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 70%, transparent);
}

.wp-block-gallery figcaption {
  flex-grow: 1;
  flex-basis: 100%;
  text-align: center;
}

/* ========================================
   wp-block-image 単体スタイル
   ======================================== */

.wp-block-image {
  margin: 0 0 1em 0;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.wp-block-image figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
  color: #555;
  font-size: 13px;
  text-align: center;
}

/* 配置 */
.wp-block-image.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.wp-block-image.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wp-block-image.alignwide,
.wp-block-image.alignfull {
  max-width: 100vw;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* 角丸スタイル */
.wp-block-image.is-style-rounded img {
  border-radius: 9999px;
}

/* ========================================
   リンク付き画像
   ======================================== */

.wp-block-gallery figure.wp-block-image a {
  display: block;
}

.wp-block-gallery figure.wp-block-image a img {
  transition: opacity 0.2s ease;
}

.wp-block-gallery figure.wp-block-image a:hover img {
  opacity: 0.85;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

/* タブレット以下（768px以下） */
@media (max-width: 768px) {
  .wp-block-gallery {
    gap: 1em;
  }

  /* 4カラム以上は2カラムに */
  .wp-block-gallery.columns-4 figure.wp-block-image,
  .wp-block-gallery.columns-5 figure.wp-block-image,
  .wp-block-gallery.columns-6 figure.wp-block-image,
  .wp-block-gallery.columns-7 figure.wp-block-image,
  .wp-block-gallery.columns-8 figure.wp-block-image {
    width: calc((100% - 1em) / 2);
  }

  /* 3カラム・デフォルトは2カラムに */
  .wp-block-gallery.columns-default figure.wp-block-image,
  .wp-block-gallery.columns-3 figure.wp-block-image {
    width: calc((100% - 1em) / 2);
  }
}

/* スマホ（480px以下） */
@media (max-width: 480px) {
  .wp-block-gallery {
    gap: 0.75em;
  }

  /* 全て1カラムに */
  .wp-block-gallery.columns-default figure.wp-block-image,
  .wp-block-gallery.columns-2 figure.wp-block-image,
  .wp-block-gallery.columns-3 figure.wp-block-image,
  .wp-block-gallery.columns-4 figure.wp-block-image,
  .wp-block-gallery.columns-5 figure.wp-block-image,
  .wp-block-gallery.columns-6 figure.wp-block-image,
  .wp-block-gallery.columns-7 figure.wp-block-image,
  .wp-block-gallery.columns-8 figure.wp-block-image {
    width: 100%;
  }

  /* floatを解除 */
  .wp-block-image.alignleft,
  .wp-block-image.alignright {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ========================================
   Flexレイアウト関連
   ======================================== */

.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
}

.wp-block-gallery-is-layout-flex {
  display: flex;
  flex-wrap: wrap;
}

/* ========================================
   その他ユーティリティ
   ======================================== */

/* clearfix */
.wp-block-gallery::after {
  content: "";
  display: table;
  clear: both;
}

/* ========================================
   WordPress Columns Block Styles
   ======================================== */

/* 基本カラムスタイル */
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 1.75em;
  box-sizing: border-box;
}

.wp-block-columns.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
}

.wp-block-columns-is-layout-flex {
  display: flex;
  flex-wrap: wrap;
}

/* 個別カラム */
.wp-block-column {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* カラム内の最初・最後の要素のマージン調整 */
.wp-block-column > *:first-child {
  margin-top: 0;
}

.wp-block-column > *:last-child {
  margin-bottom: 0;
}

/* ========================================
   カラム幅の指定（style属性で指定される場合のfallback）
   ======================================== */

.wp-block-column[style*="flex-basis"] {
  flex-grow: 0;
}

/* ========================================
   カラム配置
   ======================================== */

/* 垂直配置 */
.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}

.wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}

.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}

/* 個別カラムの垂直配置 */
.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}

.wp-block-column.is-vertically-aligned-center {
  align-self: center;
}

.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}

/* ========================================
   スタック（縦並び）
   ======================================== */

.wp-block-columns.is-not-stacked-on-mobile {
  flex-wrap: nowrap;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

/* タブレット以下（782px以下、WPデフォルト） */
@media (max-width: 782px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    flex-wrap: wrap;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
    flex-grow: 1;
  }

  .wp-block-columns {
    gap: 1.5em;
  }
}

/* スマホ（480px以下） */
@media (max-width: 480px) {
  .wp-block-columns {
    gap: 1.25em;
  }
}

/* ========================================
   ネストしたカラム対応
   ======================================== */

.wp-block-columns .wp-block-columns {
  margin-bottom: 0;
}

/* ========================================
   カラム内の一般的なブロック調整
   ======================================== */

.wp-block-column .wp-block-image {
  margin-bottom: 1em;
}

.wp-block-column .wp-block-image:last-child {
  margin-bottom: 0;
}