:root {
      --navy: #08172d;
      --navy-2: #102443;
      --ink: #14233d;
      --muted: #68758a;
      --line: #d9e0e8;
      --soft: #f7f9fb;
      --red: #d70717;
      --red-deep: #b40010;
      --white: #fff;
      --max: 1320px;
      --shadow: 0 12px 30px rgba(8, 23, 45, .08);
      --font-display: "DIN Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
      font-size: 16px;
      line-height: 1.85;
      letter-spacing: .025em;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }

    .site-header {
      height: 72px;
      background: var(--white);
      border-bottom: 1px solid #edf0f4;
    }

    .header-inner {
      width: min(calc(100% - 72px), 1360px);
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
    }

    .brand img {
      width: 105px;
      height: 34px;
      object-fit: contain;
    }

    .brand-name {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .04em;
      white-space: nowrap;
    }

    .global-nav {
      display: flex;
      align-items: center;
      gap: clamp(18px, 2.1vw, 34px);
      font-size: 14px;
      font-weight: 700;
      color: #3d4c62;
      white-space: nowrap;
    }

    .global-nav a { transition: color .2s ease; }
    .global-nav a:hover { color: var(--red); }

    .login-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 118px;
      min-height: 38px;
      padding: 0 18px;
      border-radius: 3px;
      color: var(--white) !important;
      background: var(--navy);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      background: var(--white);
      border-radius: 3px;
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      display: block;
      width: 18px;
      height: 1px;
      margin: 4px auto;
      background: var(--navy);
      content: "";
      transition: transform .2s ease, opacity .2s ease;
    }

    .announcement {
      min-height: 40px;
      display: flex;
      align-items: center;
      color: var(--white);
      background: var(--red);
      font-size: 14px;
    }

    .announcement-inner {
      width: min(calc(100% - 72px), 1360px);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 17px;
    }

    .announcement-label {
      padding: 1px 14px;
      border-radius: 2px;
      color: var(--red);
      background: var(--white);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.6;
      white-space: nowrap;
    }

    .hero {
      position: relative;
      min-height: 500px;
      overflow: hidden;
      isolation: isolate;
      background: #13243d;
    }

    .hero-slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      transform: scale(1.01);
      transition: opacity 1.2s ease, transform 7s ease;
    }
    .hero-slide.is-active { opacity: 1; transform: scale(1.045); }
    .hero-slide-mobile { display: none; }

    .hero::after {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(90deg, rgba(7, 22, 44, .98) 0%, rgba(7, 22, 44, .88) 28%, rgba(7, 22, 44, .32) 55%, rgba(7, 22, 44, .08) 78%);
      content: "";
    }

    .hero-inner {
      width: min(calc(100% - 72px), var(--max));
      min-height: 500px;
      margin: 0 auto;
      display: flex;
      align-items: center;
    }

    .hero-copy { width: min(760px, 64vw); padding: 8px 0 12px; color: var(--white); }

    .hero h1 {
      margin: 0 0 17px;
      font-size: clamp(39px, 3.65vw, 58px);
      line-height: 1.2;
      letter-spacing: .015em;
      font-weight: 800;
    }

    .hero-lead {
      margin: 0 0 25px;
      font-size: 17px;
      font-weight: 600;
      line-height: 1.8;
    }

    .button-row { display: flex; flex-wrap: wrap; gap: 13px; }

    .button {
      min-width: 178px;
      min-height: 48px;
      padding: 10px 22px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      border-radius: 2px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .045em;
      transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    }

    .button::after { content: "›"; font-size: 20px; line-height: 0; font-weight: 400; }
    .button:hover { transform: translateY(-2px); }
    .button-red { color: var(--white); background: var(--red); }
    .button-red:hover { background: var(--red-deep); }
    .button-outline { color: var(--white); border-color: rgba(255,255,255,.86); background: rgba(7, 22, 44, .18); }
    .button-outline:hover { color: var(--navy); background: var(--white); }
    .button-light { color: var(--ink); border-color: #aebbc9; background: var(--white); }
    .button-light:hover { color: var(--white); border-color: var(--navy); background: var(--navy); }

    .section { padding: 74px 0; }
    .section-inner { width: min(calc(100% - 72px), var(--max)); margin: 0 auto; }

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

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 8px;
      color: #6f7d90;
      font-size: 10px;
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 47px;
      height: 2px;
      flex: 0 0 auto;
      background: var(--red);
      content: "";
    }

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

    h2 {
      margin-bottom: 0;
      font-size: clamp(27px, 2.2vw, 38px);
      line-height: 1.35;
      letter-spacing: .035em;
    }

    .section-heading h2 { font-weight: 800; }
    .section-heading h2::after { display: none; }

    .about { background: var(--white); }

    .about-grid {
      width: min(100%, 1000px);
      margin-inline: auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, .94fr);
      gap: clamp(24px, 3.5vw, 48px);
      align-items: center;
    }

    .about-copy { position: relative; z-index: 0; overflow: hidden; isolation: isolate; padding: 50px 0 8px; }
    .about-copy h2 { display: flex; align-items: center; gap: 17px; width: fit-content; margin-bottom: 20px; }
    .about-copy h2::before { width: 32px; height: 3px; flex: 0 0 auto; background: var(--red); content: ""; }
    .about-copy .eyebrow {
      position: absolute;
      z-index: -1;
      top: 3px;
      right: auto;
      left: 0;
      margin: 0;
      color: rgba(8, 23, 45, .055);
      font-family: var(--font-display);
      font-size: clamp(62px, 7.4vw, 98px);
      font-weight: 700;
      font-stretch: condensed;
      line-height: 1;
      letter-spacing: .075em;
      white-space: nowrap;
      pointer-events: none;
    }
    .about-copy .eyebrow::before { display: none; }
    .about-copy p { margin-bottom: 18px; }
    .about-copy .lead { font-size: 17px; font-weight: 700; line-height: 1.8; }
    .about-copy .small { color: #56657b; font-size: 15px; line-height: 1.9; }

    .about-visual {
      position: relative;
      min-height: 300px;
      overflow: hidden;
      background: var(--white);
    }

    .about-visual img {
      width: 100%;
      height: 100%;
      min-height: 300px;
      object-fit: cover;
      object-position: center;
    }

    .concept { 
      position: relative;
      min-height: 445px;
      overflow: hidden;
      color: var(--white);
      isolation: isolate;
      background: #354d69;
    }

    .concept-slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
    .concept-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      transform: scale(1.01);
      transition: opacity 1.2s ease, transform 7s ease;
    }
    .concept-slide.is-active { opacity: 1; transform: scale(1.055); }

    .concept::after {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(90deg, rgba(6, 26, 51, .92) 0%, rgba(6, 26, 51, .68) 37%, rgba(6, 26, 51, .12) 76%), linear-gradient(0deg, rgba(6, 26, 51, .35), transparent 60%);
      content: "";
    }

    .concept-inner { width: min(calc(100% - 72px), var(--max)); min-height: 445px; margin: 0 auto; padding: 46px 0; display: flex; align-items: center; }
    .concept-copy { position: relative; z-index: 0; width: min(700px, 66vw); padding-top: 64px; isolation: isolate; }
    .concept .eyebrow {
      position: absolute;
      z-index: -1;
      top: 3px;
      left: 0;
      margin: 0;
      color: rgba(255,255,255,.1);
      font-family: var(--font-display);
      font-size: clamp(62px, 7.4vw, 108px);
      font-weight: 700;
      font-stretch: condensed;
      line-height: 1;
      letter-spacing: .075em;
      white-space: nowrap;
      pointer-events: none;
    }
    .concept .eyebrow::before { display: none; }
    .concept h2 { display: block; margin-bottom: 16px; font-size: clamp(27px, 2.35vw, 40px); line-height: 1.35; white-space: nowrap; }
    .concept h2::before { display: none; }
    .concept h2::after { display: none; }
    .concept p { max-width: 600px; margin-bottom: 19px; font-size: 15px; line-height: 1.9; }

    .data-section { background: var(--white); }
    .section-title-row {
      position: relative;
      min-height: 104px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      overflow: hidden;
    }
    .section-title-row .section-heading {
      position: relative;
      z-index: 0;
      width: 100%;
      margin-bottom: 0;
      padding: 48px 0 12px;
    }
    .section-title-row .section-heading .eyebrow {
      position: absolute;
      z-index: -1;
      top: 3px;
      right: auto;
      left: 0;
      margin: 0;
      color: rgba(8, 23, 45, .055);
      font-family: var(--font-display);
      font-size: clamp(62px, 7.4vw, 108px);
      font-weight: 700;
      font-stretch: condensed;
      line-height: 1;
      letter-spacing: .075em;
      white-space: nowrap;
      pointer-events: none;
    }
    .section-title-row .section-heading .eyebrow::before { display: none; }
    .section-title-row .section-heading h2 {
      position: relative;
      display: flex;
      align-items: center;
      gap: 17px;
      width: fit-content;
    }
    .section-title-row .section-heading h2::before {
      width: 32px;
      height: 3px;
      flex: 0 0 auto;
      background: var(--red);
      content: "";
    }
    .text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; font-size: 13px; font-weight: 800; white-space: nowrap; }
    .text-link::after { content: "›"; color: var(--navy); font-size: 22px; font-weight: 400; line-height: .7; }
    .text-link:hover { color: var(--red); }

    .events-grid {
      margin-top: 25px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .event-poster-card {
      min-width: 0;
      display: grid;
      grid-template-columns: 214px minmax(0, 1fr);
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--white);
    }
    .event-poster-media { display: block; align-self: stretch; min-height: 100%; overflow: hidden; background: #eef1f5; }
    .event-poster-media img { width: 100%; height: 100%; display: block; object-fit: contain; transition: transform .35s ease; }
    .event-poster-media:hover img { transform: scale(1.018); }
    .event-poster-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 16px 20px 14px; }
    .event-kicker { min-height: 28px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 5px; padding: 3px 10px 1px; color: var(--white); background: var(--red); font-family: var(--font-display); font-size: 12px; font-weight: 700; line-height: 1; letter-spacing: .09em; text-transform: uppercase; }
    .event-kicker.gold { background: #ad8530; }
    .event-poster-date { margin-top: 10px; display: flex; align-items: baseline; gap: 8px; color: #617086; line-height: 1; }
    .event-poster-date small { font-size: 12px; }
    .event-poster-date strong { color: var(--red); font-family: var(--font-display); font-size: 36px; font-weight: 500; letter-spacing: .015em; }
    .event-poster-date span { font-size: 12px; }
    .event-poster-copy h3 { min-height: 0; margin: 10px 0 7px; font-size: clamp(20px, 1.65vw, 27px); line-height: 1.35; letter-spacing: .035em; }
    .event-poster-copy p { min-height: 0; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
    .event-poster-copy p strong { color: var(--ink); font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: .045em; }
    .event-note { margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.45; }
    .event-apply-link { width: 100%; min-height: 44px; margin-top: 14px; padding: 9px 13px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--white); background: var(--red); font-size: 13px; font-weight: 800; letter-spacing: .035em; transition: background .2s ease, transform .2s ease; }
    .event-apply-link::after { content: "›"; font-size: 20px; font-weight: 400; line-height: 1; }
    .event-apply-link:hover { color: var(--white); background: var(--red-deep); transform: translateY(-1px); }
    .event-apply-link--gold { background: #9a7427; }
    .event-apply-link--gold:hover { background: #79591c; }
    .event-poster-link { margin-top: 8px; padding: 0 0 2px; border: 0; border-bottom: 1px solid currentColor; color: var(--ink); background: transparent; font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; }
    .event-poster-link:hover { color: var(--red); }

    .poster-modal { width: min(92vw, 880px); max-width: none; max-height: 92vh; margin: auto; padding: 0; overflow: visible; border: 0; background: transparent; }
    .poster-modal::backdrop { background: rgba(4, 14, 29, .82); backdrop-filter: blur(3px); }
    .poster-modal.is-fallback-open { position: fixed; z-index: 1000; inset: 0; width: 100%; max-height: none; display: flex; align-items: center; justify-content: center; padding: 4vh 5vw; background: rgba(4, 14, 29, .82); }
    .poster-modal-inner { position: relative; display: flex; justify-content: center; max-height: 92vh; }
    .poster-modal-image { width: auto; max-width: 100%; max-height: 92vh; object-fit: contain; box-shadow: 0 18px 60px rgba(0,0,0,.38); background: var(--white); }
    .poster-modal-close { position: absolute; z-index: 1; top: -15px; right: -15px; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; padding: 0; border: 2px solid var(--white); border-radius: 50%; color: var(--white); background: var(--navy); font-family: Arial, sans-serif; font-size: 28px; line-height: 1; cursor: pointer; }

    .event-poster-date,
    .date-block,
    .event-date,
    .feature-meta-copy strong span,
    .activity-copy small,
    .activity-item-copy small,
    .news-item time {
      font-family: var(--font-display);
      font-variant-numeric: tabular-nums;
      letter-spacing: .045em;
    }

    .feature-card { border: 1px solid var(--line); background: var(--white); }
    .feature-card-image { position: relative; height: 190px; overflow: hidden; background: #243b5a; }
    .feature-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
    .feature-card-image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,22,44,.75), transparent 55%); content: ""; }
    .feature-badge { position: absolute; z-index: 1; top: 0; left: 0; padding: 6px 16px; color: var(--white); background: var(--red); font-size: 11px; font-weight: 800; }
    .feature-overlay { position: absolute; z-index: 1; left: 20px; bottom: 14px; color: var(--white); }
    .feature-overlay strong { display: block; font-size: 17px; line-height: 1.45; }
    .feature-overlay span { font-size: 11px; }
    .feature-meta { min-height: 80px; display: flex; align-items: center; gap: 20px; padding: 14px 21px; }
    .date-block { flex: 0 0 86px; padding-right: 20px; border-right: 1px solid var(--line); text-align: center; }
    .date-block small { display: block; color: #64748a; font-size: 11px; line-height: 1.35; }
    .date-block b { color: var(--red); font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: .045em; line-height: 1.05; }
    .feature-meta-copy { font-size: 12px; line-height: 1.7; }
    .feature-meta-copy strong { display: block; font-size: 13px; }
    .feature-meta-copy span { color: var(--muted); }

    .event-list, .activity-list { border-top: 1px solid var(--line); }
    .event-item, .activity-item { min-height: 82px; display: flex; align-items: center; gap: 16px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
    .event-date { flex: 0 0 70px; color: #64748a; font-size: 11px; line-height: 1.2; text-align: center; }
    .event-date b { display: block; margin-top: 3px; color: var(--red); font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: .045em; }
    .event-detail { flex: 1; min-width: 0; padding-left: 16px; border-left: 1px solid var(--line); }
    .event-detail strong { display: block; font-size: 13px; line-height: 1.5; }
    .event-detail span { color: var(--muted); font-size: 11px; }
    .arrow { font-size: 23px; font-weight: 300; line-height: 1; }

    .activities { padding-top: 12px; }
    .activities-grid { margin-top: 25px; display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr); gap: 24px; }
    .activity-feature { position: relative; height: clamp(250px, 26vw, 340px); min-height: 0; overflow: hidden; color: var(--white); background: var(--navy); }
    .activity-feature img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center 60%; opacity: .88; }
    .activity-feature::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,22,44,.92), transparent 70%); content: ""; }
    .activity-copy { position: absolute; z-index: 1; left: 24px; bottom: 19px; }
    .activity-copy small { font-size: 12px; }
    .activity-copy strong { display: block; margin: 4px 0; font-size: 18px; }
    .activity-copy span { font-size: 12px; }
    .activity-list { border-top: 0; }
    .activity-item { min-height: 78px; gap: 13px; padding: 8px 0; }
    .activity-item img { width: 100px; height: 58px; object-fit: cover; flex: 0 0 100px; }
    .activity-item-copy { flex: 1; line-height: 1.45; }
    .activity-item-copy small { display: block; color: var(--muted); font-size: 12px; }
    .activity-item-copy strong { display: block; font-size: 14px; }
    .activity-item-copy span { display: block; color: var(--muted); font-size: 12px; }

    .news { padding-top: 22px; background: var(--soft); }
    .news-list { margin-top: 24px; border: 1px solid var(--line); background: var(--white); }
    .news-item { min-height: 58px; display: grid; grid-template-columns: 100px 86px 1fr; align-items: center; gap: 16px; padding: 7px 17px; border-bottom: 1px solid var(--line); }
    .news-item:last-child { border-bottom: 0; }
    .news-item time { color: #69778d; font-size: 11px; }
    .news-tag { padding: 3px 8px; color: var(--white); background: #65748a; font-size: 10px; font-weight: 800; text-align: center; }
    .news-tag.red { background: var(--red); }
    .news-copy { font-size: 12px; font-weight: 700; }
    .news-placeholder { padding: 30px 34px; text-align: center; }
    .news-placeholder strong { display: block; margin-bottom: 5px; font-size: 16px; }
    .news-placeholder span { color: var(--muted); font-size: 14px; }

    .motion-ready .reveal-item {
      opacity: 0;
      transform: translate3d(0, 22px, 0);
      transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
      will-change: opacity, transform;
    }
    .motion-ready .reveal-item.reveal-soft { transform: translate3d(0, 14px, 0); }
    .motion-ready .reveal-item.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      will-change: auto;
    }
    .motion-ready .reveal-delay-1 { transition-delay: .08s; }
    .motion-ready .reveal-delay-2 { transition-delay: .16s; }
    .motion-ready .typewriter-eyebrow { gap: 0; }
    .motion-ready .typewriter-eyebrow .type-char { display: inline-block; opacity: 0; }
    .motion-ready .reveal-item.is-visible .typewriter-eyebrow .type-char {
      animation: typewriter-character .01s step-end forwards;
      animation-delay: calc(.12s + (var(--char-index) * .075s));
    }

    @keyframes typewriter-character {
      to { opacity: 1; }
    }

    @keyframes announcement-marquee {
      0%, 12% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide, .concept-slide { transition: none; transform: none; }
      .hero-slide.is-active, .concept-slide.is-active { transform: none; }
      .announcement-text span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; animation: none !important; transform: none; }
      .motion-ready .reveal-item,
      .motion-ready .reveal-item.reveal-soft {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
    .news-arrow { color: #65748a; font-size: 22px; text-align: right; }

    .members { padding-top: 67px; padding-bottom: 70px; background: var(--soft); }
    .members .section-heading { position: relative; z-index: 0; min-height: 104px; overflow: hidden; isolation: isolate; padding: 48px 0 12px; text-align: left; }
    .members .eyebrow {
      position: absolute;
      z-index: -1;
      top: 3px;
      left: 0;
      margin: 0;
      justify-content: flex-start;
      color: rgba(8, 23, 45, .055);
      font-family: var(--font-display);
      font-size: clamp(62px, 7.4vw, 108px);
      font-weight: 700;
      font-stretch: condensed;
      line-height: 1;
      letter-spacing: .075em;
      white-space: nowrap;
      pointer-events: none;
    }
    .members .eyebrow::before { display: none; }
    .members .section-heading h2 { display: flex; align-items: center; gap: 17px; width: fit-content; }
    .members .section-heading h2::before { width: 32px; height: 3px; flex: 0 0 auto; background: var(--red); content: ""; }
    .members .section-heading h2::after { margin: 12px auto 0; }
    .member-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px 15px; }
    .member-card { position: relative; min-height: 98px; display: flex; align-items: center; gap: 14px; padding: 32px 23px 16px; border: 1px solid #c4cfdb; background: var(--white); }
    .member-status { position: absolute; top: 0; left: 0; display: inline-flex; align-items: center; padding: 6px 10px; color: var(--white); background: #c4cfdb; font-family: var(--font-display); font-size: 12px; font-weight: 600; line-height: 1; letter-spacing: .06em; }
    .member-copy { width: 100%; text-align: center; }
    .member-copy strong { display: block; margin-bottom: 5px; font-size: 17px; line-height: 1.4; letter-spacing: .025em; }
    .member-copy span { display: block; color: var(--muted); font-size: 13px; line-height: 1.55; }
    .member-actions { margin-top: 28px; text-align: center; }
    .member-note { margin: 4px 0 15px; color: var(--muted); font-size: 13px; text-align: left; }

    .second-meeting { padding-top: 76px; background: var(--soft); border-top: 1px solid var(--line); }
    .second-meeting-heading { margin-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
    .second-meeting-heading .eyebrow { margin-bottom: 10px; }
    .second-meeting-heading h2 { margin-bottom: 10px; }
    .second-meeting-heading p { margin: 0; color: var(--muted); font-size: 14px; }
    .second-meeting-heading>span { padding: 7px 13px; border-radius: 999px; background: var(--navy); color: var(--white); font-size: 12px; font-weight: 800; white-space: nowrap; }
    .second-meeting-map { position: relative; height: min(48vw, 580px); min-height: 430px; overflow: hidden; border: 1px solid var(--line); background: #dce5e8; box-shadow: var(--shadow); }
    .second-meeting-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
    .second-meeting-store-list { margin-top: 18px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .second-meeting-store-card { min-height: 210px; padding: 19px; border: 1px solid var(--line); display: flex; flex-direction: column; background: var(--white); }
    .second-meeting-store-card__labels { margin-bottom: 13px; display: flex; align-items: center; gap: 6px; }
    .second-meeting-store-card__labels span,.second-meeting-store-card__labels small { padding: 2px 8px; font-size: 10px; font-weight: 800; line-height: 1.5; }
    .second-meeting-store-card__labels span { background: var(--red); color: var(--white); }
    .second-meeting-store-card__labels span.is-green { background: #168a4a; }
    .second-meeting-store-card__labels small { background: #edf1f5; color: #44546a; }
    .second-meeting-store-card__title { display: flex; align-items: center; gap: 9px; }
    .second-meeting-store-card__title b { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; display: grid; place-items: center; background: #ff5252; color: var(--white); font-size: 12px; }
    .second-meeting-store-card h3 { margin: 0; font-size: 19px; line-height: 1.4; }
    .second-meeting-store-card__details { margin: 12px 0 14px; color: var(--muted); font-size: 13px; line-height: 1.65; }
    .second-meeting-store-card__details p { margin: 0 0 5px; }
    .second-meeting-store-card__phone { color: var(--navy); font-size: 14px; font-weight: 800; }
    .second-meeting-store-card__actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 7px; }
    .second-meeting-store-card__actions a { min-height: 34px; padding: 5px 10px; border: 1px solid #b5bfcc; border-radius: 3px; display: inline-flex; align-items: center; gap: 6px; color: var(--navy); background: var(--white); font-size: 12px; font-weight: 800; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
    .second-meeting-store-card__actions a:hover { transform: translateY(-2px); border-color: var(--navy); background: #f4f7fa; }
    .second-meeting-store-card__actions .is-instagram { color: #c13584; border-color: #e8b4d1; }

    .site-footer { padding: 60px 0 36px; color: rgba(255,255,255,.82); background: var(--navy); }
    .footer-grid { width: min(calc(100% - 72px), var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; }
    .footer-brand { display: flex; align-items: center; gap: 14px; color: var(--white); font-size: 19px; font-weight: 800; letter-spacing: .05em; }
    .footer-logo { width: 92px; height: auto; flex: 0 0 auto; }
    .footer-summary { max-width: 420px; margin-top: 15px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.85; }
    .footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .footer-column h3 { margin: 0 0 10px; color: var(--white); font-size: 13px; }
    .footer-column a { display: block; color: rgba(255,255,255,.74); font-size: 12px; line-height: 2.05; }
    .footer-column a:hover { color: var(--white); }
    .footer-column:last-child a { width: 100%; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 6px 14px; border: 1px solid rgba(255,255,255,.45); line-height: 1.4; transition: border-color .2s ease, background .2s ease; }
    .footer-column:last-child a:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
    .footer-bottom { width: min(calc(100% - 72px), var(--max)); margin: 44px auto 0; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.6); font-size: 11px; }
    .footer-bottom-links { display: flex; gap: 22px; }

    @media (max-width: 980px) {
      .header-inner, .announcement-inner { width: min(calc(100% - 42px), var(--max)); }
      .global-nav { gap: 16px; font-size: 13px; }
      .brand-name { font-size: 15px; }
      .brand img { width: 92px; }
      .section-inner, .concept-inner, .footer-grid, .footer-bottom { width: min(calc(100% - 52px), var(--max)); }
      .about-grid { gap: 34px; }
      .events-grid, .activities-grid { grid-template-columns: 1fr; }
      .activity-list { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 18px; }
      .activity-item { display: block; }
      .activity-item img { width: 100%; height: 88px; }
      .activity-item-copy { padding-top: 7px; }
      .footer-grid { grid-template-columns: 1fr; gap: 38px; }
      .second-meeting-store-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      .site-header { height: 64px; }
      .header-inner { width: calc(100% - 32px); }
      .brand { gap: 8px; }
      .brand img { width: 80px; height: 28px; }
      .brand-name { font-size: 15px; }
      .menu-toggle { display: block; }
      .global-nav { position: absolute; z-index: 20; top: 64px; right: 16px; left: 16px; display: none; padding: 14px; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--white); font-size: 14px; }
      .global-nav.is-open { display: grid; gap: 0; }
      .global-nav a { padding: 9px 5px; border-bottom: 1px solid #edf0f4; }
      .global-nav a:last-child { border-bottom: 0; }
      .global-nav .login-button { margin-top: 10px; padding: 11px 16px; border-bottom: 0; }
      .menu-toggle.is-open::before { transform: translateY(5px) rotate(45deg); }
      .menu-toggle.is-open span { opacity: 0; }
      .menu-toggle.is-open::after { transform: translateY(-5px) rotate(-45deg); }
      .announcement { min-height: 39px; font-size: 12px; }
      .announcement-inner { width: calc(100% - 32px); gap: 8px; white-space: nowrap; overflow: hidden; }
      .announcement-label { padding: 1px 8px; font-size: 11px; }
      .announcement-text { min-width: 0; flex: 1; overflow: hidden; }
      .announcement-text span { display: inline-block; min-width: max-content; animation: announcement-marquee 15s linear infinite; will-change: transform; }
      .announcement-text:hover span { animation-play-state: paused; }
      .hero { min-height: 490px; margin-bottom: 82px; overflow: visible; }
      .hero-inner { min-height: 490px; }
      .hero-slide-desktop { display: none; }
      .hero-slide-mobile { display: block; object-position: center 42%; }
      .hero-slide.is-active { transform: none; }
      .hero::after { background: linear-gradient(180deg, rgba(7,22,44,0) 0%, rgba(7,22,44,.1) 40%, rgba(7,22,44,.56) 72%, rgba(7,22,44,1) 100%); }
      .hero-inner { width: calc(100% - 36px); align-items: flex-end; padding: 0 0 0px; }
      .hero-copy { width: 100%; }
      .hero h1 { margin-bottom: 15px; font-size: clamp(29px, 7.45vw, 36px); line-height: 1.25; }
      .hero-lead { margin-bottom: 0; font-size: 15px; line-height: 1.75; }
      .hero .button-row { position: absolute; z-index: 3; right: 0; bottom: -82px; left: 0; width: 100%; max-width: 100vw; min-height: 82px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 8px; padding: 14px; box-shadow: 0 8px 24px rgba(7,22,44,.18); background: var(--navy); }
      .hero .button-row .button { width: 100%; max-width: 100%; min-width: 0; min-height: 50px; padding: 8px 7px; gap: 5px; overflow: hidden; font-size: 12px; line-height: 1.35; letter-spacing: .015em; text-align: center; white-space: normal; overflow-wrap: anywhere; }
      .hero .button-row .button::after { flex: 0 0 auto; }
      .hero .button-row .button-outline { color: var(--white); border-color: rgba(255,255,255,.72); background: transparent; }
      .button { min-width: 150px; min-height: 46px; padding: 8px 15px; font-size: 14px; gap: 11px; }
      .section { padding: 56px 0; }
      .section-inner, .concept-inner, .footer-grid, .footer-bottom { width: calc(100% - 36px); }
      .section-heading { margin-bottom: 24px; }
      .eyebrow { gap: 10px; font-size: 9px; }
      .eyebrow::before { width: 31px; }
      h2 { font-size: 26px; }
      .about-grid { grid-template-columns: 1fr; gap: 30px; }
      .about-copy { padding-top: 40px; }
      .about-copy h2 { gap: 11px; }
      .about-copy h2::before { width: 20px; height: 2px; }
      .about-copy .eyebrow { top: 3px; right: auto; left: 0; font-size: clamp(43px, 15vw, 58px); letter-spacing: .01em; }
      .about-copy .lead { font-size: 15px; }
      .about-copy .small { font-size: 14px; }
      .about-copy .small br { display: none; }
      .about-visual { min-height: 235px; }
      .about-visual img { min-height: 235px; }
      .concept { min-height: 500px; }
      .concept-inner { min-height: 500px; align-items: stretch; padding: 48px 0 44px; }
      .concept-slide { object-position: 55% center; }
      .concept::after { background: linear-gradient(90deg, rgba(6,26,51,.93) 0%, rgba(6,26,51,.62) 100%), linear-gradient(0deg, rgba(6,26,51,.72), transparent 65%); }
      .concept-copy { width: 100%; padding-top: 48px; display: flex; flex-direction: column; }
      .concept-copy .button { margin-top: auto; align-self: flex-start; }
      .concept .eyebrow { top: 3px; left: 0; font-size: clamp(43px, 15vw, 58px); letter-spacing: .01em; }
      .concept h2 { font-size: 28px; white-space: normal; }
      .concept p { font-size: 14px; }
      .section-title-row { min-height: 76px; display: block; overflow: hidden; }
      .section-title-row .section-heading { padding: 36px 0 13px; }
      .section-title-row .section-heading .eyebrow {
        top: 3px;
        right: auto;
        left: 0;
        font-size: clamp(43px, 15vw, 58px);
        letter-spacing: .01em;
      }
      .section-title-row .section-heading h2 { gap: 11px; }
      .section-title-row .section-heading h2::before { width: 20px; height: 2px; }
      .text-link { align-self: flex-end; font-size: 12px; }
      .events-grid, .activities-grid { margin-top: 20px; gap: 18px; }
      .event-poster-card { grid-template-columns: minmax(0, 1fr) 128px; }
      .event-poster-media { grid-column: 2; grid-row: 1; min-height: 0; height: auto; aspect-ratio: 1414 / 2000; align-self: start; }
      .event-poster-media img { object-fit: contain; object-position: top center; }
      .event-poster-copy { grid-column: 1; grid-row: 1; min-height: 0; padding: 14px 14px 12px; }
      .event-poster-date { margin-top: 9px; }
      .event-poster-date strong { font-size: 29px; }
      .event-poster-copy h3 { min-height: 0; margin: 10px 0 7px; font-size: 17px; }
      .event-poster-copy p { min-height: 0; font-size: 13px; }
      .event-poster-copy p strong { font-size: 15px; }
      .event-note { margin-top: 8px; font-size: 12px; }
      .event-apply-link { min-height: 42px; margin-top: 12px; padding: 8px 11px; font-size: 12px; }
      .event-poster-link { margin-top: 9px; padding-top: 0; font-size: 12px; }
      .poster-modal { width: calc(100vw - 28px); max-height: 88vh; }
      .poster-modal-inner, .poster-modal-image { max-height: 88vh; }
      .poster-modal-close { top: -12px; right: -8px; width: 38px; height: 38px; font-size: 25px; }
      .feature-card-image { height: 166px; }
      .feature-meta { gap: 13px; padding: 13px; }
      .date-block { flex-basis: 75px; padding-right: 13px; }
      .date-block b { font-size: 28px; }
      .feature-meta-copy strong { font-size: 12px; }
      .event-item { min-height: 76px; padding: 10px 11px; gap: 9px; }
      .event-date { flex-basis: 58px; font-size: 10px; }
      .event-date b { font-size: 15px; }
      .event-detail { padding-left: 10px; }
      .event-detail strong { font-size: 11px; }
      .event-detail span { font-size: 10px; }
      .activities { padding-top: 0; }
      .activity-feature { min-height: 220px; }
      .activity-feature img { min-height: 220px; }
      .activity-copy { left: 17px; bottom: 14px; }
      .activity-copy strong { font-size: 16px; }
      .activity-list { display: block; }
      .activity-item { min-height: 75px; display: flex; }
      .activity-item img { width: 90px; height: 57px; flex-basis: 90px; }
      .news { padding-top: 48px; }
      .news-list { margin-top: 18px; }
      .news-item { min-height: 74px; grid-template-columns: 75px 65px 1fr; gap: 7px; padding: 7px 9px; }
      .news-item time { font-size: 11px; }
      .news-tag { padding: 4px 5px; font-size: 10px; }
      .news-copy { font-size: 12px; line-height: 1.55; }
      .news-arrow { font-size: 18px; }
      .members { padding-top: 54px; padding-bottom: 56px; }
      .members .section-heading { min-height: 76px; padding: 36px 0 13px; }
      .members .eyebrow { top: 3px; left: 0; font-size: clamp(43px, 15vw, 58px); letter-spacing: .01em; }
      .members .section-heading h2 { gap: 11px; }
      .members .section-heading h2::before { width: 20px; height: 2px; }
      .member-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 20px; }
      .member-card { min-height: 86px; padding: 31px 17px 13px; }
      .member-status { top: 0; left: 0; }
      .member-copy strong { font-size: 16px; }
      .member-copy span { font-size: 13px; }
      .second-meeting { padding-top: 56px; }
      .second-meeting-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
      .second-meeting-heading p { font-size: 14px; line-height: 1.75; }
      .second-meeting-map { height: 86vw; min-height: 330px; }
      .second-meeting-store-list { grid-template-columns: 1fr; gap: 10px; }
      .second-meeting-store-card { min-height: 0; padding: 17px; }
      .second-meeting-store-card__details { font-size: 14px; }
      .second-meeting-store-card__phone { min-height: 40px; display: inline-flex; align-items: center; font-size: 16px; }
      .second-meeting-store-card__actions a { min-height: 44px; padding: 8px 12px; font-size: 14px; }
      .site-footer { padding: 45px 0 25px; }
      .footer-grid { gap: 28px; }
      .footer-brand { gap: 10px; font-size: 17px; }
      .footer-logo { width: 76px; }
      .footer-summary { font-size: 13px; }
      .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 20px; }
      .footer-column:last-child { grid-column: 1 / -1; }
      .footer-column h3 { font-size: 13px; }
      .footer-column a { font-size: 13px; }
      .footer-bottom { margin-top: 32px; display: block; font-size: 10px; }
      .footer-bottom-links { margin-top: 9px; gap: 16px; }
    }

    @media (max-width: 360px) {
      .hero { margin-bottom: 126px; }
      .hero .button-row { bottom: -126px; min-height: 126px; grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 10px 14px; }
      .hero .button-row .button { min-height: 49px; font-size: 12px; }
    }

    @media (max-width: 340px) {
      body { font-size: 14px; }
      .hero, .hero-inner, .concept, .concept-inner { min-height: 520px; }
      .hero-inner { padding-bottom: 38px; }
      .hero h1 { font-size: 24px; }
      .hero-lead { font-size: 13px; }
      .button-row { gap: 7px; }
      .button { min-width: 132px; padding-inline: 11px; font-size: 12px; }
      .hero .button-row { gap: 7px; padding-inline: 14px; }
      .hero .button-row .button { min-width: 0; padding-inline: 7px; font-size: 11px; }
      .section { padding: 48px 0; }
      .section-inner, .concept-inner, .footer-grid, .footer-bottom { width: calc(100% - 28px); }
      h2, .concept h2 { font-size: 23px; }
      .concept-inner { padding-bottom: 32px; }
      .news-item { grid-template-columns: 67px 58px 1fr; gap: 4px; }
      .news-copy { font-size: 11px; }
      .footer-columns { gap: 8px; }
    }
