@charset "UTF-8";

/* Reset SWELL's block margins before the approved static styles are applied. */
.hidamari .wp-block-group { margin-block: 0; }
.hidamari p[class="wp-block-paragraph"] { margin-block: 1em; }

@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("assets/fonts/zen-kaku-gothic-new-japanese-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face{
  font-family: "Zen Kaku Gothic New";
  src: url("assets/fonts/zen-kaku-gothic-new-japanese-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face{
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-latin-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face{
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-latin-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

.hidamari {
  --navy: #123f68;
  --blue: #257fc4;
  --blue-strong: #2173b2;
  --sky: #57b5d9;
  --pale: #eaf4fa;
  --cream: #f8f7f3;
  --ink: #24313b;
  --muted: #61717c;
  --line: #cddde8;
  --white: #fff;
  --error: #a13a35;
  --success: #24714b;
  --internal-note: #8a5700;
  --internal-note-on-dark: #ffe0a3;
  --shadow: 0 18px 55px rgba(18, 63, 104, 0.11);
  --display: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --body: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  --utility: "Barlow Condensed", "Arial Narrow", sans-serif;
  --content: 1180px;
  --reading: 780px;
  --radius: 14px;
  --header-height: 82px;
}

.hidamari {
  scroll-behavior: smooth;
}

.hidamari {
  line-break: strict;
  word-break: normal;
}

.hidamari,
.hidamari * {
  box-sizing: border-box;
}

.hidamari {
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

.hidamari.menu-open {
  overflow: hidden;
}

.hidamari img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

.hidamari button,
.hidamari input,
.hidamari select,
.hidamari textarea {
  color: inherit;
  font: inherit;
}

.hidamari button,
.hidamari select {
  cursor: pointer;
}

.hidamari :focus-visible {
  box-shadow: 0 0 0 5px var(--navy);
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.hidamari [hidden] {
  display: none !important;
}

.hidamari .visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Editor-only helper labels must never be visible on the public site. */
.hidamari .editor-link-label {
  display: none;
}

.hidamari .skip-link {
  background: var(--navy);
  color: var(--white);
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 2000;
}

.hidamari .skip-link:focus {
  top: 12px;
}

.hidamari .site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(18, 63, 104, 0.12);
  box-sizing: border-box;
  height: var(--header-height);
  left: 0;
  max-width: none;
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.hidamari .site-header__inner {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 clamp(20px, 3vw, 48px);
  width: 100%;
}

.hidamari .brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  height: 72px;
  width: 120px;
}

.hidamari .brand img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hidamari .site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 1.6vw, 28px);
}

.hidamari .site-nav__links {
  align-items: center;
  display: flex;
  gap: clamp(12px, 1.35vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hidamari .site-nav__links a {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  position: relative;
  white-space: nowrap;
}

.hidamari .site-nav__links a::after {
  background: var(--sky);
  bottom: 3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.hidamari .site-nav__links a:hover::after,
.hidamari .site-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hidamari .site-nav__english {
  color: var(--blue-strong);
  font-family: var(--utility);
  font-size: 15px !important;
  letter-spacing: 0.03em;
}

.hidamari .site-nav__contact {
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  padding: 0 20px;
}

.hidamari .site-nav__contact::after {
  display: none;
}

.hidamari .menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
}

.hidamari .menu-toggle span {
  background: var(--navy);
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 26px;
}

.hidamari .menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.hidamari .menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hidamari .home-hero {
  align-items: center;
  background-image: linear-gradient(90deg, rgba(8, 34, 56, 0.82) 0%, rgba(8, 34, 56, 0.5) 36%, rgba(8, 34, 56, 0.04) 72%), image-set(url("../images/home-hero-1280.jpg") 1x, url("../images/home-hero.jpg") 2x);
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  position: relative;
}

.hidamari .home-hero::after {
  background: linear-gradient(to top, rgba(6, 25, 42, 0.35), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hidamari .home-hero__inner {
  margin: 0 auto;
  max-width: var(--content);
  padding: 88px 30px 120px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hidamari .home-hero__copy {
  max-width: 980px;
}

.hidamari .home-hero__kicker,
.hidamari .eyebrow {
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hidamari .home-hero__kicker {
  font-family: var(--display);
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.08em;
}

.hidamari .home-hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 3px 24px rgba(4, 20, 33, 0.34);
  text-wrap: balance;
}

.hidamari .home-hero h1 > span,
.hidamari .home-hero h1 > em {
  display: block;
}

.hidamari .home-hero h1 em {
  color: #d6f2ff;
  font-style: normal;
  white-space: nowrap;
}

.hidamari .home-hero__mobile-line {
  display: inline;
}

.hidamari .home-hero__lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.9;
  margin: 28px 0 0;
  max-width: 640px;
  text-shadow: 0 2px 12px rgba(4, 20, 33, 0.38);
  text-wrap: pretty;
}

.hidamari .home-hero__lead-mobile-line {
  display: inline;
}

.hidamari /* Keep the homepage statement on one line in the desktop composition. */
@media (min-width: 901px) {
  .home-hero__copy {
    max-width: 1100px;
  }

  .home-hero__lead {
    max-width: none;
    text-wrap: nowrap;
    white-space: nowrap;
  }
}

.hidamari .home-hero__scroll {
  align-items: center;
  bottom: 30px;
  display: flex;
  font-family: var(--utility);
  font-size: 12px;
  gap: 12px;
  letter-spacing: 0.16em;
  position: absolute;
}

.hidamari .home-hero__scroll::after {
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.85) 0 1px, transparent 1px 6px);
  content: "";
  height: 29px;
  width: 52px;
}

.hidamari .home-news {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hidamari .home-news__inner {
  display: grid;
  gap: clamp(34px, 5vw, 74px);
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--content);
  padding: clamp(38px, 4.5vw, 58px) 30px;
}

.hidamari .home-news__heading {
  align-self: start;
  border-left: 5px solid var(--sky);
  padding: 4px 0 4px 20px;
}

.hidamari .home-news__heading h2 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1.35;
  margin: 0;
}

.hidamari .home-news__list {
  border-top: 1px solid var(--line);
}

.hidamari .home-news__item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 120px minmax(0, 1fr) 20px;
  min-height: 58px;
  padding: 10px 4px;
}

.hidamari .home-news__date {
  color: var(--muted);
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hidamari .home-news__item strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.hidamari .home-news__item i {
  color: var(--blue-strong);
  font-style: normal;
  transition: transform 180ms ease;
}

.hidamari .home-news__item:hover strong {
  color: var(--blue-strong);
}

.hidamari .home-news__item:hover i {
  transform: translateX(4px);
}

.hidamari .page-hero {
  align-items: center;
  background: linear-gradient(135deg, var(--pale), #f8fcfe);
  display: grid;
  min-height: 450px;
  overflow: hidden;
  position: relative;
}

.hidamari .page-hero--image {
  background-image: linear-gradient(90deg, rgba(8, 34, 56, 0.8), rgba(8, 34, 56, 0.18) 62%, rgba(8, 34, 56, 0.04)), var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  color: var(--white);
  min-height: min(72svh, 720px);
}

.hidamari .page-hero--features {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
  min-height: clamp(450px, 58svh, 620px);
}

.hidamari .page-hero--features .page-hero__copy {
  margin-left: 0;
  margin-right: auto;
  max-width: 760px;
  text-align: left;
}

.hidamari .page-hero__inner {
  margin: 0 auto;
  max-width: var(--content);
  padding: clamp(72px, 9vw, 128px) 30px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hidamari .page-hero__copy {
  max-width: 720px;
}

.hidamari .page-hero .eyebrow {
  color: var(--blue-strong);
}

.hidamari .page-hero--image .eyebrow {
  color: #bdeaff;
}

.hidamari .page-hero h1 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
}

.hidamari /* Festival and competition titles stay on one line unless an editor inserts a manual break. */
.page-hero__copy:has(.page-hero__title--festival-detail) {
  max-width: none;
}

.hidamari .page-hero h1.page-hero__title--festival-detail {
  font-size: clamp(16px, 4vw, 52px);
  text-wrap: nowrap;
  white-space: nowrap;
}

.hidamari .page-hero .page-hero__title--festival-detail .title-line-mobile {
  display: inline;
}

.hidamari /* The documents page title stays on one line unless an editor inserts a manual break. */
.page-hero__copy:has(.page-hero__title--documents) {
  max-width: none;
}

.hidamari .page-hero h1.page-hero__title--documents {
  font-size: clamp(22px, 5vw, 58px);
  text-wrap: nowrap;
  white-space: nowrap;
}

.hidamari .page-hero .page-hero__title--documents .title-line-mobile {
  display: inline;
}

.hidamari /* Performance-venue directory titles remain on one line at narrower widths. */
.page-hero__copy:has(.page-hero__title--venues) {
  max-width: none;
}

.hidamari .page-hero h1.page-hero__title--venues {
  font-size: clamp(18px, 4.8vw, 60px);
  text-wrap: nowrap;
  white-space: nowrap;
}

.hidamari .page-hero__copy:has(.feature-article-title) {
  max-width: none;
}

.hidamari .page-hero h1.feature-article-title {
  font-size: clamp(22px, 5vw, 64px);
  text-wrap: nowrap;
  white-space: nowrap;
}

.hidamari .title-line-mobile {
  display: inline;
}

.hidamari .title-line-tablet {
  display: inline;
}

.hidamari .title-line-always {
  display: block;
}

.hidamari .page-hero--image h1 {
  color: var(--white);
  text-shadow: 0 3px 22px rgba(5, 21, 35, 0.32);
}

.hidamari .music-hero-title__main,
.hidamari .music-hero-title__sub,
.hidamari .workshop-hero-title__main,
.hidamari .workshop-hero-title__sub,
.hidamari .mice-hero-title__main,
.hidamari .mice-hero-title__sub {
  display: block;
}

.hidamari .music-hero-title__sub,
.hidamari .workshop-hero-title__sub {
  font-size: 0.78em;
  margin-top: 0.08em;
  white-space: nowrap;
}

.hidamari .mice-hero-title__sub {
  font-size: 0.72em;
  margin-top: 0.08em;
  white-space: nowrap;
}

.hidamari .page-hero__lead {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.9;
  margin: 24px 0 0;
  max-width: 700px;
  text-wrap: pretty;
}

.hidamari .tour-detail-hero {
  background: linear-gradient(135deg, var(--cream), #f7fbfd 72%);
  border-bottom: 1px solid var(--line);
}

.hidamari .tour-detail-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(38px, 5.5vw, 76px);
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  margin: 0 auto;
  max-width: var(--content);
  padding: clamp(56px, 7vw, 92px) 30px clamp(68px, 8vw, 108px);
}

.hidamari .tour-detail-hero__copy .tag-row {
  margin-bottom: 26px;
}

.hidamari .tour-detail-hero__copy .eyebrow {
  color: var(--blue-strong);
  margin-bottom: 12px;
}

.hidamari .tour-detail-hero h1 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
}

.hidamari .tour-detail-hero h1.tour-detail-title {
  font-size: clamp(20px, 5vw, 40px);
  text-wrap: nowrap;
  white-space: nowrap;
}

.hidamari .tour-detail-hero__lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  margin: 22px 0 0;
  max-width: 640px;
  text-wrap: pretty;
}

.hidamari .tour-summary {
  margin-top: 34px;
}

.hidamari .tour-summary__grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.hidamari .tour-summary__grid > div {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
  padding: 14px 16px;
}

.hidamari .tour-summary__grid dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 3px;
}

.hidamari .tour-summary__grid dd {
  color: var(--navy);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  overflow-wrap: anywhere;
}

.hidamari .tour-detail-hero__media .placeholder {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  min-height: 0;
}

.hidamari .tour-feature__media .placeholder {
  aspect-ratio: 3 / 2;
  min-height: 0;
}

.hidamari .page-hero--image .page-hero__lead {
  color: rgba(255, 255, 255, 0.93);
  text-shadow: 0 2px 12px rgba(5, 21, 35, 0.36);
}

.hidamari .breadcrumb {
  color: var(--muted);
  font-size: 14px;
  margin: 0 auto;
  max-width: var(--content);
  overflow: hidden;
  padding: 16px 30px;
  white-space: nowrap;
}

.hidamari .breadcrumb a {
  color: var(--blue-strong);
}

.hidamari .company-hero {
  background: linear-gradient(135deg, var(--pale), #f8fcfe);
}

.hidamari .company-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  grid-template-columns: minmax(520px, 1fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--content);
  padding: clamp(56px, 7vw, 94px) 30px clamp(76px, 9vw, 118px);
}

.hidamari .company-hero__copy h1 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.35;
  margin: 0;
}

.hidamari .company-hero__copy h1 span {
  display: block;
  white-space: nowrap;
}

.hidamari .company-hero__copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  margin: 26px 0 0;
  max-width: 500px;
  text-wrap: pretty;
}

.hidamari .company-profile {
  border-top: 1px solid var(--ink);
  margin: 0;
}

.hidamari .company-profile > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 135px minmax(0, 1fr);
  padding: 20px 0;
}

.hidamari .company-profile dt,
.hidamari .company-profile dd {
  line-height: 1.75;
  margin: 0;
}

.hidamari .company-profile dt {
  color: var(--muted);
  font-weight: 700;
}

.hidamari .company-profile dd {
  color: var(--ink);
  font-weight: 600;
}

.hidamari .venue-detail-hero {
  background: linear-gradient(135deg, var(--pale), #f8fcfe);
}

.hidamari .venue-detail-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(44px, 6vw, 82px);
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  margin: 0 auto;
  max-width: var(--content);
  min-height: 610px;
  padding: clamp(56px, 7vw, 88px) 30px;
}

.hidamari .venue-detail-hero__copy .eyebrow {
  color: var(--blue-strong);
  margin: 0 0 18px;
}

.hidamari .venue-detail-hero__copy h1 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.3;
  margin: 0;
  text-wrap: balance;
}

.hidamari .venue-detail-hero__copy > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 26px 0 0;
}

.hidamari .venue-detail-hero__facts {
  min-width: 0;
}

.hidamari .venue-detail-hero__facts .fact-table {
  border-top: 1px solid var(--ink);
}

.hidamari .venue-detail-hero__facts .fact-table th,
.hidamari .venue-detail-hero__facts .fact-table td {
  background: transparent;
  padding: 18px 0;
}

.hidamari .venue-detail-hero__facts .fact-table th {
  color: var(--muted);
  padding-right: 28px;
  width: 36%;
}

.hidamari .venue-detail-hero__facts .fact-table td {
  color: var(--ink);
  font-weight: 600;
}

.hidamari .section {
  margin: 0 auto;
  max-width: var(--content);
  padding: clamp(76px, 9vw, 124px) 30px;
}

.hidamari .section--wide {
  max-width: none;
  padding-left: max(30px, calc((100vw - var(--content)) / 2));
  padding-right: max(30px, calc((100vw - var(--content)) / 2));
}

.hidamari .section--compact {
  padding-bottom: clamp(48px, 6vw, 78px);
  padding-top: clamp(48px, 6vw, 78px);
}

.hidamari .section--tint {
  background: var(--cream);
}

.hidamari .section--pale {
  background: var(--pale);
}

.hidamari .section--navy {
  background: var(--navy);
  color: var(--white);
}

.hidamari .section-heading {
  margin-bottom: clamp(32px, 4vw, 56px);
  max-width: 900px;
}

.hidamari .section-heading--split {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.hidamari .section-heading .eyebrow {
  color: var(--blue-strong);
}

.hidamari .section--navy .eyebrow {
  color: #a8ddf3;
}

.hidamari .section-heading h2,
.hidamari .content-heading {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
  margin: 0;
  text-wrap: balance;
}

.hidamari .section--navy .section-heading h2,
.hidamari .section--navy .content-heading {
  color: var(--white);
}

.hidamari .section-heading p,
.hidamari .lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  margin: 20px 0 0;
  text-wrap: pretty;
}

.hidamari /* 制作・確認用の文言を、お客様向けの公開本文と色で区別する。 */
.internal-note {
  color: var(--internal-note) !important;
  font-weight: 600;
}

.hidamari .page-hero--image .internal-note,
.hidamari .section--navy .internal-note,
.hidamari .cta-band .internal-note {
  color: var(--internal-note-on-dark) !important;
}

.hidamari .button .internal-note,
.hidamari .button .internal-note * {
  color: inherit !important;
}

.hidamari .card h3,
.hidamari .tour-card h3,
.hidamari .timeline h3,
.hidamari .cta-band h2,
.hidamari .complete-panel h2 {
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.hidamari .card p,
.hidamari .tour-card p,
.hidamari .timeline p,
.hidamari .cta-band p,
.hidamari .article p,
.hidamari .utility-note {
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.hidamari .section-heading__line {
  display: block;
}

.hidamari .section--navy .section-heading p,
.hidamari .section--navy .lead {
  color: rgba(255, 255, 255, 0.74);
}

.hidamari .score-mark {
  height: 64px;
  margin: 0 0 28px;
  max-width: 560px;
  overflow: hidden;
  position: relative;
}

.hidamari .score-mark::before {
  background: repeating-linear-gradient(to bottom, var(--sky) 0 1px, transparent 1px 12px);
  content: "";
  height: 58px;
  inset: 0;
  mask-image: linear-gradient(90deg, #000, #000 70%, transparent);
  opacity: 0.72;
  position: absolute;
  transform: rotate(-2deg);
}

.hidamari .score-mark::after {
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 18px -7px 0 -5px var(--navy);
  content: "";
  height: 16px;
  left: 70%;
  position: absolute;
  top: 19px;
  width: 16px;
}

.hidamari .grid {
  display: grid;
  gap: 22px;
}

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

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

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

.hidamari .mice-service-grid {
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hidamari .mice-service-grid .card__image {
  aspect-ratio: 16 / 9;
}

.hidamari .mice-service-grid .card__body {
  padding: clamp(24px, 3vw, 34px);
}

.hidamari .mice-service-grid .card h3 {
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.45;
}

.hidamari .mice-service-grid .card p {
  line-height: 1.9;
}

.hidamari .mice-service-title__en,
.hidamari .mice-service-title__ja {
  display: block;
}

.hidamari .mice-service-title__ja {
  font-size: 0.86em;
  margin-top: 4px;
}

.hidamari .purpose-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hidamari .purpose-grid a {
  align-items: end;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  min-height: 150px;
  padding: 28px;
  transition: background 180ms ease, color 180ms ease;
}

.hidamari .purpose-grid a:nth-child(3n) {
  border-right: 0;
}

.hidamari .purpose-grid a:nth-child(n + 4) {
  border-bottom: 0;
}

.hidamari .purpose-grid a:hover {
  background: var(--navy);
  color: var(--white);
}

.hidamari .purpose-grid small {
  color: var(--blue-strong);
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 700;
  grid-column: 1 / -1;
  letter-spacing: 0.12em;
}

.hidamari .purpose-grid strong {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.45;
}

.hidamari .purpose-grid i {
  color: var(--sky);
  font-size: 22px;
  font-style: normal;
}

.hidamari .card,
.hidamari .media-card,
.hidamari .tour-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(18, 63, 104, 0.06);
  min-width: 0;
  overflow: hidden;
}

.hidamari a.card,
.hidamari a.media-card,
.hidamari a.tour-card {
  display: flex;
  flex-direction: column;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.hidamari a.card:hover,
.hidamari a.media-card:hover,
.hidamari a.tour-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.hidamari .card__body,
.hidamari .media-card__body,
.hidamari .tour-card__body {
  padding: 24px;
}

.hidamari .media-card__body,
.hidamari .tour-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.hidamari .card h3,
.hidamari .media-card h3,
.hidamari .tour-card h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.45;
  margin: 0 0 12px;
}

.hidamari .service-card-title__line {
  display: block;
}

.hidamari .card p,
.hidamari .media-card p,
.hidamari .tour-card p {
  color: var(--muted);
  margin: 0;
}

.hidamari .card__image,
.hidamari .media-card__image,
.hidamari .tour-card__image {
  aspect-ratio: 3 / 2;
  background: var(--pale);
  overflow: hidden;
  position: relative;
}

.hidamari .card__image img,
.hidamari .media-card__image img,
.hidamari .tour-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
  width: 100%;
}

.hidamari a:hover .card__image img,
.hidamari a:hover .media-card__image img,
.hidamari a:hover .tour-card__image img {
  transform: scale(1.025);
}

.hidamari .card__image--contain img {
  background: var(--white);
  object-fit: contain;
}

.hidamari .card__link,
.hidamari .text-link {
  align-items: center;
  color: var(--blue-strong);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 14px;
  margin-top: auto;
  min-height: 44px;
  padding-top: 18px;
}

.hidamari .card__link::after,
.hidamari .text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.hidamari a:hover .card__link::after,
.hidamari .text-link:hover::after {
  transform: translateX(5px);
}

.hidamari .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.hidamari .tag,
.hidamari .status {
  align-items: center;
  background: var(--pale);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 30px;
  padding: 4px 11px;
}

.hidamari .status::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 7px;
  margin-right: 7px;
  width: 7px;
}

.hidamari .status--closed {
  background: #f1f2f3;
  color: #5f6870;
}

.hidamari .status--active {
  background: #e7f5ee;
  color: var(--success);
}

.hidamari .sample-label {
  background: var(--cream);
  border: 1px solid #dedbd1;
  color: #625d50;
}

.hidamari .meta-list {
  color: var(--muted);
  display: grid;
  font-size: 14px;
  gap: 6px;
  margin: 14px 0 0;
}

.hidamari .placeholder {
  align-items: center;
  background: linear-gradient(145deg, #f4fbfe, var(--pale));
  color: var(--internal-note);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 28px;
  text-align: center;
}

.hidamari .placeholder strong {
  font-family: var(--display);
  font-size: 19px;
}

.hidamari .placeholder small {
  color: var(--internal-note);
  margin-top: 6px;
}

.hidamari .split {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hidamari .split--reverse .split__media {
  order: 2;
}

.hidamari .split__media {
  border-radius: var(--radius);
  overflow: hidden;
}

.hidamari .split__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.hidamari .access-map {
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
  min-height: 360px;
  width: 100%;
}

.hidamari .split__copy h2,
.hidamari .split__copy h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.4;
  margin: 0 0 20px;
}

.hidamari .split__copy p {
  color: var(--muted);
  margin: 0;
}

.hidamari .workshop-instructor__media .placeholder {
  aspect-ratio: 3 / 4;
  min-height: 0;
  width: 100%;
}

.hidamari .workshop-instructor__copy p {
  line-height: 1.9;
}

.hidamari .check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.hidamari .check-list li {
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  padding: 0 0 12px 28px;
  position: relative;
}

.hidamari .check-list li::before {
  color: var(--blue-strong);
  content: "●";
  font-size: 10px;
  left: 4px;
  position: absolute;
  top: 7px;
}

.hidamari .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hidamari .button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--blue-strong);
  border-radius: 999px;
  color: var(--blue-strong);
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  gap: 20px;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 22px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hidamari .button:hover {
  transform: translateY(-2px);
}

.hidamari .button::after {
  content: "→";
}

.hidamari .button--primary {
  background: var(--blue-strong);
  color: var(--white);
}

.hidamari .button--primary:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.hidamari .button--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.hidamari .button--muted,
.hidamari .button[aria-disabled="true"],
.hidamari .button:disabled {
  background: #eff2f4;
  border-color: #d9e0e5;
  color: #697681;
  cursor: not-allowed;
  opacity: 1;
}

.hidamari .button[aria-disabled="true"]::after,
.hidamari .button:disabled::after {
  content: "準備中";
  font-size: 14px;
}

.hidamari .button:disabled:hover {
  transform: none;
}

.hidamari .brochure-download {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px 18px;
}

.hidamari .brochure-download strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
}

.hidamari .filter-panel {
  background: var(--pale);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 24px;
}

.hidamari .filter-panel--venues {
  grid-template-columns: minmax(190px, 0.8fr) minmax(220px, 1fr) auto;
}

.hidamari .filter-field {
  display: grid;
  gap: 7px;
}

.hidamari .filter-field label,
.hidamari .field label,
.hidamari .field legend {
  font-size: 14px;
  font-weight: 700;
}

.hidamari .filter-field input,
.hidamari .filter-field select,
.hidamari .field input,
.hidamari .field select,
.hidamari .field textarea {
  background: var(--white);
  border: 1px solid #a9c2d3;
  border-radius: 7px;
  min-height: 48px;
  padding: 10px 12px;
  width: 100%;
}

.hidamari .field textarea {
  min-height: 150px;
  resize: vertical;
}

.hidamari .filter-actions {
  align-items: end;
  display: flex;
  gap: 10px;
}

.hidamari .filter-actions button {
  background: var(--navy);
  border: 0;
  border-radius: 7px;
  color: var(--white);
  min-height: 48px;
  padding: 10px 18px;
}

.hidamari .filter-actions button[data-filter-reset] {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
}

.hidamari .result-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 30px 0 22px;
  padding-bottom: 14px;
}

.hidamari .document-table-wrap {
  overflow-x: auto;
}

.hidamari .document-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.hidamari .document-table td {
  border-bottom: 1px solid var(--line);
  padding: 28px 18px;
  vertical-align: middle;
}

.hidamari .document-table__col-action {
  width: 238px;
}

.hidamari .document-table__info span,
.hidamari .document-table__info h3 {
  display: block;
}

.hidamari .document-table__category {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hidamari .document-table__info h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.45;
  margin: 0;
}

.hidamari .document-table__meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 7px;
}

.hidamari .document-table__action {
  text-align: right;
}

.hidamari .document-table__download {
  border-radius: 8px;
  min-width: 190px;
}

.hidamari .document-table__download::after {
  content: "↓";
}

.hidamari .empty-state {
  background: var(--cream);
  border: 1px solid #e1dfd8;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}

.hidamari .timeline {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hidamari .timeline li {
  border-left: 2px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 90px 1fr;
  margin-left: 14px;
  padding: 0 0 36px 34px;
  position: relative;
}

.hidamari .timeline li:last-child {
  padding-bottom: 0;
}

.hidamari .timeline li::before {
  background: var(--white);
  border: 5px solid var(--blue);
  border-radius: 50%;
  content: "";
  height: 17px;
  left: -10px;
  position: absolute;
  top: 5px;
  width: 17px;
}

.hidamari .timeline__label {
  color: var(--blue-strong);
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hidamari .timeline h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 22px;
  margin: 0 0 8px;
}

.hidamari .timeline p {
  color: var(--muted);
  margin: 0;
}

.hidamari .timeline--readable {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.hidamari .timeline--readable li {
  gap: 20px;
  grid-template-columns: 88px minmax(0, 1fr);
  padding-bottom: 24px;
}

.hidamari .timeline--readable li::before {
  top: 27px;
}

.hidamari .timeline--readable .timeline__label {
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: 0.04em;
  line-height: 1;
  padding-top: 24px;
}

.hidamari .timeline--readable li > div {
  background: linear-gradient(135deg, var(--white), #f8fbfd);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
}

.hidamari .timeline--readable h3 {
  line-height: 1.55;
  margin-bottom: 10px;
}

.hidamari .timeline--readable p {
  line-height: 1.9;
}

.hidamari .section-subheading {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.45;
  margin: 0 0 30px;
}

.hidamari .section-subheading--spaced {
  margin-top: clamp(56px, 7vw, 88px);
}

.hidamari .workshop-guidance {
  display: grid;
  gap: 16px;
}

.hidamari .workshop-guidance__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
}

.hidamari .workshop-guidance__item h4 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 21px;
  margin: 0 0 14px;
}

.hidamari .workshop-guidance__item > div {
  color: var(--muted);
  line-height: 1.9;
}

.hidamari .itinerary-cards {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  list-style: none;
  margin: 0;
  overflow-x: auto;
  padding: 0 0 14px;
  scroll-snap-type: x proximity;
}

.hidamari .itinerary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px 22px 22px;
  scroll-snap-align: start;
}

.hidamari .itinerary-card__day {
  color: var(--blue-strong);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hidamari .itinerary-card h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.45;
  margin: 22px 0 18px;
}

.hidamari .itinerary-card__copy {
  background: #fff7dc;
  border-radius: 10px;
  margin-top: auto;
  padding: 16px;
}

.hidamari .itinerary-card__copy strong {
  color: #825800;
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
}

.hidamari .itinerary-card__copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.hidamari .fact-table,
.hidamari .venue-table {
  border-collapse: collapse;
  width: 100%;
}

.hidamari .fact-table th,
.hidamari .fact-table td,
.hidamari .venue-table th,
.hidamari .venue-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

.hidamari .fact-table th,
.hidamari .venue-table th {
  background: var(--pale);
  color: var(--navy);
  font-weight: 700;
  width: 28%;
}

.hidamari .venue-table th {
  width: auto;
}

.hidamari .venue-table a {
  color: var(--blue-strong);
  font-weight: 700;
}

.hidamari .faq-list {
  border-top: 1px solid var(--line);
}

.hidamari .faq-list details {
  border-bottom: 1px solid var(--line);
}

.hidamari .faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  min-height: 64px;
  padding: 20px 52px 20px 0;
  position: relative;
}

.hidamari .faq-list summary::-webkit-details-marker {
  display: none;
}

.hidamari .faq-list summary::after {
  color: var(--blue-strong);
  content: "+";
  font-family: var(--utility);
  font-size: 28px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.hidamari .faq-list details[open] summary::after {
  content: "−";
}

.hidamari .faq-list details > div {
  color: var(--muted);
  padding: 0 52px 24px 0;
}

.hidamari .form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(28px, 5vw, 56px);
}

.hidamari .demo-notice {
  background: var(--cream);
  border-left: 4px solid var(--sky);
  color: #5d625f;
  margin-bottom: 28px;
  padding: 14px 18px;
}

.hidamari .form-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hidamari .field {
  display: grid;
  gap: 8px;
}

.hidamari .field--full {
  grid-column: 1 / -1;
}

.hidamari .form-section {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 10px 0 8px;
  min-width: 0;
  padding: 30px 0 0;
}

.hidamari .form-section:first-child {
  border-top: 0;
  margin-top: 4px;
  padding-top: 10px;
}

.hidamari .form-section legend {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  gap: 14px;
  line-height: 1.35;
  padding: 0 18px 0 0;
}

.hidamari .form-section__number {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: 16px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.hidamari .form-section__block {
  margin-top: 24px;
}

.hidamari .form-section__block + .form-section__block {
  margin-top: 34px;
}

.hidamari .form-section__block h3 {
  color: var(--blue-strong);
  font-size: 17px;
  margin: 0 0 16px;
}

.hidamari .form-section__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hidamari .required {
  color: var(--error);
  font-size: 14px;
  margin-left: 6px;
}

.hidamari .required--optional {
  color: var(--muted);
}

.hidamari .required--conditional {
  color: #996000;
}

.hidamari .checkbox-field {
  align-items: start;
  background: var(--pale);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
}

.hidamari .checkbox-field input {
  flex: 0 0 auto;
  height: 20px;
  margin-top: 4px;
  width: 20px;
}

.hidamari .checkbox-field--consent-gate {
  border: 1px solid var(--line);
  margin-top: 24px;
}

.hidamari .checkbox-field--consent-gate:has(input:checked) {
  background: #eef8f3;
  border-color: #8fc8ad;
}

.hidamari .form-question-panel {
  margin-top: 36px;
}

.hidamari .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.hidamari .form-actions button {
  border: 1px solid var(--blue-strong);
  border-radius: 999px;
  min-height: 52px;
  padding: 12px 26px;
}

.hidamari .form-actions button[type="submit"],
.hidamari .form-actions [data-form-complete] {
  background: var(--blue-strong);
  color: var(--white);
}

.hidamari .form-actions [data-form-back] {
  background: var(--white);
  color: var(--blue-strong);
}

.hidamari .form-review {
  display: grid;
  gap: 0;
  margin: 24px 0;
}

.hidamari .form-review > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 210px 1fr;
}

.hidamari .form-review dt,
.hidamari .form-review dd {
  margin: 0;
  padding: 14px 16px;
}

.hidamari .form-review dt {
  background: var(--pale);
  font-weight: 700;
}

.hidamari .complete-panel {
  padding: 32px 0;
  text-align: center;
}

.hidamari .complete-panel__mark {
  align-items: center;
  background: var(--pale);
  border-radius: 50%;
  color: var(--success);
  display: inline-flex;
  font-size: 34px;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.hidamari .gate {
  background: var(--cream);
  border: 1px solid #dedbd1;
  border-radius: var(--radius);
  margin-bottom: 40px;
  padding: 28px;
}

.hidamari .gate form {
  align-items: end;
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.hidamari .gate label {
  display: grid;
  flex: 1;
  font-weight: 700;
  gap: 6px;
}

.hidamari .gate input {
  border: 1px solid var(--line);
  border-radius: 7px;
  min-height: 48px;
  padding: 10px 12px;
}

.hidamari .gate button {
  background: var(--navy);
  border: 0;
  border-radius: 7px;
  color: var(--white);
  min-height: 48px;
  padding: 10px 20px;
}

.hidamari .gate__message {
  color: var(--error);
  margin: 10px 0 0;
}

.hidamari .article {
  margin: 0 auto;
  max-width: var(--reading);
  padding: 60px 30px 110px;
}

.hidamari .article h2 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 30px;
  margin: 58px 0 18px;
}

.hidamari .article p {
  margin: 0 0 1.6em;
}

.hidamari .article figure {
  margin: 42px 0;
}

.hidamari .article figcaption {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.hidamari .article-share {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
  padding: 20px 0;
}

.hidamari .article-share span {
  color: var(--muted);
  font-size: 14px;
}

.hidamari .article-share button {
  background: #f1f3f4;
  border: 0;
  border-radius: 999px;
  color: #68737a;
  cursor: not-allowed;
  min-height: 40px;
  padding: 8px 14px;
}

.hidamari .pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.hidamari .pagination button,
.hidamari .pagination a {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
}

.hidamari .pagination [aria-current="page"] {
  background: var(--navy);
  color: var(--white);
}

.hidamari .cta-band {
  background: var(--blue-strong);
  color: var(--white);
  overflow: hidden;
  padding: clamp(76px, 9vw, 124px) max(30px, calc((100vw - var(--content)) / 2));
  position: relative;
}

.hidamari .cta-band__inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hidamari .cta-band h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.35;
  margin: 0;
}

.hidamari .cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 22px 0 0;
}

.hidamari .related-banners {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hidamari .related-banner {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  min-height: 170px;
  padding: 24px;
  text-align: center;
}

.hidamari .related-banner > a {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hidamari .related-banner img {
  display: block;
  height: 110px;
  max-height: none;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.hidamari .related-banner--pending {
  background: #f5f6f7;
  color: var(--muted);
}

.hidamari .site-footer {
  background: #0d3152;
  color: var(--white);
  padding: 72px max(30px, calc((100vw - var(--content)) / 2)) 24px;
}

.hidamari .site-footer__top {
  display: grid;
  gap: 54px;
  grid-template-columns: 1fr 2fr;
}

.hidamari .site-footer__brand {
  background: var(--white);
  border-radius: 10px;
  display: inline-flex;
  height: 122px;
  padding: 8px;
  width: 190px;
}

.hidamari .site-footer__brand img {
  object-fit: contain;
}

.hidamari .site-footer__brand-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 14px 0 0;
}

.hidamari .site-footer__links {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hidamari .site-footer__links strong {
  color: #9dd8ef;
  display: block;
  font-family: var(--utility);
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.hidamari .site-footer__links a,
.hidamari .site-footer__links span {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-size: 14px;
  margin: 8px 0;
}

.hidamari .site-footer__links span {
  color: rgba(255, 255, 255, 0.46);
}

.hidamari .site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 20px;
}

.hidamari .mobile-actions {
  display: none;
}

.hidamari .utility-note {
  background: var(--pale);
  border-left: 4px solid var(--blue);
  margin: 24px 0;
  padding: 16px 18px;
}

.hidamari .utility-note--warning {
  background: #fbf4e8;
  border-left-color: #bd7b22;
}

.hidamari .trust-list {
  border-top: 1px solid var(--line);
}

.hidamari .trust-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 210px 1fr;
  padding: 28px 0;
}

.hidamari .trust-list h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 21px;
  margin: 0;
}

.hidamari .trust-list p {
  color: var(--muted);
  margin: 0;
}

.hidamari .section--navy .trust-list {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.hidamari .section--navy .trust-list article {
  border-bottom-color: rgba(255, 255, 255, 0.24);
}

.hidamari .section--navy .trust-list h3 {
  color: var(--white);
}

.hidamari .section--navy .trust-list p {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1180px){
  .hidamari {
    --header-height: 74px;
  }

  .hidamari .brand {
    height: 66px;
    width: 106px;
  }

  .hidamari .title-line-tablet {
    display: block;
  }

  .hidamari .menu-toggle {
    display: flex;
  }

  .hidamari .site-nav {
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 28px 50px rgba(18, 63, 104, 0.16);
    display: none;
    flex-direction: column;
    gap: 10px;
    left: 0;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 20px 30px 34px;
    position: absolute;
    top: var(--header-height);
    width: 100%;
  }

  .hidamari .site-nav.is-open {
    display: flex;
  }

  .hidamari .site-nav__links {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hidamari .site-nav__links a,
.hidamari .site-nav__contact {
    background: transparent;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    min-height: 54px;
    padding: 0 8px;
  }

}

@media (max-width: 1100px){
  .hidamari .company-hero__inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .hidamari .venue-detail-hero__inner {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px){

  .hidamari .tour-detail-hero__inner {
    grid-template-columns: 1fr;
  }

  .hidamari .tour-detail-hero__media {
    max-width: 760px;
  }

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

  .hidamari .filter-panel--venues {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hidamari .filter-panel--venues .filter-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .hidamari .purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hidamari .purpose-grid a:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .hidamari .purpose-grid a:nth-child(2n) {
    border-right: 0;
  }

  .hidamari .purpose-grid a:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .hidamari .purpose-grid a:nth-child(n + 5) {
    border-bottom: 0;
  }

  .hidamari .split {
    grid-template-columns: 1fr;
  }

  .hidamari .split--reverse .split__media {
    order: 0;
  }

  .hidamari .workshop-instructor__media {
    max-width: 560px;
    width: 100%;
  }

  .hidamari .filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hidamari .site-footer__top {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px){
  .hidamari .access-map {
    min-height: 280px;
  }

  .hidamari .company-hero__inner {
    gap: 42px;
    padding: 44px 20px 70px;
  }

  .hidamari .company-hero__copy h1 {
    font-size: clamp(32px, 8.5vw, 40px);
    line-height: 1.4;
  }

  .hidamari .company-hero__copy p {
    font-size: 16px;
    margin-top: 20px;
  }

  .hidamari .company-profile > div {
    gap: 6px;
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .hidamari {
    font-size: 16px;
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .hidamari .site-header__inner {
    padding: 0 16px;
  }

  .hidamari .site-nav {
    padding: 12px 20px 28px;
  }

  .hidamari .site-nav__links {
    grid-template-columns: 1fr;
  }

  .hidamari .home-hero {
    background-image: linear-gradient(90deg, rgba(8, 34, 56, 0.82), rgba(8, 34, 56, 0.42)), image-set(url("../images/home-hero-1280.jpg") 1x, url("../images/home-hero.jpg") 2x);
    background-position: 56% center;
    min-height: calc(100svh - var(--header-height));
  }

  .hidamari .home-hero__inner,
.hidamari .page-hero__inner,
.hidamari .tour-detail-hero__inner,
.hidamari .section,
.hidamari .section--wide,
.hidamari .home-news__inner,
.hidamari .article {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hidamari .home-news__inner {
    gap: 24px;
    grid-template-columns: 1fr;
    padding-bottom: 42px;
    padding-top: 42px;
  }

  .hidamari .home-news__heading {
    padding-left: 16px;
  }

  .hidamari .home-news__item {
    gap: 6px 12px;
    grid-template-columns: minmax(0, 1fr) 20px;
    padding: 14px 2px;
  }

  .hidamari .home-news__date {
    grid-column: 1;
  }

  .hidamari .home-news__item strong {
    grid-column: 1;
  }

  .hidamari .home-news__item i {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .hidamari .home-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hidamari .tour-detail-hero__inner {
    gap: 34px;
    padding-bottom: 58px;
    padding-top: 48px;
  }

  .hidamari .tour-detail-hero h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .hidamari .tour-detail-hero__lead {
    font-size: 16px;
  }

  .hidamari .tour-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hidamari .home-hero__kicker {
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .hidamari .home-hero h1 em {
    white-space: normal;
  }

  .hidamari .home-hero__mobile-line {
    display: block;
  }

  .hidamari .home-hero__lead-mobile-line {
    display: block;
  }

  .hidamari .home-hero__lead br {
    display: none;
  }

  .hidamari .page-hero {
    min-height: 380px;
  }

  .hidamari .page-hero h1 {
    line-break: strict;
  }

  .hidamari .page-hero h1.page-hero__title--company {
    font-size: clamp(34px, 9.2vw, 38px);
  }

  .hidamari .page-hero h1.page-hero__title--festival-detail {
    font-size: clamp(16px, 4vw, 52px);
  }

  .hidamari .music-hero-title__sub,
.hidamari .workshop-hero-title__sub {
    font-size: 0.6em;
  }

  .hidamari .mice-hero-title__sub {
    font-size: 0.56em;
  }

  .hidamari .section-heading h2,
.hidamari .content-heading {
    font-size: clamp(29px, 7.5vw, 32px);
  }

  .hidamari .title-line-mobile {
    display: block;
  }

  .hidamari .title-keep-mobile {
    white-space: nowrap;
  }

  .hidamari .page-hero--image {
    background-image: linear-gradient(90deg, rgba(8, 34, 56, 0.84), rgba(8, 34, 56, 0.3)), var(--hero-image);
    min-height: 540px;
  }

  .hidamari .venue-detail-hero__inner {
    gap: 36px;
    min-height: 0;
    padding: 54px 20px 64px;
  }

  .hidamari .venue-detail-hero__copy h1 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .hidamari .venue-detail-hero__facts {
    padding: 0;
  }

  .hidamari .venue-detail-hero__facts .fact-table th,
.hidamari .venue-detail-hero__facts .fact-table td {
    padding: 10px 0;
  }

  .hidamari .venue-detail-hero__facts .fact-table th {
    padding-right: 0;
    width: 100%;
  }

  .hidamari .breadcrumb {
    line-height: 1.7;
    overflow: visible;
    overflow-wrap: anywhere;
    padding-left: 20px;
    padding-right: 20px;
    white-space: normal;
  }

  .hidamari .section-heading--split {
    align-items: start;
    display: block;
  }

  .hidamari .grid--2,
.hidamari .grid--3,
.hidamari .grid--4,
.hidamari .purpose-grid,
.hidamari .filter-panel,
.hidamari .form-grid,
.hidamari .form-section__grid,
.hidamari .related-banners {
    grid-template-columns: 1fr;
  }

  .hidamari .mice-service-grid .card__body {
    padding: 24px;
  }

  .hidamari .purpose-grid a,
.hidamari .purpose-grid a:nth-child(2n),
.hidamari .purpose-grid a:nth-child(3n),
.hidamari .purpose-grid a:nth-child(n + 4),
.hidamari .purpose-grid a:nth-child(n + 5) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 112px;
    padding: 22px;
  }

  .hidamari .purpose-grid a:last-child {
    border-bottom: 0;
  }

  .hidamari .filter-actions {
    align-items: stretch;
  }

  .hidamari .result-toolbar {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .hidamari .document-table,
.hidamari .document-table tbody,
.hidamari .document-table tr,
.hidamari .document-table td {
    display: block;
    width: 100%;
  }

  .hidamari .document-table tr {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .hidamari .document-table td {
    border-bottom: 0;
    padding: 0;
  }

  .hidamari .document-table__info {
    display: block;
  }

  .hidamari .document-table__info h3 {
    font-size: 18px;
  }

  .hidamari .document-table__action {
    margin-top: 18px;
    text-align: left;
  }

  .hidamari .document-table__download {
    min-width: 0;
  }

  .hidamari .actions,
.hidamari .form-actions,
.hidamari .gate form {
    align-items: stretch;
    flex-direction: column;
  }

  .hidamari .button,
.hidamari .form-actions button,
.hidamari .gate button {
    justify-content: space-between;
    width: 100%;
  }

  .hidamari .brochure-download {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
  }

  .hidamari .timeline li {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .hidamari .timeline--readable li {
    gap: 10px;
    padding-left: 28px;
  }

  .hidamari .timeline--readable li::before {
    top: 5px;
  }

  .hidamari .timeline--readable .timeline__label {
    padding-top: 0;
  }

  .hidamari .timeline--readable li > div {
    padding: 20px;
  }

  .hidamari .section-subheading--spaced {
    margin-top: 48px;
  }

  .hidamari .workshop-guidance__item {
    padding: 22px 20px;
  }

  .hidamari .itinerary-cards {
    gap: 12px;
    grid-template-columns: repeat(5, minmax(250px, 82vw));
  }

  .hidamari .itinerary-card {
    min-height: 290px;
    padding: 24px 20px 20px;
  }

  .hidamari .fact-table,
.hidamari .fact-table tbody,
.hidamari .fact-table tr,
.hidamari .fact-table th,
.hidamari .fact-table td,
.hidamari .venue-table,
.hidamari .venue-table tbody,
.hidamari .venue-table tr,
.hidamari .venue-table th,
.hidamari .venue-table td {
    display: block;
    width: 100%;
  }

  .hidamari .fact-table tr,
.hidamari .venue-table tr {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }

  .hidamari .fact-table th,
.hidamari .fact-table td,
.hidamari .venue-table th,
.hidamari .venue-table td {
    border: 0;
    padding: 8px 12px;
  }

  .hidamari .venue-table thead {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .hidamari .venue-table td::before {
    color: var(--navy);
    content: attr(data-label);
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .hidamari .form-review > div {
    grid-template-columns: 1fr;
  }

  .hidamari .form-review dd {
    padding-top: 8px;
  }

  .hidamari .trust-list article {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .hidamari .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hidamari .site-footer__links {
    grid-template-columns: 1fr;
  }

  .hidamari .site-footer__bottom {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .hidamari .mobile-actions {
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding-bottom: env(safe-area-inset-bottom);
    position: fixed;
    width: 100%;
    z-index: 1100;
  }

  .hidamari .mobile-actions a {
    align-items: center;
    background: var(--white);
    border-top: 1px solid var(--line);
    display: flex;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    min-height: 66px;
  }

  .hidamari .mobile-actions a:last-child {
    background: var(--blue-strong);
    border-color: var(--blue-strong);
    color: var(--white);
  }
}

@media (prefers-reduced-motion: reduce){
  .hidamari {
    scroll-behavior: auto;
  }

  .hidamari,
.hidamari *,
.hidamari *::before,
.hidamari *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.hidamari /* WORKSHOP past-event PDFs */
.workshop-pdf-grid {
  align-items: stretch;
}

.hidamari .workshop-pdf-card {
  display: flex;
  flex-direction: column;
}

.hidamari .workshop-pdf-embed {
  background: #eef6fb;
  border-bottom: 1px solid var(--line);
  flex: 1;
  min-height: 480px;
  position: relative;
}

.hidamari .workshop-pdf-embed object {
  border: 0;
  display: block;
  height: 480px;
  width: 100%;
}

.hidamari .workshop-pdf-zoom-trigger {
  background: linear-gradient(180deg, rgba(8, 48, 82, 0) 62%, rgba(8, 48, 82, 0.38) 100%);
  border: 0;
  cursor: zoom-in;
  inset: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
}

.hidamari .workshop-pdf-zoom-trigger span {
  background: rgba(7, 57, 92, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  bottom: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 15px;
  position: absolute;
  right: 16px;
}

.hidamari .workshop-pdf-zoom-trigger:hover,
.hidamari .workshop-pdf-zoom-trigger:focus-visible {
  background: linear-gradient(180deg, rgba(37, 127, 196, 0.06) 45%, rgba(8, 48, 82, 0.5) 100%);
  outline: 3px solid rgba(37, 127, 196, 0.7);
  outline-offset: -3px;
}

.hidamari .workshop-pdf-dialog {
  background: transparent;
  border: 0;
  height: min(92vh, 920px);
  margin: auto;
  max-height: none;
  max-width: none;
  padding: 0;
  width: min(1240px, calc(100vw - 40px));
}

.hidamari .workshop-pdf-dialog::backdrop {
  background: rgba(4, 28, 46, 0.82);
  backdrop-filter: blur(4px);
}

.hidamari .workshop-pdf-dialog__panel {
  background: #f7fbfe;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 20, 38, 0.38);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
}

.hidamari .workshop-pdf-dialog__header {
  align-items: center;
  background: #07395c;
  color: #fff;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 70px;
  padding: 14px 18px 14px 24px;
}

.hidamari .workshop-pdf-dialog__header h2 {
  color: inherit;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  margin: 0;
}

.hidamari .workshop-pdf-dialog__close {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #07395c;
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-weight: 700;
  min-width: 88px;
  padding: 10px 18px;
}

.hidamari .workshop-pdf-dialog__close:hover,
.hidamari .workshop-pdf-dialog__close:focus-visible {
  background: #dff2fc;
  outline: 3px solid rgba(90, 191, 234, 0.85);
  outline-offset: 2px;
}

.hidamari .workshop-pdf-dialog__stage {
  min-height: 0;
}

.hidamari .workshop-pdf-dialog__viewer {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.hidamari .workshop-pdf-dialog-open {
  overflow: hidden;
}

@media (max-width: 720px){
  .hidamari .workshop-pdf-embed,
.hidamari .workshop-pdf-embed object {
    min-height: 440px;
    height: 440px;
  }

  .hidamari .workshop-pdf-dialog {
    height: calc(100dvh - 20px);
    width: calc(100vw - 20px);
  }

  .hidamari .workshop-pdf-dialog__panel {
    border-radius: 12px;
  }

  .hidamari .workshop-pdf-dialog__header {
    min-height: 62px;
    padding: 10px 10px 10px 16px;
  }

  .hidamari .workshop-pdf-dialog__close {
    min-width: 74px;
    padding: 8px 14px;
  }
}


/* Gutenberg compatibility and SWELL reset — kept inside the site scope. */
.hidamari.admin-bar-visible .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .hidamari.admin-bar-visible .site-header { top: 46px; }
}
.hidamari .hidamari-main,
.hidamari .hidamari-main > .hidamari,
.hidamari .wp-block-cover,
.hidamari .wp-block-columns,
.hidamari .wp-block-column { margin-block: 0; }
.hidamari .hidamari-main > .hidamari { max-width: none; padding: 0; }
.hidamari #content,
.hidamari .site-content { margin: 0; max-width: none; padding: 0; width: 100%; }
.hidamari .wp-block-cover { padding: 0; }
.hidamari .wp-block-cover__inner-container { color: inherit; width: 100%; }
.hidamari .wp-block-group > .wp-block-group__inner-container { display: contents; }
.hidamari .wp-block-image { margin: 0; }
.hidamari .wp-block-image img { width: 100%; }
/*
 * Gutenberg inserts a <figure> between the static image frame and <img>.
 * Fixed-ratio card frames therefore need the figure itself to inherit the
 * frame size; otherwise landscape images leave a band below them and square
 * images are clipped before object-fit can take effect.
 */
.hidamari .card__image > .wp-block-image,
.hidamari .media-card__image > .wp-block-image,
.hidamari .tour-card__image > .wp-block-image { height: 100%; overflow: hidden; width: 100%; }
.hidamari .card__image > .wp-block-image img,
.hidamari .media-card__image > .wp-block-image img,
.hidamari .tour-card__image > .wp-block-image img { display: block; height: 100% !important; width: 100%; }
.hidamari iframe.access-map { display: block; margin: 0; }
.hidamari .wp-block-buttons { gap: 12px; }
.hidamari .wp-block-button__link { border-radius: 999px; }
/* Keep official SNS actions legible and visually tied to each platform. */
.hidamari .home-sns-link > .wp-block-button__link {
  border: 0;
  color: #fff !important;
  transition: filter 180ms ease, transform 180ms ease;
}
.hidamari .home-sns-link--instagram > .wp-block-button__link {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 48%, #8134af 100%) !important;
}
.hidamari .home-sns-link--x > .wp-block-button__link {
  background: #000 !important;
}
.hidamari .home-sns-link--facebook > .wp-block-button__link {
  background: #1877f2 !important;
}
.hidamari .home-sns-link > .wp-block-button__link:hover,
.hidamari .home-sns-link > .wp-block-button__link:focus-visible {
  color: #fff !important;
  filter: brightness(.9);
  transform: translateY(-2px);
}
.hidamari .split.wp-block-columns { gap: clamp(34px, 6vw, 78px) !important; }
.hidamari .company-hero__inner.wp-block-columns { gap: clamp(48px, 7vw, 96px) !important; }
.hidamari .venue-detail-hero__inner.wp-block-columns { gap: clamp(44px, 6vw, 82px) !important; }
.hidamari .section-heading--split.wp-block-columns { align-items: flex-end !important; display: flex !important; justify-content: space-between; margin-bottom: clamp(32px, 4vw, 56px); }
.hidamari .section-heading--split > .wp-block-column { flex-basis: auto !important; flex-grow: 0; }
.hidamari .section-heading--split > .wp-block-column.text-link { border: 0; display: block; min-height: 0; padding-top: 0; }
.hidamari .section-heading--split > .wp-block-column.text-link::after { content: none; }
.hidamari .section-heading--split > .wp-block-column.text-link > p.text-link { font-size: 14px; line-height: 1.75; margin: 0; }
.hidamari .wp-block-column > .placeholder.wp-block-paragraph,
.hidamari .wp-block-column > .wp-block-buttons,
.hidamari .wp-block-column > .wp-block-image { margin-block: 0; }
.hidamari .split__media > .wp-block-image img { aspect-ratio: 16 / 10; height: auto !important; object-fit: cover; }
.hidamari .split__copy p,
.hidamari .check-list li { line-height: 1.75; }
.hidamari .workshop-instructor__copy p { line-height: 1.9; }
.hidamari .workshop-guidance__item > p.wp-block-paragraph { line-height: 1.9; margin: 0; }
.hidamari .brochure-download > p.wp-block-paragraph { margin: 0; }
.hidamari .cta-band p.actions.wp-block-paragraph { margin-top: 28px; }
.hidamari .checkbox-field,
.hidamari .checkbox-field > span { font-size: 16px; }
.hidamari .venue-detail-hero__facts .fact-table th,
.hidamari .venue-detail-hero__facts .fact-table td { line-height: 1.75; }
.hidamari figure.company-profile.wp-block-table table { background: transparent; border: 0; border-collapse: collapse; margin: 0; width: 100%; }
.hidamari figure.company-profile.wp-block-table tr { border-bottom: 1px solid var(--line); display: grid; gap: 22px; grid-template-columns: 135px minmax(0, 1fr); padding: 20px 0; }
.hidamari figure.company-profile.wp-block-table th,
.hidamari figure.company-profile.wp-block-table td { background: transparent; border: 0; line-height: 1.75; margin: 0; padding: 0; text-align: left; }
.hidamari figure.company-profile.wp-block-table th { color: var(--muted); font-weight: 700; }
.hidamari figure.company-profile.wp-block-table td { color: var(--ink); font-weight: 600; }
.hidamari .button.is-linked-card > p:not(.card__overlay) { display: contents; margin: 0; }
.hidamari .wp-block-button.button > .wp-block-button__link { background: transparent !important; border: 0; border-radius: 0; color: inherit !important; font: inherit; min-height: 0; padding: 0; }
.hidamari .wp-block-button.button { min-height: 54px; }
.hidamari .wp-block-button.is-disabled .wp-block-button__link { cursor: not-allowed; opacity: .58; pointer-events: none; }
.hidamari .is-linked-card { position: relative; }
.hidamari .hidamari-stretched-link::after { content: ""; inset: 0; position: absolute; z-index: 2; }
.hidamari .home-news__item > p:not(.card__overlay),
.hidamari .purpose-grid > .is-linked-card > p:not(.card__overlay) { display: contents; margin: 0; }
.hidamari .card.is-linked-card,
.hidamari .media-card.is-linked-card,
.hidamari .tour-card.is-linked-card { display: flex; flex-direction: column; transition: box-shadow 180ms ease, transform 180ms ease; }
.hidamari .card.is-linked-card:hover,
.hidamari .media-card.is-linked-card:hover,
.hidamari .tour-card.is-linked-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.hidamari p.tag-row.wp-block-paragraph { margin-bottom: 14px; }
.hidamari .tour-detail-hero__copy p.tag-row.wp-block-paragraph { margin-bottom: 26px; }
.hidamari .card p.card__link,
.hidamari .media-card p.card__link,
.hidamari .tour-card p.card__link { margin-top: auto; }
.hidamari .purpose-grid > .is-linked-card { align-items: end; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); display: grid; gap: 10px; grid-template-columns: 1fr auto; min-height: 150px; padding: 28px; transition: background 180ms ease, color 180ms ease; }
.hidamari .purpose-grid > .is-linked-card:nth-child(3n) { border-right: 0; }
.hidamari .purpose-grid > .is-linked-card:nth-child(n + 4) { border-bottom: 0; }
.hidamari .purpose-grid > .is-linked-card:hover { background: var(--navy); color: var(--white); }
.hidamari .purpose-grid > .is-linked-card:hover strong,
.hidamari .purpose-grid > .is-linked-card:focus-within strong { color: var(--white) !important; }
.hidamari .purpose-grid > .is-linked-card:hover small,
.hidamari .purpose-grid > .is-linked-card:hover i,
.hidamari .purpose-grid > .is-linked-card:focus-within small,
.hidamari .purpose-grid > .is-linked-card:focus-within i { color: #bdeaff !important; }
.hidamari .purpose-grid > .is-linked-card:focus-within { background: var(--navy); color: var(--white); }
.hidamari .purpose-grid > .is-linked-card .card__overlay .hidamari-stretched-link,
.hidamari .purpose-grid > .is-linked-card .card__overlay .hidamari-stretched-link:hover,
.hidamari .purpose-grid > .is-linked-card .card__overlay .hidamari-stretched-link:focus { background: transparent !important; border: 0 !important; color: inherit !important; min-height: 0 !important; padding: 0 !important; }
.hidamari .purpose-grid > .is-linked-card .card__overlay .hidamari-stretched-link::after { background: transparent !important; }
.hidamari .wp-block-table { margin: 0; overflow-x: auto; }
.hidamari .wp-block-table table { border-collapse: collapse; width: 100%; }
.hidamari .wp-block-table td,
.hidamari .wp-block-table th { border-left: 0; border-right: 0; }
.hidamari figure.fact-table.wp-block-table th { width: 28%; }
.hidamari .venue-detail-hero__facts figure.fact-table.wp-block-table th { width: 36%; }
.hidamari .wp-block-details summary { cursor: pointer; }
.hidamari .wp-block-file > a:not(.wp-block-file__button) { clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.hidamari .document-table { border-top: 1px solid var(--ink); }
.hidamari .document-table__row { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 24px; grid-template-columns: minmax(0, 1fr) auto; padding: 28px 0; }
.hidamari .document-table__row .wp-block-file { margin: 0; }
.hidamari .document-table__row .wp-block-file__button { background: var(--blue); border-radius: 10px; color: var(--white); display: inline-flex; font-weight: 700; justify-content: center; margin-left: 0 !important; min-width: 210px; padding: 16px 22px; }
.hidamari .timeline > .timeline__item,
.hidamari .itinerary > .itinerary-card { list-style: none; }
.hidamari .p-toc { display: none !important; }
.hidamari figure.tour-summary__grid.wp-block-table { border: 0; display: block; overflow: visible; }
.hidamari figure.tour-summary__grid.wp-block-table table { border: 0; margin: 0; width: 100%; }
.hidamari figure.tour-summary__grid.wp-block-table tbody { border-left: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hidamari figure.tour-summary__grid.wp-block-table tr { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); display: block; min-width: 0; padding: 14px 16px; }
.hidamari figure.tour-summary__grid.wp-block-table th,
.hidamari figure.tour-summary__grid.wp-block-table td { border: 0; display: block; padding: 0; text-align: left; width: auto; }
.hidamari figure.tour-summary__grid.wp-block-table th { color: var(--muted); font-size: 13px; font-weight: 700; margin: 0 0 3px; }
.hidamari figure.tour-summary__grid.wp-block-table td { color: var(--navy); font-family: var(--display); font-size: 16px; font-weight: 700; line-height: 1.5; overflow-wrap: anywhere; }
.hidamari .timeline > .timeline__item { border-left: 2px solid var(--line); display: grid; gap: 24px; grid-template-columns: 90px 1fr; margin-left: 14px; padding: 0 0 36px 34px; position: relative; }
.hidamari .timeline > .timeline__item:last-child { padding-bottom: 0; }
.hidamari .timeline > .timeline__item::before { background: var(--white); border: 5px solid var(--blue); border-radius: 50%; content: ""; height: 17px; left: -10px; position: absolute; top: 5px; width: 17px; }
.hidamari .timeline--readable > .timeline__item { gap: 20px; grid-template-columns: 88px minmax(0, 1fr); padding-bottom: 24px; }
.hidamari .timeline--readable > .timeline__item::before { top: 27px; }
.hidamari .timeline--readable > .timeline__item > .timeline__label { font-size: clamp(22px, 2vw, 26px); letter-spacing: .04em; line-height: 1; padding-top: 24px; }
.hidamari .timeline--readable > .timeline__item > .wp-block-group { background: linear-gradient(135deg, var(--white), #f8fbfd); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
.hidamari .company-profile.wp-block-table { background: transparent; }
.hidamari .company-profile.wp-block-table table { background: transparent; }
.hidamari .hero-position-right .wp-block-cover__image-background { object-position: right center; }
.hidamari .hero-position-left .wp-block-cover__image-background { object-position: left center; }
.hidamari .split.wp-block-columns,
.hidamari .split.wp-block-columns p { line-height: 1.75; }
.hidamari .split.workshop-instructor .workshop-instructor__copy p { line-height: 1.9; }
.hidamari .home-hero { background-image: linear-gradient(90deg, rgba(8, 34, 56, 0.82) 0%, rgba(8, 34, 56, 0.5) 36%, rgba(8, 34, 56, 0.04) 72%); }
.hidamari .home-hero .wp-block-cover__image-background,
.hidamari .page-hero--image .wp-block-cover__image-background { z-index: 0; }
.hidamari .home-hero > .wp-block-cover__background { background: linear-gradient(90deg, rgba(8, 34, 56, 0.82) 0%, rgba(8, 34, 56, 0.5) 36%, rgba(8, 34, 56, 0.04) 72%); opacity: 1 !important; z-index: 1; }
.hidamari .page-hero--image > .wp-block-cover__background { background: linear-gradient(90deg, rgba(8, 34, 56, 0.8), rgba(8, 34, 56, 0.18) 62%, rgba(8, 34, 56, 0.04)); opacity: 1 !important; z-index: 1; }
.hidamari .home-hero .wp-block-cover__inner-container,
.hidamari .page-hero--image .wp-block-cover__inner-container { position: relative; z-index: 2; }
.hidamari .card__overlay { inset: 0; margin: 0; pointer-events: none; position: absolute; z-index: 2; }
.hidamari .card__overlay .hidamari-stretched-link { display: block; height: 100%; pointer-events: auto; width: 100%; }
.hidamari .editor-styles-wrapper { padding: 0; }
@media (max-width: 900px) {
  .hidamari .venue-detail-hero__inner.wp-block-columns { gap: 36px !important; }
  .hidamari .purpose-grid > .is-linked-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .hidamari .purpose-grid > .is-linked-card:nth-child(2n) { border-right: 0; }
  .hidamari .purpose-grid > .is-linked-card:nth-child(n + 4) { border-bottom: 1px solid var(--line); }
  .hidamari .purpose-grid > .is-linked-card:nth-child(n + 5) { border-bottom: 0; }
}
@media (max-width: 620px) {
  .hidamari .venue-detail-hero__facts figure.fact-table.wp-block-table th { width: 100%; }
  .hidamari .company-hero__inner.wp-block-columns { gap: 42px !important; }
  .hidamari figure.company-profile.wp-block-table tr { gap: 6px; grid-template-columns: 1fr; padding: 16px 0; }
  .hidamari figure.tour-summary__grid.wp-block-table tbody { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hidamari .purpose-grid > .is-linked-card,
  .hidamari .purpose-grid > .is-linked-card:nth-child(2n),
  .hidamari .purpose-grid > .is-linked-card:nth-child(3n),
  .hidamari .purpose-grid > .is-linked-card:nth-child(n + 4),
  .hidamari .purpose-grid > .is-linked-card:nth-child(n + 5) { border-bottom: 1px solid var(--line); border-right: 0; min-height: 112px; padding: 22px; }
  .hidamari .purpose-grid > .is-linked-card:last-child { border-bottom: 0; }
  .hidamari .page-hero--image > .wp-block-cover__background { background: linear-gradient(90deg, rgba(8, 34, 56, 0.84), rgba(8, 34, 56, 0.3)); }
}
@media (max-width: 700px) {
  .hidamari .section-heading--split.wp-block-columns { align-items: flex-start !important; display: block !important; }
  .hidamari figure.fact-table.wp-block-table th { width: 100%; }
  .hidamari .checkbox-field:not(.checkbox-field--consent-gate) { min-height: 92px; }
  .hidamari .timeline > .timeline__item { gap: 8px; grid-template-columns: 1fr; }
  .hidamari .timeline--readable > .timeline__item { gap: 10px; padding-left: 28px; }
  .hidamari .timeline--readable > .timeline__item::before { top: 5px; }
  .hidamari .timeline--readable > .timeline__item > .timeline__label { padding-top: 0; }
  .hidamari .timeline--readable > .timeline__item > .wp-block-group { padding: 20px; }
  .hidamari .document-table__row { align-items: stretch; gap: 18px; grid-template-columns: 1fr; padding: 22px 0; }
  .hidamari .document-table__row .wp-block-file__button { width: 100%; }
  .hidamari .venue-table td:nth-child(1)::before { content: "会場名"; }
  .hidamari .venue-table td:nth-child(2)::before { content: "国内・海外区分"; }
  .hidamari .venue-table td:nth-child(3)::before { content: "都市"; }
  .hidamari .venue-table td:nth-child(4)::before { content: "客席数"; }
}

/*
 * Production migration recovery (2026-09-01)
 *
 * Restore page-specific styles that were present before the final migration
 * but were omitted from the deployed child-theme stylesheet.  Keep these
 * rules together so public and editor rendering can be regression-tested as
 * one unit.
 */
body.page-id-20 .hidamari .page-hero__copy {
  max-width: none;
}

body.page-id-20 .hidamari .page-hero h1 {
  white-space: nowrap;
}

.hidamari .page-hero--music .page-hero__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content);
  padding: clamp(64px, 7vw, 96px) 30px;
}

.hidamari .page-hero--music {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.hidamari .page-hero--music > .wp-block-cover__inner-container {
  max-width: none !important;
  width: 100% !important;
}

.hidamari .page-hero--music .page-hero__copy {
  max-width: min(500px, 38vw);
}

.hidamari .page-hero--music h1 {
  font-size: clamp(50px, 4.4vw, 68px);
}

.hidamari .page-hero--music .music-hero-title__sub {
  font-size: .62em;
}

.hidamari .page-hero--music .page-hero__lead {
  max-width: 500px;
}

.hidamari .page-hero--music .actions {
  flex-wrap: nowrap;
  width: max-content;
}

.hidamari .page-hero--ticket .page-hero__copy,
.hidamari .page-hero--ticket .page-hero__lead {
  max-width: none;
}

.hidamari .ticket-hero-title__main,
.hidamari .ticket-hero-title__sub {
  display: block;
  white-space: nowrap;
}

.hidamari .ticket-hero-title__sub {
  font-size: .72em;
  margin-top: .08em;
}

@media (min-width: 720px) {
  .hidamari .page-hero--ticket .page-hero__lead {
    white-space: nowrap;
  }
}

.hidamari .page-hero__copy > .fullscore-detail-taxonomies,
.hidamari .venue-detail-hero__copy > .fullscore-detail-taxonomies {
  margin: 0 0 22px;
}

.hidamari .fullscore-detail-schedule {
  align-items: baseline;
  border-left: 3px solid var(--blue-strong);
  display: flex;
  gap: 12px;
  margin: 0 0 22px;
  padding: 2px 0 2px 13px;
}

.hidamari .fullscore-detail-schedule__label {
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hidamari .fullscore-detail-schedule__value {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: .01em;
}

.hidamari .venue-list-return {
  padding-left: max(30px, calc((100vw - var(--content)) / 2 + 30px));
  padding-right: max(30px, calc((100vw - var(--content)) / 2 + 30px));
}

.hidamari .filter-panel--festivals .filter-actions {
  grid-column: 1 / -1;
  justify-content: flex-end;
}

.hidamari .company-contact-actions {
  column-gap: 18px !important;
  row-gap: 18px !important;
}

/* Keep all service page heroes on the shared content column. */
.hidamari .page-hero--services,
.hidamari .page-hero--music,
.hidamari .page-hero--workshop,
.hidamari .page-hero--mice,
.hidamari .page-hero--agencies,
.page-id-15 .hidamari .page-hero--image {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.hidamari .page-hero--services > .wp-block-cover__inner-container,
.hidamari .page-hero--music > .wp-block-cover__inner-container,
.hidamari .page-hero--workshop > .wp-block-cover__inner-container,
.hidamari .page-hero--mice > .wp-block-cover__inner-container,
.hidamari .page-hero--agencies > .wp-block-cover__inner-container,
.page-id-15 .hidamari .page-hero--image > .wp-block-cover__inner-container {
  max-width: none !important;
  width: 100% !important;
}

.hidamari .page-hero--services .page-hero__copy,
.hidamari .page-hero--music .page-hero__copy,
.hidamari .page-hero--workshop .page-hero__copy,
.hidamari .page-hero--mice .page-hero__copy,
.hidamari .page-hero--agencies .page-hero__copy,
.page-id-15 .hidamari .page-hero--image .page-hero__copy {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* Services page: business-partner entry below the purpose cards. */
.hidamari .service-partners-entry {
  align-items: stretch;
  background: linear-gradient(125deg, #0e3558 0%, var(--navy) 54%, #1d6295 100%);
  color: var(--white);
  display: grid;
  gap: clamp(38px, 6vw, 82px);
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  overflow: hidden;
  padding-bottom: clamp(64px, 7vw, 96px);
  padding-top: clamp(64px, 7vw, 96px);
}

.hidamari .service-partners-entry__copy {
  align-self: center;
  max-width: 540px;
  min-width: 0;
  position: relative;
}

.hidamari .service-partners-entry h2 {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  white-space: normal;
}

.hidamari .service-partners-entry__title-line {
  display: block;
}

.hidamari .service-partners-entry__copy > p:not(.actions) {
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  line-height: 1.9;
  margin: 22px 0 0;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.hidamari .service-partners-entry .actions {
  margin-bottom: 0;
}

.hidamari .service-partners-entry__media {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(4, 23, 39, .34);
  min-height: 360px;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.hidamari .service-partners-entry__media::after {
  background: linear-gradient(90deg, rgba(8, 34, 56, .2), transparent 58%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hidamari .service-partners-entry__media > .wp-block-image {
  height: 100%;
}

.hidamari .service-partners-entry__media img {
  height: 100% !important;
  object-fit: cover;
  width: 100%;
}

/* Music page statement band. */
.hidamari .music-manifesto {
  background: linear-gradient(120deg, #0c2f4d 0%, var(--navy) 55%, #145985 100%);
  color: var(--white);
  max-width: none;
  padding: clamp(72px, 9vw, 120px) max(30px, calc((100vw - var(--content)) / 2));
}

.hidamari .music-manifesto__inner {
  margin: 0 auto;
  max-width: var(--content);
  width: 100%;
}

.hidamari .music-manifesto__message {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.45;
  margin: 0;
  max-width: 940px;
  text-wrap: balance;
}

/* Documents page: accessible desktop tabs with mobile accordion controls. */
.hidamari .fullscore-document-tabs {
  width: 100%;
}

.hidamari .document-tabs__label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 16px;
}

.hidamari .document-tabs__tablist {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 18px;
}

.hidamari .document-tabs__tab {
  appearance: none;
  background: #f4f8fb;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  min-height: 64px;
  padding: 12px 14px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hidamari .document-tabs__tab:hover,
.hidamari .document-tabs__tab:focus-visible,
.hidamari .document-tabs__tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.hidamari .document-tabs__items {
  display: grid;
  gap: 14px;
}

.hidamari .document-tabs__item[hidden],
.hidamari .document-tabs__panel[hidden] {
  display: none !important;
}

.hidamari .document-tabs__mobile-tab {
  display: none;
}

.hidamari .document-tabs__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 44px);
}

.hidamari .document-tabs__panel-title {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.4;
  margin: 0 0 24px;
}

.hidamari .document-tabs__documents {
  display: grid;
  gap: 14px;
}

.hidamari .document-tabs__document {
  align-items: center;
  background: #fbfdfe;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 18px;
}

.hidamari .document-tabs__filetype {
  align-items: center;
  background: var(--blue-strong);
  border-radius: 12px;
  color: var(--white);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  height: 58px;
  justify-content: center;
  letter-spacing: .06em;
  width: 58px;
}

.hidamari .document-tabs__document-copy {
  min-width: 0;
}

.hidamari .document-tabs__document-copy h3 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 4px;
}

.hidamari .document-tabs__document-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.hidamari .document-tabs__download {
  align-items: center;
  background: var(--blue-strong);
  border: 1px solid var(--blue-strong);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
}

.hidamari .document-tabs__download:hover,
.hidamari .document-tabs__download:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

@media (max-width: 1100px) {
  .hidamari .page-hero--music .actions {
    flex-wrap: wrap;
    width: auto;
  }

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

@media (max-width: 900px) {
  .hidamari .service-partners-entry {
    grid-template-columns: minmax(0, 1fr);
  }

  .hidamari .service-partners-entry__copy,
  .hidamari .service-partners-entry__media {
    max-width: 100%;
    width: 100%;
  }

  .hidamari .service-partners-entry__media {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .hidamari .document-tabs__label {
    margin-bottom: 12px;
  }

  .hidamari .document-tabs__tablist {
    display: none;
  }

  .hidamari .document-tabs__mobile-tab {
    align-items: center;
    appearance: none;
    background: #f4f8fb;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    justify-content: space-between;
    min-height: 58px;
    padding: 13px 16px;
    text-align: left;
    width: 100%;
  }

  .hidamari .document-tabs__mobile-tab > span[aria-hidden="true"] {
    font-size: 22px;
    font-weight: 400;
  }

  .hidamari .document-tabs__mobile-tab[aria-expanded="true"] {
    background: var(--navy);
    border-color: var(--navy);
    border-radius: 12px 12px 0 0;
    color: var(--white);
  }

  .hidamari .document-tabs__mobile-tab[aria-expanded="true"] > span[aria-hidden="true"] {
    font-size: 0;
  }

  .hidamari .document-tabs__mobile-tab[aria-expanded="true"] > span[aria-hidden="true"]::after {
    content: "−";
    font-size: 22px;
  }

  .hidamari .document-tabs__mobile-tab[aria-expanded="true"] + .document-tabs__panel {
    border-radius: 0 0 12px 12px;
  }

  .hidamari .document-tabs__panel {
    box-shadow: none;
    padding: 22px 18px;
  }

  .hidamari .document-tabs__panel-title {
    display: none;
  }

  .hidamari .document-tabs__document {
    align-items: stretch;
    gap: 14px;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .hidamari .document-tabs__download {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 620px) {
  body.page-id-20 .hidamari .page-hero h1 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hidamari .page-hero--ticket h1 {
    font-size: clamp(30px, 9.2vw, 38px);
  }

  .hidamari .page-hero--music .page-hero__copy {
    max-width: none;
  }

  .hidamari .page-hero--music h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hidamari .page-hero--music .music-hero-title__sub {
    font-size: .72em;
    white-space: normal;
  }

  .hidamari .music-manifesto {
    padding: 56px 20px;
  }

  .hidamari .music-manifesto__message {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.5;
  }

  .hidamari .service-partners-entry {
    gap: 34px;
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .hidamari .service-partners-entry h2 {
    font-size: clamp(30px, 9vw, 36px);
  }

  .hidamari .service-partners-entry__copy > p:not(.actions) {
    font-size: 16px;
  }

  .hidamari .service-partners-entry .button {
    width: 100%;
  }

  .hidamari .service-partners-entry__media {
    min-height: 0;
  }

  .hidamari .service-partners-entry__media > .wp-block-image,
  .hidamari .service-partners-entry__media img {
    aspect-ratio: 3 / 2;
    height: auto !important;
  }
}
