* {
  box-sizing: border-box;
}

:root {
  --ink: #29262a;
  --soft-ink: #665e66;
  --line: rgba(70, 62, 70, .18);
  --paper: #fffdfb;
  --rose: #c87a8a;
  --navy: #273646;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 251, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 22px;
  white-space: nowrap;
}

.brand strong {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .04em;
}

.brand span {
  font-size: 16px;
  letter-spacing: .08em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: center;
  font-size: 13px;
  letter-spacing: .08em;
}

.global-nav small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: #777;
}

.ticket-nav {
  padding: 12px 18px;
  background: #1f1817;
  color: #fff;
}

.menu-btn {
  display: none;
}

.section-pad {
  width: min(1500px, calc(100% - 56px));
  margin: 0 auto;
}

.hero {
  padding-top: 26px;
}

.image-layer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 70px rgba(80, 60, 70, .06);
}

.image-layer > img {
  height: 100%;
  object-fit: cover;
}

/* FV */
.hero-visual {
  position: relative;
  min-height: 680px;
}

.hero-visual > img {
  min-height: 680px;
}

.hero-visual::after,
.action-card::after,
.character-card::after,
.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual::after {
  background: linear-gradient(90deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.60) 34%, rgba(255,255,255,.10) 72%, rgba(255,255,255,.22) 100%);
  z-index: 1;
}

.text-on-image,
.card-text,
.character-text {
  position: absolute;
  z-index: 3;
}

.hero-copy {
  top: 54px;
  left: 54px;
  width: min(470px, 45%);
}

/* 右2カードをFV画像の上に重ねる */
.hero-actions {
  position: absolute;
  top: 72px;
  right: 54px;
  z-index: 5;
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.action-card {
  min-height: 255px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(80,60,70,.14);
}

.action-card > img {
  opacity: .82;
}

.action-card::after {
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 58%, rgba(255,255,255,.34) 100%);
}

.label {
  margin: 0 0 16px;
  color: #8b7d84;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5.8vw, 94px);
  letter-spacing: .03em;
}

h1 span {
  font-size: .44em;
  letter-spacing: .14em;
}

.lead {
  font-size: 19px;
  letter-spacing: .08em;
  line-height: 1.85;
}

.date {
  margin-top: 26px;
  font-size: 24px;
  letter-spacing: .05em;
  line-height: 1.55;
}

.date small {
  font-size: .52em;
}

.description {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 1px solid rgba(60,50,55,.4);
  color: var(--soft-ink);
  line-height: 2;
  letter-spacing: .06em;
}

.card-text {
  inset: 30px auto auto 30px;
  width: min(280px, calc(100% - 60px));
}

.card-text h2 {
  margin-bottom: 12px;
  font-size: 29px;
}

.card-text p {
  color: var(--soft-ink);
  line-height: 1.85;
  letter-spacing: .05em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  margin-top: 12px;
  padding: 13px 28px;
  color: #fff;
  letter-spacing: .16em;
}

.rose {
  background: var(--rose);
}

.navy {
  background: var(--navy);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin: 42px 0 18px;
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: .16em;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.character-card {
  min-height: 190px;
}

.character-card::after {
  background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.88) 62%);
}

.character-text {
  right: 24px;
  top: 50%;
  width: 48%;
  transform: translateY(-50%);
}

.character-text h3 {
  margin-bottom: 10px;
  color: #9c5863;
  font-size: 26px;
}

.character-text p {
  color: var(--soft-ink);
  line-height: 1.8;
  letter-spacing: .05em;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 26px;
}

.info-card {
  min-height: 270px;
}

.info-card::after {
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.56) 62%, rgba(255,255,255,.12));
}

.info-card .card-text {
  inset: 32px 26px auto 32px;
  width: auto;
}

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

.small {
  font-size: 13px;
}

.bottom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 32px 0 48px;
}

.wide-btn {
  padding: 24px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  letter-spacing: .14em;
}

.footer {
  padding: 80px 20px 70px;
  text-align: center;
  background: linear-gradient(to bottom, #fffdfb, #faf6f4);
  border-top: 1px solid var(--line);
  color: #777;
}

.footer p {
  margin: 0;
  font-size: 12px;
  line-height: 2.25;
  letter-spacing: .06em;
}

.footer .artist {
  margin-top: 22px;
  color: #555;
}

.footer .copy {
  margin-top: 26px;
  font-size: 12px;
  color: #888;
}

.fade-target {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .global-nav {
    gap: 12px;
    font-size: 12px;
  }

  .brand span {
    display: none;
  }

  .hero-actions {
    width: 320px;
    right: 34px;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    height: 58px;
    padding: 0 18px;
  }

  .brand strong {
    font-size: 22px;
  }

  .menu-btn {
    display: grid;
    gap: 6px;
    width: 42px;
    padding: 10px;
    border: 0;
    background: transparent;
  }

  .menu-btn span {
    display: block;
    height: 1px;
    background: var(--ink);
  }

  .global-nav {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: rgba(255,253,251,.96);
    transform: translateY(-120%);
    transition: transform .35s ease;
    border-bottom: 1px solid var(--line);
  }

  .global-nav.is-open {
    transform: translateY(0);
  }

  .global-nav a {
    padding: 14px 20px;
    border-top: 1px solid rgba(0,0,0,.06);
  }

  .section-pad {
    width: min(100% - 28px, 1500px);
  }

  .hero {
    padding-top: 14px;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 820px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.62) 46%, rgba(255,255,255,.28) 100%);
  }

  .hero-copy {
    top: 30px;
    left: 24px;
    width: calc(100% - 48px);
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 15px;
  }

  .date {
    font-size: 18px;
  }

  .description {
    margin-top: 18px;
    font-size: 13px;
  }

  .hero-actions {
    top: auto;
    left: 20px;
    right: 20px;
    bottom: 24px;
    width: auto;
    gap: 12px;
  }

  .action-card {
    min-height: 210px;
  }

  .card-text {
    inset: 24px auto auto 24px;
  }

  .card-text h2 {
    font-size: 23px;
  }

  .character-grid,
  .info-grid,
  .bottom-cta {
    grid-template-columns: 1fr;
  }

  .character-card {
    min-height: 170px;
  }

  .character-text {
    width: 54%;
    right: 18px;
  }

  .wide-btn {
    padding: 18px;
    font-size: 14px;
  }
}


/* ===== SP header / first-view fix ===== */
@media (max-width: 760px) {
  .hero {
    padding-top: 0;
    width: 100%;
  }

  .section-pad.hero {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .hero-visual > img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: top center;
  }

  .hero-visual::after {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,.86) 0%,
      rgba(255,255,255,.52) 42%,
      rgba(255,255,255,.20) 100%
    );
  }

  .hero-copy {
    top: 22px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero-copy .label {
    margin-bottom: 8px;
    font-size: 10px;
  }

  h1 {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 1.05;
  }

  h1 span {
    font-size: .42em;
  }

  .lead {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.55;
  }

  .date {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .description {
    margin-top: 10px;
    padding-left: 12px;
    font-size: 11px;
    line-height: 1.65;
  }

  .hero-actions {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .action-card {
    min-height: 118px;
    height: 118px;
  }

  .action-card > img {
    height: 100%;
    object-fit: cover;
  }

  .action-card::after {
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.95) 0%,
      rgba(255,255,255,.78) 72%,
      rgba(255,255,255,.35) 100%
    );
  }

  .action-card .card-text {
    inset: 12px auto auto 12px;
    width: calc(100% - 24px);
  }

  .action-card .label {
    margin-bottom: 4px;
    font-size: 9px;
    letter-spacing: .14em;
  }

  .action-card .card-text h2 {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.25;
  }

  .action-card .card-text p {
    display: none;
  }

  .action-card .btn {
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    padding: 8px 6px;
    font-size: 10px;
    letter-spacing: .08em;
  }
}

/* very narrow phones */
@media (max-width: 420px) {
  .hero-actions {
    bottom: 10px;
  }

  .action-card {
    min-height: 108px;
    height: 108px;
  }

  .action-card .card-text h2 {
    font-size: 13px;
  }

  h1 {
    font-size: 32px;
  }
}


/* ===== SP FV re-layout: place gallery info above CTA buttons ===== */
@media (max-width: 760px) {
  .hero-visual,
  .hero-visual > img {
    min-height: 760px;
  }

  .hero-visual > img {
    object-fit: cover;
    object-position: top center;
  }

  .hero-visual::after {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.10) 0%,
        rgba(255,255,255,.06) 46%,
        rgba(255,255,255,.78) 70%,
        rgba(255,255,255,.94) 100%);
  }

  .hero-copy {
    top: auto;
    bottom: 250px;
    left: 18px;
    right: 18px;
    width: auto;
    padding: 0;
    z-index: 6;
  }

  .hero-copy .label,
  .hero-copy h1,
  .hero-copy .lead {
    display: none;
  }

  .hero-copy .date {
    margin: 0 0 6px;
    padding: 0;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: .06em;
    color: #29262a;
    text-shadow: 0 1px 8px rgba(255,255,255,.85);
  }

  .hero-copy .description {
    margin: 8px 0 0;
    padding: 0 0 0 12px;
    border-left: 1px solid rgba(60,50,55,.45);
    font-size: 12px;
    line-height: 1.65;
    color: #4b454b;
  }

  .hero-actions {
    bottom: 18px;
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    z-index: 7;
  }
}

@media (max-width: 420px) {
  .hero-visual,
  .hero-visual > img {
    min-height: 720px;
  }

  .hero-copy {
    bottom: 232px;
  }

  .hero-copy .date {
    font-size: 15px;
  }

  .hero-copy .description {
    font-size: 11px;
  }
}


/* ===== Button alignment / footer CTA fix ===== */
.action-card .card-text {
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.action-card .btn {
  margin-top: auto;
}

.footer-cta {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 20px 24px;
  color: #fff;
  font-size: 17px;
  letter-spacing: .12em;
  line-height: 1.5;
}

/* SP: card buttons bottom-aligned and same height */
@media (max-width: 760px) {
  .action-card .card-text {
    inset: 12px 10px 10px 12px;
    width: auto;
    height: auto;
    min-height: calc(100% - 22px);
  }

  .action-card .btn {
    align-self: stretch;
    margin-top: auto;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-cta {
    width: calc(100% - 28px);
    margin-bottom: 42px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-btn {
    min-height: 58px;
    padding: 16px 18px;
    font-size: 14px;
  }
}


/* ===== Fixed CTA for PC/SP ===== */
body {
  padding-bottom: 86px;
}

.footer-cta {
  display: none !important;
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 999;
  width: min(980px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  pointer-events: auto;
}

.fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 22px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .10em;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 14px 40px rgba(45, 40, 45, .22);
  border: 1px solid rgba(255,255,255,.35);
}

.fixed-cta::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 2px;
  background: rgba(255,255,255,.56);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 36px rgba(70,60,70,.12);
}

@media (max-width: 760px) {
  body {
    padding-bottom: 126px;
  }

  .fixed-cta {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fixed-cta::before {
    inset: -10px 0 0;
    border-radius: 0;
    background: rgba(255,255,255,.78);
  }

  .fixed-cta-btn {
    min-height: 56px;
    padding: 13px 12px;
    font-size: 13px;
    letter-spacing: .06em;
    box-shadow: none;
    border-left: 0;
    border-right: 0;
  }
}


/* ===== 5 characters layout ===== */
.character-grid {
  grid-template-columns: repeat(5, 1fr);
}

.character-card {
  min-height: 178px;
}

.character-text {
  right: 18px;
  width: 52%;
}

.character-text h3 {
  font-size: 22px;
}

.character-text p {
  font-size: 12px;
}

@media (max-width: 1120px) {
  .character-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .character-grid {
    grid-template-columns: 1fr;
  }

  .character-card {
    min-height: 160px;
  }

  .character-text {
    right: 18px;
    width: 55%;
  }
}


/* ===== Exhibition Information heading / section order fix ===== */
.info-grid .section-heading {
  grid-column: 1 / -1;
  margin-top: 0;
}

/* ===== 5 characters layout ===== */
.character-grid {
  grid-template-columns: repeat(5, 1fr);
}

.character-card {
  min-height: 178px;
}

.character-text {
  right: 18px;
  width: 52%;
}

.character-text h3 {
  font-size: 22px;
}

.character-text p {
  font-size: 12px;
}

@media (max-width: 1120px) {
  .character-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .character-grid {
    grid-template-columns: 1fr;
  }

  .character-card {
    min-height: 160px;
  }

  .character-text {
    right: 18px;
    width: 55%;
  }
}


/* ===== Header external link icons ===== */
.global-nav {
  gap: 14px;
}

.icon-link {
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(70, 62, 70, .22);
  background: rgba(255,255,255,.62);
  color: #3c3338;
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: .06em;
  border-radius: 50%;
  white-space: normal;
}

.icon-link span {
  display: block;
  transform: translateY(1px);
}

.icon-link:hover {
  background: #2b2528;
  color: #fff;
}

.ticket-nav {
  min-width: 118px;
  padding: 9px 14px;
  line-height: 1.25;
}

.ticket-nav small {
  color: rgba(255,255,255,.78);
  font-size: 10px;
  letter-spacing: .12em;
}

@media (max-width: 1120px) {
  .global-nav {
    gap: 8px;
  }

  .icon-link {
    width: 40px;
    height: 40px;
    font-size: 9px;
  }

  .ticket-nav {
    min-width: 104px;
    padding: 8px 10px;
  }
}

@media (max-width: 760px) {
  .icon-link {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    justify-content: center;
  }

  .icon-link::before {
    content: "↗";
    margin-right: 8px;
    font-size: 12px;
  }

  .icon-link:hover {
    background: transparent;
    color: inherit;
  }

  .ticket-nav {
    min-width: 0;
  }

  .ticket-nav small {
    color: rgba(255,255,255,.78);
  }
}


/* ===== SVG icon header refinement ===== */
.icon-link {
  flex-shrink: 0;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(70, 62, 70, .24);
  background: rgba(255,255,255,.70);
  color: #332d31;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.icon-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-link span {
  font-size: 8px;
  line-height: 1;
  letter-spacing: .04em;
  transform: none;
}

.icon-link:hover {
  background: #2b2528;
  color: #fff;
  transform: translateY(-1px);
}

/* X icon should look sharper */
.icon-link[href*="x.com"] svg {
  stroke-width: 2.2;
}

@media (max-width: 760px) {
  .global-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .global-nav .icon-link {
    width: 25%;
    height: 64px;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: rgba(255,255,255,.70);
    gap: 5px;
  }

  .global-nav .icon-link::before {
    content: none !important;
  }

  .global-nav .icon-link svg {
    width: 20px;
    height: 20px;
  }

  .global-nav .icon-link span {
    font-size: 10px;
    line-height: 1.2;
  }

  .global-nav a:not(.icon-link) {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.06);
  }
}


/* ===== SP icon row nowrap fix ===== */
@media (max-width: 760px) {
  .global-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .global-nav .icon-link {
    width: 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
    height: 64px;
    padding: 8px 0;
    box-sizing: border-box;
  }

  .global-nav .icon-link span {
    display: block;
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 0;
  }

  .global-nav a:not(.icon-link) {
    width: 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 360px) {
  .global-nav .icon-link span {
    font-size: 9px;
  }
}


/* ===== SP external icons compact fix ===== */
@media (max-width: 760px) {
  .global-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .global-nav .icon-link {
    width: 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-top: 1px solid rgba(0,0,0,.06);
    border-right: 1px solid rgba(0,0,0,.06);
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .global-nav .icon-link svg {
    width: 21px !important;
    height: 21px !important;
    display: block;
  }

  /* スマホでは文字ラベルを隠して、4アイコンを1行に固定 */
  .global-nav .icon-link span {
    display: none !important;
  }

  .global-nav a:not(.icon-link) {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}


/* ===== FINAL SP external icons: grid layout with enough space ===== */
@media (max-width: 760px) {
  .global-nav {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    align-items: stretch !important;
  }

  .global-nav .icon-link {
    grid-column: auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: none !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(0,0,0,.06) !important;
    border-right: 1px solid rgba(0,0,0,.06) !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,.72) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .global-nav .icon-link svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
  }

  .global-nav .icon-link span {
    display: none !important;
  }

  .global-nav a:not(.icon-link) {
    grid-column: 1 / -1 !important;
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    box-sizing: border-box !important;
  }
}


/* ===== Full Exhibition Information display ===== */
.info-grid {
  display: none !important;
}

.info-full {
  padding-top: 36px;
}

.info-full .section-heading {
  margin: 0 0 20px;
}



.info-full-card {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 300px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 60px rgba(80,60,70,.06);
  overflow: hidden;
}

.info-full-image {
  min-height: 300px;
  background: #fff;
}

.info-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-full-text {
  padding: 30px 30px 26px;
}

.info-full-text h3 {
  margin: 0 0 16px;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: .06em;
}

.info-full-text p {
  margin-bottom: 22px;
  color: var(--soft-ink);
  line-height: 1.95;
  letter-spacing: .05em;
}

.info-full-text dl {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 9px 14px;
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.info-full-text dt {
  color: #9c5863;
  letter-spacing: .12em;
}

.info-full-text dd {
  margin: 0;
  color: var(--soft-ink);
}

@media (max-width: 1120px) {
  
}

@media (max-width: 760px) {
  .info-full {
    padding-top: 24px;
  }

  

  .info-full-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .info-full-image {
    min-height: 170px;
    max-height: 210px;
  }

  .info-full-text {
    padding: 22px 20px 24px;
  }

  .info-full-text h3 {
    font-size: 24px;
  }

  .info-full-text p {
    font-size: 13px;
    line-height: 1.85;
  }

  .info-full-text dl {
    grid-template-columns: 66px 1fr;
    font-size: 12px;
  }
}


/* ===== INFO 1 COLUMN (PC含む全デバイス) ===== */


.info-full-card {
  grid-template-columns: 340px 1fr;
}

@media (max-width: 760px) {
  .info-full-card {
    grid-template-columns: 1fr;
  }
}


/* ===== INFO WIDTH FIX (ヘッダー幅に統一) ===== */
.info-full {
  width: min(1500px, calc(100% - 56px));
  margin: 0 auto;
}

.info-full-grid {
  grid-template-columns: 1fr !important;
}

.info-full-card {
  grid-template-columns: 420px 1fr;
}

@media (max-width: 760px) {
  .info-full {
    width: calc(100% - 28px);
  }

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


/* ===== INFO SPACING FIX ===== */
.info-full-grid {
  row-gap: 36px !important;
}

.info-full-card {
  margin-bottom: 0;
  padding: 0;
}

/* カード内の余白を少し強化 */
.info-full-text {
  padding: 34px 36px 32px !important;
}

/* セクション上下余白 */
.info-full {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

@media (max-width: 760px) {
  .info-full-grid {
    row-gap: 24px !important;
  }

  .info-full-text {
    padding: 24px 20px 26px !important;
  }
}


/* ===== FIX: インフォメーションカード間の余白 ===== */
.info-full-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 48px !important;
}

/* 念のためカードにも余白 */
.info-full-card {
  margin-bottom: 0 !important;
}

/* スマホ調整 */
@media (max-width: 760px) {
  .info-full-grid {
    gap: 28px !important;
  }
}


/* ===== キャラクターとフッターの間の余白 ===== */
.characters {
  margin-bottom: 64px !important;
}

.footer {
  margin-top: 40px !important;
}

/* スマホ調整 */
@media (max-width: 760px) {
  .characters {
    margin-bottom: 40px !important;
  }

  .footer {
    margin-top: 24px !important;
  }
}
