:root {
  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-accent: "Albert Sans", sans-serif;

  --color-yellow: #fcca30;
  --color-cream: #fff3cf;
  --color-primary-base: #fffefa;
  --color-background: #fffffc;
  --color-black: #222523;
  --color-strong: #111111;
  --color-brown: #3c382d;
  --color-gray: #777777;
  --color-gray-light: #cecece;
  --color-gray-tint: #f5f5f5;
  --color-side-nav: #f8f8f8;
  --color-white: #ffffff;
  --color-attention: #e71a0f;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-pill: 999px;

  --bp-desktop: 1024px;
  --sp-width: 500px;
  --desktop-nav-width: 140px;
  --desktop-left-width: calc(100vw - var(--sp-width) - var(--desktop-nav-width));
  --kv-ratio: 500 / 852;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-background);
  color: var(--color-white);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-background);
}

a {
  color: inherit;
}

img {
  display: block;
}

.site-shell {
  min-height: 100svh;
  background: var(--color-background);
}

.main-column {
  position: relative;
  width: min(100%, var(--sp-width));
  margin: 0 auto;
  overflow-x: clip;
  background: var(--color-background);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 104px;
  pointer-events: none;
}

.header-logo-hitarea,
.header-menu-hitarea {
  position: absolute;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  pointer-events: auto;
}

.header-logo-hitarea {
  left: 10px;
  top: 12px;
  width: 80px;
  height: 84px;
}

.header-menu-hitarea {
  right: 26px;
  top: 32px;
  width: 82px;
  height: 40px;
  cursor: pointer;
}

.header-menu-hitarea:focus-visible,
.header-logo-hitarea:focus-visible,
.desktop-nav-logo:focus-visible,
.desktop-nav-link:focus-visible,
.desktop-social-button:focus-visible {
  outline: 2px solid var(--color-strong);
  outline-offset: 3px;
}

.header-menu-hitarea {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;
}

.header-menu-line {
  display: block;

  width: 48px;
  height: 3px;

  flex: 0 0 3px;

  background: var(--color-brown);
}

/* ========================================
KV - SP / TABLET
〜1023px
======================================== */

.kv-section {
  position: relative;

  width: 100%;
  aspect-ratio: var(--kv-ratio);

  overflow: hidden;
  background: var(--color-yellow);
}


/* SP / TABLET用KV */

.mobile-kv {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100%;
}


/* 各パーツ共通 */

.mobile-kv-bg,
.mobile-kv-main,
.mobile-kv-text,
.mobile-kv-mark {
  position: absolute;

  display: block;
  height: auto;

  pointer-events: none;
  user-select: none;
}


/* 背景 */

.mobile-kv-bg {
  inset: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;
}


/* 人物＋立体RECOFESロゴ */

.mobile-kv-main {
  z-index: 1;

  left: 50%;
  top: 7.16%;

  width: 90%;

  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
}

.mobile-kv-main.is-ready {
  opacity: 1;
}


/* RECO FES 2027 テキスト */

.mobile-kv-text {
  z-index: 2;

  left: 50%;
  top: 68.45%;

  width: 73.6%;

  transform: translateX(-50%);
}


/* 左上ブラックロゴ */

.mobile-kv-mark {
  z-index: 3;

  left: 2%;
  top: 1.41%;

  width: 16%;
}


/* PC用KVは共通では非表示 */

.desktop-center-kv {
  display: none;
}

.marquee-section {
  --marquee-duration: 24s;

  width: 100%;
  min-height: 292px;
  height: auto;
  margin-bottom: -12px;
  padding-top: 48px;
  background: var(--color-cream);
  overflow: hidden;
}

.marquee-rotation {
  width: 100%;
  overflow: visible;
}

.marquee-viewport {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: related-marquee-scroll var(--marquee-duration) linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.marquee-sequence {
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  align-items: flex-start;
  gap: 18px;
  padding-right: 18px;
}

.marquee-image {
  display: block;
  flex: 0 0 auto;
  width: 350px;
  height: 232px;
  object-fit: contain;
}

@keyframes related-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-736px, 0, 0);
  }
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ========================================
ABOUT
======================================== */

.about-section {
  position: relative;
  z-index: 1;

  width: 100%;

  padding: 90px 0 60px;

  background: var(--color-cream);
}


.about-container {
  position: relative;
  z-index: 1;

  width: 100%;

  padding: 0 24px;
}


.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 20px;

  width: 100%;
}


/* ========================================
ABOUT / HEADING
======================================== */

.about-copy {
  display: flex;
  flex-direction: column;

  width: 100%;

  margin: 0;
  padding-left: 0;

  border-left: 0;

  color: var(--color-brown);

  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;

  letter-spacing: 0;

  word-break: keep-all;
}


/* ========================================
ABOUT / BODY
======================================== */

.about-body {
  width: 100%;

  margin: 0;

  color: var(--color-brown);

  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;

  letter-spacing: -0.5px;

  word-break: normal;
  overflow-wrap: anywhere;
}


/* ========================================
ABOUT / DETAIL ROW
======================================== */

.about-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: end;

  width: 100%;
  margin-top: 10px;
  column-gap: 16px;
}

.about-detail-main {
  min-width: 0;
}

/* イベントロゴ */

.about-event-logo {
  display: block;

  width: 160px;
  height: auto;

  pointer-events: none;
  user-select: none;
}


/* ========================================
ABOUT / INFO
======================================== */

.about-info-list {
  display: flex;
  flex-direction: column;

  gap: 16px;

  margin: 20px 0 0;
  padding: 0;

  color: var(--color-brown);
}


.about-info-item {
  display: flex;
  flex-direction: column;

  gap: 2px;

  margin: 0;
}


.about-info-label,
.about-info-main,
.about-info-sub {
  margin: 0;
}


.about-info-label {
  font-family: var(--font-body);

  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}


.about-info-main {
  font-family: var(--font-body);

  font-size: 20px;
  font-weight: 700;
  line-height: 37.7px;

  white-space: nowrap;
}


.about-info-day {
  display: block;
  font-size: 13px;
  line-height: 16px;
  margin-top: 0;
}


.about-info-main-small {
  font-size: 16px;
  line-height: 22px;
}


.about-info-sub {
  font-family: var(--font-body);

  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;

  letter-spacing: 0.28px;

  white-space: nowrap;
}


/* ========================================
ABOUT / PERSON
======================================== */

.about-decoration-wrap {
  min-width: 0;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-decoration {
  position: static;

  display: block;

  width: 100%;
  max-width: 270px;
  height: auto;

  margin: 0 0 0 auto;

  object-fit: contain;
  pointer-events: none;
}

.reco-section {
  width: 100%;
  padding: 32px 24px 90px;
  background: var(--color-cream);
}

.reco-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 40px 20px;
  border-radius: 10px;
  background: var(--color-white);
}

.reco-logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 300 / 110;
  object-fit: cover;
}

.reco-description {
  width: 100%;
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26.4px;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: anywhere;
}

.reco-description p {
  margin: 0;
}

.reco-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 8px 30px;
  border-radius: var(--radius-pill);
  color: var(--color-brown);
  background: var(--color-gray-tint);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 37.7px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}

.reco-link-button:hover {
  background: var(--color-white);
}

/* =========================
   LINE UP
========================= */

.lineup-section {
  width: 100%;
  padding: 90px 0;
  background: var(--color-yellow);
}

.lineup-container {
  width: 100%;
  padding: 0 24px;
}

.lineup-title {
  margin: 0;
  color: var(--color-strong);
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 20px;
}

.artist-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--color-strong);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.artist-card-image {
  width: 100%;
  aspect-ratio: 269 / 182;
  overflow: hidden;
  background: #e5e5e5;
  transition: background-color 0.25s ease;
}

.artist-card:hover .artist-card-image {
  background: #eeeeee;
}

.artist-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card-image-placeholder {
  background: #e5e5e5;
}

.artist-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  padding: 8px 0 16px;
}

.artist-card-name {
  min-width: 0;
  margin: 0;
  color: var(--color-strong);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.artist-card-arrow {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

/* =========================
   LINE UP MODAL
========================= */

.artist-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.artist-modal.is-open {
  display: flex;
}

.artist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.artist-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(317px, 100%);
}

.artist-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 49px;
  margin-left: auto;
  padding: 0 4px 16px;

  border: 0;
  background: transparent;

  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
}

.artist-modal-card {
  display: flex;
  flex-direction: column;
  gap: 8px;

  width: 100%;
  height: 424px;

  padding: 16px 24px;

  border-radius: var(--radius-sm);
  background: var(--color-white);

  overflow: hidden;
}

.artist-modal-image {
  flex: 0 0 auto;

  width: 269px;
  max-width: 100%;
  aspect-ratio: 269 / 182;

  object-fit: cover;
}

.artist-modal-name {
  flex: 0 0 auto;

  width: 100%;
  margin: 0;

  color: var(--color-strong);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

/* 見切れる本文はここだけスクロール */
.artist-modal-description {
  flex: 1 1 auto;
  min-height: 0;

  overflow-y: auto;
  overscroll-behavior: contain;

  color: #000;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  letter-spacing: 0.28px;

  scrollbar-width: thin;
}

.artist-modal-description p {
  margin: 0 0 12px;
}

.artist-modal-description p:last-child {
  margin-bottom: 0;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .desktop-side-nav {
  transform: translateX(calc(-1 * var(--modal-scrollbar-width, 0px)));
}

body.modal-open .back-to-top {
  margin-right: var(--modal-scrollbar-width, 0px);
}

.desktop-kv-panel,
.desktop-side-nav {
  display: none;
}

/* =========================
   TICKET
========================= */

.ticket-section {
  width: 100%;
  padding: 90px 0 0px;
  background: #fff;
}

.ticket-container {
  width: 100%;
  padding: 0 24px;
}

.ticket-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ticket-icon {
  display: block;
  width: 97px;
  height: 51px;
  object-fit: contain;
}

.ticket-title {
  margin: 0;
  color: var(--color-strong);
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}


/* 黄色いチケットエリア */

.ticket-main {
  display: flex;
  flex-direction: column;
  gap: 28px;

  width: 100%;
  margin-top: 20px;
  padding: clamp(24px, 6.8vw, 34px);

  border: 2px dashed #111;
  background: var(--color-yellow);
}

.ticket-status {
  display: inline-flex;
  align-items: center;

  padding: 4px 10px;
  border-radius: 2px;

  color: #fff;

  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.52px;
  white-space: nowrap;
}

.ticket-status-open {
  background: #ef1301;
}

.ticket-status-before {
  background: #a6a2a2;
}

.ticket-block {
  width: 100%;
}

.ticket-advance-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ticket-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ticket-label {
  margin: 0;

  color: var(--color-strong);
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

.ticket-period-group {
  width: 100%;
  margin-top: 4px;
}

.ticket-period-label {
  margin: 0;

  color: var(--color-strong);
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

.ticket-period {
  margin: 0;

  color: var(--color-strong);
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 700;
  line-height: 1.435;
}


/* 料金 */

.ticket-price {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 6px 0 0;
}

.ticket-price-number {
  color: #111;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 34.8px;
}

.ticket-tax {
  color: #777;
  font-size: 13px;
  line-height: 18px;
}


/* プレイガイド */

.ticket-guide-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.ticket-advance-block .ticket-guide-list {
  margin-top: 12px;
}

.ticket-guide {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 66px;
  padding: 20px 10px;

  border-radius: 2px;

  color: #111;
  background: #fffefa;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.ticket-guide-disabled {
  background: rgba(255, 254, 250, 0.8);
  cursor: default;
  pointer-events: none;
  transition: none;
}

.ticket-guide:hover {
  background: #ffffff;
}

.ticket-guide-disabled:hover {
  color: #111;
  background: rgba(255, 254, 250, 0.8);
  opacity: 1;
  transform: none;
}

.ticket-guide-text {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ticket-guide-name {
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 26.4px;
  overflow-wrap: anywhere;
}

.ticket-guide-code {
  color: #777;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.ticket-guide-arrow {
  flex: 0 0 auto;
  margin-left: 12px;

  color: #777;
  font-size: 14px;
}

/* 注意事項 */

.ticket-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;

  margin: 20px 0 0;
  padding: 12px 0 0;

  list-style: none;
}

.ticket-notes li {
  position: relative;

  margin: 0;
  padding-left: 21px;

  color: #777;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.ticket-notes li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  color: #111;
}


/* =========================
   TICKET → GOODS DECORATION
========================= */

/* =========================
   TICKET → GOODS DECORATION
========================= */

.ticket-goods-decoration {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;

  width: 100%;
  padding-top: 20px;

  background: #fff;
}

.ticket-goods-decoration-image {
  display: block;
  height: auto;

  /* 全デバイス共通で少し下へ */
  transform: translateY(24px);

  pointer-events: none;
  user-select: none;
}

/* =========================
   GOODS
========================= */

.goods-section {
  width: 100%;
  padding: 90px 0;
  background: #fff3cf;
  position: relative;
  z-index: 1;
}

.goods-container {
  width: 100%;
  padding: 0 24px;
}

.goods-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.goods-title {
  margin: 0;
  color: var(--color-strong);
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.goods-coming-soon {
  margin: 0;

  color: var(--color-strong);

  font-family: var(--font-accent);
  font-size: 32px;
  font-weight: 500;
  line-height: 54px;
}


/* 商品一覧 */

.goods-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 40px;
}

.goods-card {
  min-width: 0;
}

.goods-card-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  aspect-ratio: 216 / 205;
  background: #e5e5e5;
}

.goods-image-icon {
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid #bbb;
}

.goods-image-text {
  margin-top: 8px;
  color: #bbb;
  font-family: var(--font-heading);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 2px;
}

.goods-card-info {
  padding: 12px 0 16px;
}

.goods-card-label {
  margin: 0;
  color: rgba(119, 119, 119, 0.6);
  font-family: var(--font-heading);
  font-size: 11px;
  line-height: 16.5px;
}

.goods-card-name {
  margin: 2px 0 0;
  color: var(--color-strong);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.goods-card-price {
  margin: 2px 0 0;
  color: var(--color-strong);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.goods-card-price span {
  font-size: 12px;
}


/* 販売情報 */

.goods-details {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #cecece;
}

.goods-detail-block+.goods-detail-block {
  margin-top: 20px;
}

.goods-detail-title,
.goods-sale-time {
  margin: 0;
  color: var(--color-strong);
  font-size: 16px;
  font-weight: 700;
  line-height: 26.4px;
}

.goods-sale-time {
  font-size: 18px;
  line-height: 30px;
}

.goods-detail-note {
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 19.5px;
}


/* 決済方法 */

.goods-payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.goods-payment-list span {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 1px 13px;

  border: 1px solid #fcca30;
  border-radius: 2px;

  background: #fff;
  color: var(--color-strong);

  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}


/* 注意事項 */

.goods-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;

  margin: 20px 0 0;
  padding: 0;

  list-style: none;
}

.goods-notes li {
  position: relative;
  margin: 0;
  padding-left: 21px;

  color: #777;
  font-size: 13px;
  line-height: 18px;
}

.goods-notes li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(17, 17, 17, 0.5);
}

/* =========================
   GALLERY
========================= */

.gallery-section {
  width: 100%;
  background: var(--color-cream);
}


/* =========================
   GALLERY HEADING
========================= */

.gallery-heading {
  position: relative;
  width: 234px;
  height: 74px;
  margin: 0 0 0 10px;
}

.gallery-heading-dot {
  position: absolute;
  top: 0;
  left: 0;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: #3c382d;
}

.gallery-heading-line {
  position: absolute;
  top: 4px;
  left: 4px;

  width: 3px;

  /* gallery-headingの下端まで伸ばす */
  height: calc(100% - 4px);

  background: #3c382d;
}

.gallery-heading-banner {
  position: absolute;
  top: 7px;
  left: 7px;

  width: 210px;
  height: 46px;
}

.gallery-heading-flag {
  position: absolute;
  inset: 0;

  display: block;
  width: 100%;
  height: 100%;
}

.gallery-heading-label {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0 16px;

  color: #3c382d;
  background: transparent;

  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;

  white-space: nowrap;
}


/* =========================
   GALLERY PHOTOS
========================= */

.gallery-marquee {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: max-content;

  animation: marquee-scroll 42s linear infinite;
  will-change: transform;
}

.gallery-group {
  display: flex;
  flex-shrink: 0;
}

.gallery-photo {
  flex-shrink: 0;
  height: 420px;
  overflow: hidden;
}

.gallery-photo--narrow {
  width: 315px;
}

.gallery-photo--wide {
  width: 560px;
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   ACCESS
========================= */

.access-section {
  width: 100%;
  padding: 90px 0;
  background: #3c382d;
  color: #fff;
}

.access-container {
  width: 100%;
  padding: 0 24px;
}

.access-title {
  margin: 0;

  color: #fff;
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.access-content {
  padding-top: 20px;
}

.access-venue {
  width: 100%;
}

.access-venue-name {
  margin: 0;

  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 37.7px;
}

.access-address {
  margin: 4px 0 0;

  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}


/* =========================
   TRANSPORT
========================= */

.access-transport {
  margin-top: 20px;
  padding-top: 21px;

  border-top: 1px solid #fff;
}

.access-subtitle {
  margin: 0;

  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 26.4px;
}

.access-route-list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin: 20px 0 0;
}

.access-route {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

.access-route dt {
  margin: 0;
  padding: 2px 8px 0;

  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.access-route dd {
  margin: 0;

  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}


/* =========================
   NOTE
========================= */

.access-note {
  margin: 20px 0 0;
  padding-top: 17px;

  border-top: 1px solid #fff;

  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}


/* =========================
   MAP
========================= */

.access-map {
  margin-top: 20px;
}

.access-map-placeholder {
  position: relative;

  width: 100%;
  aspect-ratio: 453 / 256;

  overflow: hidden;
  background: #e5e5e5;
}

.access-map-marker {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 32px;
  height: 32px;

  background: #fff;

  transform: translate(-50%, -50%);
}

.access-map-label {
  position: absolute;
  top: calc(50% + 22px);
  left: 50%;

  padding: 2px 8px;

  background: #fff;
  color: #3c382d;

  font-size: 10px;
  font-weight: 700;
  line-height: 15px;

  white-space: nowrap;

  transform: translateX(-50%);
}

.access-map-link-wrap {
  display: flex;
  justify-content: center;

  margin-top: 16px;
}

.access-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  min-height: 54px;
  padding: 8px 30px;

  border-radius: var(--radius-pill);

  color: var(--color-brown);
  background: var(--color-gray-tint);

  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 37.7px;

  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}

.access-map-link:hover {
  background: var(--color-white);
}

.access-map-embed {
  width: 100%;
  aspect-ratio: 453 / 256;
  overflow: hidden;
}

.access-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   FAQ
========================= */

.faq-section {
  width: 100%;
  padding: 90px 0;
  background: var(--color-yellow);
  color: var(--color-strong);
}

.faq-container {
  width: 100%;
  padding: 0 24px;
}

.faq-title {
  margin: 0 0 20px;

  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.faq-list {
  width: 100%;
  border-bottom: 1px solid var(--color-strong);
}

.faq-item {
  width: 100%;
  border-top: 1px solid var(--color-strong);
}


/* QUESTION */

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 20px 0;

  border: 0;
  background: transparent;
  color: inherit;

  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  flex: 1 1 auto;
  min-width: 0;
}

.faq-mark {
  flex: 0 0 20px;

  padding-top: 0;

  color: #777;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 26.4px;
}

.faq-question-text {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26.4px;
  word-break: keep-all;
  overflow-wrap: normal;
}


/* ARROW */

.faq-toggle {
  flex-shrink: 0;

  margin-left: 16px;

  font-size: 16px;
  line-height: 1;

  transition: transform 0.3s ease;
}

/* 閉じている時は下向き */
.faq-question[aria-expanded="false"] .faq-toggle {
  transform: rotate(180deg);
}

/* 開いている時は上向き */
.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(0deg);
}


/* ANSWER */

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  overflow: hidden;

  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  display: flex;
  gap: 10px;

  min-height: 0;
  overflow: hidden;

  padding: 0;
}

.faq-item.is-open .faq-answer-inner {
  padding: 0 0 20px;
}

.faq-answer-inner>p,
.faq-answer-text {
  flex: 1;
  min-width: 0;

  margin: 0;

  font-size: 16px;
  font-weight: 400;
  line-height: 26.4px;
}

.faq-answer-text p {
  margin: 0 0 20px;
}

.faq-answer-text p:last-child {
  margin-bottom: 0;
}


/* CONTACT */

.faq-contact {
  margin-top: 20px;

  font-size: 16px;
  font-weight: 700;
  line-height: 26.4px;
}

.faq-contact p {
  margin: 0;
}

/* =========================
   EVENT ARCHIVE
========================= */

.event-archive-section {
  width: 100%;
  padding: 72px 24px 80px;
  background: #282828;
  color: var(--color-white);
}

.event-archive-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.event-archive-title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

.event-archive-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 6px;
  background: #3a3a3a;
  color: var(--color-yellow);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.event-archive-button:hover {
  background: #464646;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  width: 100%;
  padding: 90px 0;

  background: #363636;
  color: #fff;
}


/* =========================
   CREDIT
========================= */

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  width: 100%;
}

.footer-credit-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  width: 100%;
}

.footer-credit-label {
  margin: 0;

  color: #fff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
}

.footer-credit-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 216px;
  height: 108px;

  background: #fff;
}

.footer-credit-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* 文化放送ロゴだけ余白を確保 */
.footer-credit-group:first-child .footer-credit-logo img {
  width: 162px;
  height: auto;
}


/* LOGISTEED */
.footer-credit-group:nth-child(2) .footer-credit-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================
   FOOTER MAIN
========================= */

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  width: 100%;
  padding: 32px 24px;
}

.footer-recofes-logo {
  display: block;

  width: 260px;
  max-width: 100%;
  height: auto;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  width: 100%;
}

.footer-joqr-logo {
  display: block;

  width: 81px;
  height: auto;
}

.footer-copyright {
  margin: 0;

  color: #fff;

  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;

  text-align: center;
  white-space: nowrap;
}

/* =========================
   BACK TO TOP
========================= */

.back-to-top {
  position: fixed;
  z-index: 20;

  /* 中央カラム右端から24px内側 */
  right: calc(var(--desktop-nav-width) + 24px);
  bottom: 24px;

  width: 100px;
  height: auto;

  margin: 0;
  padding: 0;
  border: 0;

  background: transparent;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(130%) scale(0.9);
  transform-origin: center bottom;
  transition:
    opacity 0.2s ease,
    transform 0.55s cubic-bezier(0.2, 1.45, 0.32, 1);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }

  .desktop-kv-person {
    transition: none;
  }
}

/* ========================================
MOBILE MENU
〜1023px
======================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;

  width: 100%;
  height: 100dvh;

  background: var(--color-side-nav);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


/* OPEN */

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* ========================================
INNER
======================================== */

.mobile-menu-inner {
  position: relative;

  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;

  padding: 24px;

  overflow-y: auto;
}


/* ========================================
HEADER
======================================== */

.mobile-menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  width: 100%;
}


/* ロゴ */

.mobile-menu-logo {
  display: block;

  width: 80px;
  height: auto;

  text-decoration: none;
}

.mobile-menu-logo img {
  display: block;

  width: 100%;
  height: auto;
}


/* ========================================
CLOSE
======================================== */

.mobile-menu-close {
  position: relative;

  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  margin: 0;
  padding: 0;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.mobile-menu-close span {
  position: absolute;

  top: 50%;
  left: 50%;

  display: block;

  width: 32px;
  height: 2px;

  background: var(--color-brown);

  transform-origin: center;
}

.mobile-menu-close span:first-child {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}


/* ========================================
NAVIGATION
======================================== */

.mobile-menu-nav {
  width: 100%;

  margin-top: 48px;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;

  width: 100%;

  margin: 0;
  padding: 0;

  list-style: none;
}

.mobile-menu-list li {
  width: 100%;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;

  width: 100%;

  padding: 10px 0;

  color: var(--color-brown);

  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 400;
  line-height: 1;

  text-decoration: none;
}


/* 左の短いライン */

.mobile-menu-list a::before {
  content: "";

  flex: 0 0 auto;

  width: 16px;
  height: 2px;

  margin-right: 16px;

  background: var(--color-gray-light);
}


/* ========================================
FOOTER
======================================== */

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 40px;
}


/* FOLLOW */

.mobile-menu-follow {
  margin: 0 0 12px;

  color: rgba(119, 119, 119, 0.6);

  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;

  text-transform: none;
}


/* SNS */

.mobile-menu-social {
  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 24px;
}

.mobile-menu-social-link {
  display: grid;
  place-items: center;

  width: 30px;
  height: 30px;

  text-decoration: none;
}

.mobile-menu-social-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-menu-social-x img {
  transform: translateY(2px);
}

/* LINEだけ少し大きく見せる */
.mobile-menu-social-line img {
  width: 115%;
  height: 115%;
  max-width: none;
  max-height: none;
}


/* COPYRIGHT */

.mobile-menu-copyright {
  margin: 0;

  color: rgba(119, 119, 119, 0.4);

  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.4;
}


/* ========================================
KV HAMBURGER BUTTON
======================================== */

.header-menu-hitarea {
  position: absolute;

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

  gap: 8px;

  border: 0;
  padding: 0;

  background: transparent;

  cursor: pointer;
}

.header-menu-line {
  display: block;

  width: 100%;
  height: 3px;

  background: var(--color-brown);
}


/* メニュー展開中は背面スクロール禁止 */

body.menu-open {
  overflow: hidden;
}

/* ========================================
SP / TABLET HEADER POSITION
〜1023px
======================================== */

@media (max-width: 1023px) {

  .site-header {
    position: fixed;
    top: 0;
    left: calc((100% - min(100%, var(--sp-width))) / 2);
    width: min(100%, var(--sp-width));
    height: auto;
    aspect-ratio: var(--kv-ratio);
    z-index: 10;
    transform: translateY(0);
    transition:
      transform 0.3s ease;
    will-change: transform;
  }

  .mobile-kv-mark {
    top: 1.41%;
  }

  .header-menu-hitarea {
    top: 1.41%;
    right: 5.2%;
  }

}


/* ========================================
   TABLET HEADER BUTTON POSITION
   500〜1023px
======================================== */

@media (min-width: 500px) and (max-width: 1023px) {

  .header-menu-hitarea {
    right: calc(24px - ((100vw - min(100%, var(--sp-width))) / 2));
    left: auto;
  }

}


/* ========================================
   SP
   〜499px
======================================== */

@media (max-width: 499px) {

  .about-copy {
    max-width: 100%;
    padding-left: 0;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .about-detail-row {
    grid-template-columns: minmax(0, 1fr) 190px;
    column-gap: 0;
  }

  .about-decoration-wrap {
    transform: translateX(48px);
  }

  .about-decoration {
    width: 240px;
    max-width: none;
  }

  .about-info-main,
  .about-info-sub {
    white-space: normal;
  }

  .ticket-main {
    padding-right: 14px;
    padding-left: 14px;
  }

   .header-logo-hitarea {
    left: 2%;
    top: 1.4%;
    width: 16%;
    height: 9.8%;
  }

  .header-menu-hitarea {
    width: 16.4%;
    height: 4.7%;
  }


  .ticket-goods-decoration {
    padding-top: 20px;
  }

  .ticket-goods-decoration-image {
    width: 62%;
    max-width: 290px;
  }

  .back-to-top {
    /* ここでSPの位置・サイズを調整 */
    right: 16px;
    bottom: 20px;

    width: 80px;
  }

  .header-menu-hitarea {
    top: 24px;
    right: 20px;

    width: 48px;
    height: 32px;
  }

  .header-menu-line {
    width: 52px;
    min-width: 52px;
    height: 2px;
    flex: 0 0 2px;
  }

}

/* ========================================
   SMALL
   500〜591px
======================================== */

@media (min-width: 500px) and (max-width: 591px) {

  .main-column {
    width: 100%;
    max-width: none;
  }

  .kv-section {
    width: 100%;
    aspect-ratio: var(--kv-ratio);
  }

  .ticket-goods-decoration-image {
    width: 290px;
    max-width: 58%;
  }

  .back-to-top {
    right: 20px;
    bottom: 24px;

    width: 90px;
  }

}

/* ========================================
   TABLET
   592〜1023px
======================================== */

@media (min-width: 592px) and (max-width: 1023px) {

  .main-column {
    width: 100%;
    max-width: none;
  }

  .kv-section {
    width: 100%;
    aspect-ratio: var(--kv-ratio);
  }


  /* =========================
     ABOUT
  ========================= */

  .about-section {
    padding: 48px 0 0;
  }

  .about-content {
    max-width: none;
  }

  .about-body,
  .about-info-list {
    width: 100%;
  }

  .about-detail-row {
  position: relative;
  display: block;
  width: 100%;
  min-height: 497px;
}

.about-detail-main {
  position: relative;
  z-index: 2;

  width: 46%;
  min-width: 0;
}

.about-decoration-wrap {
  position: absolute;
  z-index: 1;

  right: -24px;
  bottom: 0;

  width: 229px;
}

.about-decoration {
  position: static;

  display: block;
  width: 100%;
  height: auto;

  margin: 0;

  object-fit: contain;
  pointer-events: none;
}


  /* =========================
     TICKET
  ========================= */

  .ticket-section {
    width: 100%;
  }

  .ticket-container {
    width: 100%;
    max-width: none;

    padding-left: 24px;
    padding-right: 24px;
  }


  /* =========================
     TICKET → GOODS DECORATION
  ========================= */

  .ticket-goods-decoration-image {
    width: 58%;
    max-width: 300px;
  }

  .back-to-top {
    right: 24px;
    bottom: 24px;

    width: 100px;
  }

}

/* ========================================
   PC
   1024px〜
======================================== */

@media (min-width: 1024px) {

  :root {
    --desktop-layout-width: 100vw;

    /* Figma 1280px基準 */
    --desktop-left-width: 50vw;
    --desktop-main-width: 39.0625vw;
    --desktop-nav-width: 10.9375vw;

    /* 1280px = 1 */
    --pc-unit: calc(100vw / 1280);
  }


  /* ========================================
     BASE
  ======================================== */

  html,
  body {
    background: #fffdf3;
  }

  body {
    overflow-x: hidden;
  }


  /* ========================================
     SITE SHELL
  ======================================== */

  .site-shell {
    position: relative;

    width: 100%;
    min-height: 100vh;

    margin: 0;

    padding-left: var(--desktop-left-width);
    padding-right: var(--desktop-nav-width);

    background: var(--color-background);
  }


  /* ========================================
     LEFT KV
  ======================================== */

  .desktop-kv-panel {
    position: fixed;
    z-index: 1;

    inset: 0 auto 0 0;

    display: block;

    width: var(--desktop-left-width);
    height: 100vh;

    min-width: 0;

    background: #fffdf3;

    overflow: hidden;
  }

  .desktop-kv-art {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    transform-origin: left top;
  }

  .desktop-kv-background {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
  }

  .desktop-kv-content {
    position: absolute;
    z-index: 2;

    inset: 0;

    display: block;
  }

  .desktop-kv-visual {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 86.15%;
    max-width: calc((100vh - 180px) * 1175 / 1268);
    aspect-ratio: 1175 / 1268;

    min-height: 0;

    transform: translate(-50%, -50%);

    pointer-events: none;
    user-select: none;
  }

  .desktop-kv-logo,
  .desktop-kv-person {
    position: absolute;
    display: block;
    height: auto;

    pointer-events: none;
    user-select: none;
  }

  .desktop-kv-logo {
    z-index: 1;
    left: 12.4%;
    top: 11.9%;
    width: 79.15%;
  }

  .desktop-kv-person {
    z-index: 2;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.8s ease,
      transform 0.8s ease;
  }

  .desktop-kv-person.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .desktop-kv-person-01 {
    left: 54.3%;
    top: 0;
    width: 24.34%;
  }

  .desktop-kv-person-02 {
    left: 6.6%;
    top: 35.5%;
    width: 39.4%;
  }

  .desktop-kv-person-03 {
    left: 61.4%;
    top: 61.3%;
    width: 33.53%;
  }


  /* ========================================
     LEFT / PLAY GUIDE
  ======================================== */

  .desktop-play-guide {
    position: absolute;
    left: 50%;
    bottom: 32px;

    width: 89.795%;
    max-width: none;

    margin-top: 0;

    transform: translateX(-50%);
  }

  .desktop-play-guide-header {
    display: flex;

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

    width: 100%;

    gap: calc(24 * var(--pc-unit));
  }

  .desktop-ticket-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: calc(8 * var(--pc-unit));

    width: calc(140 * var(--pc-unit));
    flex: 0 0 calc(140 * var(--pc-unit));
  }

  .desktop-ticket-label img {
    width: calc(59.2 * var(--pc-unit));
    height: auto;
  }

  .desktop-ticket-label p {
    margin: 0;

    min-width: 100%;

    color: var(--color-black);

    font-family: var(--font-body);
    font-size: calc(14 * var(--pc-unit));
    font-weight: 700;
    line-height: 1.8857;

    white-space: nowrap;
  }

  .desktop-day-icon {
    width: calc(198.152 * var(--pc-unit));
    height: auto;

    object-fit: contain;
  }

  .desktop-play-guide-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: calc(10 * var(--pc-unit));

    width: 100%;

    margin-top: calc(9 * var(--pc-unit));
  }

  .desktop-play-guide-button {
    display: flex;

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

    min-width: 0;
    min-height: calc(58 * var(--pc-unit));

    padding: calc(10 * var(--pc-unit)) calc(12 * var(--pc-unit));
    border: 0;

    color: var(--color-strong);
    background: var(--color-cream);

    font-family: var(--font-body);
    font-size: calc(11 * var(--pc-unit));
    font-weight: 700;
    line-height: 1.45;
    text-align: center;

    text-decoration: none;
    overflow-wrap: anywhere;
    transition: background-color 0.25s ease;

    cursor: default;
  }

  .desktop-play-guide-button:hover {
    background: var(--color-white);
  }


  /* ========================================
     CENTER COLUMN
  ======================================== */

  .main-column {
    width: var(--desktop-main-width);
    margin: 0;
  }

  .kv-picture {
    display: none;
  }


  /* ========================================
     CENTER KV
  ======================================== */

  .kv-section {
    position: relative;

    width: 100%;
    aspect-ratio: 500 / 852;

    overflow: hidden;
  }

  .mobile-kv {
  display: none;
}

  .desktop-center-kv {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;
  }

  .desktop-center-kv-bg,
  .desktop-center-kv-main,
  .desktop-center-kv-text,
  .desktop-center-kv-mark {
    position: absolute;

    display: block;

    height: auto;

    user-select: none;
    pointer-events: none;
  }

  .desktop-center-kv-bg {
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
  }

  .desktop-center-kv-main {
    z-index: 1;

    left: 50%;
    top: 7.16%;

    width: 90%;

    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.2s ease;
  }

  .desktop-center-kv-main.is-ready {
    opacity: 1;
  }

  .desktop-center-kv-text {
    z-index: 2;

    left: 50%;
    top: 68.45%;

    width: 73.6%;

    transform: translateX(-50%);
  }

  /* PCではブラックロゴを非表示 */
.desktop-center-kv-mark {
  display: none;
}

  .desktop-center-kv-mark {
    z-index: 3;

    left: 2%;
    top: 1.41%;

    width: 16%;
  }


  /* ========================================
     RIGHT NAV
  ======================================== */

  .desktop-side-nav {
    position: fixed;
    z-index: 3;

    inset: 0 0 0 auto;

    display: block;

    width: var(--desktop-nav-width);
    height: 100vh;
    min-height: 100vh;

    background: var(--color-side-nav);

    overflow: hidden;
  }

  .desktop-nav-primary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: calc(40 * var(--pc-unit));

    padding-top: calc(40 * var(--pc-unit));
    padding-left: calc(16 * var(--pc-unit));
  }

  .desktop-nav-logo {
    display: block;

    width: calc(112 * var(--pc-unit));
    height: calc(117 * var(--pc-unit));
  }

  .desktop-nav-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
  }

  .desktop-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: calc(10 * var(--pc-unit));

    margin: 0;
    padding: 0;

    list-style: none;
  }

  .desktop-nav-link {
    display: flex;
    align-items: center;

    gap: calc(12 * var(--pc-unit));

    min-height: calc(40 * var(--pc-unit));

    padding: calc(10 * var(--pc-unit)) 0;

    color: var(--color-brown);

    font-family: var(--font-heading);
    font-size: calc(28 * var(--pc-unit));
    font-weight: 400;
    line-height: calc(20 * var(--pc-unit));

    text-decoration: none;
    white-space: nowrap;
  }

  .desktop-nav-link::before {
    content: "";

    width: calc(10 * var(--pc-unit));
    height: calc(2 * var(--pc-unit));

    background: #cccccc;

    flex: 0 0 auto;
  }


  /* ========================================
     RIGHT NAV / FOOTER
  ======================================== */

  .desktop-nav-footer {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
  }

  .desktop-follow-label {
  margin:
    0
    calc(24 * var(--pc-unit))
    calc(12 * var(--pc-unit));

  color: rgba(119, 119, 119, 0.6);

  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;

  text-transform: none;
}

  .desktop-social-list {
    display: flex;
    align-items: center;

    gap: calc(11 * var(--pc-unit));

    margin:
      0
      calc(24 * var(--pc-unit))
      calc(25 * var(--pc-unit));
  }

  .desktop-social-button {
    display: grid;
    place-items: center;

    width: calc(30 * var(--pc-unit));
    height: calc(30 * var(--pc-unit));

    padding: 0;
    border: 0;

    color: #000;
    background: transparent;

    cursor: default;
  }

.desktop-social-x img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(2px);
}

.desktop-social-line img {
  width: 115%;
  height: 115%;
  max-width: none;
  max-height: none;
}

  .desktop-nav-copyright {
    display: flex;
    flex-direction: column;

    height: calc(45 * var(--pc-unit));

    margin: 0;

    padding:
      0
      calc(24 * var(--pc-unit))
      calc(20 * var(--pc-unit));

    color: rgba(119, 119, 119, 0.4);

    font-family: var(--font-heading);
    font-size: calc(7.5 * var(--pc-unit));
    font-weight: 400;
    line-height: calc(12.188 * var(--pc-unit));

    white-space: nowrap;
  }


  /* ========================================
     ARTIST MODAL
  ======================================== */

  .artist-modal-dialog {
    position: absolute;

    left:
      calc(
        var(--desktop-left-width) +
        (var(--desktop-main-width) / 2)
      );

    width: calc(450 * var(--pc-unit));

    transform: translateX(-50%);
  }

  .artist-modal-card {
    height: calc(520 * var(--pc-unit));
    padding:
      calc(16 * var(--pc-unit))
      calc(24 * var(--pc-unit));
  }

  .artist-modal-image {
    width: 100%;
  }


  /* ========================================
ABOUT - PC
1280px基準で比例拡大
======================================== */

.about-section {
  padding:
    calc(90 * var(--pc-unit))
    0
    calc(60 * var(--pc-unit));
}


.about-container {
  padding:
    0
    calc(24 * var(--pc-unit));
}


.about-content {
  gap: calc(20 * var(--pc-unit));

  width: 100%;
  max-width: none;
}


/* 見出し */

.about-copy {
  padding-left: 0;

  border-left-width: 0;

  font-size:
    calc(26 * var(--pc-unit));

  line-height:
    calc(40 * var(--pc-unit));
}


/* 本文 */

.about-body {
  width: 100%;

  font-size:
    calc(16 * var(--pc-unit));

  line-height:
    calc(24 * var(--pc-unit));

  letter-spacing:
    calc(-0.5 * var(--pc-unit));
}


/* 下段 */

.about-detail-row {
  width: 100%;

  align-items: flex-end;
}


.about-detail-main {
  gap: calc(20 * var(--pc-unit));
}


/* イベントロゴ */

.about-event-logo {
  width: calc(160 * var(--pc-unit));
}


/* 開催情報 */

.about-info-list {
  gap: calc(16 * var(--pc-unit));
}


.about-info-item {
  gap: calc(2 * var(--pc-unit));
}


.about-info-label {
  font-size:
    calc(14 * var(--pc-unit));

  line-height:
    calc(22 * var(--pc-unit));
}


.about-info-main {
  font-size:
    calc(20 * var(--pc-unit));

  line-height:
    calc(24 * var(--pc-unit));
}


/* PCだけ（火・祝）は13px基準 */

.about-info-day {
  font-size:
    calc(13 * var(--pc-unit));

  line-height:
    calc(14 * var(--pc-unit));

  margin-top: 0;
}


.about-info-main-small {
  font-size:
    calc(16 * var(--pc-unit));

  line-height:
    calc(20 * var(--pc-unit));
}


.about-info-sub {
  font-size:
    calc(14 * var(--pc-unit));

  line-height:
    calc(20.3 * var(--pc-unit));

  letter-spacing:
    calc(0.28 * var(--pc-unit));
}


/* 人物 */

.about-decoration {
  width: calc(270 * var(--pc-unit));
  height: auto;
}


  /* ========================================
     TICKET → GOODS DECORATION
  ======================================== */

  .ticket-goods-decoration {
    padding-top: calc(45 * var(--pc-unit));
  }

  .ticket-goods-decoration-image {
    width: calc(300 * var(--pc-unit));
    max-width: none;
  }

  /* SP / TABLET MENUをPCでは使用しない */

.site-header {
    display: none;
    transform: none;
  }

}

/* ========================================
   LOW HEIGHT PC
   幅1024px以上 ＋ 高さ800px以下

   通常PCの設定をした上で、
   高さ不足が起こる箇所だけ補正する。
======================================== */

@media (min-width: 1024px) and (max-height: 800px) {

  .desktop-kv-visual {
    width: 64vh;
  }

}
