@charset "UTF-8";

:root {
  --color-navy: #071d46;
  --color-navy-2: #0f2d5b;
  --color-gold: #c5a052;
  --color-gold-light: #e3cc91;
  --color-white: #fff;
  --color-paper: #f7f4ee;
  --color-text: #182131;
  --max-width: 1240px;
  --header-height: 88px;
  --shadow-soft: 0 18px 44px rgba(8, 29, 69, .12);
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: var(--header-height);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  position: relative;
  display: block;
  width: 250px;
}
.site-logo__image {
  width: 100%;
  height: auto;
  transition: opacity .3s var(--ease);
}
.site-logo__image--color {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.site-header.is-scrolled .site-logo__image--white { opacity: 0; }
.site-header.is-scrolled .site-logo__image--color { opacity: 1; }
.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}
.global-nav > a:not(.button) {
  position: relative;
  padding: 32px 0 28px;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.34);
}
.site-header.is-scrolled .global-nav > a:not(.button) {
  color: var(--color-navy);
  text-shadow: none;
}
.global-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 20px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}
.global-nav > a:hover::after,
.global-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}
.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .06em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button--header {
  min-height: 44px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #caa85b, #a47b28);
  box-shadow: 0 8px 20px rgba(156,116,36,.25);
}
.button--primary {
  width: min(100%, 360px);
  padding: 0 28px;
  color: #fff;
  background: rgba(7,29,70,.92);
  border-color: rgba(227,204,145,.7);
  box-shadow: var(--shadow-soft);
}
.button__arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.button:hover .button__arrow { transform: translateX(7px); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-navy);
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,20,49,.94) 0%, rgba(7,29,70,.83) 28%, rgba(7,29,70,.42) 49%, rgba(7,29,70,.05) 72%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.1));
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 100svh;
  margin: auto;
  padding: calc(var(--header-height) + 70px) 0 88px;
  display: flex;
  align-items: center;
}
.hero__content {
  width: min(620px, 58%);
  color: #fff;
}
.hero__eyebrow {
  margin: 0 0 10px;
  color: var(--color-gold-light);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: .18em;
  line-height: 1.0;
}
.hero__title {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.hero__title > span {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
}
.hero__catchphrase {
  display: block;
  width: min(100%, 510px);
  height: auto;
  margin-top: 12px;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.2));
}
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  margin: 34px 0 28px;
}
.hero__date {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: #fff;
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
}
.hero__date span {
  font-size: clamp(48px, 6vw, 82px);
  line-height: .9;
}
.hero__date small {
  margin-bottom: 7px;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,.55);
  font-size: 13px;
  letter-spacing: .08em;
}
.hero__note {
  width: min(100%, 360px);
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  opacity: .82;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #fff;
  font-size: 10px;
  letter-spacing: .18em;
  transform: translateX(-50%);
}
.scroll-cue i {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,.7);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(.35); transform-origin: top; opacity: .45; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.hero__title.reveal { transition-delay: .08s; }
.hero__meta.reveal { transition-delay: .16s; }
.button.reveal { transition-delay: .24s; }
.hero__note.reveal { transition-delay: .3s; }

.placeholder {
  padding: 110px 24px;
  background: var(--color-paper);
  text-align: center;
}
.container {
  width: min(100%, 920px);
  margin: auto;
}
.placeholder__label {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}
.placeholder h2 {
  margin: 8px 0 16px;
  color: var(--color-navy);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(34px, 5vw, 58px);
}
.placeholder p { margin: 0; }

@media (max-width: 1024px) {
  :root { --header-height: 72px; }
  .site-header { background: rgba(255,255,255,.96); }
  .site-header__inner { width: min(calc(100% - 32px), var(--max-width)); }
  .site-logo { width: 210px; }
  .site-logo__image--white { opacity: 0; }
  .site-logo__image--color { opacity: 1; }
  .menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    background: transparent;
  }
  .menu-button span {
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: transform .25s, opacity .25s;
  }
  .menu-button.is-open span {
    background: #fff;
  }
  .menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 96px 24px 40px;
    background:
      radial-gradient(circle at 80% 15%, rgba(197,160,82,.18), transparent 34%),
      linear-gradient(145deg, rgba(7,29,70,.98), rgba(15,45,91,.98));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .3s var(--ease);
  }
  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .global-nav > a:not(.button) {
    padding: 12px 0;
    color: #fff;
    text-shadow: none;
    font-size: 17px;
  }

  .site-header.is-scrolled .global-nav > a:not(.button) {
    color: #fff;
  }
  .global-nav > a:not(.button)::after { bottom: 6px; }
  .button--header { margin-top: 14px; padding: 0 32px; }

  .hero__inner { width: min(calc(100% - 32px), var(--max-width)); }
  .hero__content { width: 68%; }
}

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

  .hero__image {
    object-position: 68% center;
  }

  .hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5,20,49,.88) 0%,
        rgba(7,29,70,.62) 38%,
        rgba(7,29,70,.22) 63%,
        rgba(7,29,70,.04) 100%
      ),
      linear-gradient(
        180deg,
        rgba(5,20,49,.08) 0%,
        rgba(5,20,49,.02) 52%,
        rgba(5,20,49,.48) 100%
      );
  }

  .hero__inner {
    min-height: 820px;
    padding-top: 88px;
    padding-bottom: 42px;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    min-height: 650px;
  }

  .hero__title > span {
    font-size: clamp(24px, 6.8vw, 34px);
  }

  .hero__catchphrase {
    width: min(82vw, 350px);
  }

  .hero__meta {
    align-self: center;
    width: min(100%, 300px);
    margin-top: auto;
    margin-bottom: 16px;
    justify-content: center;
  }

  .hero__date span {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero__date small {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .button--primary {
    align-self: center;
    width: min(100%, 300px);
    min-height: 50px;
    padding-inline: 20px;
    font-size: 14px;
  }

  .hero__note {
    align-self: center;
    width: min(100%, 300px);
    margin-top: 10px;
    font-size: 11px;
  }

  .scroll-cue {
    display: none;
  }
}



/* =====================================
   Special Gift
===================================== */
.container--wide {
  width: min(100%, 1180px);
}

.gift-section {
  position: relative;
  padding: clamp(24px, 3vw, 38px) 24px;
  background: #f8f5ee;
}

.gift-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px,1.2fr) minmax(420px,1fr);
  align-items: center;
  aspect-ratio: 4 / 1;
  min-height: 0;
  padding: clamp(18px, 2.2vw, 30px) clamp(34px, 4.5vw, 62px);
  overflow: visible;
  background:
    linear-gradient(105deg, rgba(255,255,255,.96), rgba(252,248,240,.98)),
    #fff;
  border: 1px solid rgba(183,146,61,.48);
  box-shadow:
    0 14px 34px rgba(50,38,16,.11),
    inset 0 0 0 1px rgba(255,255,255,.72);
}

.gift-card::before {
  content: "SPECIAL GIFT";
  position: absolute;
  right: 4%;
  bottom: -5%;
  color: rgba(183,146,61,.065);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(72px, 11vw, 150px);
  line-height: 1;
  letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
}

.gift-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(183,146,61,.1);
  pointer-events: none;
}

.gift-card__copy {
  position: relative;
  z-index: 2;
  padding-left: 150px;
}

.gift-card__eyebrow {
  margin: 0 0 8px;
  color: #a77f2e;
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
}

.gift-card__lead {
  margin: 0 0 10px;
  color: #17233c;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: .04em;
}

.gift-card__title {
  margin: 0 0 10px;
  color: #9b7429;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
}

.gift-card__text {
  margin: 0;
  color: #273149;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.8;
}

.gift-card__note {
  margin: 8px 0 0;
  color: rgba(39,49,73,.62);
  font-size: 11px;
}

.gift-card__product {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
}

.gift-card__product::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 32px;
  bottom: 48px;
  border-radius: 50%;
  background: rgba(22,31,55,.16);
  filter: blur(16px);
  transform: rotate(-5deg);
}

.gift-card__product img {
  position: relative;
  width: min(100%, 460px);
  height: auto;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 14px 10px rgba(13,26,52,.18));
  transition: transform .4s var(--ease);
}

.gift-card:hover .gift-card__product img {
  transform: translateY(-3px) scale(1.01);
}

.gift-card__brand {
  position: absolute;
  right: 2%;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #1f2230;
  font-family: Arial, sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: .02em;
}

.gift-card__brand span {
  width: 22px;
  aspect-ratio: 1;
  border: 2px solid #b28a37;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 6px #b28a37;
}


.gift-card__ribbon-image {
  position: absolute;
  z-index: 4;
  top: 8px;
  left: 8px;
  width: clamp(170px,18vw,240px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 10px 9px rgba(81,55,10,.2));
  transform: none;
}

@media (max-width: 860px) {
  .gift-card {
    grid-template-columns: 1fr;
    gap: 14px;
    aspect-ratio: auto;
    padding: 56px 32px 28px;
  }

  .gift-card__ribbon-image {
    top: 8px;
    left: 8px;
    width: 160px;
    transform: none;
  }

  .gift-card__product {
    min-height: 126px;
  }

  .gift-card__product img {
    width: min(100%, 560px);
  }

  .gift-card__brand {
    right: 5%;
    bottom: -4px;
  }
}

@media (max-width: 560px) {
  .gift-section {
    padding: 34px 16px;
  }

  .gift-card {
    gap: 18px;
    padding: 66px 22px 24px;
  }

  .gift-card::before {
    right: -8%;
    bottom: 2%;
    font-size: 64px;
  }

  .gift-card__ribbon-image {
    top: 8px;
    left: 8px;
    width: 138px;
    transform: none;
  }

  .gift-card__copy {
    padding-left: 0;
  }

  .gift-card__title {
    font-size: clamp(26px, 8vw, 34px);
    letter-spacing: .05em;
  }

  .gift-card__product {
    min-height: 112px;
  }

  .gift-card__product img {
    width: min(100%, 390px);
    transform: rotate(-5deg);
  }

  .gift-card__brand {
    position: static;
    justify-self: end;
    margin-top: 10px;
    font-size: 17px;
  }
}




/* =====================================
   Special Gift — comp matching override
===================================== */
@media (min-width: 861px) {
  .gift-section {
    padding: 28px 24px 44px;
  }

  .gift-card {
    grid-template-columns: 46% 54%;
    aspect-ratio: 4 / 1;
    min-height: 0;
    padding: 20px 34px 20px 40px;
    overflow: hidden;
  }

  .gift-card::before {
    right: 6%;
    bottom: -10%;
    font-size: clamp(76px, 9vw, 132px);
  }

  .gift-card__ribbon-image {
    top: 0;
    left: 0;
    width: clamp(150px, 14vw, 205px);
    transform: none;
  }

  .gift-card__copy {
    padding-left: clamp(132px, 12vw, 175px);
    align-self: center;
  }

  .gift-card__eyebrow {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .gift-card__lead {
    margin-bottom: 6px;
    font-size: clamp(15px, 1.25vw, 18px);
  }

  .gift-card__title {
    margin-bottom: 10px;
    font-size: clamp(25px, 2.55vw, 36px);
    letter-spacing: .07em;
  }

  .gift-card__text {
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.65;
  }

  .gift-card__note {
    margin-top: 6px;
    font-size: 10px;
  }

  .gift-card__product {
    min-height: 0;
    align-content: center;
    justify-items: end;
    padding-right: 10px;
  }

  .gift-card__product::before {
    width: 56%;
    height: 20px;
    right: 8%;
    bottom: 22%;
    left: auto;
    filter: blur(12px);
  }

  .gift-card__product img {
    width: min(92%, 420px);
    max-height: 118px;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 10px 8px rgba(13,26,52,.16));
  }

  .gift-card:hover .gift-card__product img {
    transform: translateY(-2px);
  }

  .gift-card__brand {
    right: 3%;
    bottom: 6px;
    font-size: clamp(15px, 1.5vw, 20px);
  }

  .gift-card__brand span {
    width: 18px;
  }
}

@media (min-width: 1180px) {
  .gift-card__copy {
    padding-left: 165px;
  }

  .gift-card__product img {
    width: 400px;
  }
}



/* =====================================
   Gift banner — master v0.3 adjustments
===================================== */
.gift-card__ribbon-image {
  top: 0;
  left: 0;
  transform: none;
}

.gift-card__note {
  display: none;
}

@media (max-width: 560px) {
  .gift-card {
    padding-top: 58px;
  }

  .gift-card__eyebrow,
  .gift-card__lead {
    width: 100%;
    margin-left: auto;
    text-align: right;
  }

  .gift-card__eyebrow {
    padding-left: 112px;
    font-size: 11px;
    letter-spacing: .16em;
    white-space: nowrap;
  }

  .gift-card__lead {
    padding-left: 112px;
    font-size: 13px;
    line-height: 1.45;
    white-space: nowrap;
  }

  .gift-card__title {
    font-size: clamp(17px, 5.2vw, 22px);
    line-height: 1.35;
    letter-spacing: .02em;
    white-space: nowrap;
  }

  .gift-card__ribbon-image {
    top: 0;
    left: 0;
    width: 128px;
  }
}



/* =====================================
   Shared section heading
===================================== */
.section-heading {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto clamp(42px, 6vw, 68px);
  text-align: center;
}

.section-heading__eyebrow {
  margin: 0 0 8px;
  color: var(--color-gold);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}

.section-heading__title {
  margin: 0;
  color: var(--color-navy);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 500;
  letter-spacing: .08em;
}

.section-heading__line {
  display: block;
  width: 74px;
  height: 2px;
  margin: 18px auto 20px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-heading__text {
  margin: 0;
  color: rgba(24,33,49,.72);
  font-size: 14px;
  line-height: 1.9;
}

/* =====================================
   School briefing
===================================== */
.briefing-section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #fbfaf7 55%, #fff 100%);
}

.briefing-section__background-word {
  position: absolute;
  top: 50px;
  left: 50%;
  color: rgba(197,160,82,.055);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(92px, 18vw, 250px);
  line-height: 1;
  letter-spacing: .06em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.briefing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.briefing-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7,29,70,.1);
  box-shadow: 0 20px 48px rgba(7,29,70,.085);
  transition:
    transform .38s var(--ease),
    box-shadow .38s var(--ease),
    border-color .38s var(--ease);
}

.briefing-card:hover {
  transform: translateY(-7px);
  border-color: rgba(197,160,82,.42);
  box-shadow: 0 28px 60px rgba(7,29,70,.13);
}

.briefing-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #e7e5dd;
}

.briefing-card__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(7,29,70,.44));
  pointer-events: none;
}

.briefing-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.briefing-card:first-child .briefing-card__visual img {
  object-position: center 45%;
}

.briefing-card:nth-child(2) .briefing-card__visual img {
  object-position: center 38%;
}

.briefing-card:nth-child(3) .briefing-card__visual img {
  object-position: center 48%;
}

.briefing-card:hover .briefing-card__visual img {
  transform: scale(1.045);
}

.briefing-card__number {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 11px;
  color: rgba(255,255,255,.9);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: .08em;
}

.briefing-card__body {
  min-height: 244px;
  padding: 27px 28px 31px;
}

.briefing-card__english {
  margin: 0 0 7px;
  color: var(--color-gold);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}


.briefing-card__time{
  display:inline-flex;
  align-items:center;
  margin:0 0 10px;
  padding:4px 12px;
  border:1px solid rgba(197,160,82,.45);
  border-radius:999px;
  background:#fcf8ef;
  color:#8b6a21;
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
}
.briefing-card__time::before{
  content:"🕒";
  margin-right:6px;
  font-size:12px;
}
@media (max-width:620px){
 .briefing-card__time{font-size:11px;padding:4px 10px;}
}

.briefing-card__title {
  margin: 0;
  color: var(--color-navy);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .06em;
}

.briefing-card__accent {
  display: block;
  width: 46px;
  height: 2px;
  margin: 17px 0 18px;
  background: linear-gradient(90deg, var(--color-gold), rgba(197,160,82,.12));
}

.briefing-card__text {
  margin: 0;
  color: rgba(24,33,49,.72);
  font-size: 13.5px;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .briefing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .briefing-card {
    display: grid;
    grid-template-columns: minmax(250px, .95fr) minmax(0, 1.05fr);
  }

  .briefing-card__visual {
    aspect-ratio: auto;
    min-height: 260px;
  }

  .briefing-card__body {
    min-height: 0;
    align-self: center;
  }
}

@media (max-width: 620px) {
  .briefing-section {
    padding: 68px 16px 78px;
  }

  .briefing-section__background-word {
    top: 74px;
    font-size: 74px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading__title {
    font-size: clamp(31px, 10vw, 43px);
  }

  .section-heading__text {
    font-size: 13px;
    text-align: left;
  }

  .briefing-grid {
    gap: 26px;
  }

  .briefing-card {
    display: block;
  }

  .briefing-card__visual {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .briefing-card__body {
    min-height: 0;
    padding: 24px 22px 27px;
  }

  .briefing-card__title {
    font-size: 25px;
  }

  .briefing-card__number {
    right: 14px;
    bottom: 10px;
    font-size: 26px;
  }
}



/* =====================================
   Timetable
===================================== */
.timetable-section {
  position: relative;
  padding: clamp(84px, 9vw, 132px) 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(197,160,82,.08), transparent 25%),
    linear-gradient(180deg, #f8f5ee 0%, #f4efe5 100%);
}

.timetable-section__background-word {
  position: absolute;
  top: 48px;
  left: 50%;
  color: rgba(197,160,82,.06);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(82px, 16vw, 220px);
  line-height: 1;
  letter-spacing: .04em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 17px;
  bottom: 30px;
  left: 205px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(197,160,82,.18),
    var(--color-gold) 12%,
    var(--color-gold) 88%,
    rgba(197,160,82,.16)
  );
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 170px 70px minmax(0, 1fr);
  align-items: start;
  margin-bottom: 38px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item__time {
  display: grid;
  justify-items: end;
  padding-top: 18px;
  color: var(--color-navy);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-weight: 700;
  line-height: 1;
}

.timeline-item__time span {
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: .02em;
}

.timeline-item__time i {
  margin: 6px 20px 5px 0;
  color: var(--color-gold);
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
}

.timeline-item__marker {
  position: relative;
  min-height: 68px;
}

.timeline-item__marker span {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 17px;
  height: 17px;
  border: 4px solid #f6f1e7;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow:
    0 0 0 1px rgba(197,160,82,.58),
    0 7px 14px rgba(109,79,20,.18);
  transform: translateX(-50%);
}

.timeline-item__card {
  position: relative;
  padding: 31px 38px 34px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(197,160,82,.34);
  box-shadow: 0 18px 44px rgba(7,29,70,.08);
}

.timeline-item__card::before {
  content: "";
  position: absolute;
  top: 29px;
  left: -11px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-left: 1px solid rgba(197,160,82,.34);
  border-bottom: 1px solid rgba(197,160,82,.34);
  transform: rotate(45deg);
}

.timeline-item__number {
  position: absolute;
  top: 16px;
  right: 22px;
  margin: 0;
  color: rgba(197,160,82,.2);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 45px;
  line-height: 1;
}

.timeline-item__title {
  margin: 0;
  color: var(--color-navy);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(23px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: .06em;
}

.timeline-item__title::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin: 14px 0 17px;
  background: linear-gradient(90deg, var(--color-gold), rgba(197,160,82,.1));
}

.timeline-item__text {
  margin: 0;
  color: rgba(24,33,49,.75);
  font-size: 13.5px;
  line-height: 1.9;
}

.timeline-item__notice {
  display: inline-block;
  margin: 17px 0 0;
  padding: 6px 12px;
  background: #f8f3e8;
  color: #80621e;
  font-size: 11.5px;
}

.timeline-item__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(24,33,49,.76);
  font-size: 13.5px;
}

.timeline-item__list li {
  position: relative;
  padding-left: 16px;
}

.timeline-item__list li::before {
  content: "";
  position: absolute;
  top: .8em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
}

.timeline-item__optional {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 4px 12px;
  border: 1px solid rgba(197,160,82,.45);
  border-radius: 999px;
  background: #fcf8ef;
  color: #8b6a21;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.timeline-item__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.timeline-item__split > div {
  padding-right: 30px;
}

.timeline-item__split > div + div {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid rgba(197,160,82,.25);
}

@media (max-width: 760px) {
  .timeline::before {
    left: 18px;
  }

  .timeline-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0;
    margin-bottom: 30px;
  }

  .timeline-item__time {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 0 12px 18px;
  }

  .timeline-item__time span {
    font-size: 25px;
  }

  .timeline-item__time i {
    margin: 0;
    font-size: 12px;
  }

  .timeline-item__marker {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .timeline-item__marker span {
    top: 8px;
    left: 18px;
  }

  .timeline-item__card {
    grid-column: 2;
    grid-row: 2;
    padding: 27px 24px 29px;
  }

  .timeline-item__card::before {
    top: 25px;
  }

  .timeline-item__list {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .timeline-item__split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline-item__split > div {
    padding-right: 0;
  }

  .timeline-item__split > div + div {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(197,160,82,.25);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .timetable-section {
    padding: 68px 16px 78px;
  }

  .timetable-section__background-word {
    top: 72px;
    font-size: 60px;
  }

  .timeline-item__title {
    font-size: 24px;
  }

  .timeline-item__number {
    top: 14px;
    right: 16px;
    font-size: 38px;
  }

  .timeline-item__notice {
    line-height: 1.7;
  }
}



/* =====================================
   Timetable separator adjustment
===================================== */
@media (min-width: 761px) {
  .timeline-item__time i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 28px;
    margin: 7px 8px 6px 0;
    color: var(--color-gold);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    transform: rotate(90deg);
    transform-origin: center;
  }
}



/* =====================================
   Flow of the day — redesigned timetable
===================================== */
.flow-section {
  position: relative;
  padding: clamp(86px, 9vw, 136px) 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(197,160,82,.09), transparent 25%),
    linear-gradient(180deg, #f8f5ee 0%, #f3ede2 100%);
}

.flow-section__background-word {
  position: absolute;
  top: 48px;
  left: 50%;
  color: rgba(197,160,82,.055);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(62px, 12vw, 170px);
  line-height: 1;
  letter-spacing: .035em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.flow-timeline {
  position: relative;
  z-index: 2;
  width: min(100%, 940px);
  margin: 0 auto;
}

.flow-step {
  position: relative;
  padding: 0 0 clamp(68px, 8vw, 104px);
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
}

.flow-step__label {
  min-width: 74px;
  margin: 0;
  color: var(--color-gold);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}

.flow-step__time {
  margin: 0;
  color: var(--color-navy);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(29px, 4vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .015em;
}

.flow-step__duration {
  margin: 0 0 2px auto;
  padding: 4px 11px;
  border: 1px solid rgba(197,160,82,.38);
  border-radius: 999px;
  color: #876721;
  background: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.flow-step__rail {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.flow-step__dot {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  border: 4px solid #f7f2e9;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow:
    0 0 0 1px rgba(197,160,82,.6),
    0 6px 14px rgba(105,75,18,.18);
}

.flow-step__line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    rgba(197,160,82,.72) 54%,
    rgba(197,160,82,.05) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}

.flow-step.is-visible .flow-step__line {
  transform: scaleX(1);
}

.flow-step__content {
  position: relative;
  padding: 2px 0 0 92px;
}

.flow-step__number {
  position: absolute;
  top: -4px;
  left: 0;
  margin: 0;
  color: rgba(197,160,82,.2);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 50px;
  line-height: 1;
}

.flow-step__title,
.flow-program__title {
  margin: 0;
  color: var(--color-navy);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: .07em;
}

.flow-step__title {
  font-size: clamp(27px, 3.4vw, 40px);
}

.flow-step__text,
.flow-program__text {
  color: rgba(24,33,49,.74);
  font-size: 13.5px;
  line-height: 1.9;
}

.flow-step__text {
  margin: 16px 0 0;
}

.flow-step__notice {
  display: inline-block;
  margin: 18px 0 0;
  padding: 7px 13px;
  background: rgba(255,255,255,.7);
  color: #7f601d;
  font-size: 11.5px;
}

.flow-step__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 36px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(24,33,49,.75);
  font-size: 13.5px;
}

.flow-step__list li {
  position: relative;
  padding-left: 18px;
}

.flow-step__list li::before {
  content: "";
  position: absolute;
  top: .8em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.flow-step__optional {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 5px 13px;
  border: 1px solid rgba(197,160,82,.45);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #876721;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.flow-step__programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(197,160,82,.28);
  border-bottom: 1px solid rgba(197,160,82,.28);
}

.flow-program {
  padding: 31px 36px 33px 0;
}

.flow-program + .flow-program {
  padding-right: 0;
  padding-left: 36px;
  border-left: 1px solid rgba(197,160,82,.28);
}

.flow-program__english {
  margin: 0 0 7px;
  color: var(--color-gold);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.flow-program__title {
  font-size: clamp(22px, 2.5vw, 31px);
}

.flow-program__line {
  display: block;
  width: 46px;
  height: 2px;
  margin: 15px 0 17px;
  background: linear-gradient(90deg, var(--color-gold), rgba(197,160,82,.1));
}

.flow-program__text {
  margin: 0;
}

@media (max-width: 700px) {
  .flow-section {
    padding: 68px 16px 82px;
  }

  .flow-section__background-word {
    top: 74px;
    font-size: 52px;
  }

  .flow-step {
    padding-bottom: 64px;
  }

  .flow-step__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    margin-bottom: 15px;
  }

  .flow-step__label {
    grid-column: 1;
    min-width: 0;
  }

  .flow-step__time {
    grid-column: 1;
    font-size: clamp(28px, 9vw, 37px);
  }

  .flow-step__duration {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin: 0 0 3px;
  }

  .flow-step__rail {
    margin-bottom: 25px;
  }

  .flow-step__content {
    padding-left: 0;
  }

  .flow-step__number {
    position: static;
    margin-bottom: 8px;
    font-size: 34px;
  }

  .flow-step__title {
    font-size: 28px;
  }

  .flow-step__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flow-step__programs {
    grid-template-columns: 1fr;
  }

  .flow-program {
    padding: 27px 0 29px;
  }

  .flow-program + .flow-program {
    padding: 29px 0 27px;
    border-top: 1px solid rgba(197,160,82,.28);
    border-left: 0;
  }
}

@media (max-width: 420px) {
  .flow-step__time {
    font-size: 27px;
  }

  .flow-step__duration {
    padding-inline: 9px;
    font-size: 10px;
  }

  .flow-step__notice {
    line-height: 1.7;
  }
}



/* =====================================
   Flow timetable — v0.6.1 adjustments
===================================== */

/* PC: reduce the visual weight of the time */
@media (min-width: 701px) {
  .flow-step__time {
    font-size: clamp(23px, 2.6vw, 34px);
  }
}

/* Mobile: keep number and heading on one line,
   while preserving the same left offset as desktop */
@media (max-width: 700px) {
  .flow-step__content {
    padding-left: 62px;
  }

  .flow-step__number {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 34px;
    line-height: 1;
  }

  .flow-step__title {
    min-height: 38px;
    display: flex;
    align-items: center;
  }

  .flow-step__optional {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    margin: 0 0 22px;
  }

  .flow-step__programs {
    margin-left: 0;
  }
}



/* =====================================
   Meeting place
===================================== */
.meeting-section {
  position: relative;
  padding: clamp(88px, 9vw, 136px) 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.meeting-section__background-word {
  position: absolute;
  top: 48px;
  left: 50%;
  color: rgba(197,160,82,.05);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(70px, 12vw, 175px);
  line-height: 1;
  letter-spacing: .04em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.meeting-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: stretch;
  margin-bottom: clamp(54px, 7vw, 84px);
}

.meeting-hero__visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #e8e7e2;
}

.meeting-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(.98);
}

.meeting-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,29,70,.58) 100%);
}

.meeting-hero__caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
  display: grid;
  gap: 3px;
  color: #fff;
}

.meeting-hero__caption-label {
  color: var(--color-gold-light);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
}

.meeting-hero__caption strong {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: .06em;
}

.meeting-hero__caption span:last-child {
  font-size: 11px;
  opacity: .78;
}

.meeting-hero__info {
  padding: clamp(34px, 4vw, 52px);
  background: var(--color-navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meeting-icon {
  width: 48px;
  color: var(--color-gold-light);
  margin-bottom: 22px;
}

.meeting-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.meeting-hero__eyebrow,
.meeting-map__note-label {
  margin: 0 0 9px;
  color: var(--color-gold-light);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}

.meeting-hero__title {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(27px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .06em;
}

.meeting-hero__text {
  margin: 22px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 13.5px;
  line-height: 1.9;
}

.meeting-access {
  margin: 30px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.meeting-access__item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.meeting-access__item dt,
.meeting-access__item dd {
  margin: 0;
  font-size: 13px;
}

.meeting-access__item dt {
  color: rgba(255,255,255,.78);
}

.meeting-access__item dd {
  color: var(--color-gold-light);
  font-weight: 700;
}

.meeting-map {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(197,160,82,.28);
  box-shadow: 0 20px 48px rgba(7,29,70,.08);
}

.meeting-map__image {
  padding: clamp(20px, 3vw, 34px);
  background: #f5f2eb;
}

.meeting-map__image img {
  width: 100%;
  height: auto;
  display: block;
}

.meeting-map__note {
  padding: clamp(32px, 4vw, 50px);
  border-left: 1px solid rgba(197,160,82,.25);
}

.meeting-map__note-label {
  color: var(--color-gold);
}

.meeting-map__note-title {
  margin: 0;
  color: var(--color-navy);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(23px, 2.7vw, 34px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .05em;
}

.meeting-map__note-text {
  margin: 20px 0 0;
  color: rgba(24,33,49,.72);
  font-size: 13px;
  line-height: 1.9;
}

.meeting-map__list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.meeting-map__list li {
  position: relative;
  padding: 11px 0 11px 18px;
  border-top: 1px solid rgba(197,160,82,.18);
  color: rgba(24,33,49,.75);
  font-size: 12.5px;
}

.meeting-map__list li:last-child {
  border-bottom: 1px solid rgba(197,160,82,.18);
}

.meeting-map__list li::before {
  content: "";
  position: absolute;
  top: 1.45em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

@media (max-width: 900px) {
  .meeting-hero,
  .meeting-map {
    grid-template-columns: 1fr;
  }

  .meeting-hero__visual {
    min-height: 360px;
  }

  .meeting-map__note {
    border-top: 1px solid rgba(197,160,82,.25);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .meeting-section {
    padding: 68px 16px 80px;
  }

  .meeting-section__background-word {
    top: 72px;
    font-size: 48px;
  }

  .meeting-hero__visual {
    min-height: 280px;
  }

  .meeting-hero__caption {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }

  .meeting-hero__info {
    padding: 30px 24px 34px;
  }

  .meeting-map__image {
    padding: 14px;
  }

  .meeting-map__note {
    padding: 29px 24px 32px;
  }
}


/* v0.7.1 meeting tweaks */
@media (min-width:901px){
.meeting-hero__title{font-size:clamp(24px,2.6vw,34px);}
.meeting-map__note-title{font-size:clamp(21px,2.2vw,30px);line-height:1.45;}
}
@media (max-width:620px){
.meeting-map__image{padding:0;background:#fff;}
.meeting-map__image img{display:block;width:100%;}
}


/* v0.7.2 meeting layout tweaks */
@media (max-width:900px){
.meeting-hero__visual{order:2;}
.meeting-hero__info{order:1;}
.meeting-hero{gap:0;}
}



/* =====================================
   Information for visitors
===================================== */
.information-section {
  position: relative;
  padding: clamp(88px, 9vw, 136px) 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(197,160,82,.08), transparent 25%),
    linear-gradient(180deg, #f8f5ee 0%, #f4efe5 100%);
}

.information-section__background-word {
  position: absolute;
  top: 52px;
  left: 50%;
  color: rgba(197,160,82,.055);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(72px, 13vw, 185px);
  line-height: 1;
  letter-spacing: .035em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.information-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.information-card {
  position: relative;
  min-height: 390px;
  padding: 34px 28px 31px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(197,160,82,.3);
  box-shadow: 0 18px 44px rgba(7,29,70,.075);
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease);
}

.information-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197,160,82,.55);
  box-shadow: 0 26px 58px rgba(7,29,70,.12);
}

.information-card__icon {
  width: 52px;
  color: var(--color-gold);
  margin-bottom: 28px;
}

.information-card__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.information-card__number {
  position: absolute;
  top: 20px;
  right: 22px;
  margin: 0;
  color: rgba(197,160,82,.18);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 42px;
  line-height: 1;
}

.information-card__title {
  margin: 0;
  color: var(--color-navy);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .045em;
}

.information-card__line {
  display: block;
  width: 46px;
  height: 2px;
  margin: 19px 0 21px;
  background: linear-gradient(90deg, var(--color-gold), rgba(197,160,82,.1));
}

.information-card__text {
  margin: 0;
  color: rgba(24,33,49,.72);
  font-size: 13px;
  line-height: 1.9;
}

.information-message {
  position: relative;
  z-index: 2;
  margin-top: clamp(44px, 6vw, 72px);
  padding: clamp(34px, 4.5vw, 52px) 24px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,29,70,.98), rgba(15,45,91,.96));
  border: 1px solid rgba(197,160,82,.3);
}

.information-message::before,
.information-message::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(38px, 8vw, 110px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.information-message::before {
  left: 5%;
}

.information-message::after {
  right: 5%;
  transform: scaleX(-1);
}

.information-message__english {
  margin: 0 0 8px;
  color: var(--color-gold-light);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.information-message__text {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(23px, 3vw, 37px);
  line-height: 1.55;
  letter-spacing: .08em;
}

.pc-only {
  display: inline;
}
.sp-only {
  display: none;
}

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

  .information-card {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .information-section {
    padding: 68px 16px 80px;
  }

  .information-section__background-word {
    top: 74px;
    font-size: 50px;
  }

  .information-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .information-card {
    min-height: 0;
    padding: 28px 24px 27px 90px;
  }

  .information-card__icon {
    position: absolute;
    top: 28px;
    left: 24px;
    width: 45px;
    margin: 0;
  }

  .information-card__number {
    top: auto;
    right: 16px;
    bottom: 14px;
    font-size: 36px;
  }

  .information-card__title {
    font-size: 22px;
  }

  .information-card__line {
    margin: 14px 0 16px;
  }

  .information-message {
    margin-top: 38px;
    padding: 32px 18px;
  }

  .information-message::before,
  .information-message::after {
    display: none;
  }

  .information-message__text {
    font-size: 24px;
  }

  .sp-only {
    display: inline;
  }
  .pc-only {
    display: none;
  }
}



/* =====================================
   Information cards — v0.8.2 adjustments
===================================== */
@media (min-width: 981px) {
  .information-card {
    display: flex;
    flex-direction: column;
  }

  .information-card__title {
    min-height: 6.2em;
    display: flex;
    align-items: flex-start;
    font-size: clamp(16px, 1.45vw, 21px);
    line-height: 1.55;
    letter-spacing: .025em;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .information-card__line {
    flex: 0 0 auto;
    margin-top: 18px;
    margin-bottom: 20px;
  }

  .information-card__text {
    margin-top: 0;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .information-card__title {
    min-height: 3.2em;
    font-size: clamp(18px, 2.3vw, 23px);
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 620px) {
  .information-card__title {
    font-size: clamp(18px, 5.6vw, 22px);
    word-break: normal;
    overflow-wrap: anywhere;
  }
}



/* =====================================
   Digital brochure
===================================== */
.brochure-section {
  position: relative;
  padding: clamp(92px, 10vw, 150px) 24px;
  overflow: hidden;
  background: #fff;
}

.brochure-section__background-word {
  position: absolute;
  top: 54px;
  left: 50%;
  color: rgba(197,160,82,.05);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(64px, 11vw, 160px);
  line-height: 1;
  letter-spacing: .035em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.brochure-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.brochure-copy {
  max-width: 520px;
}

.brochure-copy__eyebrow {
  margin: 0 0 10px;
  color: var(--color-gold);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
}

.brochure-copy__title {
  margin: 0;
  color: var(--color-navy);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .07em;
}

.brochure-copy__line {
  display: block;
  width: 78px;
  height: 2px;
  margin: 24px 0 26px;
  background: linear-gradient(90deg, var(--color-gold), rgba(197,160,82,.1));
}

.brochure-copy__text {
  margin: 0;
  color: rgba(24,33,49,.74);
  font-size: 14px;
  line-height: 2;
}

.button--brochure {
  width: min(100%, 330px);
  margin-top: 34px;
  padding: 0 28px;
  color: #fff;
  background: var(--color-navy);
  border-color: rgba(197,160,82,.55);
  box-shadow: 0 14px 30px rgba(7,29,70,.16);
}

.brochure-copy__note {
  margin: 10px 0 0;
  color: rgba(24,33,49,.46);
  font-size: 10.5px;
}

.brochure-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
  margin: 0;
  perspective: 1400px;
}

.brochure-visual__back {
  position: absolute;
  inset: 5% -6% -4% 8%;
  background: linear-gradient(145deg, #f6f1e7, #fff);
  border: 1px solid rgba(197,160,82,.2);
  box-shadow: 0 28px 60px rgba(7,29,70,.08);
  transform: rotate(4deg);
}

.brochure-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 28px 60px rgba(7,29,70,.18);
  transform: rotate(-2.5deg);
  transform-origin: center;
  transition:
    transform .45s var(--ease),
    box-shadow .45s var(--ease);
}

.brochure-visual:hover img {
  transform: rotate(-1deg) translateY(-7px);
  box-shadow: 0 36px 72px rgba(7,29,70,.22);
}

@media (max-width: 900px) {
  .brochure-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .brochure-copy {
    max-width: 680px;
    text-align: center;
    margin-inline: auto;
  }

  .brochure-copy__line {
    margin-inline: auto;
  }

  .button--brochure {
    margin-inline: auto;
  }

  .brochure-copy__note {
    text-align: center;
  }

  .brochure-visual {
    width: min(80vw, 420px);
  }
}

@media (max-width: 620px) {
  .brochure-section {
    padding: 72px 16px 92px;
  }

  .brochure-section__background-word {
    top: 74px;
    font-size: 43px;
  }

  .brochure-copy__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .brochure-copy__text {
    text-align: left;
    font-size: 13px;
  }

  .brochure-visual {
    width: min(88vw, 360px);
  }

  .brochure-visual__back {
    inset: 5% -3% -3% 6%;
  }
}



/* =====================================
   Version 1.0 — final quality pass
===================================== */
:where(a, button):focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
  box-shadow: var(--os-focus-ring);
}

.section-heading__line,
.brochure-copy__line {
  width: var(--os-line-width);
}

.hero,
.gift-section,
.briefing-section,
.flow-section,
.meeting-section,
.information-section,
.brochure-section,
.closing-section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.button {
  border-radius: 0;
  will-change: transform;
}

.button:active {
  transform: translateY(0);
}

.reveal {
  will-change: opacity, transform;
}

/* Closing */
.closing-section {
  position: relative;
  padding: clamp(82px, 10vw, 142px) 24px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(197,160,82,.17), transparent 38%),
    linear-gradient(145deg, #071d46, #0f2d5b);
}

.closing-section::before {
  content: "OPEN SCHOOL";
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(255,255,255,.035);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(74px, 16vw, 220px);
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-section .container {
  position: relative;
  z-index: 1;
}

.closing-section__eyebrow {
  margin: 0;
  color: var(--color-gold-light);
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}

.closing-section__year {
  margin: 8px 0 0;
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: clamp(58px, 9vw, 112px);
  line-height: 1;
}

.closing-section__line {
  display: block;
  width: 84px;
  height: 1px;
  margin: 26px auto;
  background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
}

.closing-section__message {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: clamp(25px, 3.6vw, 42px);
  letter-spacing: .08em;
}

.button--closing {
  width: min(100%, 340px);
  margin-top: 34px;
  padding-inline: 28px;
  color: #fff;
  background: linear-gradient(135deg, #caa85b, #9f741f);
  box-shadow: 0 14px 32px rgba(0,0,0,.2);
}

.closing-section__note {
  margin: 10px 0 0;
  font-size: 11px;
  opacity: .75;
}

/* Footer */
.site-footer {
  padding: 34px 24px 28px;
  background: #061735;
  color: rgba(255,255,255,.74);
}

.site-footer__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  font-size: 12px;
}

.site-footer__links a {
  transition: color .25s var(--ease);
}

.site-footer__links a:hover {
  color: var(--color-gold-light);
}

.site-footer__copyright {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-family: "Helvetica Neue",Arial,"Noto Sans",sans-serif;
  letter-spacing: .04em;
}

/* Stable image rendering */
.briefing-card__visual img,
.meeting-hero__visual img,
.meeting-map__image img,
.brochure-visual img,
.gift-card__product img {
  backface-visibility: hidden;
}

/* Avoid content overflow in long Japanese headings */
.information-card__title,
.meeting-map__note-title,
.brochure-copy__title {
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .closing-section {
    padding: 74px 16px 82px;
  }

  .closing-section__message {
    font-size: 25px;
    line-height: 1.65;
  }

  .site-footer {
    padding-inline: 16px;
  }

  .site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    text-align: center;
  }
}

/* Print */
@media print {
  .site-header,
  .menu-button,
  .scroll-cue,
  .button,
  .closing-section,
  .site-footer {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  body {
    background: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v0.8.1 */
.information-card__title{word-break:keep-all;}


/* v0.9.1 */
.brochure-copy__title{
  line-height:1.3;
}


/* =====================================
   Final client feedback
===================================== */

/* 来場者特典：PCは2段表示＋詰めた行間 */
.gift-card__title {
  line-height: 1.08;
}

.gift-title__line {
  display: block;
}

@media (max-width: 560px) {
  /* SPECIAL GIFT + 来場者全員にプレゼント！を右上へ */
  .gift-card__copy {
    position: relative;
  }

  .gift-card__eyebrow,
  .gift-card__lead {
    width: auto;
    max-width: calc(100% - 108px);
    margin-left: auto;
    padding-left: 0;
    padding-right: 8px;
    text-align: right;
  }

  .gift-card__eyebrow {
    margin-bottom: 5px;
  }

  .gift-card__lead {
    margin-bottom: 18px;
  }

  .gift-title__line {
    display: inline;
  }

  .gift-title__line + .gift-title__line::before {
    content: "";
  }
}

/* ご参加される方へ：正式SVGアイコン */
.information-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* =====================================
   Information cards — final alignment
===================================== */
@media (min-width: 981px) {
  .information-card {
    display: flex;
    flex-direction: column;
  }

  .information-card__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
  }

  .information-card__icon img {
    width: auto;
    height: auto;
    max-width: 58px;
    max-height: 58px;
    object-fit: contain;
  }

  .information-card__title {
    min-height: 6.2em;
    display: flex;
    align-items: flex-end;
    margin: 0;
  }

  .information-card__line {
    flex: 0 0 auto;
    margin-top: 18px;
    margin-bottom: 20px;
  }

  .information-card__text {
    margin-top: 0;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .information-card__icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .information-card__icon img {
    width: auto;
    height: auto;
    max-width: 54px;
    max-height: 54px;
    object-fit: contain;
  }

  .information-card__title {
    min-height: 3.2em;
  }
}

@media (max-width: 620px) {
  .information-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .information-card__icon img {
    width: auto;
    height: auto;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
  }
}


/* =====================================
   Mobile navigation viewport fix
   backdrop-filter on the scrolled header can make a fixed child
   behave as if it were fixed to the header instead of the viewport.
===================================== */
@media (max-width: 1024px) {
  body.is-menu-open .site-header {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.is-menu-open .global-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* =====================================
   Gothic font variation
   Client review version
===================================== */
:root {
  --font-gothic-ja:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    sans-serif;

  --font-gothic-en:
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    sans-serif;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-gothic-ja);
}

.hero__title,
.gift-card__title,
.section-heading__title,
.briefing-card__title,
.flow-step__title,
.flow-program__title,
.meeting-hero__title,
.meeting-map__note-title,
.information-card__title,
.information-message__text,
.brochure-copy__title,
.closing-section__message {
  font-family: var(--font-gothic-ja);
  font-weight: 600;
}

.gift-card__eyebrow,
.gift-card__brand,
.section-heading__eyebrow,
.briefing-card__english,
.briefing-card__number,
.flow-step__label,
.flow-step__time,
.flow-step__number,
.flow-program__english,
.meeting-hero__eyebrow,
.meeting-map__note-label,
.information-section__background-word,
.brochure-copy__eyebrow,
.brochure-section__background-word,
.closing-section__eyebrow,
.closing-section__year,
.site-footer__copyright {
  font-family: var(--font-gothic-en);
}

.hero__title,
.gift-card__title,
.section-heading__title,
.briefing-card__title,
.flow-step__title,
.flow-program__title,
.meeting-hero__title,
.meeting-map__note-title,
.information-card__title,
.information-message__text,
.brochure-copy__title,
.closing-section__message {
  letter-spacing: .035em;
}

@media (max-width: 620px) {
  .section-heading__title,
  .brochure-copy__title {
    letter-spacing: .025em;
  }
}


/* =====================================
   2026/07/30
   クルトガ横長画像 レスポンシブ調整
===================================== */

/* 画像の幅計算で親要素からはみ出さないようにする */
.gift-card__product {
  min-width: 0;
}

/* PC：画像エリアをしっかり使い、従来より大きく表示 */
@media (min-width: 861px) {
  .gift-card__product {
    justify-items: center;
    padding-right: 0;
  }

  .gift-card__product img {
    display: block;
    width: min(100%, 620px);
    max-width: 100%;
    max-height: 180px;
    height: auto;
    object-fit: contain;
    transform: none;
  }

  .gift-card:hover .gift-card__product img {
    transform: translateY(-2px) scale(1.01);
  }

  .gift-card__product::before {
    width: 72%;
    right: 14%;
  }
}

/* タブレット・スマホ：画像をカード内に収める */
@media (max-width: 860px) {
  .gift-card__product {
    width: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .gift-card__product img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    margin-inline: auto;
    object-fit: contain;
    transform: none;
  }

  .gift-card:hover .gift-card__product img {
    transform: none;
  }
}

@media (max-width: 560px) {
  .gift-card__product {
    margin-top: 2px;
  }

  .gift-card__product img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .gift-card__product::before {
    width: 76%;
    height: 20px;
    right: 12%;
    bottom: 28px;
    left: auto;
  }

  .gift-card__brand {
    width: 100%;
    max-width: 100%;
    justify-content: flex-end;
    margin-top: 4px;
    padding-right: 2px;
    font-size: clamp(13px, 4vw, 17px);
    white-space: nowrap;
  }

  .gift-card__brand span {
    flex: 0 0 auto;
    width: 18px;
  }
}
