*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
p,
a,
img,
ul,
li,
nav,
section,
header,
footer,
main {
  margin: 0;
  padding: 0;
  border: 0;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  a {
    transition: color 0.25s ease;
  }
  a:hover {
    color: #e1041b;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .mb0 {
    margin-bottom: 0;
  }
}
.en--artist {
  display: inline-block;
  width: 77px;
  height: 14px;
  font-size: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/nav/artist.svg") center/contain no-repeat;
  mask: url("../images/nav/artist.svg") center/contain no-repeat;
  flex-shrink: 0;
}

.en--timetable {
  display: inline-block;
  width: 118px;
  height: 14px;
  font-size: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/nav/timetable.svg") center/contain no-repeat;
  mask: url("../images/nav/timetable.svg") center/contain no-repeat;
  flex-shrink: 0;
}

.en--food {
  display: inline-block;
  width: 137px;
  height: 14px;
  font-size: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/nav/food.svg") center/contain no-repeat;
  mask: url("../images/nav/food.svg") center/contain no-repeat;
  flex-shrink: 0;
}

.en--access {
  display: inline-block;
  width: 83px;
  height: 14px;
  font-size: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/nav/access.svg") center/contain no-repeat;
  mask: url("../images/nav/access.svg") center/contain no-repeat;
  flex-shrink: 0;
}

.en--history {
  display: inline-block;
  width: 91px;
  height: 14px;
  font-size: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/nav/history.svg") center/contain no-repeat;
  mask: url("../images/nav/history.svg") center/contain no-repeat;
  flex-shrink: 0;
}

.en--sns {
  display: inline-block;
  width: 40px;
  height: 14px;
  font-size: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/nav/sns.svg") center/contain no-repeat;
  mask: url("../images/nav/sns.svg") center/contain no-repeat;
  flex-shrink: 0;
}

/*------------
Layout
--------------*/
.l-page {
  min-width: 480px;
  background: #000000;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .l-page {
    min-width: 1280px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.l-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: #e1041b;
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-left: 520px;
    margin-right: auto;
  }
  html.is-mv-compact .l-main {
    margin-left: 440px;
  }
}

.l-inner {
  width: 100%;
  padding: 0 20px;
}

/*------------
SP header
--------------*/
.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  padding: 0 16px;
  background: #e1041b;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2);
}
.sp-header__logo {
  display: block;
  width: 117px;
}
.sp-header__logo img {
  width: 100%;
  display: block;
}
.sp-header__menu {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 30px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.sp-header__menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: top 0.25s, transform 0.25s, opacity 0.2s;
}
.sp-header__menu span:nth-child(1) {
  top: 0;
}
.sp-header__menu span:nth-child(2) {
  top: 10px;
}
.sp-header__menu span:nth-child(3) {
  top: 20px;
}
.sp-header__menu[aria-expanded=true] span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.sp-header__menu[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.sp-header__menu[aria-expanded=true] span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 65px;
  }
  .l-page {
    width: 480px;
    max-width: 480px;
    padding-top: 65px;
  }
}
.sp-nav {
  display: none;
  position: fixed;
  top: 65px;
  right: 0;
  bottom: 0;
  z-index: 199;
  width: 336px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.9);
  padding: 32px 25px 24px;
}
.sp-nav.is-open {
  display: block;
}
.sp-nav > a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sp-nav .en {
  font-size: 0;
}
.sp-nav .ja {
  font-size: 12px;
  font-weight: 700;
}
.sp-nav__sns {
  margin-top: 15px;
  padding: 12px 0;
}
.sp-nav__sns-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.sp-nav__sns-icons a {
  display: block;
  width: 26px;
  height: 26px;
}
.sp-nav__sns-icons a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

body.is-nav-open,
body.is-modal-open {
  overflow: hidden;
}

/*------------
Ink pop (Splatoon fashion-ink)
--------------*/
@keyframes ink-pop {
  0% {
    opacity: 1;
    transform: scale(1.4);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  62% {
    opacity: 1;
    transform: scale(0.8);
    animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.ink-pop {
  --ink-delay: 0ms;
  overflow: visible;
}
.ink-pop > img,
.ink-pop > .sec-ttl__body {
  display: block;
  opacity: 0;
  transform: scale(1.4);
  transform-origin: center center;
}
.ink-pop.is-in > img, .ink-pop.is-in > .sec-ttl__body {
  animation: ink-pop 0.16s forwards;
  animation-delay: var(--ink-delay);
}

@media (prefers-reduced-motion: reduce) {
  .ink-pop > img,
  .ink-pop > .sec-ttl__body {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    will-change: auto;
  }
  .split-ttl__scale {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    will-change: auto;
  }
}
@keyframes split-ttl {
  0% {
    opacity: 1;
    transform: scale(1.4);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  62% {
    opacity: 1;
    transform: scale(0.8);
    animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.split-ttl {
  position: relative;
  width: 480px;
  height: 141px;
  margin: 0;
  overflow: visible;
}
.split-ttl__char {
  position: absolute;
  overflow: visible;
  pointer-events: none;
}
.split-ttl__scale {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.4);
  transform-origin: center center;
}
.split-ttl__scale img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.split-ttl.is-in .split-ttl__scale {
  animation: split-ttl 0.16s forwards;
  animation-delay: calc(var(--ink-delay, 0ms) + var(--i) * 40ms);
}

/*------------
MV (PC)
--------------*/
.mv {
  position: relative;
  overflow: visible;
  background: #1a0a0a;
}
@media screen and (min-width: 768px) {
  .mv {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 1280px;
    height: var(--mv-height, 730px);
  }
}
.mv__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(8px);
  transform: scale(1.08);
}
.mv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.mv__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.55);
  mix-blend-mode: multiply;
  z-index: 1;
}
.mv__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px 0 71px;
}
.mv__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 420px;
}
.mv__logo {
  width: 377px;
  max-width: 100%;
}
html.is-mv-compact .mv__logo {
  width: 280px;
}

.mv__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.mv__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  color: #ffffff;
}
.mv__nav > a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
  transition: color 0.25s ease;
}
.mv__nav > a .en,
.mv__nav > a .ja {
  transition: transform 0.25s ease;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .mv__nav > a:hover {
    color: #e1041b;
  }
  .mv__nav > a:hover .en,
  .mv__nav > a:hover .ja {
    transform: translateX(4px);
  }
}
.mv__nav .en {
  display: inline-block;
}
.mv__nav .ja {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
}
.mv__sns {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
.mv__sns .label {
  display: inline-block;
}
.mv__sns .line {
  width: 60px;
  height: 1px;
  background: #ffffff;
}
.mv__sns a {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0;
  background-color: #ffffff;
  transition: background-color 0.25s ease;
}
.mv__sns a img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.mv__sns a.is-x {
  -webkit-mask: url("../images/sns/x.svg") center/contain no-repeat;
  mask: url("../images/sns/x.svg") center/contain no-repeat;
}
.mv__sns a.is-ig {
  -webkit-mask: url("../images/sns/instagram.svg") center/contain no-repeat;
  mask: url("../images/sns/instagram.svg") center/contain no-repeat;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .mv__sns a:hover {
    background-color: #e1041b;
  }
}

/*------------
KV
--------------*/
.kv {
  position: relative;
  background: #e1041b;
  text-align: center;
  overflow: visible;
}
.kv__visual {
  position: relative;
  width: 480px;
  height: 529px;
}
.kv__info {
  position: relative;
  z-index: 5;
  padding: 0;
}

.mv-top-txt,
.mv-middle-txt,
.mv-bottom,
.mv-bottom-02 {
  position: absolute;
}
.mv-top-txt img,
.mv-middle-txt img,
.mv-bottom img,
.mv-bottom-02 img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
}

.mv-top-txt {
  left: 66px;
  top: 31px;
  width: 348px;
  z-index: 4;
}

.mv-middle-txt {
  left: 39px;
  top: 70px;
  width: 402px;
  z-index: 4;
}

.mv-bottom {
  left: 0;
  top: 214px;
  width: 480px;
  z-index: 2;
}

.mv-bottom-02 {
  left: 0;
  top: 322px;
  width: 480px;
  z-index: 1;
}

.mv-time {
  display: block;
  width: 480px;
  max-width: none;
  height: auto;
}

/*------------
Intro
--------------*/
.intro {
  position: relative;
  background: #e1041b;
  padding: 0;
  overflow: visible;
}
.intro__photos {
  display: block;
  width: 100%;
  height: 172px;
  position: relative;
  overflow: hidden;
}
.intro__photos.ink-pop {
  overflow: visible;
}
.intro__photos img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__photos-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  height: 172px;
  padding: 8px 0 0;
}
.intro__photos-row .pic {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid;
  flex-shrink: 0;
}
.intro__photos-row .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__photos-row .pic.s1 {
  width: 134px;
  height: 134px;
  border-color: #e85aa8;
  align-self: flex-start;
}
.intro__photos-row .pic.s2 {
  width: 112px;
  height: 112px;
  border-color: #7b5cff;
}
.intro__photos-row .pic.s3 {
  width: 94px;
  height: 94px;
  border-color: #3dcf7a;
  align-self: flex-start;
  margin-top: 20px;
}
.intro__photos-row .pic.s4 {
  width: 138px;
  height: 138px;
  border-color: #f0c14a;
  align-self: flex-start;
}
.intro__catch {
  margin: 27px 0 0;
  padding: 0 20px;
  overflow: visible;
}
.intro__catch img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.intro__catch-l1, .intro__catch-l2 {
  display: block;
  position: relative;
  overflow: visible;
}
.intro__catch-l1 .split-ttl__char, .intro__catch-l2 .split-ttl__char {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.intro__catch-l1 .split-ttl__scale img, .intro__catch-l2 .split-ttl__scale img {
  width: 100%;
  height: auto;
  max-width: none;
}
.intro__catch-l1.is-in .split-ttl__scale, .intro__catch-l2.is-in .split-ttl__scale {
  animation: split-ttl 0.16s forwards;
  animation-delay: calc(var(--ink-delay, 0ms) + var(--i) * 40ms);
}
.intro__catch-l1 {
  width: 204px;
  height: 37px;
}
.intro__catch-l2 {
  width: 409px;
  height: 37px;
  margin-top: 14px;
  margin-left: 30px;
}
.intro__badge {
  position: absolute;
  right: -0.5px;
  top: 386px;
  width: 198px;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}
.intro__badge img {
  display: block;
  width: 100%;
  height: auto;
}
.intro__text {
  padding: 24px 20px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.intro__text p + p {
  margin-top: 22px;
}
.intro .wave {
  margin-top: 22px;
  margin-bottom: -59px;
}

.wave {
  display: block;
  width: 100%;
  height: 85px;
  position: relative;
  z-index: 2;
}
.wave img {
  width: 100%;
  height: 100%;
  display: block;
}

#timetable .wave {
  margin-top: 50px;
  margin-bottom: -50px;
}

/*------------
Section common
--------------*/
.sec {
  position: relative;
  padding: 60px 0 50px;
}
.sec--black {
  background: #000000;
  color: #ffffff;
}
.sec--red {
  background: #e1041b;
  color: #ffffff;
}
.sec--white {
  background: #ffffff;
  color: #000000;
}
.sec--white .sec-ttl,
.sec--white .sec-lead {
  color: #000000;
}

#artist {
  padding: 124px 0 53px;
  overflow: visible;
  z-index: 1;
}

#timetable {
  padding: 60px 0 0;
}

#food {
  padding: 126px 0 58px;
  overflow: visible;
  z-index: 1;
}

#access {
  padding: 60px 0 38px;
}

#history {
  padding: 58px 0 34px;
}
#history .sec-lead {
  margin-bottom: 30px;
}

.sec-head {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec-head {
    min-height: auto;
  }
}
.sec-head__splatter {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.sec-head__splatter img {
  width: 100%;
  height: 100%;
  display: block;
}

#artist .sec-head__splatter {
  left: 21px;
  top: -48px;
  width: 157px;
  height: 142px;
}

#timetable .sec-head__splatter {
  left: 335px;
  top: -51px;
  width: 120px;
  height: 128px;
}

#food .sec-head__splatter {
  left: 0px;
  top: -29px;
  width: 98px;
  height: 108px;
}
@media screen and (max-width: 767px) {
  #food .sec-head__splatter {
    top: -34px;
  }
}

#access .sec-head__splatter {
  left: 272px;
  top: -34px;
  width: 148px;
  height: 121px;
}

#history .sec-head__splatter {
  left: 29px;
  top: -8px;
  width: 109px;
  height: 106px;
}
@media screen and (max-width: 767px) {
  #history .sec-head__splatter {
    top: -34px;
    left: 25px;
  }
}

.sec-ttl {
  position: relative;
  z-index: 1;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}
.sec-ttl.ink-pop {
  display: inline-block;
}
.sec-ttl__en {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.sec-ttl__ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.08em;
}

.sec-lead {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 28px;
}

/*------------
Artist
--------------*/
.artist-grid {
  display: grid;
  grid-template-columns: 200px 200px;
  justify-content: center;
  gap: 22px 20px;
}
.artist-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 10px;
}
.artist-grid--3 .artist-card {
  width: auto;
}
.artist-grid--3 .artist-card__thumb {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 1;
}
.artist-grid--3 .artist-card__name {
  font-size: 12px;
  line-height: 1.4;
}

.artist-card {
  width: 200px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .artist-card {
    width: auto;
  }
}
.artist-card__thumb {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  background: #222;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .artist-card__thumb {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    height: auto;
  }
}
.artist-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #ffffff;
  pointer-events: none;
  z-index: 1;
}
.artist-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-width: none;
}
.artist-card__thumb.is-mayj img {
  inset: auto;
  width: 200px;
  height: 300px;
  left: -1px;
  top: 1px;
}
.artist-card__thumb.is-celly img {
  inset: auto;
  width: 256px;
  height: 384px;
  left: -10px;
  top: -34px;
}
.artist-card__thumb.is-gonza img {
  inset: auto;
  width: 343px;
  height: 480px;
  left: -67px;
  top: -7px;
}
.artist-card__thumb.is-hocho img {
  inset: auto;
  width: 230px;
  height: 236px;
  left: -9px;
  top: 0;
}
.artist-card__thumb.is-dainiji img {
  inset: auto;
  width: 405px;
  height: 270px;
  left: -100px;
  top: -17px;
}
.artist-card__thumb.is-sora img {
  inset: auto;
  width: 213px;
  height: 284px;
  left: -13px;
  top: -7px;
}
.artist-card__thumb.is-globe img {
  inset: auto;
  width: 692px;
  height: 390px;
  left: -240px;
  top: -62px;
}
.artist-card__thumb.is-rin img {
  inset: auto;
  width: 279px;
  height: 279px;
  left: -16px;
  top: -2px;
}
.artist-card__thumb.is-mishienu img {
  inset: auto;
  width: 218px;
  height: 328px;
  left: 0;
  top: -37px;
}
.artist-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.artist-card__comment {
  display: inline-block;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: #f5da3f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}
span.artist-card__comment {
  cursor: default;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .artist-card__comment:hover {
    opacity: 0.8;
  }
}

.artist-other {
  margin: 50px 0 15px;
  text-align: center;
}
.artist-other img {
  display: block;
  width: 137px;
  height: auto;
  margin: 0 auto;
}

.artist-note {
  margin-top: 28px;
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
}

/*------------
Timetable
--------------*/
.soon-box {
  width: 100%;
  max-width: 440px;
  margin: 20px auto 0;
  background: #9f0003;
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  letter-spacing: 0.04em;
}

.tt {
  position: relative;
  height: 650px;
  margin-top: 30px;
}
.tt__hours {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.tt__hours li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  height: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
}
.tt__hours li::after {
  content: "";
  height: 1px;
  background: #ff6d7d;
}
.tt__events {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.tt__item {
  position: absolute;
  left: 54px;
  width: calc(100% - 54px);
  background: #ffffff;
  display: flex;
  align-items: stretch;
  gap: 23px;
  padding: 0 10px;
  overflow: hidden;
}
.tt__item.is-open {
  top: 12px;
  height: 65px;
  justify-content: center;
}
.tt__item.is-dainiji {
  top: 82px;
  height: 36px;
}
.tt__item.is-chiko {
  top: 120px;
  height: 28px;
}
.tt__item.is-mishienu {
  top: 151px;
  height: 32px;
}
.tt__item.is-globe {
  top: 185px;
  height: 33px;
}
.tt__item.is-bchan {
  top: 292px;
  height: 26px;
}
.tt__item.is-sora {
  top: 362px;
  height: 38px;
}
.tt__item.is-celly-gonza {
  top: 402px;
  height: 38px;
}
.tt__item.is-mayj {
  top: 442px;
  height: 38px;
}
.tt__item.is-rin {
  top: 482px;
  height: 38px;
}
.tt__item.is-gow {
  top: 522px;
  height: 26px;
}
.tt__item.is-bondance {
  top: 550px;
  height: 49px;
}
.tt__item.is-close {
  top: 601px;
  height: 36px;
  justify-content: center;
}
.tt__time {
  flex-shrink: 0;
  width: 71px;
  display: flex;
  align-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  line-height: 12px;
  padding-top: 3px;
  color: #950002;
  white-space: nowrap;
}
.tt__name {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  color: #000000;
  white-space: nowrap;
}
.tt__name img {
  width: 78px;
  height: 16px;
  display: block;
}

/*------------
Food
--------------*/
.food-sub {
  text-align: center;
  padding-top: 19px;
  margin-bottom: 16px;
}
.food-sub__en img {
  display: block;
  width: 70%;
  height: auto;
  margin: 0 auto;
}
.food-sub__ja {
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}

.pairing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 50px;
}
.pairing__item {
  overflow: hidden;
  background: #111;
}
.pairing__item img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-ttl {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 16px;
}

.shop-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px 13px;
  margin-bottom: 24px;
}
.shop-photos__item {
  text-align: center;
}
.shop-photos__img {
  width: 100%;
  height: 85px;
  overflow: hidden;
  background: #222;
  margin-bottom: 8px;
}
.shop-photos__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-photos__img.is-split {
  display: flex;
}
.shop-photos__img.is-split img {
  width: 50%;
}
.shop-photos__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 32px;
}

.shop-andmore {
  text-align: center;
  margin: 0 0 8px;
}
.shop-andmore img {
  display: inline-block;
  width: 160px;
  height: auto;
}

.shop-soon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 13px;
}
.shop-soon__item {
  height: 85px;
  background: #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  padding-top: 8px;
}

/*------------
Access
--------------*/
.access-map {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #ddd;
}
.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .access-map {
    height: 260px;
  }
}

.access-place {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.access-addr {
  font-size: 14px;
  margin: 8px 0 23px;
}

.access-way {
  padding: 16px 0;
}
.access-addr + .access-way {
  padding-top: 0;
}
.access-way + .access-way {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}
.access-way:has(+ .notice) {
  margin-bottom: 18px;
}
.access-way__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.access-way__ttl img {
  width: 28px;
  height: 28px;
}
.access-way__txt {
  font-size: 14px;
  line-height: 22px;
}

.notice {
  background: #c00318;
  padding: 20px 20px 25px;
}
.notice__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 3px;
}
.notice__en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
}
.notice__ja {
  font-size: 12px;
  font-weight: 700;
}
.notice__list {
  font-size: 12px;
  line-height: 1.55;
}

/*------------
History
--------------*/
.history-grid {
  display: grid;
  grid-template-columns: 198fr 106fr 156fr;
  grid-template-rows: 198fr 167fr 147fr;
  gap: 10px;
  width: calc(100% + 40px);
  margin: 0 -20px;
  aspect-ratio: 480/532;
}
.history-grid__item {
  overflow: hidden;
  background: #ccc;
}
.history-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.history-grid__item.is-a {
  grid-column: 1/span 2;
  grid-row: 1;
}
.history-grid__item.is-b {
  grid-column: 3;
  grid-row: 1;
}
.history-grid__item.is-c {
  grid-column: 1;
  grid-row: 2;
}
.history-grid__item.is-d {
  grid-column: 2/span 2;
  grid-row: 2/span 2;
}
.history-grid__item.is-e {
  grid-column: 1;
  grid-row: 3;
}

/*------------
Footer
--------------*/
.footer {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px 50px;
}
.footer__row {
  margin: 0 0 30px;
}
.footer__row dt {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
}
.footer__row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.footer__row dd a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.footer__organizer {
  display: block;
  width: 337px;
  height: 53px;
  margin: 0 auto;
  text-decoration: none;
}
.footer__organizer img {
  display: block;
  width: 337px;
  height: 53px;
}
.footer__sponsors {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer__row dd .footer__sponsors a {
  display: block;
  text-decoration: none;
}
.footer__sponsors img {
  display: block;
  width: 126px;
  height: 51px;
  background: #ffffff;
}
.footer__note {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 28px;
}
.footer__sns a {
  display: block;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  transition: background-color 0.25s ease;
}
.footer__sns a img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.footer__sns a.is-x {
  -webkit-mask: url("../images/sns/x.svg") center/contain no-repeat;
  mask: url("../images/sns/x.svg") center/contain no-repeat;
}
.footer__sns a.is-ig {
  -webkit-mask: url("../images/sns/instagram.svg") center/contain no-repeat;
  mask: url("../images/sns/instagram.svg") center/contain no-repeat;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .footer__sns a:hover {
    background-color: #e1041b;
  }
  .footer__row dd a:hover {
    color: #e1041b;
  }
  .footer__row dd a.footer__organizer:hover,
  .footer__row dd .footer__sponsors a:hover {
    color: inherit;
    opacity: 0.8;
  }
}
.footer__logo {
  width: 200px;
  margin: 0 auto 32px;
}
.footer__logo a {
  display: block;
}
.footer__logo img {
  width: 100%;
  display: block;
}
.footer__copy {
  font-size: 11px;
  letter-spacing: 0.02em;
}

/*------------
Video modal
--------------*/
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.video-modal[hidden] {
  display: none;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}
.video-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}
.video-modal__player::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
.video-modal.is-playing .video-modal__player::before {
  display: none;
}
.video-modal__video {
  display: block;
  width: 100%;
  height: 100%;
}
.video-modal__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f5da3f;
  transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.video-modal__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #000000;
  transform: translate(-50%, -50%);
}
.video-modal.is-playing .video-modal__play {
  display: none;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .video-modal__play:hover {
    opacity: 0.88;
  }
}
.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.video-modal__close::before,
.video-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 20px;
  height: 2px;
  background: #ffffff;
}
.video-modal__close::before {
  transform: rotate(45deg);
}
.video-modal__close::after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .video-modal__close:hover {
    opacity: 0.7;
  }
}

/*------------
iPad: body copy -3px (titles unchanged)
--------------*/
html.is-mv-compact body {
  font-size: 11px;
}
html.is-mv-compact .intro__text {
  font-size: 11px;
  line-height: 19px;
}
html.is-mv-compact .sec-lead {
  font-size: 11px;
  line-height: 19px;
}
html.is-mv-compact .artist-note {
  font-size: 9px;
}
html.is-mv-compact .artist-card__comment {
  font-size: 11px;
}
html.is-mv-compact .tt__time {
  font-size: 11px;
}
html.is-mv-compact .tt__name {
  font-size: 11px;
}
html.is-mv-compact .shop-photos__name {
  font-size: 11px;
}
html.is-mv-compact .access-addr {
  font-size: 11px;
}
html.is-mv-compact .access-way__txt {
  font-size: 11px;
  line-height: 19px;
}
html.is-mv-compact .notice__list {
  font-size: 9px;
}
html.is-mv-compact .footer__row dt,
html.is-mv-compact .footer__row dd {
  font-size: 11px;
}
html.is-mv-compact .footer__copy,
html.is-mv-compact .footer__note {
  font-size: 9px;
}

/*------------
SP
--------------*/
@media screen and (max-width: 767px) {
  .kv {
    padding-top: 0;
  }
  .artist-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px 12px;
  }
  .artist-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 8px;
  }
  .soon-box {
    font-size: 32px;
    min-height: 110px;
  }
}