:root {
  --ink: #050b2f;
  --teal: #079da0;
  --teal-dark: #00868c;
  --pink: #eb2a78;
  --yellow: #f3b018;
  --blue: #1163df;
  --paper: #f2f2f2;
  --line: rgba(5, 11, 47, 0.88);
  --design-max: 1920px;
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-en: "Oswald", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

.page-shell {
  position: relative;
  width: min(100%, var(--design-max));
  margin: 0 auto;
  overflow-x: visible;
  overflow-y: visible;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(18px, 1.55vw, 30px) clamp(22px, 3.4vw, 66px) 0;
  isolation: isolate;
  background-image:
    url("./assets/hero-corner-left.webp"),
    url("./assets/hero-corner-right.webp"),
    url("./assets/wgdj_splash_bg.webp");
  background-position:
    left top,
    right top,
    center;
  background-size:
    clamp(190px, 18vw, 298px) auto,
    clamp(174px, 16vw, 266px) auto,
    100% 100%;
  background-repeat: no-repeat;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 2.2vw, 36px);
  align-items: center;
  min-height: clamp(58px, 4vw, 76px);
  padding: clamp(10px, 0.9vw, 16px) clamp(22px, 3.4vw, 66px);
  backdrop-filter: blur(10px);
  transition: min-height 240ms ease, padding 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.brand {
  position: absolute;
  top: clamp(8px, 0.85vw, 16px);
  left: clamp(22px, 3.4vw, 66px);
  z-index: 2;
  width: clamp(96px, 7vw, 132px);
  transition: width 240ms ease, top 240ms ease;
}

.brand img {
  transition: transform 240ms ease;
}

.is-header-compact .site-header {
  min-height: clamp(70px, 4.2vw, 80px);
  padding-top: clamp(8px, 0.75vw, 14px);
  padding-bottom: clamp(8px, 0.75vw, 14px);
  background: rgba(242, 242, 242, 0.96);
  box-shadow: 0 8px 24px rgba(5, 11, 47, 0.08);
}

.is-header-compact .brand {
  top: clamp(7px, 0.65vw, 11px);
  width: clamp(70px, 4.7vw, 92px);
}

.global-nav {
  display: flex;
  gap: clamp(24px, 3.1vw, 60px);
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(132px, 10vw, 180px);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(15px, 1.12vw, 21px);
  line-height: 1;
  letter-spacing: 0;
}

.global-nav a {
  padding: 12px 0;
}

.instagram-link {
  display: inline-flex;
  gap: 0.45em;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.instagram-link img {
  display: block;
  width: 1.35em;
  height: 1.35em;
}

.nav-instagram-link {
  padding-block: 0;
  line-height: 1;
}

.nav-instagram-link img {
  width: clamp(24px, 1.7vw, 32px);
  height: clamp(24px, 1.7vw, 32px);
}

.menu-button {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #fff;
  border: 2px solid var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.is-menu-open .menu-button span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.is-menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .menu-button span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-stage {
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 6;
  width: min(920px, 62vw);
  padding-left: clamp(140px, 13.5vw, 220px);
}

h1 {
  margin: 0;
}

.hero-title {
  width: clamp(430px, 37vw, 710px);
  filter: drop-shadow(0 8px 0 rgba(255, 255, 255, 0.82));
}

.hero-title img {
  width: 100%;
}

.lead {
  max-width: 700px;
  margin: clamp(12px, 1vw, 20px) 0 clamp(20px, 1.35vw, 26px);
  font-family: var(--font-ja);
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
}

.lead strong {
  color: var(--pink);
  font-size: 1.18em;
}

.location-mark {
  width: 37%;
  filter: drop-shadow(8px 8px 0 rgba(235, 42, 120, 0.95));
  position: absolute;
  bottom: 15%;
  left: 0;
}

.hero-visual {
  position: absolute;
  width: 50%;
  z-index: 7;
  top: 0;
  right: 0;
  min-height: clamp(500px, 43vw, 760px);
}

.mascot {
  position: absolute;
  left: 8%;
  top: 0%;
  width: 42%;
  filter: drop-shadow(0 10px 0 #fff) drop-shadow(0 17px 0 rgba(5, 11, 47, 0.16));
  z-index: 1;
}

.slogan {
  position: absolute;
  right: 30%;
  top: 0;
  width: 25%;
  filter: drop-shadow(0 7px 0 #fff);
}

.official-badge {
  position: absolute;
  right: 15%;
  bottom: 19%;
  width: 35%;
  transform: rotate(-5deg);
  filter: drop-shadow(0 12px 12px rgba(5, 11, 47, 0.16));
}

.city,
.paint {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.city-left {
  left: clamp(-90px, -3vw, -10px);
  bottom: clamp(56px, 5.5vw, 100px);
  width: clamp(220px, 21vw, 410px);
  opacity: 0.95;
}

.city-right {
  right: clamp(-170px, -7vw, -70px);
  bottom: clamp(70px, 6vw, 112px);
  width: clamp(210px, 17vw, 330px);
  opacity: 0.86;
  width: 24%;
  bottom: 17%;
}

.paint {
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.paint-teal {
  left: -7vw;
  top: clamp(108px, 11vw, 210px);
  width: clamp(260px, 25vw, 480px);
  transform: rotate(11deg);
}

.paint-hero {
  right: clamp(-40px, 2vw, 36px);
  top: clamp(60px, 5vw, 96px);
  width: 110%;
  opacity: 0.96;
  z-index: 0;
  max-width: none;
}

.event-panel {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr 1.55fr auto;
  gap: 0;
  align-items: stretch;
  width: min(100%, 1740px);
  /* margin: clamp(-56px, -3.2vw, -26px) auto 0; */
  background: rgba(255, 255, 255, 0.86);
  border: 3px solid var(--line);
  box-shadow: 12px 12px 0 rgba(5, 11, 47, 0.12);
  backdrop-filter: blur(2px);
}

.event-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: clamp(10px, 0.8vw, 16px);
  row-gap: clamp(8px, 0.65vw, 12px);
  align-items: center;
  min-height: clamp(100px, 7vw, 134px);
  padding: clamp(16px, 1.45vw, 28px);
  border-right: 2px solid rgba(5, 11, 47, 0.36);
}

.event-item>div {
  display: contents;
}

.event-item>div>p {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(15px, 1.75vw, 24px);
  line-height: 1;
}

.event-item strong {
  grid-column: 1 / -1;
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(25px, 2.45vw, 47px);
  line-height: 1;
}

.date-line {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.45em;
  align-items: end;
  flex-wrap: wrap;
}

.date-line strong,
.date-line small {
  grid-column: auto;
}

.date-item .date-line strong {
  font-size: clamp(44px, 4vw, 78px);
}

.event-item small {
  grid-column: 1 / -1;
  display: inline-block;
  margin-left: 0;
  color: var(--teal-dark);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.05;
  vertical-align: middle;
}

.price-item strong {
  display: flex;
  gap: 0.55em;
  align-items: center;
  margin-top: 0;
  font-size: clamp(20px, 1.55vw, 30px);
}

.venue-item strong {
  font-size: clamp(21px, 1.8vw, 34px);
}

.price-item .advance-price {
  font-size: clamp(26px, 2.25vw, 43px);
}

.price-item .door-price {
  font-size: clamp(20px, 1.55vw, 30px);
}

.price-item {
  position: relative;
  padding-right: clamp(176px, 13vw, 250px);
}

.price-item strong span {
  min-width: 3.2em;
  padding: 0.28em 0.38em;
  color: #fff;
  font-family: var(--font-ja);
  font-size: 0.48em;
  line-height: 1;
  text-align: center;
  background: var(--pink);
}

.price-item strong+strong span {
  background: var(--teal);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.event-icon {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 2.4vw, 46px);
  font-size: clamp(32px, 2.4vw, 46px);
  color: var(--pink);
}

.event-item:nth-child(2) .event-icon {
  color: var(--teal);
}

.event-item:nth-child(3) .event-icon {
  color: #7447cc;
}

.event-item:nth-child(4) .event-icon {
  color: var(--yellow);
}

.price-benefits {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 50%;
  min-height: clamp(88px, 6.2vw, 120px);
  padding: clamp(16px, 1.15vw, 22px) clamp(12px, 0.9vw, 18px) clamp(16px, 1.15vw, 22px) clamp(22px, 1.85vw, 34px);
  color: var(--ink);
  background-image: url("./assets/ticket-benefit-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: translateY(-50%) rotate(-2deg);
}

.price-benefits p {
  margin: 0;
  font-family: var(--font-ja);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.price-benefits img {
  width: 30%;
  position: absolute;
  top: -20%;
  right: -12%;
  object-fit: contain;
  filter: drop-shadow(4px 5px 0 rgba(5, 11, 47, 0.18));
}

.price-benefits-cta {
  position: absolute;
  right: clamp(16px, 1.2vw, 24px);
  bottom: clamp(8px, 0.7vw, 14px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(132px, 9vw, 174px);
  min-height: clamp(34px, 2.35vw, 44px);
  padding: 0.64em 1.15em;
  color: #fff;
  font-family: var(--font-ja);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 900;
  line-height: 1;
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--ink);
}

.next-cards {
  position: relative;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.2vw, 24px);
  width: min(100%, 1740px);
  margin: clamp(24px, 2vw, 38px) auto 0;
}

.info-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(120px, 10vw, 192px);
  gap: clamp(14px, 1.1vw, 22px);
  align-items: center;
  min-height: clamp(150px, 11vw, 210px);
  padding: clamp(18px, 1.45vw, 28px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid var(--teal);
}

.info-card:nth-child(2) {
  border-color: var(--pink);
  position: relative;
}

.info-card:nth-child(3) {
  border-color: var(--teal);
}

.info-card h2 {
  margin: 0 0 0.55em;
  color: var(--teal);
  font-family: var(--font-ja);
  font-size: clamp(18px, 1.32vw, 25px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.info-card:nth-child(2) h2 {
  color: var(--pink);
}

.info-card p {
  margin: 0 0 1em;
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

.info-card a {
  display: inline-flex;
  min-width: 132px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1.3em;
  color: #fff;
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.84vw, 16px);
  font-weight: 900;
  line-height: 1;
  background: var(--pink);
}

.info-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid rgba(5, 11, 47, 0.22);
}

.info-card .card-mascot {
  position: absolute;
  top: 50%;
  right: 0;
  width: 40%;
  transform: translateY(-50%);
  object-fit: contain;
  border: 0;
}

@media (min-width: 721px) {
  .info-card {
    align-items: stretch;
  }

  .info-card .card-text {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: start;
    min-height: 100%;
  }

  .info-card a {
    align-self: end;
    justify-self: start;
  }
}

.ambassador-card {
  grid-template-columns: minmax(0, 1.1fr) clamp(180px, 13vw, 250px);
}

.ambassador-card img {
  aspect-ratio: 1.18;
  object-position: center;
}

@media (max-width: 1360px) {
  .site-header {
    gap: 22px;
  }

  .global-nav {
    gap: 26px;
    padding-left: 138px;
    font-size: 18px;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 38vw);
  }

  .hero-copy {
    width: 100%;
    padding-left: 86px;
  }

  h1 {
    width: 100%;
  }

  .hero-title {
    max-width: 560px;
  }

  .event-panel {
    grid-template-columns: 0.85fr 0.90fr 0.90fr 1.78fr;
  }

  .price-item {
    grid-column: auto;
    padding-right: clamp(150px, 12vw, 190px);
  }

  .price-benefits {
    min-height: clamp(78px, 6vw, 104px);
    padding: clamp(14px, 1vw, 18px) clamp(10px, 0.8vw, 15px) clamp(14px, 1vw, 18px) clamp(28px, 2.4vw, 36px);
  }

  .price-benefits-cta {
    min-width: clamp(118px, 8.4vw, 148px);
  }

}

@media (max-width: 1024px) {
  .page-shell {
    padding-top: 112px;
  }

  .hero {
    padding-inline: 24px;
    min-height: auto;
    padding: 5%;
    background-size:
      clamp(150px, 28vw, 250px) auto,
      clamp(132px, 24vw, 220px) auto,
      auto 30%;
  }

  .global-nav {
    display: none;
  }

  .is-menu-open .global-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: clamp(18px, 4vw, 32px);
    left: clamp(18px, 4vw, 32px);
    z-index: 110;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 18px;
    overflow: hidden;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid var(--ink);
    box-shadow: 7px 7px 0 rgba(5, 11, 47, 0.16);
  }

  .is-menu-open .global-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid rgba(5, 11, 47, 0.14);
  }

  .is-menu-open .global-nav .nav-instagram-link {
    justify-content: flex-start;
  }

  .is-menu-open .global-nav a:last-child {
    border-bottom: 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 50%;
    width: min(100%, var(--design-max));
    background: rgba(242, 242, 242, 0.96);
    box-shadow: 0 8px 24px rgba(5, 11, 47, 0.08);
    transform: translateX(-50%);
    grid-template-columns: 1fr auto;
  }

  .brand {
    position: relative;
    top: auto;
    left: auto;
  }

  .menu-button {
    display: block;
  }

  .hero-stage {
    position: relative;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 16px;
  }

  .hero-copy {
    width: 100%;
    padding-left: 0;
    z-index: 1;
  }

  h1 {
    width: min(100%, 720px);
  }

  .hero-title {
    width: 45%;
    max-width: none;
  }

  .lead {
    font-size: clamp(18px, 2.35vw, 24px);
  }

  .hero-visual {
    min-height: clamp(420px, 62vw, 620px);
    margin-top: -40px;
    z-index: 0;
    right: 3%;
  }

  .paint-hero {
    width: 140%;
    top: 10%;
    right: 0%;
  }

  .mascot {
    top: 2%;
    right: 32%;
    width: 55%;
    left: auto;
  }

  .location-mark {
    bottom: 20%;
    left: -7%;
  }

  .slogan {
    right: 16px;
    width: 34%;
  }

  .official-badge {
    right: 3%;
    width: 34%;
    bottom: 20%;
  }

  .city-left {
    left: -90px;
    width: 300px;
  }

  .city-right {
    width: 36%;
    z-index: -1;
    display: none;
  }

  .event-panel {
    margin-top: 0;
  }

  .event-item {
    min-height: 116px;
  }


  .event-panel {
    grid-template-columns: 0.75fr 0.80fr 0.80fr 2fr;
  }

  .next-cards {
    /* grid-template-columns: 1fr; */
  }

  .info-card {
    display: flex;
    flex-direction: column;
  }

  .info-card .card-text {
    order: 2;
  }

  .info-card .card-mascot {
    position: static;
    width: 100%;
    transform: none;
  }

  .info-card img {
    max-height: 130px;
    object-fit: contain;
    border: none;
  }

  .date-item .date-line strong {
    font-size: 36px;
  }

  .price-benefits {
    top: 40%;
  }

  .price-benefits-cta {
    bottom: 10%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding-top: 108px;
  }

  .hero {
    padding: 14px 14px 0;
  }

  .site-header {
    min-height: 70px;
    padding: 8px 14px;
  }

  .is-header-compact .site-header {
    min-height: 70px;
    padding: 8px 14px;
  }

  .brand {
    width: 92px;
  }

  .is-header-compact .brand {
    width: 70px;
  }

  .hero-stage {
    padding-top: 6px;
  }

  .lead {
    margin-top: 8%;
    font-size: 15px;
    line-height: 1.55;
  }

  .lead br {
    display: none;
  }

  .location-mark {
    width: 66%;
    bottom: 16%;
    left: -41%;
  }

  .hero-visual {
    min-height: 365px;
    margin-top: -12px;
  }

  .mascot {
    right: 112px;
    bottom: 0;
    width: 205px;
  }

  .slogan {
    top: 18px;
    right: -2px;
    width: 126px;
  }

  .official-badge {
    right: 6px;
    bottom: 20px;
    width: 128px;
  }

  .city-left {
    left: -18%;
    bottom: 16%;
    width: 40%;
  }

  .paint-teal {
    left: -90px;
    top: 120px;
    width: 40%;
  }

  .paint-hero {
    right: 0px;
    top: 80px;
    width: 120%;
  }

  .event-panel {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(132px, auto);
    border-width: 2px;
    box-shadow: 7px 7px 0 rgba(5, 11, 47, 0.12);
  }

  .price-item {
    padding-right: clamp(170px, 38vw, 270px);
  }

  .price-benefits {
    width: 100%;
  }

  .price-benefits-cta {
    right: clamp(14px, 4vw, 26px);
  }

  .event-item {
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    row-gap: 9px;
    align-content: start;
    min-height: 132px;
    padding: 14px 12px;
    border-right: 1px solid rgba(5, 11, 47, 0.22);
    border-bottom: 1px solid rgba(5, 11, 47, 0.22);
  }

  .event-item:nth-child(2),
  .event-item:nth-child(4) {
    border-right: 0;
  }

  .event-item:nth-child(3),
  .event-item:nth-child(4) {
    border-bottom: 0;
  }

  .event-item>div>p {
    font-size: 16px;
  }

  .event-item strong {
    font-size: 22px;
  }

  .date-item .date-line strong {
    font-size: 34px;
  }

  .venue-item strong {
    font-size: 19px;
  }

  .event-item small {
    margin-left: 0;
    font-size: 12px;
  }

  .price-item strong {
    font-size: 18px;
  }

  .price-item .advance-price {
    font-size: 26px;
  }

  .price-item .door-price {
    font-size: 18px;
  }

  .event-icon {
    width: 38px;
    font-size: 32px;
  }

  .next-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .info-card,
  .ambassador-card {
    display: grid;
    min-height: 150px;
    padding: 14px;
  }

  .info-card .card-text {
    order: unset;
  }

  .info-card h2 {
    font-size: 16px;
  }

  .info-card p {
    font-size: 12px;
  }

  .info-card a {
    min-width: 108px;
    min-height: 36px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: auto;
  }

  .mascot {
    right: 23%;
    top: 5%;
    width: 59%;
    filter: drop-shadow(0 5px 0 #fff) drop-shadow(0 3px 0 rgba(5, 11, 47, 0.16));
  }

  .slogan {
    width: 24%;
    right: 6%;
    top: 13%;
  }

  .official-badge {
    width: 42%;
    bottom: 28%;
    right: -10%;
    z-index: 1;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-title {
    width: 58%;
  }

  .event-panel {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(128px, auto);
  }

  .price-item {
    padding-right: 12px;
  }

  .price-benefits {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
    transform: none;
    display: none;
  }

  .price-benefits-cta {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
  }

  .event-item {
    min-height: 128px;
    padding: 12px 10px;
  }

  .event-item:nth-child(1),
  .event-item:nth-child(3) {
    border-right: 1px solid rgba(5, 11, 47, 0.22);
  }

  .event-item:nth-child(2),
  .event-item:nth-child(4) {
    border-right: 0;
  }

  .event-item:nth-child(1),
  .event-item:nth-child(2) {
    border-bottom: 1px solid rgba(5, 11, 47, 0.22);
  }

  .event-item:nth-child(3),
  .event-item:nth-child(4) {
    border-bottom: 0;
  }

  .info-card,
  .ambassador-card {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .info-card img {
    max-height: 150px;
  }
}

.floating-ticket-cta {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 120;
  display: block;
  width: clamp(180px, 18vw, 250px);
  aspect-ratio: 1;
  background-image: url("./assets/floating-cta-base.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 12px 14px rgba(5, 11, 47, 0.2));
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.is-footer-visible .floating-ticket-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
}

.about-section {
  position: relative;
  padding: clamp(72px, 6.8vw, 130px) clamp(22px, 5.4vw, 104px) clamp(78px, 6.4vw, 122px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(7, 157, 160, 0.08), transparent 26%),
    var(--paper);
}

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

.about-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(44px, 6vw, 114px);
  align-items: center;
}

.about-title {
  width: min(100%, 820px);
  margin: 0 0 clamp(28px, 2.4vw, 46px);
}

.about-title img {
  width: 100%;
}

.about-lead {
  max-width: 790px;
}

.about-lead p {
  margin: 0 0 1.08em;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(17px, 1.28vw, 25px);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0;
}

.about-lead strong {
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 1.15em;
  letter-spacing: 0;
}

.about-visual {
  position: relative;
  min-height: clamp(360px, 33vw, 560px);
}

.about-visual img {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(100%, 520px);
  transform: translateY(-50%);
  filter: drop-shadow(0 16px 18px rgba(5, 11, 47, 0.08));
}

.about-ambassador {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 3.2vw, 58px);
  align-items: center;
  margin-top: clamp(34px, 3.2vw, 62px);
  padding: clamp(18px, 1.8vw, 34px) clamp(22px, 2.8vw, 54px);
  background: rgba(255, 255, 255, 0.66);
  border: 2px solid rgba(7, 157, 160, 0.68);
  border-radius: 8px;
}

.about-ambassador-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-ambassador-copy {
  min-width: 0;
}

.about-ambassador-heading {
  position: relative;
  display: flex;
  gap: clamp(12px, 1.4vw, 24px);
  align-items: flex-start;
}

.about-ambassador-crown {
  position: absolute;
  top: clamp(20px, 2vw, 36px);
  left: 50%;
  width: clamp(30px, 3vw, 54px);
}

.about-ambassador-label {
  width: clamp(170px, 17vw, 300px);
}

.about-ambassador-name {
  width: min(100%, clamp(280px, 34vw, 600px));
}

.about-ambassador-role {
  margin: clamp(10px, 0.8vw, 14px) 0 clamp(14px, 1.2vw, 22px);
  color: var(--teal-dark);
  font-family: var(--font-en);
  font-size: clamp(17px, 1.35vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.about-ambassador-emma {
  color: var(--pink);
  font-weight: 700;
}

.about-ambassador-copy p:not(.about-ambassador-role) {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.85;
}

.about-ambassador-copy a {
  display: inline-grid;
  grid-template-columns: auto 1.1em;
  gap: 0.45em;
  align-items: center;
  margin-top: clamp(16px, 1.4vw, 26px);
  padding: 0.68em 1.1em;
  color: var(--teal-dark);
  font-family: var(--font-ja);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  line-height: 1;
  border: 1.5px solid currentColor;
  border-radius: 6px;
}

.about-ambassador-copy a .material-symbols-outlined {
  font-size: 1.25em;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 58px);
  margin-top: clamp(54px, 5vw, 92px);
}

.about-feature {
  display: grid;
  grid-template-columns: clamp(72px, 6.6vw, 116px) minmax(0, 1fr);
  gap: clamp(18px, 1.8vw, 34px);
  align-items: center;
  padding-right: clamp(18px, 2.4vw, 46px);
  border-right: 1px solid rgba(5, 11, 47, 0.24);
}

.about-feature:last-child {
  border-right: 0;
  padding-right: 0;
}

.about-feature img {
  width: 100%;
  max-height: 104px;
  object-fit: contain;
}

.about-feature h3 {
  margin: 0 0 0.45em;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(17px, 1.2vw, 23px);
  font-weight: 700;
  line-height: 1.35;
}

.about-feature p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 400;
  line-height: 1.72;
}

.about-japan-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.45fr);
  gap: clamp(18px, 2vw, 48px);
  align-items: center;
  margin-top: clamp(54px, 4.8vw, 92px);
  padding: clamp(26px, 2.3vw, 44px) clamp(32px, 4vw, 78px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border: 2px solid var(--teal);
  border-radius: 8px;
}

.about-japan-heading {
  display: flex;
  gap: clamp(18px, 1.8vw, 34px);
  align-items: center;
}

.about-japan-heading img {
  width: clamp(58px, 5vw, 92px);
  flex: 0 0 auto;
}

.about-japan-card h3 {
  margin: 0;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: clamp(28px, 2.45vw, 47px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.about-japan-card p {
  grid-column: 1;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(14px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.82;
}

.about-toast {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  width: min(100%, 520px);
  padding: clamp(26px, 2.2vw, 42px) clamp(28px, 2.8vw, 54px) clamp(36px, 3vw, 58px);
  justify-self: end;
  color: #fff;
  isolation: isolate;
  background-image: url("./assets/about/about-toast-bg-light.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: rotate(-2deg);
}

.about-toast::before {
  content: none;
}

.about-toast::after {
  content: none;
}

.about-toast p,
.about-toast strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.32;
  text-align: center;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.3);
  font-weight: 900;
}

.about-toast p {
  font-size: clamp(16px, 1.25vw, 23px);
}

.about-toast strong {
  margin-top: 0.25em;
  color: #fff;
  font-size: clamp(22px, 2vw, 38px);
}

.about-toast span:nth-of-type(1) {
  color: #129e9f;
}

.about-toast span:nth-of-type(2) {
  color: #dd457b;
}

.about-toast span:nth-of-type(3) {
  color: #d9b635;
}

@media (max-width: 1024px) {
  .about-main {
    position: relative;
    grid-template-columns: 1fr;
  }

  .about-title {
    width: 70%;
    margin: 0 auto clamp(28px, 2.4vw, 46px);
  }

  .about-visual {
    position: absolute;
    top: 0;
    right: 0;
    min-height: auto;
  }

  .about-visual img {
    position: static;
    top: 0;
    width: 30%;
    margin-left: auto;
    transform: none;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 10%;
  }

  .about-ambassador {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  }

  .about-feature {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 11, 47, 0.2);
  }

  .about-feature:last-child {
    border-bottom: 0;
  }

  .about-japan-card {
    grid-template-columns: 1fr;
    margin-top: 10%;
  }

  .about-toast {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 420px);
    justify-self: start;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-title {
    margin: 0 auto clamp(28px, 2.4vw, 46px) 0;
  }

  .about-ambassador {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
    padding: 18px;
  }

  .about-ambassador-photo {
    width: min(100%, 340px);
    justify-self: center;
  }

  .about-ambassador-heading {
    gap: 10px;
  }

  .about-ambassador-crown {
    width: 34px;
    top: 15%;
    left: auto;
    right: 0;
  }

  .about-ambassador-label {
    width: 42%;
  }

  .about-ambassador-name {
    width: 72%;
  }

  .about-ambassador-role {
    font-size: 16px;
  }

  .about-ambassador-copy p:not(.about-ambassador-role) {
    font-size: 13px;
    line-height: 1.78;
  }

  .about-lead p {
    font-size: 14px;
  }

  .about-feature p {
    font-size: 14px;
  }
}


.event-section {
  position: relative;
  padding: clamp(70px, 6.2vw, 118px) clamp(22px, 3.8vw, 72px) clamp(70px, 5.8vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 6%, rgba(7, 157, 160, 0.16), transparent 15%),
    radial-gradient(circle at 98% 3%, rgba(235, 42, 120, 0.16), transparent 14%),
    radial-gradient(circle at 98% 76%, rgba(7, 157, 160, 0.12), transparent 14%),
    var(--paper);
}

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

.event-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 120px);
  align-items: center;
}

.event-heading h2 {
  margin: 0;
}

.event-heading h2 img {
  width: min(100%, 500px);
}

.event-heading-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.event-catch {
  margin: 0 0 clamp(24px, 2vw, 38px);
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(24px, 2vw, 39px);
  font-weight: 900;
  line-height: 1.55;
}

.event-catch strong {
  color: var(--teal);
  font-size: 1.18em;
}

.event-heading-copy p:not(.event-catch) {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 400;
  line-height: 2.05;
}

.event-ghost {
  position: absolute;
  right: 2%;
  top: 18%;
  width: clamp(90px, 10vw, 165px);
  opacity: 0.52;
}

.event-detail-cards {
  display: grid;
  grid-template-columns: 0.9fr 0.92fr 0.92fr 1.58fr;
  gap: clamp(18px, 1.5vw, 28px);
  margin-top: clamp(56px, 4.8vw, 92px);
}

.event-detail-card {
  position: relative;
  min-height: clamp(250px, 19vw, 360px);
  padding: clamp(26px, 2.1vw, 40px);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(5, 11, 47, 0.2);
  border-radius: 12px;
}

.detail-icon {
  display: inline-block;
  margin-right: 0.28em;
  font-size: clamp(48px, 4.2vw, 80px);
  vertical-align: middle;
}

.detail-icon.teal {
  color: var(--teal);
}

.detail-icon.pink {
  color: var(--pink);
}

.event-detail-card h3 {
  display: inline-block;
  margin: 0;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}

.event-detail-card:nth-child(2) h3,
.ticket-detail-card h3 {
  color: var(--pink);
}

.detail-main {
  margin: clamp(30px, 3vw, 58px) 0 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(44px, 4.8vw, 92px);
  font-weight: 700;
  line-height: 1;
}

.detail-sub {
  margin: 0.28em 0 0;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: clamp(25px, 2vw, 39px);
  font-weight: 700;
}

.event-date-main {}

.event-date-sub {}

.event-time-main {}

.event-time-note {}

.event-venue-main {
  font-size: clamp(28px, 2.3vw, 44px);
  line-height: 1.25;
}

.event-venue-address {}

.event-ticket-advance {}

.event-ticket-door {}

.event-ticket-note {}

.detail-note {
  margin: clamp(16px, 1.5vw, 28px) 0 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.65;
}

.ticket-detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 1.4vw, 26px);
  align-items: start;
}

.ticket-detail-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(8px, 0.7vw, 13px);
  align-items: center;
}

.ticket-detail-copy .detail-icon {
  margin-right: 0;
}

.ticket-detail-copy h3 {
  align-self: center;
}

.event-ticket-prices {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1vw, 20px);
  align-items: baseline;
  margin-top: clamp(18px, 1.5vw, 28px);
}

.ticket-price {
  display: flex;
  gap: 0.4em;
  align-items: center;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(22px, 1.65vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.ticket-price+.ticket-price {
  margin-top: 0;
}

.ticket-price span {
  min-width: 3.4em;
  padding: 0.34em 0.5em;
  color: #fff;
  font-family: var(--font-ja);
  font-size: 0.42em;
  line-height: 1;
  text-align: center;
  background: var(--pink);
  border-radius: 4px;
}

.ticket-price.door span {
  background: var(--teal);
}

.ticket-price small {
  font-family: var(--font-ja);
  font-size: 0.42em;
  font-weight: 900;
}

.event-ticket-advance {
  font-size: clamp(28px, 2.25vw, 43px);
}

.event-ticket-door {
  font-size: clamp(20px, 1.45vw, 28px);
}

.event-ticket-note {
  grid-column: 1 / -1;
  font-size: clamp(12px, 0.86vw, 16px);
  line-height: 1.48;
}

.ticket-bag {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: clamp(8px, 0.7vw, 12px);
  place-items: center;
  justify-self: center;
}

.ticket-bag::before {
  grid-row: 1;
  grid-column: 1;
  width: min(100%, 184px);
  aspect-ratio: 1;
  content: "";
  border: 1.5px solid var(--teal);
  border-radius: 50%;
}

.ticket-bag p {
  margin: 0;
  color: var(--pink);
  font-family: var(--font-ja);
  font-size: clamp(12px, 0.9vw, 17px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.ticket-bag small,
.ticket-cta-bag small {
  margin: -0.35em 0 0;
  color: rgba(5, 11, 47, 0.72);
  font-family: var(--font-ja);
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.ticket-bag img {
  grid-row: 1;
  grid-column: 1;
  width: min(68%, 136px);
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(5, 11, 47, 0.12));
}

.event-highlights-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(18px, 2vw, 42px);
  align-items: center;
  margin-top: clamp(42px, 3.8vw, 72px);
  color: var(--teal);
}

.event-highlights-title span {
  height: 2px;
  background: var(--teal);
}

.event-highlights-title h3 {
  margin: 0;
  font-family: var(--font-ja);
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
}

.event-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 48px);
  margin-top: clamp(26px, 2.4vw, 46px);
}

.event-highlight {
  display: grid;
  grid-template-columns: clamp(82px, 7vw, 122px) minmax(0, 1fr);
  gap: clamp(14px, 1.4vw, 26px);
  align-items: start;
  padding-right: clamp(18px, 2.2vw, 42px);
  border-right: 1px solid rgba(5, 11, 47, 0.22);
}

.event-highlight:last-child {
  padding-right: 0;
  border-right: 0;
}

.event-highlight img {
  width: 100%;
  max-height: 116px;
  object-fit: contain;
}

.event-highlight h4 {
  margin: 0 0 clamp(18px, 1.4vw, 28px);
  color: var(--teal);
  font-family: var(--font-ja);
  font-size: clamp(17px, 1.3vw, 25px);
  font-weight: 900;
  line-height: 1.55;
}

.event-highlight:nth-child(2) h4,
.event-highlight:nth-child(4) h4 {
  color: var(--pink);
}

.event-highlight p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 400;
  line-height: 1.85;
}

.event-notes {
  margin: clamp(34px, 3vw, 58px) 0 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1180px) {

  .event-heading,
  .event-detail-cards,
  .event-highlights {
    grid-template-columns: 1fr;
  }

  .event-heading h2 {
    width: 40%;
    margin: 0 auto;
  }

  .event-heading h2 img {
    width: 100%;
  }

  .ticket-detail-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .event-section {
    padding: 56px 14px 0px;
  }

  .event-heading,
  .event-detail-cards,
  .event-highlights {
    grid-template-columns: 1fr;
  }

  .event-detail-cards {
    margin-top: 10%;
  }

  .event-heading {
    gap: 5%;
  }

  .event-catch {
    font-size: 16px;
    margin-bottom: 5%;
  }

  .event-heading h2 img {
    width: min(100%, 360px);
  }

  .event-ghost {
    display: none;
  }

  .event-detail-card {
    min-height: auto;
    padding: 5%;
  }

  .detail-icon {
    font-size: 16px;
  }

  .event-detail-card h3 {
    font-size: 16px;
  }

  .detail-main {
    margin-top: 5%;
    font-size: 28px;
  }

  .detail-note {
    margin-top: 5%;
  }

  .detail-sub {
    font-size: 18px;
  }

  .ticket-detail-card {
    grid-template-columns: 1fr;
  }

  .ticket-bag {
    width: min(100%, 220px);
    justify-self: center;
  }

  .event-highlights-title {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .event-highlight {
    grid-template-columns: 84px 1fr;
    align-items: center;
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 11, 47, 0.18);
  }

  .event-highlight h4 {
    margin-bottom: 0;
  }

  .event-highlight p {
    grid-column: 1 / -1;
  }

  .event-highlight:last-child {
    border-bottom: 0;
  }
}

.timetable-section {
  position: relative;
  padding: clamp(70px, 5.8vw, 112px) clamp(18px, 3.8vw, 72px) clamp(74px, 6vw, 118px);
  overflow: hidden;
  background: var(--paper);
}

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

.timetable-heading {
  display: grid;
  grid-template-columns: auto minmax(0, auto) auto;
  gap: clamp(22px, 3.5vw, 62px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.timetable-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(50px, 4.8vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
}

.timetable-heading p {
  margin: clamp(12px, 1vw, 18px) 0 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(18px, 1.35vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.timetable-heading-icon {
  font-size: clamp(44px, 4vw, 76px);
  line-height: 1;
}

.timetable-heading-icon.cocktail {
  color: var(--pink);
}

.timetable-heading-icon.tonic {
  color: var(--teal-dark);
}

.timetable-wrap {
  margin-top: clamp(30px, 3vw, 58px);
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(5, 11, 47, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 38px rgba(5, 11, 47, 0.06);
  -webkit-overflow-scrolling: touch;
}

.timetable {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--ink);
  font-family: var(--font-ja);
}

.timetable th,
.timetable td {
  padding: clamp(18px, 1.45vw, 32px);
  vertical-align: middle;
  border-right: 1px solid rgba(7, 157, 160, 0.25);
  border-bottom: 1px solid rgba(7, 157, 160, 0.22);
}

.timetable th:last-child,
.timetable td:last-child {
  border-right: 0;
}

.timetable tbody tr:last-child th,
.timetable tbody tr:last-child td {
  border-bottom: 0;
}

.timetable thead th {
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(17px, 1.2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  background: rgba(255, 255, 255, 0.8);
}

.timetable thead th:first-child {
  width: 11%;
  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(24px, 1.8vw, 34px);
  letter-spacing: 0.08em;
  background: var(--ink);
}

.timetable thead th:nth-child(2),
.timetable thead th:nth-child(3) {
  color: var(--pink);
  background: linear-gradient(180deg, rgba(235, 42, 120, 0.17), rgba(235, 42, 120, 0.08));
}

.timetable thead th:nth-child(2) {
  width: 16%;
}

.timetable thead th:nth-child(3) {
  width: 24%;
}

.timetable thead th:nth-child(4),
.timetable thead th:nth-child(5) {
  color: var(--teal-dark);
  background-color: #e0f9fa;
}

.timetable thead th:nth-child(4) {
  width: 22%;
}

.timetable thead th:nth-child(5) {
  width: 27%;
}

.timetable thead .material-symbols-outlined {
  margin-right: 0.35em;
  font-size: 1.5em;
  line-height: 0;
  vertical-align: middle;
}

.timetable tbody th {
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(28px, 2.45vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}

.cocktail-time,
.gin-time {
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.cocktail-time {
  color: var(--pink);
  font-size: clamp(24px, 1.9vw, 40px);
  text-align: center;
}

.gin-time {
  color: var(--teal-dark);
  font-size: clamp(22px, 1.78vw, 36px);
  text-align: center;
}

.gin-time p {
  margin: 0;
  padding: 0.45em 0;
  border-bottom: 1px dashed rgba(7, 157, 160, 0.42);
}

.gin-time p:first-child {
  padding-top: 0;
}

.gin-time p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timetable ul {
  display: grid;
  gap: 0.72em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timetable li {
  position: relative;
  padding-left: 1.15em;
  font-size: clamp(17px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.timetable li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.36em;
  height: 0.36em;
  content: "";
  background: var(--pink);
  border-radius: 50%;
}

.gin-list li::before {
  background: var(--teal-dark);
}

.timetable .gin-list {
  gap: 0;
}

.timetable .gin-list li {
  padding-top: 0.55em;
  padding-bottom: 0.55em;
  border-bottom: 1px dashed rgba(7, 157, 160, 0.42);
}

.timetable .gin-list li:first-child {
  padding-top: 0;
}

.timetable .gin-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timetable-closed {
  color: var(--teal-dark);
  font-family: var(--font-en);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.04em;
}

.timetable-note {
  margin: clamp(24px, 2vw, 36px) 0 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.08em;
}

@media (max-width: 1280px) {
  .timetable tbody th {
    font-size: clamp(26px, 2.55vw, 38px);
  }

  .cocktail-time {
    font-size: clamp(22px, 2vw, 32px);
  }

  .gin-time {
    font-size: clamp(20px, 1.85vw, 30px);
  }
}

@media (max-width: 900px) {
  .timetable-section {
    padding: 58px 14px 74px;
  }

  .timetable-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timetable-heading-icon {
    display: none;
  }

  .timetable-heading h2 {
    font-size: clamp(40px, 11vw, 64px);
  }

  .timetable-heading p {
    font-size: 15px;
  }

  .timetable {
    min-width: 980px;
  }

  .timetable th,
  .timetable td {
    padding: 20px 18px;
  }
}

@media (max-width: 767px) {
  .timetable-section {
    padding: 54px 12px 66px;
  }

  .timetable-heading h2 {
    font-size: clamp(32px, 9vw, 44px);
    letter-spacing: 0.12em;
  }

  .timetable-heading p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
  }

  .timetable-wrap {
    margin-top: 22px;
    border-radius: 7px;
  }

  .timetable {
    min-width: 720px;
  }

  .timetable th,
  .timetable td {
    padding: 13px 10px;
  }

  .timetable thead th {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
  }

  .timetable thead th:first-child {
    font-size: 16px;
  }

  .timetable thead th:nth-child(2) {
    width: 20%;
  }

  .timetable thead th:nth-child(3) {
    width: 26%;
  }

  .timetable thead .material-symbols-outlined {
    display: block;
    margin: 0 auto 4px;
    font-size: 24px;
    line-height: 1;
  }

  .timetable tbody th {
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  .cocktail-time {
    font-size: 18px;
  }

  .gin-time {
    font-size: 18px;
  }

  .timetable li {
    padding-left: 1em;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
  }

  .timetable li::before {
    top: 0.64em;
    width: 0.4em;
    height: 0.4em;
  }

  .timetable .gin-list li {
    padding-top: 0.45em;
    padding-bottom: 0.45em;
  }

  .timetable-closed {
    font-size: 13px;
  }

  .timetable-note {
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.03em;
  }
}

.bartenders-section {
  position: relative;
  padding: clamp(72px, 6.2vw, 118px) clamp(22px, 3.8vw, 72px) clamp(74px, 6vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(7, 157, 160, 0.18), transparent 15%),
    radial-gradient(circle at 100% 7%, rgba(235, 42, 120, 0.15), transparent 15%),
    radial-gradient(circle at 0% 88%, rgba(7, 157, 160, 0.12), transparent 14%),
    radial-gradient(circle at 100% 86%, rgba(235, 42, 120, 0.12), transparent 15%),
    var(--paper);
}

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

.bartenders-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.68fr) minmax(0, 1fr);
  gap: clamp(36px, 4.6vw, 88px);
  align-items: center;
}

.bartenders-heading h2 {
  margin: 0;
}

.bartenders-heading h2 img {
  width: min(100%, 760px);
  filter: drop-shadow(0 8px 0 rgba(255, 255, 255, 0.72));
}

.bartenders-heading-copy {
  position: relative;
  z-index: 2;
  max-width: 890px;
}

.bartenders-catch {
  margin: 0 0 clamp(18px, 1.5vw, 28px);
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(24px, 1.9vw, 38px);
  font-weight: 900;
  line-height: 1.55;
}

.bartenders-catch strong {
  color: var(--teal);
  font-size: 1.18em;
}

.bartenders-heading-copy p:not(.bartenders-catch) {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.9;
}

.bartenders-heading-copy .bartenders-note {
  margin-top: clamp(10px, 0.9vw, 16px);
}

.bartenders-ghost {
  position: absolute;
  right: 3%;
  top: 0;
  width: clamp(86px, 9.5vw, 164px);
  opacity: 0.46;
}

.bartenders-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.5vw, 28px);
  margin-top: clamp(46px, 4.2vw, 82px);
}

.bartender-card {
  display: grid;
  grid-template-columns: clamp(142px, 10.5vw, 205px) minmax(0, 1fr);
  gap: clamp(16px, 1.25vw, 24px);
  min-height: clamp(220px, 15vw, 292px);
  padding: clamp(12px, 0.9vw, 16px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(5, 11, 47, 0.16);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(5, 11, 47, 0.08);
}

.bartender-photo {
  width: 100%;
  height: 100%;
  min-height: 205px;
  object-fit: cover;
  border-radius: 8px;
}

.bartender-info {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  min-width: 0;
  padding: clamp(4px, 0.4vw, 8px) clamp(2px, 0.25vw, 6px) clamp(2px, 0.25vw, 6px) 0;
}

.bartender-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(12px, 0.9vw, 18px);
  align-items: start;
}

.bartender-number {
  margin: -0.08em 0 0;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: clamp(36px, 3vw, 58px);
  font-weight: 700;
  line-height: 0.95;
}

.bartender-card h3 {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 700;
  line-height: 1.28;
}

.bartender-bar-name,
.bartender-person-name {
  display: block;
}

.bartender-badge {
  justify-self: start;
  margin: clamp(8px, 0.55vw, 12px) 0 clamp(12px, 0.8vw, 16px) calc(clamp(48px, 3vw, 62px) + clamp(12px, 0.9vw, 18px));
  padding: 0.22em 0.9em 0.28em;
  color: #fff;
  font-family: var(--font-ja);
  font-size: clamp(11px, 0.75vw, 14px);
  font-weight: 900;
  line-height: 1;
  background: var(--teal);
  border-radius: 999px;
}

.bartender-gins {
  display: grid;
  gap: clamp(4px, 0.32vw, 7px);
  /* margin: 0; */
  padding: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(14px, 0.88vw, 18px);
  font-weight: 500;
  line-height: 1.24;
  list-style: none;
  counter-reset: gin;
}

.bartender-gins li {
  display: grid;
  grid-template-columns: 1.45em minmax(0, 1fr);
  gap: 0.55em;
  align-items: start;
  counter-increment: gin;
}

.bartender-gins li::before {
  display: grid;
  width: 1.45em;
  height: 1.45em;
  place-items: center;
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.86em;
  line-height: 1;
  content: counter(gin);
  background: var(--teal);
  border-radius: 50%;
}

.bartender-gin-name {
  overflow-wrap: anywhere;
}

.bartender-link {
  appearance: none;
  display: inline-grid;
  grid-template-columns: auto 1.2em;
  gap: 0.55em;
  align-items: center;
  justify-self: end;
  min-width: min(100%, 170px);
  margin-top: clamp(14px, 1vw, 20px);
  padding: 0.56em 0.92em;
  color: var(--teal-dark);
  font-family: var(--font-ja);
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border: 1.5px solid currentColor;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.bartender-link .material-symbols-outlined {
  font-size: 1.35em;
  line-height: 0;
}

@media (max-width: 1320px) {
  .bartenders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {

  .bartenders-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bartenders-heading h2 {
    width: 70%;
    margin: 0 auto;
  }

  .bartenders-heading h2 img {
    width: min(100%, 620px);
  }

  .bartenders-ghost {
    width: 25%;
    right: -13%;
    top: 0;
  }

  .bartenders-catch {
    font-size: 16px;
  }

  .bartender-bar-name,
  .bartender-person-name {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .bartenders-section {
    padding: 56px 14px 76px;
  }

  .bartenders-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bartender-card {
    grid-template-columns: minmax(108px, 34%) minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 10px;
  }

  .bartender-photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    align-self: start;
  }

  .bartender-info {
    grid-template-rows: auto auto auto auto;
    padding: 2px 0 0;
  }

  .bartender-top {
    gap: 10px;
  }

  .bartender-number {
    font-size: 32px;
  }

  .bartender-card h3 {
    font-size: 14px;
  }

  .bartender-badge {
    margin-left: 0;
    font-size: 12px;
  }

  .bartender-gins {
    font-size: 14px;
  }

  .bartender-link {
    justify-self: stretch;
    min-width: 0;
    padding: 0.55em 0.7em;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .bartender-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bartender-photo {
    width: min(100%, 260px);
    height: auto;
    aspect-ratio: 4 / 5;
    justify-self: center;
    align-self: start;
  }

  .bartender-info {
    padding: 0;
  }
}

.mc-section {
  margin-top: clamp(58px, 5vw, 98px);
}

.mc-label {
  display: grid;
  grid-template-columns: minmax(48px, 92px) auto minmax(48px, 92px);
  gap: clamp(18px, 2.7vw, 46px);
  align-items: center;
  justify-content: center;
  color: #0b6174;
  font-family: var(--font-en);
  font-size: clamp(30px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.45em;
  text-align: center;
}

.mc-label span {
  height: 2px;
  background: currentColor;
}

.mc-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(0, 1fr);
  margin-top: clamp(28px, 3vw, 54px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(5, 11, 47, 0.08);
}

.mc-photo {
  width: 100%;
  height: 100%;
  min-height: clamp(540px, 54vw, 920px);
  object-fit: cover;
  object-position: center top;
  background: #dce9ff;
}

.mc-content {
  display: grid;
  align-content: center;
  padding: clamp(42px, 5vw, 88px);
  color: var(--ink);
  font-family: var(--font-ja);
}

.mc-content h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(74px, 7.7vw, 152px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.mc-content h2::after {
  display: block;
  width: clamp(90px, 8vw, 160px);
  height: 4px;
  margin-top: clamp(18px, 1.6vw, 30px);
  content: "";
  background: #9a742b;
}

.mc-lead {
  margin: clamp(28px, 2.4vw, 44px) 0 0;
  color: #9a742b;
  font-size: clamp(26px, 2.3vw, 46px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.mc-copy {
  max-width: 980px;
  margin: clamp(22px, 1.9vw, 34px) 0 0;
  font-size: clamp(16px, 1.08vw, 22px);
  font-weight: 500;
  line-height: 1.9;
}

.mc-achievements {
  margin-top: clamp(32px, 3vw, 58px);
}

.mc-achievements h3 {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  gap: clamp(16px, 2vw, 36px);
  align-items: center;
  margin: 0;
  color: #0b6174;
  font-family: var(--font-en);
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.32em;
  text-align: center;
}

.mc-achievements h3 span {
  height: 1px;
  background: rgba(154, 116, 43, 0.55);
}

.mc-achievements ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(26px, 2.4vw, 44px) 0 0;
  padding: 0;
  list-style: none;
}

.mc-achievements li {
  display: grid;
  gap: 0.38em;
  justify-items: center;
  min-width: 0;
  padding: 0 clamp(14px, 1.5vw, 28px);
  font-family: var(--font-ja);
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  border-right: 1px dashed rgba(154, 116, 43, 0.36);
}

.mc-achievements li:last-child {
  border-right: 0;
}

.mc-achievements .material-symbols-outlined {
  color: #9a742b;
  font-size: clamp(42px, 3.3vw, 64px);
  line-height: 1;
}

.mc-achievements strong,
.mc-achievements small {
  display: block;
}

.mc-achievements strong {
  color: var(--ink);
  font-weight: 700;
}

.mc-achievements small {
  font-size: 0.92em;
}

.mc-instagram {
  display: inline-grid;
  grid-template-columns: auto auto 1px auto auto;
  gap: clamp(12px, 1.2vw, 24px);
  align-items: center;
  justify-self: center;
  margin-top: clamp(34px, 3vw, 56px);
  padding: 0.72em 1.8em;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1.5px solid #0b6174;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.66);
}

.mc-instagram i {
  width: 1px;
  height: 1.2em;
  background: #0b6174;
}

.mc-instagram .material-symbols-outlined {
  color: #0b6174;
  font-size: 1.45em;
}

@media (max-width: 900px) {
  .mc-label {
    grid-template-columns: minmax(32px, 64px) auto minmax(32px, 64px);
    gap: 14px;
    font-size: clamp(24px, 8vw, 38px);
    letter-spacing: 0.28em;
  }

  .mc-card {
    grid-template-columns: 1fr;
  }

  .mc-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center center;
  }

  .mc-content {
    padding: 32px 22px 34px;
  }

  .mc-content h2 {
    font-size: clamp(56px, 16vw, 90px);
  }

  .mc-lead {
    font-size: clamp(22px, 6vw, 32px);
  }

  .mc-achievements ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .mc-achievements li:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .mc-section {
    margin-top: 46px;
  }

  .mc-label {
    grid-template-columns: minmax(24px, 48px) auto minmax(24px, 48px);
    gap: 12px;
    font-size: clamp(18px, 5.4vw, 24px);
    letter-spacing: 0.18em;
  }

  .mc-card {
    border-radius: 12px;
  }

  .mc-photo {
    height: 300px;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center center;
  }

  .mc-content {
    padding: 28px 18px 30px;
  }

  .mc-content h2 {
    font-size: clamp(44px, 12vw, 58px);
    line-height: 0.95;
  }

  .mc-content h2::after {
    width: 76px;
    height: 3px;
    margin-top: 14px;
  }

  .mc-lead {
    margin-top: 22px;
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 700;
    line-height: 1.55;
  }

  .mc-copy {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
  }

  .mc-achievements {
    margin-top: 28px;
  }

  .mc-achievements h3 {
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .mc-achievements ul {
    margin-top: 22px;
    row-gap: 22px;
  }

  .mc-achievements li {
    padding: 0 10px;
    font-size: 12px;
    font-weight: 400;
  }

  .mc-achievements .material-symbols-outlined {
    font-size: 34px;
  }

  .mc-achievements strong {
    font-weight: 700;
  }

  .mc-achievements small {
    font-weight: 400;
  }

  .mc-instagram {
    margin-top: 28px;
    font-size: 13px;
    font-weight: 500;
  }
}

@media (max-width: 540px) {
  .mc-label {
    letter-spacing: 0.18em;
  }

  .mc-achievements h3 {
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 14px;
  }

  .mc-achievements h3 span {
    display: none;
  }

  .mc-instagram {
    grid-template-columns: auto auto auto;
    justify-self: stretch;
    justify-content: center;
    gap: 10px;
    padding-inline: 1em;
  }

  .mc-instagram i,
  .mc-instagram span:nth-of-type(3) {
    display: none;
  }
}

.brands-section {
  position: relative;
  padding: clamp(70px, 5.8vw, 110px) clamp(22px, 3.8vw, 72px) clamp(74px, 6vw, 118px);
  background:
    radial-gradient(circle at 2% 6%, rgba(7, 157, 160, 0.12), transparent 16%),
    radial-gradient(circle at 98% 84%, rgba(235, 42, 120, 0.12), transparent 18%),
    var(--paper);
}

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

.brands-heading {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  text-align: center;
}

.brands-heading>span,
.featured-bars-heading>span {
  height: 2px;
  background: var(--teal-dark);
}

.brands-heading h2,
.featured-bars-heading h3 {
  margin: 0;
  color: #09606a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.brands-heading p {
  margin: clamp(14px, 1vw, 20px) 0 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(17px, 1.2vw, 25px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.26em;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 24px);
  margin-top: clamp(24px, 2.2vw, 42px);
}

.brand-card {
  display: grid;
  grid-template-rows: minmax(104px, 1fr) auto auto;
  gap: clamp(10px, 0.8vw, 15px);
  min-height: clamp(230px, 17vw, 286px);
  padding: clamp(22px, 1.7vw, 32px) clamp(16px, 1.4vw, 26px) clamp(18px, 1.3vw, 24px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(5, 11, 47, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(5, 11, 47, 0.045);
}

.brand-logo-link {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.brand-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  align-self: center;
  justify-self: center;
  mix-blend-mode: multiply;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-logo-link:hover img {
  opacity: 0.82;
  transform: translateY(-3px);
}

.brand-card h3 {
  align-self: end;
  min-height: 2.7em;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.98vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0;
}

.brand-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(12px, 0.8vw, 16px);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.featured-bars-heading {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  margin-top: clamp(18px, 2vw, 36px);
  text-align: center;
}

.featured-bars-heading>span {
  background: var(--pink);
}

.featured-bars-heading h3 {
  color: var(--pink);
  font-size: clamp(38px, 3.5vw, 64px);
}

.featured-bars-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
  margin-top: clamp(16px, 1.5vw, 28px);
}

.featured-bar-card {
  display: grid;
  grid-template-rows: minmax(74px, 1fr) auto;
  gap: clamp(8px, 0.8vw, 14px);
  min-height: clamp(148px, 10.4vw, 196px);
  place-items: center;
  padding: clamp(14px, 1.1vw, 22px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(5, 11, 47, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(5, 11, 47, 0.045);
}

.featured-bar-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.featured-bar-card h4 {
  align-self: end;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(11px, 0.78vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 1320px) {
  .brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .featured-bars-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {

  .brands-heading,
  .featured-bars-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brands-heading>span,
  .featured-bars-heading>span {
    width: min(100%, 320px);
    justify-self: center;
  }

  .brands-heading p {
    letter-spacing: 0.08em;
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-bars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brands-section {
    padding: 56px 14px 76px;
  }

  .brands-heading h2 {
    font-size: 34px;
  }

  .brands-heading p {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-card {
    min-height: 198px;
    padding: 16px 10px 14px;
  }

  .brand-card h3 {
    font-size: 11px;
  }

  .brand-card p {
    font-size: 11px;
  }

  .featured-bars-heading h3 {
    font-size: 34px;
  }

  .featured-bars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .featured-bar-card {
    min-height: 142px;
    padding: 12px 10px;
  }

  .featured-bar-card h4 {
    font-size: 11px;
  }
}

.ticket-cta-section {
  position: relative;
  padding: clamp(76px, 6.2vw, 120px) clamp(22px, 3.8vw, 72px) clamp(78px, 6vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 14%, rgba(235, 42, 120, 0.13), transparent 18%),
    radial-gradient(circle at 94% 84%, rgba(7, 157, 160, 0.13), transparent 18%),
    var(--paper);
}

.ticket-cta-inner {
  width: min(100%, 1660px);
  margin: 0 auto;
  text-align: center;
}

.ticket-cta-heading {
  display: inline-grid;
  margin-bottom: clamp(28px, 2.8vw, 52px);
}

.ticket-cta-heading h2 {
  margin: 0;
}

.ticket-cta-heading h2 img {
  width: min(78vw, 440px);
  max-width: 100%;
  filter: drop-shadow(0 8px 0 rgba(255, 255, 255, 0.7));
}

.ticket-cta-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 0.9fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 2.1vw, 42px);
  align-items: stretch;
  padding: clamp(26px, 2.5vw, 48px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(5, 11, 47, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(5, 11, 47, 0.08);
}

.ticket-cta-info {
  display: grid;
  gap: clamp(16px, 1.4vw, 26px);
  text-align: left;
}

.ticket-cta-info-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(12px, 1vw, 18px);
  align-items: center;
  padding-bottom: clamp(16px, 1.3vw, 24px);
  border-bottom: 1px solid rgba(5, 11, 47, 0.16);
}

.ticket-cta-info-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ticket-cta-info-item .material-symbols-outlined {
  color: var(--teal);
  font-size: clamp(34px, 3.3vw, 64px);
}

.ticket-cta-info-item:nth-child(2) .material-symbols-outlined {
  color: var(--pink);
}

.ticket-cta-info-item p {
  margin: 0 0 0.18em;
  color: var(--teal-dark);
  font-family: var(--font-en);
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 700;
  line-height: 1;
}

.ticket-cta-info-item strong {
  display: inline-block;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(28px, 2.4vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.ticket-cta-info-item small {
  display: block;
  margin-top: 0.26em;
  color: var(--teal-dark);
  font-family: var(--font-en);
  font-size: clamp(18px, 1.3vw, 26px);
  font-weight: 700;
  line-height: 1.1;
}

.ticket-cta-price {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(22px, 2vw, 38px);
  color: var(--ink);
  border-inline: 1px solid rgba(5, 11, 47, 0.18);
}

.ticket-cta-label {
  margin: 0 0 0.65em;
  padding: 0.38em 1.1em 0.44em;
  color: #fff;
  font-family: var(--font-ja);
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 900;
  line-height: 1;
  background: var(--pink);
  border-radius: 4px;
}

.ticket-cta-main-price {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(58px, 5.3vw, 102px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.ticket-cta-price-brush {
  width: min(78%, 360px);
  margin: -0.1em 0 clamp(4px, 0.6vw, 10px);
  pointer-events: none;
}

.ticket-cta-main-price small {
  font-family: var(--font-ja);
  font-size: 0.22em;
  font-weight: 900;
}

.ticket-cta-door {
  display: flex;
  gap: 0.72em;
  align-items: center;
  margin-top: clamp(16px, 1.4vw, 26px);
}

.ticket-cta-door span {
  padding: 0.34em 0.8em 0.4em;
  color: #fff;
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 900;
  line-height: 1;
  background: var(--teal);
  border-radius: 4px;
}

.ticket-cta-door strong {
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 700;
  line-height: 1;
}

.ticket-cta-door small {
  font-family: var(--font-ja);
  font-size: 0.42em;
  font-weight: 900;
}

.ticket-cta-soldout-note {
  margin: clamp(14px, 1.2vw, 22px) 0 0;
  color: var(--pink);
  font-family: var(--font-ja);
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 500;
  line-height: 1.4;
}

.ticket-cta-benefits {
  position: relative;
  padding: clamp(24px, 2.2vw, 42px);
  isolation: isolate;
  text-align: left;
}

.ticket-cta-benefits::before {
  position: absolute;
  inset: 6% -3% 2% -8%;
  z-index: -1;
  content: "";
  background-image: url("./assets/ticket-benefit-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: rotate(-1.5deg);
}

.ticket-cta-benefit-copy {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.5em;
  justify-items: center;
  max-width: 92%;
}

.ticket-cta-benefit-copy p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(16px, 1.36vw, 27px);
  font-weight: 900;
  line-height: 1.18;
}

.ticket-cta-benefit-copy p:nth-child(2),
.ticket-cta-benefit-copy p:nth-child(4) {
  color: var(--pink);
}

.ticket-cta-benefit-copy p:nth-child(2) {
  font-size: clamp(18px, 2.2vw, 32px);
}

.ticket-cta-benefit-copy p:nth-child(4) {
  font-size: clamp(24px, 3.2vw, 38px);
}

.ticket-cta-bag {
  position: relative;
  display: grid;
  grid-template-columns: minmax(104px, 0.58fr) minmax(92px, 0.42fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(8px, 0.9vw, 14px);
  row-gap: clamp(3px, 0.35vw, 6px);
  align-items: center;
  align-self: end;
  justify-self: center;
  width: min(100%, 255px);
}

.ticket-cta-bag::before {
  grid-row: 1;
  grid-column: 1;
  justify-self: center;
  width: min(100%, 132px);
  aspect-ratio: 1;
  content: "";
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  background: #fff;
}

.ticket-cta-bag p {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  justify-self: start;
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(10px, 0.84vw, 15px);
  font-weight: 900;
  line-height: 1.32;
  text-align: left;
}

.ticket-cta-bag small {
  grid-row: 2;
  grid-column: 1;
  justify-self: center;
  width: 100%;
  margin: 0;
  text-align: center;
}

.ticket-cta-bag img {
  grid-row: 1;
  grid-column: 1;
  justify-self: center;
  align-self: center;
  width: min(62%, 82px);
  max-height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(5, 11, 47, 0.12));
}

.ticket-cta-button {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 0.58em;
  align-items: center;
  justify-content: center;
  margin-top: clamp(30px, 2.8vw, 54px);
  min-width: min(100%, 430px);
  padding: 0.9em 1.8em;
  color: #fff;
  font-family: var(--font-ja);
  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 900;
  line-height: 1;
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--teal);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ticket-cta-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 5px 5px 0 var(--teal);
}

.ticket-cta-button .material-symbols-outlined {
  font-size: 1.2em;
}

.ticket-cta-caution {
  display: grid;
  gap: 0.35em;
  width: min(100%, 920px);
  margin: clamp(22px, 2vw, 36px) auto 0;
  padding: clamp(16px, 1.8vw, 24px);
  border: 2px solid rgba(5, 11, 47, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 700;
  line-height: 1.65;
  text-align: left;
}

.ticket-cta-caution p {
  margin: 0;
}

@media (max-width: 1100px) {
  .ticket-cta-heading h2 {
    width: 55%;
    margin: 0 auto;
  }

  .ticket-cta-heading h2 img {
    width: 100%;
  }

  .ticket-cta-panel {
    grid-template-columns: 1fr 1fr;
  }

  .ticket-cta-benefits {
    grid-column: 1 / -1;
  }

  .ticket-cta-price {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .ticket-cta-section {
    padding: 5%;
  }

  .ticket-cta-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .ticket-cta-price {
    border-block: 1px solid rgba(5, 11, 47, 0.18);
    border-inline: 0;
  }

  .ticket-cta-benefits {
    width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 32px 22px;
    text-align: center;
  }

  .ticket-cta-benefit-copy {
    width: 100%;
    margin-bottom: 5%;
  }

  .ticket-cta-bag {
    width: min(100%, 220px);
  }

  .ticket-cta-benefit-copy p {
    font-size: 14px;
  }

  .ticket-cta-benefits::before {
    inset: 4% -4% 0;
  }

  .ticket-cta-button {
    min-width: 0;
    width: calc(100% - 18px);
  }

  .ticket-cta-bag p {
    font-size: clamp(14px, 1.84vw, 22px);
  }
}

.access-section {
  position: relative;
  padding: clamp(74px, 6vw, 118px) clamp(22px, 3.8vw, 72px) clamp(78px, 6vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 4%, rgba(7, 157, 160, 0.18), transparent 17%),
    radial-gradient(circle at 100% 78%, rgba(235, 42, 120, 0.16), transparent 18%),
    var(--paper);
}

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

.access-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 120px);
  align-items: center;
}

.access-title {
  width: min(100%, 520px);
  margin: 0 0 clamp(38px, 3.8vw, 72px);
}

.access-title img {
  width: 100%;
  filter: drop-shadow(0 8px 0 rgba(255, 255, 255, 0.7));
}

.access-venue {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 1.2vw, 22px);
  align-items: start;
  padding-bottom: clamp(24px, 2vw, 38px);
  border-bottom: 1px solid rgba(5, 11, 47, 0.18);
}

.access-venue>.material-symbols-outlined {
  color: var(--pink);
  font-size: clamp(36px, 3vw, 58px);
}

.access-venue h3 {
  margin: 0 0 clamp(18px, 1.4vw, 26px);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(29px, 2.1vw, 43px);
  font-weight: 700;
  line-height: 1.12;
}

.access-venue p,
.access-route p,
.access-car-note p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 400;
  line-height: 1.85;
}

.access-routes {
  display: grid;
}

.access-route {
  display: grid;
  grid-template-columns: clamp(56px, 4.6vw, 82px) minmax(0, 1fr);
  gap: clamp(18px, 1.5vw, 28px);
  align-items: center;
  padding: clamp(22px, 1.9vw, 36px) 0;
  border-bottom: 1px dashed rgba(5, 11, 47, 0.2);
}

.access-route:last-child {
  border-bottom: 0;
}

.access-route>.material-symbols-outlined {
  color: var(--teal);
  font-size: clamp(48px, 4vw, 76px);
  line-height: 1;
}

.access-route h4 {
  margin: 0 0 0.22em;
  color: var(--teal-dark);
  font-family: var(--font-ja);
  font-size: clamp(20px, 1.6vw, 31px);
  font-weight: 900;
  line-height: 1.2;
}

.access-map-card {
  position: relative;
  min-height: clamp(420px, 43vw, 760px);
  padding: clamp(18px, 1.6vw, 30px);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(5, 11, 47, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(5, 11, 47, 0.07);
}

.access-map-card iframe {
  display: block;
  width: 100%;
  height: clamp(390px, 39vw, 700px);
  border-radius: 10px;
  filter: saturate(0.82) contrast(0.96);
}

.access-car-note {
  display: grid;
  grid-template-columns: clamp(64px, 5vw, 92px) minmax(0, 1fr);
  gap: clamp(20px, 1.8vw, 34px);
  align-items: center;
  margin-top: clamp(44px, 4vw, 78px);
  padding: clamp(26px, 2.3vw, 44px) clamp(28px, 3vw, 64px);
  background: rgba(7, 157, 160, 0.08);
  border: 1px solid rgba(7, 157, 160, 0.12);
  border-radius: 8px;
}

.access-car-note>.material-symbols-outlined {
  display: grid;
  width: clamp(62px, 5vw, 90px);
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  font-size: clamp(32px, 3vw, 54px);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
}

.access-car-note h3 {
  margin: 0 0 0.18em;
  color: var(--teal-dark);
  font-family: var(--font-ja);
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 900;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .access-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .access-title {
    width: 60%;
    margin: 0 auto 28px;
  }
}

@media (max-width: 720px) {
  .access-section {
    padding: 58px 14px 78px;
  }

  .access-title {
    width: 63%;
  }

  .access-venue h3 {
    font-size: 27px;
  }

  .access-route {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .access-map-card {
    min-height: auto;
    padding: 12px;
  }

  .access-map-card iframe {
    height: 360px;
  }

  .access-car-note {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px 20px;
  }
}

.site-footer {
  position: relative;
  padding: clamp(42px, 4vw, 72px) clamp(22px, 3.8vw, 72px) max(clamp(128px, 10vw, 178px), env(safe-area-inset-bottom));
  color: var(--ink);
  background: #d9d9d9;
}

.site-footer::before {
  content: none;
}

.footer-organizer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 44px);
  align-items: start;
  width: min(100%, 1500px);
  margin: 0 auto clamp(34px, 4vw, 68px);
  padding: clamp(26px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(5, 11, 47, 0.12);
  border-radius: 8px;
}

.footer-organizer-heading {
  display: grid;
  gap: clamp(14px, 1.4vw, 22px);
  justify-items: start;
}

.footer-organizer-heading p {
  margin: 0;
  color: var(--teal);
  font-family: var(--font-ja);
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-organizer-logo {
  display: block;
  width: min(100%, clamp(210px, 18vw, 330px));
  height: auto;
}

.footer-organizer-text {
  display: grid;
  gap: 0.75em;
}

.footer-organizer-text p {
  margin: 0;
  color: rgba(5, 11, 47, 0.82);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 400;
  line-height: 1.9;
}

.footer-organizer-contact {
  padding-top: 0.2em;
  font-weight: 700;
}

.footer-organizer-contact a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

.footer-organizer-link {
  display: inline-flex;
  gap: 0.45em;
  align-items: center;
  justify-content: center;
  padding: 0.8em 1.15em;
  color: var(--teal);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.footer-organizer-link .material-symbols-outlined {
  font-size: 1.15em;
}

.site-footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: clamp(108px, 8vw, 150px) minmax(0, 1fr) auto;
  gap: clamp(22px, 2.4vw, 46px) clamp(28px, 3vw, 58px);
  align-items: center;
  width: min(100%, 1720px);
  margin: 0 auto;
}

.footer-brand img {
  width: 100%;
  filter: drop-shadow(0 6px 0 rgba(255, 255, 255, 0.35));
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 34px);
  justify-content: center;
  font-family: var(--font-en);
  font-size: clamp(14px, 1.95vw, 24px);
  font-weight: 600;
  line-height: 1;
}

.footer-nav a {
  color: var(--ink);
}

.footer-meta {
  display: grid;
  gap: 0.7em;
  justify-items: end;
  min-width: 220px;
  text-align: right;
}

.footer-meta p,
.footer-meta small {
  margin: 0;
  color: rgba(5, 11, 47, 0.72);
  font-family: var(--font-ja);
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 700;
  line-height: 1.5;
}

.footer-meta a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-underline-offset: 0.28em;
}

.footer-instagram-link {
  justify-self: end;
  color: rgba(5, 11, 47, 0.72);
  font-family: var(--font-ja);
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.footer-instagram-link img {
  width: clamp(22px, 1.5vw, 28px);
  height: clamp(22px, 1.5vw, 28px);
}

.footer-ticket-button {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  min-width: clamp(260px, 24vw, 430px);
  margin-top: 0;
  box-shadow: 6px 6px 0 var(--ink);
}

@media (max-width: 900px) {
  .footer-organizer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-organizer-heading {
    justify-items: center;
  }

  .footer-organizer-link {
    justify-self: center;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-ticket-button {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-brand {
    width: 124px;
  }

  .footer-meta {
    justify-items: center;
    text-align: center;
  }

  .footer-instagram-link {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 38px 14px 15%;
  }

  .footer-nav {
    gap: 14px 20px;
  }
}

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

.bartender-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
}

.bartender-modal[hidden] {
  display: none;
}

.bartender-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 3% 6%, rgba(7, 157, 160, 0.18), transparent 18%),
    radial-gradient(circle at 98% 88%, rgba(235, 42, 120, 0.18), transparent 20%),
    rgba(5, 11, 47, 0.74);
  backdrop-filter: blur(4px);
}

.bartender-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr);
  gap: clamp(34px, 3.2vw, 58px);
  width: min(100%, 1760px);
  max-height: min(900px, calc(100svh - 40px));
  padding: clamp(34px, 3vw, 58px);
  overflow: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(5, 11, 47, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(5, 11, 47, 0.34);
  outline: none;
}

.bartender-modal-close {
  appearance: none;
  position: absolute;
  top: clamp(14px, 1.4vw, 24px);
  right: clamp(14px, 1.4vw, 24px);
  display: grid;
  width: clamp(42px, 3.4vw, 58px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(5, 11, 47, 0.34);
  border-radius: 50%;
  cursor: pointer;
}

.bartender-modal-close .material-symbols-outlined {
  font-size: clamp(24px, 2vw, 34px);
}

.bartender-modal-side {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  gap: 0;
  min-width: 0;
  border: 1px solid rgba(5, 11, 47, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.modal-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.modal-shop-card {
  display: grid;
  gap: clamp(14px, 1vw, 20px);
  padding: clamp(20px, 1.6vw, 30px);
  background: linear-gradient(180deg, #fff, rgba(242, 242, 242, 0.66));
}

.modal-logo-wrap {
  display: grid;
  min-height: clamp(104px, 8vw, 150px);
  place-items: center;
  padding: clamp(10px, 1vw, 18px);
  background: #fff;
  border: 1px solid rgba(5, 11, 47, 0.08);
  border-radius: 8px;
}

.modal-logo {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
}

.modal-logo-text {
  margin: 0;
  color: var(--teal-dark);
  font-family: var(--font-en);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
}

.modal-shop-name {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(15px, 1.1vw, 21px);
  font-weight: 900;
  line-height: 1.45;
}

.modal-instagram-top,
.modal-instagram-button {
  align-items: center;
  color: var(--ink);
  font-family: var(--font-ja);
  font-weight: 900;
  letter-spacing: 0;
}

.modal-instagram-top[hidden],
.modal-instagram-button[hidden] {
  display: none;
}

.bartender-modal-main {
  display: grid;
  align-content: start;
  min-width: 0;
}

.modal-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 1.8vw, 34px);
  align-items: start;
  padding-right: clamp(46px, 4vw, 74px);
  padding-bottom: clamp(22px, 1.8vw, 34px);
  border-bottom: 1px solid rgba(5, 11, 47, 0.2);
}

.modal-number {
  margin: -0.04em 0 0;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: clamp(58px, 5.5vw, 100px);
  font-weight: 700;
  line-height: 0.9;
}

.modal-bar-label {
  margin: 0 0 0.16em;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(17px, 1.35vw, 27px);
  font-weight: 900;
  line-height: 1.2;
}

.modal-title-block h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(34px, 3.3vw, 64px);
  font-weight: 900;
  line-height: 1.12;
}

.modal-instagram-top {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 0.52em;
  justify-content: end;
  margin-top: clamp(28px, 2.8vw, 52px);
  font-size: clamp(13px, 1vw, 18px);
  white-space: nowrap;
}

.modal-instagram-top .material-symbols-outlined:first-child,
.modal-instagram-button .material-symbols-outlined:first-child {
  color: var(--pink);
}

.modal-info-row {
  display: grid;
  grid-template-columns: 0.88fr 0.92fr 1.34fr;
  gap: clamp(16px, 1.4vw, 26px);
  padding: clamp(24px, 2.1vw, 40px) 0;
  border-bottom: 1px solid rgba(5, 11, 47, 0.2);
}

.modal-info-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(12px, 1vw, 18px);
  align-items: start;
  min-width: 0;
  padding-right: clamp(12px, 1.4vw, 26px);
  border-right: 1px solid rgba(5, 11, 47, 0.16);
}

.modal-info-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.modal-info-card>.material-symbols-outlined {
  color: var(--teal);
  font-size: clamp(32px, 2.8vw, 54px);
}

.modal-info-card:nth-child(1)>.material-symbols-outlined {
  color: var(--pink);
}

.modal-info-card h4 {
  margin: 0 0 0.58em;
  color: var(--teal-dark);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 900;
  line-height: 1.3;
}

.modal-info-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 600;
  line-height: 1.15;
}

.modal-gin-list {
  display: grid;
  gap: 0.6em;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
  counter-reset: modal-gin;
}

.modal-gin-list li {
  display: grid;
  grid-template-columns: 1.35em minmax(0, 1fr);
  gap: 0.5em;
  align-items: start;
  overflow-wrap: anywhere;
  counter-increment: modal-gin;
}

.modal-gin-list li::before {
  display: grid;
  width: 1.35em;
  height: 1.35em;
  place-items: center;
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.85em;
  content: counter(modal-gin);
  background: var(--teal);
  border-radius: 50%;
}

.modal-store-intro {
  display: grid;
  gap: clamp(18px, 1.4vw, 28px);
  padding: clamp(24px, 2.1vw, 40px) 0 clamp(28px, 2.4vw, 46px);
}

.modal-store-intro h4 {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 0.58em;
  align-items: center;
  justify-self: start;
  margin: 0;
  color: var(--teal-dark);
  font-family: var(--font-ja);
  font-size: clamp(16px, 1.1vw, 22px);
  font-weight: 700;
  line-height: 1;
}

.modal-store-intro h4 .material-symbols-outlined {
  color: var(--teal);
  font-size: 1.65em;
}

.modal-store-text {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 400;
  line-height: 2;
}

.modal-store-toggle {
  appearance: none;
  justify-self: start;
  margin-top: -0.4em;
  padding: 0.45em 1.1em;
  color: var(--teal-dark);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 900;
  line-height: 1;
  background: #fff;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  cursor: pointer;
}

.modal-store-toggle[hidden] {
  display: none;
}

.modal-instagram-button {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 0.7em;
  justify-content: center;
  justify-self: center;
  min-width: min(100%, 340px);
  padding: 0.86em 1.3em;
  font-size: clamp(14px, 1vw, 18px);
  border: 1.5px solid rgba(5, 11, 47, 0.8);
  border-radius: 7px;
  background: #fff;
}

@media (max-width: 1100px) {
  .bartender-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 28px);
  }

  .bartender-modal-side {
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .modal-photo {
    min-height: 260px;
  }

  .modal-info-row {
    grid-template-columns: 1fr;
  }

  .modal-info-card {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 11, 47, 0.16);
  }

  .modal-info-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .bartender-modal {
    padding: 10px;
  }

  .bartender-modal-panel {
    gap: 22px;
    padding: 18px;
    border-radius: 16px;
  }

  .bartender-modal-side {
    display: block;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 200px;
    border-radius: 10px;
  }

  .modal-photo {
    display: block !important;
    width: 100% !important;
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px;
    aspect-ratio: auto !important;
    object-fit: contain;
    object-position: center;
    background: #fff;
    border-bottom: 1px solid rgba(5, 11, 47, 0.08);
  }

  .modal-shop-card {
    display: none;
  }

  .modal-logo-wrap {
    min-height: 90px;
  }

  .modal-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding-right: 42px;
  }

  .modal-instagram-top {
    grid-column: 1 / -1;
    justify-content: start;
    margin-top: 0;
  }

  .modal-info-row {
    padding: 22px 0;
  }

  .modal-store-text {
    line-height: 1.85;
  }
}

.floating-ticket-cta:hover {
  transform: translateY(-4px) rotate(-2deg);
  filter: drop-shadow(0 16px 18px rgba(5, 11, 47, 0.24));
}

.floating-ticket-cta span {
  display: block;
  width: 100%;
  position: absolute;
  top: 63%;
  left: 63%;
  color: #fff;
  font-family: var(--font-ja);
  font-size: clamp(22px, 1.35vw, 38px);
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 2px 0 rgba(5, 11, 47, 0.26);
  transform: translate(-50%, -50%);
}

@media (max-width: 720px) {
  .floating-ticket-cta {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 118px;
  }

  .floating-ticket-cta span {
    font-size: 16px;
  }
}
