@charset "UTF-8";

:root {
  --paper: #f7f3eb;
  --paper-deep: #ece4d7;
  --surface: #fffdf9;
  --ink: #292724;
  --muted: #706b64;
  --accent: #2b87bd;
  --accent-dark: #20698f;
  --line: #d8d0c4;
  --shadow: 0 14px 36px rgba(48, 42, 34, 0.11);
  --page-width: 800px;
  --text-width: 720px;
  --side-space: 32px;
  --header-offset: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);

  font-family:
    "Noto Sans JP",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    sans-serif;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.025em;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-align: justify;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  color: #fff;
  background: var(--accent-dark);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, 0.96);
  border-bottom: 1px solid rgba(216, 208, 196, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - var(--side-space)), var(--page-width));
  min-height: 62px;
  margin: 0 auto;
}

.site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__brand:hover,
.site-header__brand:focus-visible {
  color: var(--accent-dark);
}

/* PCメニュー */
.site-nav {
  min-width: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 20px 0 18px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

/* ハンバーガーボタン */
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.menu-button__line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* メニュー展開時のボタン */
.menu-button.is-open .menu-button__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open .menu-button__line:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open .menu-button__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  :root {
    --header-offset: 74px;
  }

  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header__inner {
    min-height: 60px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 101;

    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);

    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;

    padding: 18px var(--side-space) 40px;

    background: rgba(247, 243, 235, 0.99);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    width: min(100%, var(--page-width));
    min-height: 100%;
    margin: 0 auto;
    padding: 0;

    list-style: none;
  }

  .site-nav li {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 56px;
    padding: 14px 4px;

    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.5;
    text-decoration: none;
    white-space: normal;
  }

  .site-nav a::before {
    color: var(--accent);
    font-size: 0.82rem;
    content: "—";
  }

  .site-nav a::after {
    position: static;
    width: auto;
    height: auto;

    background: transparent;
    color: var(--muted);
    font-size: 1rem;

    content: "›";
    transform: none;
  }
}
.anchor-section,
.report-section {
  scroll-margin-top: var(--header-offset);
}

.hero {
  width: min(calc(100% - var(--side-space)), var(--page-width));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 68px) 0 0;
}

.logo {
  text-align: center;
  margin: 0 auto 30px auto;
  display: block;
}

.logo img {
  text-align: center;
  margin: 0 auto;
}

.hero__heading {
  max-width: var(--text-width);
  margin: 0 auto clamp(26px, 4vw, 38px);
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero__eyebrow span {
  margin: 0 0.5em;
  color: var(--line);
}

.hero h1 {
  margin: 0;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.045em;
}

.hero__title-main,
.hero__title-sub {
  display: block;
}

.hero__title-main {
  font-size: clamp(1.95rem, 5vw, 3.4rem);
}

.hero__title-sub {
  margin-top: 0.24em;
  color: var(--accent-dark);
  font-size: clamp(1.35rem, 3.1vw, 2.05rem);
}

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-style: italic;
  letter-spacing: 0.12em;
}

.hero__date::before,
.hero__date::after {
  width: 38px;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  content: "";
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.article-shell {
  width: min(calc(100% - var(--side-space)), var(--page-width));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) 0 clamp(68px, 9vw, 96px);
}

.lead {
  position: relative;
  padding: clamp(26px, 4vw, 38px);
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid rgba(216, 208, 196, 0.88);
}

.lead::before {
  position: absolute;
  top: -1px;
  left: clamp(26px, 4vw, 38px);
  width: 72px;
  height: 3px;
  background: var(--accent);
  content: "";
}

.lead p {
  margin: 0;
}

.lead p + p {
  margin-top: 1.1em;
}

.lead__text {
  font-size: clamp(1.01rem, 1.8vw, 1.12rem);
  font-weight: 600;
  line-height: 1.92;
}

.event-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: clamp(24px, 4vw, 34px);
  align-items: center;
  margin: clamp(48px, 7vw, 68px) 0;
}

.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.event-summary dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.event-summary dl > div {
  display: grid;
  grid-template-columns: 5.6em 1fr;
  gap: 0.9rem;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.event-summary dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.event-summary dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.event-summary__visual {
  margin: 0;
}

.event-summary__visual img {
  width: 100%;
  background: #ddd;
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.report-section + .report-section {
  margin-top: clamp(56px, 8vw, 90px);
}

.report-section__heading {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: clamp(14px, 2.5vw, 22px);
  align-items: start;
  margin-bottom: clamp(22px, 3.5vw, 30px);
}

.report-section__number {
  display: block;
  padding-top: 0.34em;
  color: var(--accent);
  border-top: 2px solid var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  letter-spacing: 0.09em;
}

.report-section h2 {
  margin: 0;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.045em;
}

.report-section__body {
  max-width: var(--text-width);
  margin-left: auto;
}

.report-section__body p {
  margin: 0;
}

.report-section__body p + p {
  margin-top: 1.15em;
}

.wide-figure {
  width: 100%;
  margin: clamp(54px, 8vw, 76px) 0;
}

.wide-figure img {
  width: 100%;
  box-shadow: var(--shadow);
}

.report-section--featured {
  padding: clamp(30px, 4.5vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
}

.report-section--featured .report-section__heading {
  margin-bottom: 22px;
}

.feature-image {
  margin: 0 0 clamp(24px, 4vw, 34px);
}

.feature-image img {
  width: 100%;
}

.feature-image figcaption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.feature-image figcaption span {
  display: inline-block;
  padding: 4px 9px;
  color: #fff;
  background: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.report-section--message {
  padding: clamp(30px, 4.5vw, 42px);
  color: #fff;
  background: var(--accent-dark);
}

.report-section--message .report-section__number {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
}

.report-section--message .report-section__body {
  max-width: none;
}

.closing {
  position: relative;
  margin-top: clamp(58px, 8vw, 80px);
  padding: clamp(34px, 5vw, 48px) clamp(24px, 4vw, 40px);
  text-align: justify;
  background: rgba(255, 253, 249, 0.76);
}

.closing::before {
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 24px;
  background: var(--accent);
  content: "";
}

.closing p {
  max-width: var(--text-width);
  margin: 0 auto;
}

.closing p + p {
  margin-top: 1.05em;
}

.site-footer {
  color: #ece8e1;
  background: #252525;
}

.site-footer__inner {
  width: min(calc(100% - var(--side-space)), var(--page-width));
  margin: 0 auto;
  padding: 34px 0;
  text-align: center;
}

.site-footer a {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.82rem;
  text-underline-offset: 0.25em;
}

.site-footer p {
  margin: 0;
  color: #bdb7ae;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.035em;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mobile-only {
  display: none;
}

@media (max-width: 760px) {
  :root {
    --side-space: 28px;
    --header-offset: 106px;
  }

  body {
    font-size: 16px;
    line-height: 1.9;
  }

  .hero {
    padding-top: 38px;
  }

  .hero__heading {
    margin-bottom: 24px;
  }

  .hero__visual img {
    aspect-ratio: 4 / 3;
  }

  .article-shell {
    padding-top: 48px;
  }

  .lead {
    padding: 25px 21px;
  }

  .lead::before {
    left: 21px;
  }

  .event-summary {
    grid-template-columns: 1fr;
    margin: 48px 0;
  }

  .event-summary__visual {
    max-width: 520px;
  }

  .report-section__heading {
    grid-template-columns: 42px 1fr;
  }

  .report-section--featured,
  .report-section--message {
    padding: 27px 21px;
  }

  .mobile-only {
    display: inline;
  }
}

@media (max-width: 430px) {
  :root {
    --side-space: 24px;
  }

  .hero__title-main {
    font-size: 1.75rem;
  }

  .hero__title-sub {
    font-size: 1.22rem;
  }

  .event-summary dl > div {
    grid-template-columns: 5.2em 1fr;
    gap: 0.65rem;
  }

  .report-section__heading {
    display: block;
  }

  .report-section__number {
    width: 40px;
    margin-bottom: 12px;
  }

  .report-section h2 {
    font-size: 1.36rem;
  }

  .report-section__body {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skip-link,
  .site-nav a::after {
    transition: none;
  }
}

@media print {
  body {
    background: #fff;
  }

  .site-header {
    display: none;
  }

  .hero,
  .article-shell {
    width: 100%;
  }

  .hero__visual,
  .wide-figure img {
    box-shadow: none;
  }

  .report-section,
  .wide-figure {
    break-inside: avoid;
  }
}

/* ==================================================
   07 監督からの言葉
================================================== */

.report-section--message {
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.report-section--message .report-section__number {
  color: var(--accent);
  border-color: var(--accent);
}

.report-section--message .report-section__body {
  max-width: var(--text-width);
  margin-left: auto;
}

.director-interview__interviewer {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 0.78em;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.025em;
  text-align: right;
}

.director-interview {
  display: grid;
  gap: 64px;
}

.director-interview__section {
  min-width: 0;
}

.director-interview__title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-align: left;
}

.director-interview__title span {
  flex: 0 0 auto;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.director-interview__item,
.director-interview__item p {
  color: var(--ink);
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.director-interview__item p { margin: 0; }
.director-interview__item p + p { margin-top: 1.15em; }

.director-interview__item--question {
  position: relative;
  margin-top: 34px;
  padding-left: 2.2em;
  font-weight: 400;
}

.director-interview__item--question:first-child { margin-top: 0; }

.director-interview__item--question::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.15em;
  content: "――";
}

.director-interview__item--answer {
  margin-top: 14px;
  padding-left: 2.2em;
  font-weight: 600;
}

.director-interview__item--answer p { font-weight: inherit; }
.director-interview__item--answer + .director-interview__item--question { margin-top: 36px; }

@media (max-width: 760px) {
  .director-interview { gap: 48px; }
  .director-interview__interviewer {
    margin-bottom: 28px;
    font-size: 0.75em;
    text-align: left;
  }
  .director-interview__title { gap: 10px; margin-bottom: 24px; }
  .director-interview__item--question { margin-top: 28px; padding-left: 1.9em; }
  .director-interview__item--answer { margin-top: 10px; padding-left: 1.9em; }
  .director-interview__item--answer + .director-interview__item--question { margin-top: 30px; }
}
