@charset "utf-8";
/*********************************
HOBBY ROUND 34 2026.05.02 STYLE-INDEX
HTML aligned / safe cleanup
base reference: contents.htm
*********************************/
/* =========================================
   00. BASE / TOKENS
========================================= */ :root {
  --muted: rgba(15, 23, 42, .55);
  --red: #ef4444;
  --g1: rgba(34, 197, 94, .18);
  --g2: rgba(56, 189, 248, .18);
  --g3: rgba(59, 130, 246, .16);
  --shadow: 0 18px 50px rgba(0, 0, 0, .10);
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.18);
  --shadow-red-md: 0 12px 30px rgba(239, 68, 68, 0.35);
}
/* =========================================
   01. COMMON / SHARED COMPONENTS
========================================= */
/* ===== 共通：セクション見出し ===== */
.section-head {
  text-align: center;
  margin-bottom: calc(var(--sp-unit) * 2.5);
}
.section-head__title {
  margin: 0;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(3rem, 5vw, 4.5rem);
  text-shadow: 0 6px 18px rgba(15, 23, 42, 0.10);
}
/* フェス感：カラフルグラデバー */
.section-head__bar {
  display: block;
  width: 140px;
  height: 12px;
  border-radius: 999px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #ef4444 0%, #f59e0b 28%, #facc15 50%, #22c55e 72%, #06b6d4 100%);
  box-shadow: var(--shadow-red-md);
}
/* 左寄せ版 */
.section-head--left {
  text-align: left;
}
.section-head--left .section-head__bar {
  margin-left: 0;
  margin-right: auto;
}
/* ===== オプション：背景巨大文字（deco） ===== */
.section-headwrap {
  position: relative;
}
.section-headwrap__deco {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-6%, -28%);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  font-size: clamp(8rem, 18vw, 20rem);
  opacity: .2;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(239, 68, 68, .35), rgba(250, 204, 21, .25), rgba(34, 197, 94, .22), rgba(6, 182, 212, .25));
  -webkit-background-clip: text;
  color: transparent;
}
/* =========================================
   02. HERO
========================================= */
.mv-hero {
  padding: calc(var(--sp-unit) * 1) 0 calc(var(--sp-unit) * 1);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.22), transparent 24%), linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(135deg, #f6d32d 0%, #ffdf3a 40%, #e0b800 100%);
  background-size: auto, 28px 28px, 28px 28px, auto;
}
.mv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/event/hr34/assets/image/hr34_logo.webp) 62% 46% / 480px no-repeat;
  opacity: 0.10;
  filter: brightness(1.12) saturate(0.88);
  pointer-events: none;
}
.mv-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #ff4d4d, transparent);
}
.mv-hero {
  overflow: clip;
}
.mv-hero__inner {
  width: min(100%, 1030px);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}
.mv-hero__inner picture {
  display: block;
}
.mv-hero__inner img {
  display: block;
  height: auto;
}
/* ===== 701px以上：PC画像 ===== */
@media (min-width: 701px) {
  .mv-hero::before {
    background: url("/event/hr34/assets/image/hr34_logo.webp") 62% 46% / 800px no-repeat;
  }
  .mv-hero {
    padding: 0 var(--sp-unit) calc(var(--sp-unit) * 4);
  }
  .mv-hero__inner img {
    width: clamp(700px, 120vw, 1416px);
    max-width: none;
    position: relative;
    left: 55%;
    transform: translateX(-50%);
  }
}
/* ===== 700px以下：SP画像は画面いっぱい ===== */
@media (max-width: 700px) {
  .mv-hero__inner {
    width: 100%;
  }
  .mv-hero__inner img {
    width: 100%;
    max-width: 100%;
    position: static;
    transform: none;
  }
}
/* =========================================
   03. BANNER / MARQUEE
========================================= */
.banner {
  background: var(--c-blk);
  padding: var(--sp-xs) 0;
  overflow: hidden;
  position: relative;
}
.banner__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.4);
  animation: marquee 20s linear infinite;
}
.banner:hover .banner__track {
  color: rgba(255, 255, 255, 0.55);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================================
   04. NEWS
========================================= */
#news .container {
  width: min(100%, 1500px);
  margin: 0 auto;
}
.news {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(239, 68, 68, .06), transparent 58%), radial-gradient(circle at 85% 80%, rgba(6, 182, 212, .07), transparent 58%), #f8fafc;
  padding: calc(var(--sp-unit) * 4) var(--sp-unit);
}
.news::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #06b6d4);
}
.news-layout {
  display: grid;
  gap: calc(var(--sp-unit) * 2);
}
.news-aside {
  display: grid;
  align-content: start;
  gap: var(--sp-unit);
}
.news-heading {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.news-heading__title {
  position: relative;
  z-index: 1;
  font-size: clamp(3rem, 6vw, 3.75rem);
  font-weight: 900;
  font-style: italic;
  line-height: var(--lh-tight);
  letter-spacing: -0.04em;
  color: var(--c-txt);
  text-shadow: 0 4px 14px rgba(15, 23, 42, .12);
}
.news-heading__underline {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: var(--yellow);
  opacity: .55;
  z-index: 0;
}
.news-heading__lead {
  max-width: 28em;
  color: rgba(17, 24, 39, .72);
  line-height: 1.6;
  font-size: calc(var(--fs-base) * 1.6);
  width: 10em;
  font-weight: bold;
}
.news-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-bottom-width: 4px;
  background: rgba(255, 255, 255, .84);
  color: var(--c-main);
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(15, 23, 42, .08);
  cursor: pointer;
  transition: gap .25s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-sm);
}
.news-toggle:hover {
  gap: 14px;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.news-toggle .icon {
  width: 24px;
  height: 24px;
}
.news-toggle .icon--sm {
  width: 20px;
  height: 20px;
}
.news-toggle__more, .news-toggle__less {
  display: inline-block;
}
.news-toggle__less {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(-6px);
  transition: opacity .18s ease, max-width .25s ease, transform .25s ease, margin-left .25s ease;
}
#news-toggle:checked ~ .news-layout .news-toggle__less {
  opacity: 1;
  max-width: 10ch;
  transform: translateX(0);
  margin-left: 8px;
}
.news-feed {
  display: grid;
  gap: var(--sp-unit);
}
.news-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 0 18px 18px 0;
  box-shadow: var(--shadow-md);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #ef4444, #f59e0b, #06b6d4);
}
.news-item__bar {
  display: none;
}
.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 10px;
}
.news-item__date {
  color: rgba(17, 24, 39, .56);
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.news-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  color: var(--c-wht);
  letter-spacing: .02em;
  white-space: nowrap;
}
.news-item__tag--info {
  background: var(--teal, #14b8a6);
}
.news-item__tag--event {
  background: #00b0ff;
}
.news-item__tag--danger {
  background: var(--c-main);
}
.news-item__title {
  margin: 0;
  min-width: 0;
  font-weight: 900;
  font-size: clamp(1.05rem, 1vw + .95rem, 1.35rem);
  line-height: 1.45;
  color: var(--c-txt);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-item__arrow {
  display: none;
}
.news-item.is-link {
  cursor: pointer;
}
.news-item.is-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 23, 42, .18);
}
.news-item.is-link:hover .news-item__title {
  color: var(--c-main);
}
.news-item.is-static {
  cursor: default;
}
.news-item.is-static .news-item__arrow {
  display: none;
}
/* 3件目以降 */
.news-more {
  display: grid;
  gap: var(--sp-unit);
  height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  transition: height .45s ease, opacity .22s ease, transform .3s ease;
}
.news-more.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
/* PCだけ左右構成 */
@media (min-width: 768px) {
  .news-layout {
    grid-template-columns: minmax(220px, 280px) 1fr;
    align-items: start;
    gap: 5vw;
  }
  .news-item {
    grid-template-columns: minmax(0, 1fr) 48px;
  }
  .news-item__body {
    padding: 20px 28px 20px 22px;
  }
  .news-item__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    color: rgba(17, 24, 39, .35);
  }
  .news-item.is-link:hover .news-item__arrow {
    color: var(--c-main);
  }
}
/* SPは全部縦並び */
@media (max-width: 829px) {
  .news-layout {
    grid-template-columns: 1fr;
  }
  .news-aside {
    gap: 14px;
  }
  .news-heading__title {
    font-size: clamp(2.5rem, 10vw, 3.2rem);
  }
  .news-heading__lead {
    font-size: calc(var(--fs-base) * 1.2);
    width: 100%;
  }
  .news-toggle {
    width: 100%;
    justify-content: center;
  }
  .news-item__body {
    padding: var(--sp-unit) var(--sp-unit) var(--sp-unit) 14px;
  }
  .news-item__meta {
    gap: 8px 10px;
    margin-bottom: 8px;
  }
  .news-item__date {
    font-size: .92rem;
  }
  .news-item__title {
    font-size: 1rem;
    line-height: 1.5;
  }
}
/* =========================================
   05A. OUTLINE
========================================= */
.outline {
  position: relative;
  overflow: hidden;
  padding: calc(var(--sp-unit) * 6) var(--sp-unit);
  background:
    radial-gradient(circle at 16% 22%, rgba(239, 68, 68, .05), transparent 52%),
    radial-gradient(circle at 84% 74%, rgba(6, 182, 212, .06), transparent 56%),
    #f8fafc;
}

.outline__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.outline__panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(1.2rem, 2vw, 2rem);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.outline__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-unit);
}

.outline__item {
  border-radius: 18px;
  padding: 1rem 1rem 1.05rem;
  background: rgba(248, 250, 252, .92);
  border: 1px solid rgba(15, 23, 42, .06);
}

.outline__label {
  margin: 0 0 0.45rem;
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, .46);
}

.outline__value {
  margin: 0;
  font-size: clamp(1rem, 1vw + .95rem, 1.18rem);
  line-height: 1.55;
  font-weight: 900;
  color: #0f172a;
}
.outline__value span {
  font-size: 0.88em;
  letter-spacing: 0.06em;
  color: var(--c-blue);
}
.outline__note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, .62);
  text-indent: -1em;
  padding: 0 0 0 1em;
}
@media (min-width: 768px) {
  .outline__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-unit);
  }
  .outline__item--wide {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767px) {
  .outline .section-head {
    margin-bottom: 2rem;
  }

  .outline__panel {
    border-radius: 22px;
    padding: var(--sp-unit);
  }

  .outline__item {
    border-radius: 16px;
    padding: 0.95rem 0.9rem 1rem;
  }

  .outline__note {
    font-size: 0.8rem;
  }
}
/* =========================================
   05. TICKETS
========================================= */
.tickets {
  position: relative;
  overflow: hidden;
  padding: calc(var(--sp-unit) * 6) var(--sp-unit);
  color: var(--c-wht);
  background-color: var(--gray-900);
}
.tickets::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(239, 68, 68, .18), transparent 45%), radial-gradient(circle at 80% 10%, rgba(250, 204, 21, .14), transparent 45%), radial-gradient(circle at 80% 80%, rgba(34, 197, 94, .12), transparent 50%), radial-gradient(circle at 20% 85%, rgba(6, 182, 212, .12), transparent 50%);
  filter: blur(30px);
  pointer-events: none;
  opacity: .9;
}
.tickets > *:not(.section-headwrap__deco) {
  position: relative;
  z-index: 1;
}
/* 内側幅（container問題の解決） */
.tickets__inner {
  width: min(64rem, calc(100% - (var(--sp-unit) * 2)));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.tickets > *:not(.section-headwrap__deco) {
  position: relative;
  z-index: 1;
}
/* 内側幅（container問題の解決） */
.tickets__inner {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100% , 70rem);
}
/* ===== グリッド ===== */
.tickets__grid {
  display: grid;
  gap: clamp(20px, 2vw, 32px);
}
@media (min-width: 768px) {
  .tickets__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
/* ===== チケットカード ===== */
.ticket {
  border-radius: 24px;
  padding: clamp(1.6rem, 1.2vw + 1.2rem, 2.4rem);
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0;
}
@media (min-width: 768px) {
  .ticket {
    min-height: 360px;
  }
}
.ticket--primary {
  background: var(--c-wht);
  color: var(--c-txt);
  box-shadow: var(--shadow-md);
}
.ticket--ghost {
  background: transparent;
  border: 4px solid rgba(255, 255, 255, .18);
}
/* ribbon */
.ticket__ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--c-main);
  color: var(--c-wht);
  font-weight: 900;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 10px;
  transform: rotate(3deg);
}
/* ===== タイトル塊 ===== */
.ticket__head {
  margin-bottom: 22px;
}
.ticket__name {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(1.6rem, 1.2vw + 1.2rem, 2rem);
  line-height: 1.2;
}
.ticket__sub {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  color: rgba(0, 0, 0, .45);
}
.ticket--ghost .ticket__sub {
  color: rgba(255, 255, 255, .45);
}
.ticket__sub--muted {
  opacity: .9;
}
/* ===== 価格ブロック ===== */
.tickets .ticket__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.tickets .ticket__num {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.tickets .ticket__label {
  font-size: calc(var(--fs-base) * 1.4);
  font-weight: 700;
  opacity: 0.75;
}
@media (max-width: 768px) {
  .tickets .ticket__label {
    font-size: calc(var(--fs-base) * 1.1);
  }
}
/* 白カード/黒カードでTax色だけ調整 */
.tickets .ticket--primary .ticket__tax {
  color: rgba(0, 0, 0, .55);
}
.tickets .ticket--ghost .ticket__tax {
  color: rgba(255, 255, 255, .45);
}
.ticket--ghost .ticket__tax {
  color: rgba(255, 255, 255, .45);
}
/* muted price */
.ticket__price--muted .ticket__num, .ticket__price--muted .ticket__yen {
  color: rgba(255, 255, 255, .50);
}
.ticket__price--muted .ticket__tax {
  color: rgba(255, 255, 255, .38);
}
/* ===== リスト ===== */
.ticket__meta {
  width: min(100%, 33rem);
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.ticket__meta li {
  display: grid;
  grid-template-columns: 4.5em minmax(0, 1fr);
  align-items: center;
  column-gap: 1.1rem;
  padding: 10px 0 11px;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  font-size: .84rem;
  line-height: 1.45;
}
.ticket__meta span {
  color: rgba(15, 23, 42, .42);
  font-weight: 700;
  letter-spacing: .02em;
}
.ticket__meta strong {
  font-weight: 700;
  text-align: left;
  color: rgba(15, 23, 42, .84);
}
.ticket__meta--ghost li {
  border-bottom-color: rgba(255, 255, 255, .09);
}
.ticket__meta--ghost span {
  color: rgba(255, 255, 255, .42);
}
.ticket__meta--ghost strong {
  color: rgba(255, 255, 255, .86);
}
.ticket__meta--ghost span,.ticket__meta--ghost strong {
  display: block;
  min-width: 0;
}
.ticket__list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.ticket__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: rgba(0, 0, 0, .85);
}
.ticket--ghost .ticket__item {
  color: rgba(255, 255, 255, .70);
}
.ticket__item::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--c-main);
  flex: 0 0 20px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}
/* ===== ボタン ===== */
.ticket__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--sp-unit) 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.ticket__btn--primary {
  background: var(--c-main);
  color: var(--c-wht);
  box-shadow: var(--shadow-red-md), var(--shadow-sm);
}
.ticket__btn--primary:hover {
  background: var(--c-blk);
  transform: translateY(-1px);
}
.ticket__btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .55);
  pointer-events: none;
}
.ticket__btn.ticket__btn--close {
  background: transparent;
  border: 2px solid rgba(15, 23, 42, .42);
  color: rgba(15, 23, 42, .42);
  pointer-events: none;
}
.ticket-cta {
  margin: 4rem 0 2.5rem;
  text-align: center;
}
.ticket-cta__btn {
  display: inline-block;
  padding: 1.5rem var(--sp-unit);
  font-size: calc(var(--fs-base) * 1.4);
  font-weight: 700;
  background: var(--c-main);
  color: var(--c-wht);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow-red-md), var(--shadow-sm);
  transition: 0.25s;
  width: min(92% , 40rem);
}
@media (max-width: 768px) {
  .ticket-cta__btn {
    font-size: calc(var(--fs-base) * 1.1);
  }
}
.ticket-cta__btn:hover {
  color: var(--c-wht);
  background: var(--c-blk);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(239, 68, 68, 0.38), var(--shadow-md);
}
.ticket-cta__btn.ticket-cta__btn__close {
  pointer-events: none;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.4);
  color: #7d7d7d;
  box-shadow: none;
}
/* ===== 当日券の横長補足帯 ===== */
.ticket-inline {
  margin-top: clamp(14px, 2vw, 22px);
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  gap: 10px;
  align-items: start;
}

.ticket-inline__head {
  display: grid;
  gap: 4px;
}

.ticket-inline__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.42);
}

.ticket-inline__title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--c-wht);
}

.ticket-inline__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.ticket-inline__num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
}

.ticket-inline__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.62);
}

/* metaは常に縦積み */
.ticket-inline__meta {
  margin: 0;
  display: grid;
  gap: 8px;
}

.ticket-inline__row {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  column-gap: 0.8rem;
  align-items: start;
  font-size: var(--fs-xs);
}

.ticket-inline__row dt {
  margin: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

.ticket-inline__row dd {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
  min-width: 0;
}

.ticket-inline__note {
  font-size: calc(var(--fs-xs) / 1.2);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}
.ticket-inline__note li {
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.ticket-inline__note li + li {
  margin-top: 0.35em;
}

/* PC */
@media (min-width: 768px) {
  .ticket-inline {
    grid-template-columns: minmax(7.5rem, auto) auto minmax(0, 1fr);
    grid-template-areas:
      "head price meta"
      "note note note";
    gap: 10px 0px;
    padding: 14px 20px;
  }

  .ticket-inline__head {
    grid-area: head;
    min-width: 7.5rem;
  }

  .ticket-inline__price {
    grid-area: price;
    align-self: start;
    padding-top: 0.1rem;
  }

  .ticket-inline__meta {
    grid-area: meta;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-left: 2em;
    margin-left: 2em;
    min-width: 0;
  }

  .ticket-inline__note {
    grid-area: note;
    text-align: left;
    max-width: none;
  }
}
/* ===== 購入の流れ ===== */
.ticket-flow {
  padding: var(--sp-xl) 0 0;
}
.ticket-flow__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 0;
}
.ticket-flow__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-align: center;
  letter-spacing: .01em;
  margin-bottom: 15px;
  color: var(--c-wht);
}
.ticket-flow__lead {
  text-align: center;
  color: #cbced2;
  line-height: 1.9;
  font-size: var(--fs-md);
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.ticket-flow__notice {
  color: #f87171;
  font-weight: 800;
}
/* ===== ステップ（grid） ===== */
.ticket-steps {
  display: grid;
  gap: calc(var(--sp-unit) * 1.2);
}
@media (min-width: 600px) {
  .ticket-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ===== ステップカード ===== */
.ticket-step {
  text-align: center;
}
.ticket-step__imgwrap {
  background: var(--c-wht);
  border-radius: 1.25rem;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 300ms ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, .06);
}
.ticket-step:hover .ticket-step__imgwrap {
  transform: translateY(-0.5rem);
}
.ticket-step__img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.ticket-step__badge {
  display: inline-block;
  background: var(--c-main);
  color: var(--c-wht);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 1.5rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.ticket-step__text {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-wht);
  max-width: 20em;
  margin: 0 auto;
}
.ticket-step-note {
  margin-top: 2rem;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
}
.ticket-step-note p {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-indent: -1em;
  padding: 0 0 0 1em;
}
/* ===== 販売期間 ===== */
.ticket-period {
  margin-top: 2.4rem;
  padding: 1.4rem 1.6rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}
.ticket-period__title {
  margin: 0 0 0.2rem;
  text-align: center;
  font-size: calc(var(--fs-base) * 1.8);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #ff8a8a;
}
/* 行構造 */
.ticket-period__rows {
  width: min(100%, 58rem);
  margin: 0 auto;
  display: grid;
  gap: 0;
}
.ticket-period__row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  align-items: center;
  column-gap: 1rem;
  padding: 0.95rem 0;
  text-align: left;
}
.ticket-period__row + .ticket-period__row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ticket-period__label {
  margin: 0;
  font-size: var(--fs-md);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.68);
}
.ticket-period__date {
  margin: 0;
  font-size: calc(var(--fs-base) * 1.6);
  font-weight: 900;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
}
@media (max-width: 767px) {
  .ticket-step__text {
    max-width: 100%;
  }
  .ticket-period {
    padding: 1.1rem 1rem;
  }
  .ticket-period__title {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  .ticket-period__rows {
    width: 100%;
  }
  .ticket-period__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.8rem 0;
  }
  .ticket-period__date {
    font-size: calc(var(--fs-base) * 1.2);
  }
}
/* ===== 注意事項 ===== */
.ticket-notes {
  max-width: 890px;
  margin: 0 auto;
  padding: 3rem 20px 2rem;
}
.ticket-notes__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: calc(var(--fs-base) * 1.4);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--c-wht);
}
.ticket-notes__title + .ticket-notes__box {
  margin-bottom: 2rem;
}
.ticket-notes__icon {
  width: 24px;
  height: 24px;
  color: #ef4444;
  display: inline-flex;
}
.ticket-notes__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
/* ===== 注意事項 ===== */
.ticket-notes__box {
  background: rgba(255, 255, 255, .015);
  border: 0;
  border-radius: 18px;
  padding: 1.1rem 1.2rem 1.1rem 1.2rem;
}
@media (max-width: 768px) {
  .ticket-notes__box {
    padding: 1.1rem 0 1.1rem;
  }
}
/* liの間隔 */
.ticket-notes__box > li {
  padding: 0 0 0 1.5em;
  text-indent: -1.5em;
  line-height: 1.75;
  position: relative;
}
.ticket-notes__box > li:before {
  content: "・";
  padding-right: 0.5em;
}
.ticket-notes__box > li + li {
  padding-top: 0.5rem;
}
/* 最後だけ余白なし */
.ticket-notes__box > li:last-child {
  margin-bottom: 0;
}
/* 強調 */
.ticket-notes__em {
  color: var(--c-wht);
  font-weight: 800;
}
.ticket-notes__hr {
  border: 0;
  border-top: 1px solid #1f2937;
  margin: 1.5rem 0;
}
/* ===== リンク群（grid） ===== */
.ticket-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: var(--fs-xs);
}
@media (min-width: 640px) {
  .ticket-links {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ticket-link {
  color: #cbced2;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 200ms ease;
  justify-content: center;
}
.ticket-link:hover {
  color: #f87171;
}
.ticket-link__ext {
  font-size: 0.9em;
  line-height: 1;
}
/* =========================================
   06. ABOUT
========================================= */

/* 見出し */
.aboutclean__head {
  position: relative;
  text-align: center;
  margin: 0 auto 3.2rem;
}

.aboutclean__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #0f172a;
}

.aboutclean__bar {
  display: block;
  width: 110px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #06b6d4);
  margin: 12px auto 0;
  opacity: .95;
}

/* セクション本体 */
.aboutclean {
  position: relative;
  overflow: hidden;
  padding: calc(var(--sp-unit) * 6) var(--sp-unit);
  background: #fff;
}

.aboutclean__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* 背景の気配 */
.aboutclean__bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 12% 20%, rgba(239, 68, 68, .12), transparent 50%),
    radial-gradient(circle at 88% 18%, rgba(250, 204, 21, .10), transparent 50%),
    radial-gradient(circle at 80% 86%, rgba(34, 197, 94, .08), transparent 55%),
    radial-gradient(circle at 18% 88%, rgba(6, 182, 212, .08), transparent 55%),
    var(--c-wht);
  filter: blur(28px);
  opacity: .65;
  pointer-events: none;
}

/* パネル */
.aboutclean__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 2vw, 2.6rem);
}

/* 左カラム */
.aboutclean__body {
  min-width: 0;
}

/* 右カラム */
.aboutclean__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
}

.aboutclean__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, .88);
  outline: 1px solid rgba(15, 23, 42, .06);
  box-shadow: var(--shadow-sm);
  background: #e5e7eb;
}

/* テキスト */
.aboutclean__lead {
  margin: 0 0 1rem;
  font-weight: 900;
  line-height: 1.28;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: #0f172a;
}

.aboutclean__p {
  margin: 0 0 1rem;
  font-weight: 700;
  line-height: 1.85;
  color: rgba(15, 23, 42, .78);
  font-size: 0.98rem;
}

.aboutclean__list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: rgba(15, 23, 42, .78);
  font-weight: 800;
}

.aboutclean__list li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.55;
}

.aboutclean__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #facc15, #22c55e, #06b6d4);
}

.aboutclean__list strong {
  color: #0f172a;
  font-weight: 900;
}

.aboutclean__closing {
  padding: var(--sp-xl) 0 0;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  line-height: 1.35;
  color: #0f172a;
}

.aboutclean__closingEm {
  background: linear-gradient(90deg, #ef4444, #f59e0b, #06b6d4);
  -webkit-background-clip: text;
  color: transparent;
}

/* 中間幅 */
@media (max-width: 1100px) {
  .aboutclean__panel {
    grid-template-columns: 1fr;
  }

  .aboutclean__media {
    order: 2;
    margin-top: 0.5rem;
  }

  .aboutclean__body {
    order: 1;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .aboutclean {
    padding: 5rem 1rem;
  }

  .aboutclean__panel {
    padding: 1.3rem;
    border-radius: 22px;
  }

  .aboutclean__media {
    gap: 10px;
  }

  .aboutclean__p {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .aboutclean__list {
    gap: 0.6rem;
  }

}

/* かなり狭い時は画像を非表示でもOK */
@media (max-width: 640px) {
  .aboutclean__media {
    display: none;
  }
}
/* =========================================
   07. PROGRAM
========================================= */
/* ===== セクション全体 ===== */
.program {
  padding: calc(var(--sp-unit) * 6) var(--sp-unit);
  background: #f9fafb;
  overflow: hidden;
  position: relative;
}
/* skew-box */
.program.skew-box {
  transform: skewY(-3deg);
}
.program__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
/* ===== グリッド ===== */
.program__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1cqi;
  container-type: inline-size;
}
@media (min-width: 768px) {
  .program__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .program__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ===== カード ===== */
.program-card {
  --accent-color: #ef4444; /* デフォルト */
  position: relative;
  background: var(--c-wht);
  border-radius: 1.5rem;
  overflow: hidden;
  font-size: var(--fs-md);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  border: 3px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    opacity .25s ease;
}

/* 下のアクセント帯 */
.program-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: var(--accent-color);
  pointer-events: none;
}
.program-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent-color) 25%, rgba(15, 23, 42, 0.06));
}
.program-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #e5e7eb;
  overflow: hidden;
}
.program-card__img {
  transition: transform .35s ease;
}
.program-card:hover .program-card__img {
  transform: scale(1.06);
}
.program-card__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-weight: 900;
  transition: transform 250ms ease, filter .25s ease;
  object-fit: cover;
}
.program-card__ph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .25s ease, transform .35s ease, opacity .25s ease;
}
.program-card:hover .program-card__ph {
  transform: scale(1.1);
}
.program-card__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0.5rem calc(1.5rem + 10px);
  text-align: center;
}
.program-card__name {
  margin: 0;
  font-weight: 900;
}
/* ===== featured card ===== */
.program-card--featured {
  align-items: stretch;
  border-width: 4px;
  box-shadow: var(--shadow-lg);
  grid-column: span 3;
  grid-row: span 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 20rem;
}

.program-card--featured .program-card__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.program-card--featured .program-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 1.75rem 1.5rem calc(1.75rem + 10px);
}

.program-card__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-color);
}
.program-card--featured .program-card__name {
  font-size: clamp(1.4rem, 2cqi, 2rem);
  line-height: 1.15;
}
.program-card__desc {
  margin: 0.75rem 0 0;
  color: #475569;
  line-height: 1.7;
  font-size: 0.96rem;
}
.program-card__cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--accent-color);
}
.program-card__cta::after {
  content: "→";
  font-size: 1em;
}
.program-card__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--c-main);
  color: var(--c-wht);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(-5deg);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 1023px) {
  .program-card--featured {
    grid-column: span 3;
    grid-row: span 1;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .program-card--featured .program-card__media {
    aspect-ratio: 16 / 10;
  }
  .program-card--featured .program-card__body {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .program-card--featured {
    grid-column: 1 / -1;
  }
}
/* ===== カラーバリエーション ===== */
.program-card--red    { --accent-color: #ef4444; }
.program-card--yellow { --accent-color: #facc15; }
.program-card--teal   { --accent-color: #2dd4bf; }
.program-card--purple { --accent-color: #a855f7; }
.program-card--orange { --accent-color: var(--c-org); }
.program-card--blue   { --accent-color: #00b0ff; }

/* ===== 無効状態 ===== */
.program-card.is-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.78;
  box-shadow: var(--shadow-sm);
}

.program-card.is-disabled:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: rgba(15, 23, 42, 0.06);
}

.program-card.is-disabled .program-card__img,
.program-card.is-disabled .program-card__ph {
  transform: none !important;
}

.program-card.is-disabled .program-card__ph img {
  filter: grayscale(100%) brightness(0.92);
}

/* “準備中”を出したい場合だけ使う */
.program-card.is-disabled.is-comingsoon .program-card__media::after {
  content: "COMING SOON";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-wht);
  font-size: calc(var(--fs-base) * 1.3);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  pointer-events: none;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .program-card.is-disabled.is-comingsoon .program-card__media::after {
    font-size: calc(var(--fs-base) * 1.1);
  }
}
/* =========================================
   08. ACCESS
========================================= */
/* ===== ACCESS section ===== */
.access {
  padding: calc(var(--sp-unit) * 6) var(--sp-unit);
  background: var(--c-wht);
  overflow: hidden;
  position: relative;
}
.access__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.access__layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
.access__right, .access__left {
  width: 100%;
  padding: 0 0;
}
@media (min-width: 930px) {
  .access__layout {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
  .access__left, .access__right {
    width: 50%;
  }
  .access__right {
    padding: var(--sp-unit) 0 0 0;
  }
}
/* ===== blocks ===== */
.access__blocks {
  display: grid;
  gap: 2.5rem;
}
.access-venue {
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(248, 250, 252, .92);
  border: 1px solid rgba(15, 23, 42, .06);
}
.access-venue__name {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  color: #0f172a;
}
.access-venue__addr {
  margin: 0 0 1rem;
  color: #6b7280;
  font-weight: 700;
}
.access-venue__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ef4444;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.access-venue__ext {
  font-size: 0.9em;
}
/* ===== 2col list grid ===== */
.access__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .access__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.access-box {}
.access-box__title {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: calc(var(--fs-base) * 1.25);
  color: #0f172a;
}
.access-pill {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-wht);
  font-size: 0.75rem;
  font-weight: 900;
}
.access-pill--blue {
  background: #3b82f6;
}
.access-pill--green {
  background: #22c55e;
}
.access-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #374151;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.8;
  display: grid;
  gap: 1rem;
}
.access-list--tight {
  gap: 0.5rem;
}
.access-list__mark {
  font-weight: 900;
  margin-right: 0.4rem;
}
.access-list__mark--blue {
  color: #3b82f6;
}
/* ===== map frame ===== */
.map-frame {
  position: relative;
  width: 100%;
}
.map-frame__bg {
  position: absolute;
  inset: -16px;
  background: #2dd4bf; /* teal */
  border-radius: 40px;
  transform: rotate(2deg);
  transition: transform 500ms ease;
}
.map-frame:hover .map-frame__bg {
  transform: rotate(0deg);
}
.map-frame__card {
  position: relative;
  height: 450px;
  background: #e5e7eb;
  border-radius: 30px;
  overflow: hidden;
  border: 8px solid var(--c-wht);
  box-shadow: var(--shadow-lg);
}
.map-frame__placeholder, .map-frame__placeholder iframe {
  width: 100%;
  height: 100%;
}