    :root {
      --blue: #2558ad;
      --deep-blue: #0d2e7e;
      --text: #2f2f2f;
      --muted: #666;
      --line: #d9d9d9;
      --pale-line: #ebebeb;
      --pale: #f8f8f8;
      --white: #fff;
      --pale-blue: #7fa4cb;
    }
    * { box-sizing: border-box; }
    html { font-size: 62.5%; }
    body {
      margin: 0;
      color: var(--text);
      background: var(--white);
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
      line-height: 1;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    img { max-width: 100%; display: block; }
    .wrapper {
      width: 100%;
      overflow: hidden;
    }
    .js-ready .reveal {
      opacity: 0;
      visibility: hidden;
      transform: translateY(-30px);
      transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
      transition-delay: var(--reveal-delay, 0ms);
    }
    .js-ready .reveal.is-inview {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .js-ready .hero__bar,
    .js-ready .hero__vertical,
    .js-ready .hero__pagination,
    .js-ready .hero__title {
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
    }
    .js-ready .hero__bar { transform: translateX(-18px); }
    .js-ready .hero__vertical,
    .js-ready .hero__pagination { transform: translateY(-18px); }
    .js-ready .hero__title { transform: translateX(-4%) translateY(-30px); }
    .js-ready.hero-ready .hero__bar,
    .js-ready.hero-ready .hero__vertical,
    .js-ready.hero-ready .hero__pagination,
    .js-ready.hero-ready .hero__title {
      opacity: 1;
      visibility: visible;
      transform: translate(0, 0);
    }
    .js-ready.hero-ready .hero__vertical { transition-delay: 180ms; }
    .js-ready.hero-ready .hero__pagination { transition-delay: 320ms; }
    .js-ready.hero-ready .hero__title {
      transform: translateX(-4%) translateY(0);
      transition-delay: 420ms;
    }
    .js-ready.hero-ready .hero__main-photo,
    .js-ready.hero-ready .hero__photo2,
    .js-ready.hero-ready .hero__photo3 {
      animation: heroPhotoSettle 5.5s ease-out both;
      transform-origin: center;
      will-change: transform;
    }
    .js-ready.hero-ready .hero__photo2 { animation-delay: 120ms; }
    .js-ready.hero-ready .hero__photo3 { animation-delay: 240ms; }
    @keyframes heroPhotoSettle {
      0% { transform: scale(1.055); }
      100% { transform: scale(1); }
    }
    .header {
      width: 100%;
      background: var(--white);
      position: relative;
      z-index: 2;
    }
    .header__in {
      width: 100%;
      max-width: 1900px;
      height: 80px;
      margin: 27px auto;
      padding: 0 30px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }
    .logo {
      width: 260px;
      margin-top: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text);
    }
    .logo-mark {
      width: 54px;
      height: 34px;
      border: 1px solid #bbb;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: "Quattrocento", serif;
      font-size: 1.1rem;
      color: #777;
    }
    .logo-main {
      font-family: "Noto Serif JP", serif;
      font-size: 2.6rem;
      letter-spacing: 0.08em;
      line-height: 1;
      white-space: nowrap;
    }
    .logo-sub {
      margin-top: 6px;
      font-family: "Quattrocento", serif;
      font-size: 0.9rem;
      letter-spacing: 0.22em;
      color: #777;
    }
    .global {
      display: flex;
      align-items: flex-start;
      gap: 54px;
      margin-top: 31px;
      font-weight: 700;
      font-size: 1.4rem;
    }
    .utility {
      display: grid;
      grid-template-columns: repeat(4, 80px);
      height: 80px;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .utility a {
      display: grid;
      place-items: center;
      align-content: center;
      gap: 8px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 1.1rem;
      background: var(--white);
    }
    .utility span:first-child {
      font-size: 2.4rem;
      line-height: 1;
      font-family: "Quattrocento", serif;
    }
    .hero {
      width: 100%;
      max-width: 1900px;
      height: 750px;
      margin: 0 auto;
      background: var(--white);
      position: relative;
    }
    .hero__bar {
      width: 80px;
      height: 750px;
      background: var(--blue);
      position: absolute;
      left: 0;
      top: 0;
      z-index: 1;
    }
    .hero__vertical {
      position: absolute;
      left: 32px;
      top: 100px;
      color: var(--white);
      writing-mode: vertical-rl;
      font-family: "Noto Serif JP", serif;
      font-size: 1.4rem;
      line-height: 1;
      letter-spacing: 0.17em;
      z-index: 2;
    }
    .hero__pagination {
      position: absolute;
      left: 37.5px;
      bottom: 168px;
      z-index: 2;
      width: 1px;
    }
    .hero__pagination span {
      display: block;
      width: 1px;
      height: 20px;
      margin: 0;
      background: rgba(255,255,255,.45);
      transition: background 500ms ease;
    }
    .hero__pagination span:first-child { background: var(--white); }
    .hero__photos {
      height: 100%;
      margin-left: 100px;
      display: grid;
      grid-template-columns: minmax(0, 1.56fr) minmax(0, 1fr);
      gap: 20px;
      padding-right: 0;
      overflow: hidden;
    }
    .hero__main-photo {
      background: url("images/gakushuin/kv01_pc.jpg") center center / cover no-repeat;
    }
    .hero__side {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 20px;
      position: relative;
    }
    .hero__photo2 { background: url("images/gakushuin/kv02_pc.jpg") center center / cover no-repeat; }
    .hero__photo3 { background: url("images/gakushuin/kv03_pc.jpg") center center / cover no-repeat; }
    .hero__title {
      position: absolute;
      left: 50%;
      top: 40%;
      transform: translateX(-4%);
      width: 348px;
      height: 145px;
      border-radius: 5px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif JP", serif;
      font-size: 2.4rem;
      line-height: 2;
      letter-spacing: 0.1em;
      z-index: 4;
      text-align: left;
    }
    .info {
      width: 877px;
      margin: 80px auto;
    }
    .info__title {
      margin: 0 0 60px;
      position: relative;
      font-family: "Noto Serif JP", serif;
      font-size: 2.6rem;
      font-weight: 400;
      letter-spacing: 0.1em;
    }
    .info__title::after {
      content: "";
      width: 450px;
      display: block;
      border-top: 1px solid var(--line);
      position: absolute;
      right: 100px;
      top: 50%;
      transform-origin: left center;
      transition: transform 1s ease 220ms;
    }
    .js-ready .info__title::after { transform: scaleX(0); }
    .js-ready .info__title.is-inview::after { transform: scaleX(1); }
    .news { position: relative; }
    .news__all {
      position: absolute;
      right: 0;
      top: -86px;
      height: 28px;
      line-height: 28px;
      font-size: 1.4rem;
      padding-right: 44px;
    }
    .news__all::after,
    .circle-arrow::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      width: 28px;
      height: 28px;
      border: 1px solid #b7d0ec;
      border-radius: 50%;
    }
    .news__all::before,
    .circle-arrow::before {
      content: "";
      position: absolute;
      right: 10px;
      top: 13px;
      width: 8px;
      border-top: 1px solid var(--blue);
      z-index: 1;
    }
    .news-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .news-list__item:not(:last-child) { margin-bottom: 40px; }
    .news-btn {
      display: flex;
      align-items: flex-start;
    }
    .news-btn:hover { opacity: .5; }
    .news-btn__date {
      width: 130px;
      padding-top: 34px;
      font-family: "Quattrocento", serif;
      font-size: 1.7rem;
      letter-spacing: 0.1em;
    }
    .news-btn__text {
      max-width: 740px;
      font-size: 1.6rem;
      line-height: 2;
      font-weight: 400;
    }
    .news-btn__cat {
      width: 64px;
      height: 20px;
      line-height: 20px;
      margin-bottom: 5px;
      border-radius: 10px;
      color: var(--white);
      background: var(--blue);
      font-size: .9rem;
      text-align: center;
      letter-spacing: .1em;
      font-family: "Quattrocento", serif;
      font-weight: 700;
    }
    .about {
      margin: 100px 0 160px;
    }
    .about__header {
      height: 270px;
      padding-top: 120px;
      padding-left: 30.555%;
      margin-bottom: 160px;
      background: var(--blue);
      position: relative;
    }
    .about__header::before {
      content: "";
      display: block;
      width: 100%;
      height: 300px;
      position: absolute;
      top: 146px;
      left: 30.555%;
      transform: translateX(-20px);
      z-index: 1;
      border-radius: 5px;
      filter: blur(5px);
      background: var(--deep-blue);
      transition: transform 1.2s ease, opacity 1.2s ease;
    }
    .js-ready .about__header::before {
      opacity: 0;
      transform: translateX(-40px);
    }
    .js-ready .about__header.is-inview::before {
      opacity: 1;
      transform: translateX(-20px);
    }
    .about__header::after {
      content: "";
      display: block;
      width: 100%;
      height: 100px;
      position: absolute;
      top: 390px;
      left: 0;
      z-index: 1;
      background: var(--white);
    }
    .about__header-in {
      position: relative;
      z-index: 3;
      padding: 40px;
      border-radius: 5px 0 0 0;
      background: var(--white);
    }
    .about__lead {
      margin: 0 0 40px;
      font-family: "Noto Serif JP", serif;
      font-size: 3.2rem;
      font-weight: 400;
      line-height: 1.75;
      letter-spacing: 0.15em;
    }
    .about__text {
      margin: 0;
      font-family: "Noto Serif JP", serif;
      font-size: 1.8rem;
      line-height: 2.33;
      letter-spacing: 0.15em;
    }
    .about__in {
      width: min(1120px, calc(100% - 64px));
      margin: 0 auto;
    }
    .about__title {
      margin: 0;
      font-family: "Noto Serif JP", serif;
      font-size: 2.8rem;
      font-weight: 400;
    }
    .about-list {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 72px 24px;
      width: 100%;
      margin: 40px auto 112px;
      padding: 0;
      list-style: none;
    }
    .about-list__item { margin: 0; }
    .about-list__item.full { grid-column: 1 / -1; }
    .about-list__item.half { grid-column: span 3; }
    .about-list__item.third { grid-column: span 2; }
    .about-list__item.full .card-link,
    .about-list__item.half .card-link,
    .about-list__item.third .card-link {
      width: 100%;
      height: 340px;
    }
    .card-link {
      display: block;
      position: relative;
      background-size: cover;
      background-position: center;
      overflow: visible;
      transition: opacity 0.3s ease, filter 0.6s ease, background-size 1.2s ease;
    }
    .card-link:hover {
      opacity: 1;
      filter: brightness(1.04);
      background-size: 106%;
    }
    .card-label {
      position: absolute;
      right: 24px;
      bottom: -32px;
      width: 280px;
      min-height: 80px;
      padding: 15px 45px;
      border-top: 5px solid var(--blue);
      background: var(--white);
      font-size: 2rem;
      line-height: 1.6;
      letter-spacing: 0.2em;
      font-weight: 500;
    }
    .card-label::after {
      content: "";
      position: absolute;
      right: 18px;
      bottom: 0;
      width: 25px;
      border-top: 1px solid var(--pale-blue);
    }
    .card-label .circle {
      position: absolute;
      right: 14px;
      top: 18px;
      width: 25px;
      height: 25px;
      border: 1px solid #b7d0ec;
      border-radius: 50%;
      transition: transform 500ms ease, border-color 500ms ease;
    }
    .card-link:hover .circle,
    .final-links a:hover::after,
    .news__all:hover::after,
    .circle-arrow:hover::after {
      border-color: var(--blue);
      transform: scale(1.16);
    }
    .admission {
      margin: 150px auto 110px;
      text-align: left;
      position: relative;
      background: linear-gradient(90deg, var(--blue) 0 34%, var(--white) 34% 100%);
    }
    .admission::before { display: none; }
    .admission__in {
      position: relative;
      z-index: 1;
      width: min(1120px, calc(100% - 64px));
      padding: 78px 0 86px;
      margin: 0 auto;
      background: transparent;
    }
    .admission-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
      width: 100%;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .admission-list__item {
      width: auto;
      height: auto;
    }
    .admission-list__item:not(:last-child) { margin-right: 0; }
    .admission .card-link {
      height: 360px;
      background-position: center;
      background-size: cover;
      box-shadow: 0 18px 34px rgba(0,0,0,.08);
    }
    .admission .card-label {
      left: 36px;
      right: 36px;
      bottom: -34px;
      top: auto;
      width: auto;
      min-height: 96px;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .card-label__sub {
      display: block;
      margin-bottom: 4px;
      font-size: 1.2rem;
      letter-spacing: .15em;
      font-weight: 400;
    }
    .movie {
      width: 877px;
      margin: 120px auto 0;
      padding: 40px;
      border: 1px solid var(--line);
      border-radius: 5px;
      display: flex;
    }
    .movie__thumb {
      width: 354px;
      height: 198px;
      margin-right: 40px;
      background: url("images/gakushuin/kv04_pc.jpg") center / cover no-repeat;
      position: relative;
    }
    .movie__thumb::after {
      content: "▶";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(0,0,0,.36);
      color: var(--white);
      font-size: 1.8rem;
      text-indent: 3px;
    }
    .movie__text {
      flex: 1;
      position: relative;
    }
    .movie__title {
      margin: 0 0 40px;
      font-family: "Noto Serif JP", serif;
      font-size: 2.6rem;
      font-weight: 400;
    }
    .movie__lead {
      margin: 0;
      line-height: 2;
    }
    .movie__link {
      position: absolute;
      right: 0;
      bottom: 0;
      height: 28px;
      line-height: 28px;
      padding-right: 44px;
      font-size: 1.4rem;
    }
    .final-cta {
      width: 877px;
      margin: 120px auto 80px;
      padding: 54px 60px;
      border: 1px solid var(--line);
      border-top: 5px solid var(--blue);
      border-radius: 5px;
      background: var(--white);
      text-align: center;
    }
    .final-cta h2 {
      margin: 0 0 24px;
      font-family: "Noto Serif JP", serif;
      font-size: 2.8rem;
      font-weight: 400;
      line-height: 1.75;
    }
    .final-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 34px;
    }
    .final-links a {
      position: relative;
      width: 230px;
      padding: 24px 48px 24px 24px;
      border: 1px solid var(--line);
      background: var(--pale);
      text-align: left;
      line-height: 1.6;
      font-weight: 700;
    }
    .final-links a::after {
      content: "";
      position: absolute;
      right: 18px;
      bottom: 18px;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      border: 1px solid #b7d0ec;
    }
    .footer {
      padding: 60px 30px;
      background: var(--pale);
      border-top: 1px solid var(--line);
      color: var(--muted);
      text-align: center;
      line-height: 2;
    }
    @media (max-width: 767px) {
      body {
        font-size: 1.4rem;
        min-width: 0;
        overflow-x: hidden;
      }
      .header__in {
        height: 70px;
        margin: 0;
        padding: 0;
        align-items: center;
      }
      .logo {
        width: auto;
        margin: 20px 24px;
      }
      .logo-mark {
        width: 38px;
        height: 26px;
        font-size: .8rem;
      }
      .logo-main {
        font-size: 1.8rem;
      }
      .logo-sub { font-size: .7rem; }
      .global { display: none; }
      .utility { display: none; }
      .hero {
        height: 412px;
        max-width: none;
      }
      .hero__bar {
        width: 40px;
        height: 412px;
      }
      .hero__vertical {
        left: 15px;
        top: 58px;
        font-size: 1rem;
      }
      .hero__pagination {
        left: 17.5px;
        bottom: 58px;
      }
      .hero__pagination span { height: 15px; }
      .hero__photos {
        margin-left: 55px;
        display: block;
        height: 100%;
      }
      .hero__main-photo {
        height: 100%;
        background: url("images/gakushuin/kv01_sp.jpg") center center / cover no-repeat;
      }
      .hero__side { display: none; }
      .hero__title {
        width: calc(100vw - 166px);
        max-width: 240px;
        height: 100px;
        left: 148px;
        right: 0;
        top: 51.5776%;
        transform: none;
        padding: 25px 30px;
        border-radius: 5px 0 0 5px;
        font-size: 1.6rem;
        line-height: 1.75;
        overflow: hidden;
      }
      .js-ready .hero__title,
      .js-ready.hero-ready .hero__title {
        transform: translateY(0);
      }
      .info {
        width: 100%;
        padding: 0 27px;
        margin: 40px auto;
      }
      .info__title {
        margin-bottom: 40px;
        font-size: 2.1rem;
      }
      .info__title::after { display: none; }
      .news__all {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 20px;
      }
      .news-list__item {
        padding: 15px 0;
        border-top: 1px solid var(--line);
      }
      .news-list__item:last-child { border-bottom: 1px solid var(--line); }
      .news-list__item:not(:last-child) { margin-bottom: 0; }
      .news-btn {
        display: block;
      }
      .news-btn__date {
        width: 100%;
        padding-top: 3px;
        font-size: 1.6rem;
      }
      .news-btn__text {
        padding-top: 10px;
        font-size: 1.4rem;
        overflow-wrap: anywhere;
        word-break: break-all;
      }
      .about {
        margin: 0 0 40px;
      }
      .about__header {
        height: 203px;
        padding-top: 55px;
        padding-left: 10%;
        margin-bottom: 102px;
      }
      .about__header::before {
        width: 100px;
        height: 200px;
        top: 70px;
        left: 10%;
        transform: translateX(-10px);
        filter: none;
      }
      .js-ready .about__header::before,
      .js-ready .about__header.is-inview::before {
        transform: translateX(-10px);
      }
      .about__header::after { top: 203px; }
      .about__header-in {
        width: calc(100vw - 66px);
      }
      .about__lead {
        font-size: 2.3rem;
        line-height: 1.6;
      }
      .about__text {
        font-size: 1.4rem;
        font-weight: 300;
        line-height: 2.14;
      }
      .about__in {
        width: calc(100% - 40px);
        margin: 0 auto;
      }
      .about__title {
        margin-top: 80px;
        font-size: 2.2rem;
      }
      .about-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        width: 100%;
        margin: 24px auto 0;
      }
      .about-list__item {
        width: 100%;
        max-width: none;
        margin: 0;
      }
      .about-list__item.full .card-link,
      .about-list__item.half .card-link,
      .about-list__item.third .card-link {
        width: 100%;
        height: 255px;
      }
      .about-list__item.full:first-child .card-link {
        height: 255px;
        padding-top: 0;
      }
      .card-label {
        right: 18px;
        bottom: -26px;
        top: auto;
        width: min(280px, calc(100% - 36px));
        min-height: 70px;
        padding: 15px 20px 10px;
        border-top-width: 3px;
        font-size: 1.8rem;
        line-height: 1.55;
      }
      .admission {
        margin: 74px auto 70px;
        text-align: left;
        background: linear-gradient(90deg, var(--blue) 0 44px, var(--white) 44px 100%);
      }
      .admission__in {
        width: calc(100% - 40px);
        padding: 34px 0 30px;
      }
      .admission-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 58px;
        width: 100%;
      }
      .admission-list__item {
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
      }
      .admission .card-link {
        height: 250px;
      }
      .admission .card-label {
        left: 24px;
        right: 18px;
        bottom: -30px;
        width: auto;
        min-height: 78px;
      }
      .movie {
        display: block;
        width: 100%;
        max-width: 320px;
        padding: 40px 30px;
        margin: 0 auto;
      }
      .movie__thumb {
        width: 100%;
        height: 150px;
        margin: 0;
      }
      .movie__title {
        margin: 30px 0;
        font-size: 2.1rem;
      }
      .movie__link {
        position: relative;
        display: inline-block;
        margin-top: 24px;
      }
      .final-cta {
        width: auto;
        margin: 70px 27px 50px;
        padding: 36px 26px;
      }
      .final-cta h2 {
        font-size: 2.2rem;
      }
      .final-links {
        display: block;
      }
      .final-links a {
        display: block;
        width: 100%;
        margin-top: 14px;
      }
    }

/* Keio Yochisha-inspired home layout */
.keio-home {
  --k-navy: #142e5f;
  --k-blue: #244b86;
  --k-gold: #b69a55;
  --k-ink: #202632;
  --k-muted: #667085;
  --k-line: #dfe3ea;
  --k-paper: #f7f8f6;
  --k-mist: #eef3f4;
  min-width: 0;
  color: var(--k-ink);
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  line-height: 1.8;
}
.keio-home a {
  color: inherit;
}
.keio-home.js-ready .reveal,
.keio-home.js-ready .reveal.is-inview {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.k-wrapper {
  overflow: hidden;
  background: #fff;
}
.k-header {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 30px 0 0;
}
.k-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.k-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.k-brand__crest {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--k-navy);
  border-radius: 50%;
  color: var(--k-navy);
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  letter-spacing: .1em;
}
.k-brand__name {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: .08em;
}
.k-brand__en {
  display: block;
  margin-top: 8px;
  color: var(--k-muted);
  font-family: "Quattrocento", serif;
  font-size: 1.2rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.k-header__links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--k-muted);
  font-size: 1.3rem;
}
.k-header__links a {
  position: relative;
  padding-left: 14px;
}
.k-header__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--k-gold);
}
.k-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--k-line);
  border-bottom: 1px solid var(--k-line);
}
.k-nav a {
  min-height: 74px;
  padding: 14px 18px;
  border-right: 1px solid var(--k-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--k-ink);
  font-size: 1.4rem;
  line-height: 1.35;
}
.k-nav a:first-child {
  border-left: 1px solid var(--k-line);
}
.k-nav span {
  margin-bottom: 4px;
  color: var(--k-blue);
  font-family: "Quattrocento", serif;
  font-size: 1.7rem;
}
.k-nav a:hover {
  background: var(--k-paper);
  color: var(--k-navy);
}
.k-hero {
  position: relative;
  width: min(1360px, calc(100% - 56px));
  min-height: 650px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}
.k-hero__image,
.k-hero__media {
  position: absolute;
  inset: 0 0 0 132px;
  background: linear-gradient(90deg, rgba(20,46,95,.08), rgba(20,46,95,0) 34%), url("images/myojo-top_img.jpg") center 8% / cover no-repeat;
}
.k-hero__media {
  overflow: hidden;
  background: #101b31;
  z-index: 1;
  isolation: isolate;
}
.k-hero__video,
.k-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.k-hero__video {
  z-index: 1;
}
.k-hero__poster {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(20,46,95,.52), rgba(20,46,95,.08) 38%, rgba(20,46,95,.28)),
    url("images/myojo-top_img.jpg") center 8% / cover no-repeat;
  transform: scale(1.012);
}
.k-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 72% 35%, rgba(255,255,255,.24), rgba(255,255,255,0) 32%),
    rgba(10,22,42,.12);
}
.k-hero__play {
  position: absolute;
  right: clamp(34px, 6vw, 92px);
  bottom: clamp(34px, 7vw, 96px);
  z-index: 20;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: rgba(20,46,95,.72);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.k-hero__play span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
}
.k-hero__movie-label {
  position: absolute;
  right: clamp(36px, 6vw, 94px);
  bottom: clamp(138px, 15vw, 206px);
  z-index: 20;
  color: #fff;
  font-family: "Quattrocento", serif;
  font-size: 1.8rem;
  letter-spacing: .14em;
  text-shadow: 0 2px 14px rgba(0,0,0,.32);
}
.k-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 132px;
  height: 100%;
  background: var(--k-navy);
}
.k-hero::after {
  content: "Myojo Elementary School";
  position: absolute;
  left: 48px;
  top: 64px;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,.74);
  font-family: "Quattrocento", serif;
  font-size: 1.5rem;
  letter-spacing: .16em;
}
.k-hero__copy {
  position: relative;
  z-index: 6;
  width: min(550px, calc(100% - 72px));
  margin: 0 0 76px 72px;
  padding: 46px 54px 50px;
  background: rgba(255,255,255,.96);
  border-top: 5px solid var(--k-gold);
  box-shadow: 0 22px 60px rgba(20,46,95,.16);
}
.k-hero__sub {
  margin: 0 0 18px;
  color: var(--k-blue);
  font-family: "Quattrocento", serif;
  font-size: 1.7rem;
  letter-spacing: .08em;
}
.k-hero__inline-movie {
  display: none;
}
.k-hero h1 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
}
.k-hero__copy p:last-child {
  margin: 22px 0 0;
  color: #3f4756;
  font-size: 1.6rem;
  line-height: 2.1;
  overflow-wrap: anywhere;
}
.k-section {
  width: min(1080px, calc(100% - 56px));
  margin: 110px auto 0;
}
.k-section__head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 38px;
}
.k-section__en {
  margin: 0;
  color: var(--k-blue);
  font-family: "Quattrocento", serif;
  font-size: 4.8rem;
  line-height: 1;
}
.k-section h2,
.k-admissions h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: .08em;
}
.k-section__head::after {
  content: "";
  grid-column: 1 / -1;
  width: 100%;
  border-top: 1px solid var(--k-line);
}
.k-news {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 42px;
}
.k-news .k-section__head {
  display: block;
  margin: 0;
}
.k-news .k-section__head::after {
  display: none;
}
.k-news__body {
  border-top: 1px solid var(--k-line);
}
.k-news__item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--k-line);
}
.k-news__meta {
  color: var(--k-muted);
  font-family: "Quattrocento", "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
}
.k-news__title {
  font-size: 1.5rem;
  line-height: 1.7;
}
.k-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--k-blue);
  font-family: "Quattrocento", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
}
.k-more::after,
.k-about__grid a::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--k-gold);
}
.k-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: 58px;
  align-items: center;
}
.k-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.k-photo-pair img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.k-photo-pair img:nth-child(2) {
  margin-top: 70px;
}
.k-text-block {
  padding: 48px;
  background: var(--k-paper);
  border-left: 5px solid var(--k-navy);
}
.k-text-block p,
.k-section__lead,
.k-admissions__panel p {
  margin: 0;
  color: #3f4756;
  font-size: 1.6rem;
  line-height: 2.15;
}
.k-link-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--k-line);
}
.k-link-list li {
  border-bottom: 1px solid var(--k-line);
}
.k-link-list a {
  position: relative;
  display: block;
  padding: 18px 34px 18px 0;
  font-size: 1.5rem;
  line-height: 1.6;
}
.k-link-list a::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--k-gold);
  font-family: "Quattrocento", serif;
  font-size: 2.2rem;
}
.k-section__lead {
  width: min(760px, 100%);
  margin-bottom: 46px;
}
.k-about__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 42px;
}
.k-about__grid article {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: 0 28px;
  align-items: start;
}
.k-about__grid img {
  grid-row: 1 / 4;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.k-about__grid h3 {
  margin: 4px 0 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
}
.k-about__grid p {
  margin: 0;
  color: #4d5563;
  font-size: 1.45rem;
  line-height: 1.9;
}
.k-about__grid a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--k-blue);
  font-family: "Quattrocento", serif;
  font-size: 1.4rem;
}
.k-admissions {
  position: relative;
  width: min(1180px, calc(100% - 56px));
  min-height: 500px;
  margin: 120px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
}
.k-admissions__image {
  height: 500px;
  background: url("images/instagram/instagram-field-assembly.jpg") center / cover no-repeat;
}
.k-admissions__panel {
  position: relative;
  margin-left: -90px;
  padding: 56px 58px;
  background: var(--k-navy);
  color: #fff;
}
.k-admissions__panel .k-section__en,
.k-admissions__panel p {
  color: rgba(255,255,255,.9);
}
.k-admissions__panel h2 {
  margin: 10px 0 24px;
  color: #fff;
}
.k-admissions__links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}
.k-admissions__links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  font-weight: 500;
}
.k-admissions__links a::after {
  content: "";
  width: 26px;
  border-top: 1px solid var(--k-gold);
}
.k-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 56px));
  margin: 90px auto 0;
  padding: 44px 0 60px;
  border-top: 1px solid var(--k-line);
  color: var(--k-muted);
  font-size: 1.3rem;
  line-height: 2;
}
.k-footer strong {
  color: var(--k-ink);
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 500;
}
.k-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
@media (max-width: 980px) {
  .k-header,
  .k-hero,
  .k-section,
  .k-admissions,
  .k-footer {
    width: min(100% - 32px, 720px);
  }
  .k-header__top,
  .k-footer {
    display: block;
  }
  .k-header__links {
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .k-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .k-hero {
    min-height: 600px;
  }
  .k-hero::before {
    width: 64px;
  }
  .k-hero::after {
    left: 22px;
    top: 42px;
    font-size: 1.2rem;
  }
  .k-hero__image {
    inset: 0 0 0 64px;
  }
  .k-hero__media {
    inset: 0 0 0 64px;
  }
  .k-hero__copy {
    width: min(470px, calc(100% - 48px));
    margin: 0 0 36px 42px;
    padding: 34px 34px 38px;
  }
  .k-hero h1 {
    font-size: 3.2rem;
  }
  .k-news,
  .k-two-column,
  .k-admissions {
    grid-template-columns: 1fr;
  }
  .k-news .k-section__head {
    margin-bottom: 24px;
  }
  .k-section__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .k-section__en {
    font-size: 4rem;
  }
  .k-photo-pair img {
    height: 320px;
  }
  .k-text-block {
    padding: 34px;
  }
  .k-about__grid {
    grid-template-columns: 1fr;
  }
  .k-admissions__image {
    height: 360px;
  }
  .k-admissions__panel {
    margin: -80px 24px 0;
  }
  .k-footer nav {
    margin-top: 24px;
  }
}
@media (max-width: 640px) {
  .k-header {
    padding-top: 20px;
  }
  .k-brand__crest {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .k-brand__name {
    font-size: 2.2rem;
  }
  .k-brand__en {
    font-size: 1rem;
  }
  .k-header__links {
    display: none;
  }
  .k-nav {
    margin-top: 22px;
  }
  .k-nav a {
    min-height: 62px;
    padding: 10px 12px;
    font-size: 1.2rem;
  }
  .k-nav span {
    font-size: 1.45rem;
  }
  .k-hero {
    width: 100%;
    min-height: 548px;
    margin-top: 22px;
  }
  .k-hero::before {
    width: 42px;
  }
  .k-hero::after {
    left: 13px;
    top: 30px;
    font-size: 1rem;
  }
  .k-hero__image {
    inset: 0 0 0 42px;
    background-position: 48% top;
  }
  .k-hero__media {
    inset: 0 0 0 42px;
  }
  .k-hero__poster {
    background-position: 48% top;
  }
  .k-hero__play {
    right: 18px;
    top: 112px;
    bottom: auto;
    width: 62px;
    height: 62px;
    border-color: rgba(255,255,255,.9);
    background: rgba(20,46,95,.82);
  }
  .k-hero__play span {
    margin-left: 5px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }
  .k-hero__movie-label {
    right: 16px;
    top: 86px;
    bottom: auto;
    font-size: 1.2rem;
  }
  .k-hero__copy {
    width: calc(100% - 88px);
    margin: 0 16px 22px 54px;
    padding: 26px 22px 28px;
  }
  .k-hero__sub {
    font-size: 1.3rem;
  }
  .k-hero__inline-movie {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 18px;
    color: var(--k-blue);
    font-family: "Quattrocento", serif;
    font-size: 1.3rem;
    letter-spacing: .1em;
  }
  .k-hero__inline-movie span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--k-navy);
  }
  .k-hero__inline-movie span::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #fff;
  }
  .k-hero h1 {
    font-size: 2.35rem;
    line-height: 1.58;
  }
  .k-hero__copy p:last-child {
    font-size: 1.35rem;
    line-height: 1.9;
    max-width: 250px;
  }
  .k-section {
    margin-top: 72px;
  }
  .k-section__en {
    font-size: 3.4rem;
  }
  .k-section h2,
  .k-admissions h2 {
    font-size: 2.25rem;
  }
  .k-news__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
  .k-photo-pair {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .k-photo-pair img,
  .k-photo-pair img:nth-child(2) {
    height: 245px;
    margin: 0;
  }
  .k-text-block {
    padding: 26px 22px;
  }
  .k-about__grid article {
    grid-template-columns: 1fr;
  }
  .k-about__grid img {
    grid-row: auto;
    height: 240px;
    margin-bottom: 20px;
  }
  .k-admissions {
    width: 100%;
    margin-top: 76px;
  }
  .k-admissions__image {
    height: 330px;
  }
  .k-admissions__panel {
    margin: -58px 16px 0;
    padding: 34px 24px;
  }
  .k-footer {
    width: calc(100% - 32px);
    margin-top: 62px;
    padding-bottom: 42px;
  }
}

/* Gakushuin-like lower layout */
.lower-gak {
  position: relative;
  background: var(--white);
  overflow-x: hidden;
}
.lower-gak__breadcrumb {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 112px;
  margin: 0;
  padding: 0 72px;
  background: var(--pale);
  font-size: 1.2rem;
}
.lower-gak__frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 82px;
  width: min(1160px, calc(100% - 80px));
  margin: 0 auto;
  padding: 110px 0 0;
  background: var(--white);
}
.lower-gak__frame::before {
  content: "";
  position: absolute;
  right: calc(100% - 162px);
  top: -180px;
  width: 100vw;
  height: calc(100% + 180px);
  background: var(--blue);
  z-index: -1;
}
.lower-gak__frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 350px;
  width: 360px;
  border-top: 4px solid var(--blue);
}
.lower-gak__side {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 0 0 80px 48px;
  background: var(--white);
}
.lower-gak__side-title {
  margin: 0 0 48px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .12em;
}
.lower-gak__side-nav {
  display: grid;
  border-top: 1px solid var(--line);
}
.lower-gak__side-nav a {
  position: relative;
  padding: 22px 28px 22px 0;
  border-bottom: 1px solid var(--line);
  color: #555;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: .12em;
}
.lower-gak__side-nav a::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-family: "Quattrocento", serif;
  font-size: 1.8rem;
}
.lower-gak__side-nav a[aria-current="page"] {
  color: var(--blue);
  font-weight: 700;
}
.lower-gak__side-nav a[aria-current="page"]::after {
  content: "";
  width: 14px;
  border-top: 1px solid var(--blue);
}
.lower-gak__body {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  min-width: 0;
  padding: 0 0 20px;
  background: var(--white);
}
.lower-section {
  padding: 0 0 94px;
  background: var(--white);
}
.lower-section + .lower-section {
  padding-top: 78px;
  border-top: 1px solid var(--line);
}
.lower-section--tint {
  margin-left: -42px;
  margin-right: -42px;
  padding-left: 42px;
  padding-right: 42px;
  background: var(--pale);
}
.lower-page-title {
  margin: 0 0 62px;
  font-family: "Noto Serif JP", serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .14em;
}
.lower-page-heading {
  margin: 0 0 56px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .18em;
}
.lower-lead {
  margin: 0 0 48px;
  font-size: 1.7rem;
  line-height: 2.1;
  letter-spacing: .08em;
}
.goal-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 66px;
}
.goal-photo-grid article {
  min-width: 0;
}
.goal-photo-grid h3 {
  margin: 0 0 22px;
  font-size: 1.9rem;
  line-height: 1.65;
  letter-spacing: .12em;
}
.goal-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.lower-gak .policy-table {
  gap: 0;
  margin-top: 0;
}
.lower-gak .policy-row {
  grid-template-columns: 180px 1fr;
  gap: 28px;
  min-width: 0;
}
.lower-gak .policy-row__body {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.lower-gak .content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lower-gak .final-cta {
  margin-top: 60px;
}

/* Lower pages */
.page-hero {
  position: relative;
  min-height: 430px;
  margin: 0 auto;
  background: var(--pale);
  overflow: hidden;
}
.page-hero__bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: var(--blue);
  z-index: 1;
}
.page-hero__image {
  position: absolute;
  left: 100px;
  right: 0;
  top: 0;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: center;
}
.page-hero__image.no-embedded-title {
  background-position: 72% 8%;
  background-size: 138%;
}
.page-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
}
.page-hero__title {
  position: absolute;
  left: 17%;
  bottom: 64px;
  margin: 0;
  padding: 32px 46px;
  background: var(--white);
  color: var(--blue);
  font-family: "Noto Serif JP", serif;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  z-index: 2;
  transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
}
.js-ready .page-hero__image {
  animation: lowerHeroSettle 5.5s ease-out both;
}
.js-ready .page-hero__title {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
}
.js-ready.hero-ready .page-hero__title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@keyframes lowerHeroSettle {
  0% { transform: scale(1.045); }
  100% { transform: scale(1); }
}
.page-hero__en {
  display: block;
  margin-bottom: 12px;
  color: var(--pale-blue);
  font-family: "Quattrocento", serif;
  font-size: 1.4rem;
  letter-spacing: .22em;
}
.breadcrumb {
  width: min(1100px, calc(100% - 48px));
  margin: 34px auto 0;
  color: #777;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: .08em;
}
.breadcrumb a { color: var(--blue); }
.page-section {
  padding: 70px 24px 90px;
  background: var(--white);
}
.page-section.tint { background: var(--pale); }
.page-section__in {
  width: min(980px, 100%);
  margin: 0 auto;
}
.page-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: "Quattrocento", serif;
  font-size: 1.3rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.page-title {
  margin: 0 0 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .12em;
}
.page-lead,
.page-text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2.15;
  letter-spacing: .08em;
}
.page-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}
.content-card {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--pale-line);
  background: var(--white);
}
.content-card h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: "Noto Serif JP", serif;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.55;
}
.content-card p,
.content-card li {
  margin: 0;
  color: #555;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: .06em;
}
.content-card ul,
.flow-list,
.event-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow-list {
  display: grid;
  gap: 18px;
  margin-top: 38px;
  counter-reset: flow;
}
.flow-list li {
  position: relative;
  padding: 24px 28px 24px 86px;
  border-left: 4px solid var(--blue);
  background: var(--white);
  line-height: 1.9;
  letter-spacing: .07em;
}
.flow-list li::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 26px;
  top: 25px;
  color: var(--pale-blue);
  font-family: "Quattrocento", serif;
  font-size: 2.4rem;
}
.event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.event-list li {
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 1.5rem;
  line-height: 1.8;
}
.event-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-family: "Quattrocento", serif;
  font-size: 1.5rem;
  letter-spacing: .18em;
}
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}
.page-actions a {
  min-width: 210px;
  padding: 18px 24px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}
.page-actions a.primary {
  color: var(--white);
  background: var(--blue);
}
.local-nav {
  width: min(1100px, calc(100% - 48px));
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.local-nav a {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #555;
  background: var(--white);
  font-size: 1.3rem;
  text-align: center;
}
.local-nav a:hover,
.page-actions a:hover { opacity: .75; }
.note-box {
  margin-top: 36px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  background: var(--pale);
  font-size: 1.4rem;
  line-height: 1.9;
}
.news-detail-section .page-section__in,
.news-related-section .page-section__in {
  width: min(860px, 100%);
}
.news-article {
  padding-top: 10px;
  border-top: 3px solid var(--blue);
}
.news-article__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 32px 0 22px;
  color: #777;
  font-family: "Quattrocento", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  letter-spacing: .16em;
}
.news-article__meta span {
  padding: 5px 12px 4px;
  border: 1px solid var(--pale-blue);
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.news-article__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .1em;
}
.news-article__body {
  margin-top: 38px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.news-article__body p {
  margin: 0;
  font-size: 1.7rem;
  line-height: 2.2;
  letter-spacing: .08em;
}
.news-article__body p + p { margin-top: 24px; }
.news-article__actions { margin-top: 44px; }
.news-related {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.news-related li {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.news-related a {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  padding: 24px 28px;
  color: #333;
  line-height: 1.85;
  letter-spacing: .07em;
}
.news-related a:hover { opacity: .72; }
.news-related time {
  color: var(--blue);
  font-family: "Quattrocento", serif;
  font-size: 1.5rem;
  letter-spacing: .16em;
}
.news-related span {
  font-size: 1.5rem;
}
.policy-table {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}
.policy-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.policy-row:last-child { border-bottom: 1px solid var(--line); }
.policy-row__label {
  margin: 0;
  color: #333;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.6;
}
.policy-row__body {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: .08em;
}
.policy-highlight {
  color: var(--blue);
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
}
.policy-highlight.red { color: #c90000; }
.policy-highlight.green { color: #008a18; }
.feature-list {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}
.feature-block {
  padding: 30px;
  border-left: 5px solid var(--blue);
  background: var(--white);
}
.feature-block h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.55;
}
.feature-block ul {
  margin: 0;
  padding-left: 1.2em;
}
.feature-block li {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.9;
  letter-spacing: .06em;
}
.weekly-program {
  width: 100%;
  margin-top: 34px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 1.35rem;
  line-height: 1.65;
}
.weekly-program th,
.weekly-program td {
  padding: 14px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
}
.weekly-program th {
  color: var(--blue);
  background: #f2f6fb;
  font-weight: 700;
}
.weekly-program td:first-child {
  width: 98px;
  color: #555;
  font-family: "Quattrocento", serif;
}
@media (max-width: 900px) {
  .lower-gak__breadcrumb {
    justify-content: flex-start;
    height: auto;
    min-height: 62px;
    padding: 18px 24px;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .lower-gak__frame {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
  }
  .lower-gak__frame::before {
    right: auto;
    left: 0;
    top: 0;
    width: 44px;
    height: 100%;
  }
  .lower-gak__frame::after { display: none; }
  .lower-gak__side {
    order: 1;
    width: 100%;
    padding: 0 20px 0 64px;
    background: var(--white);
  }
  .lower-gak__side-title {
    margin: 0;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.3rem;
  }
  .lower-gak__side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
  }
  .lower-gak__side-nav a {
    padding: 15px 20px 15px 0;
    font-size: 1.2rem;
  }
  .lower-gak__side-nav a::after {
    right: 8px;
  }
  .lower-gak__body {
    order: 2;
    width: 100%;
    padding: 54px 20px 0 64px;
  }
  .lower-section {
    padding-bottom: 62px;
  }
  .lower-section + .lower-section {
    padding-top: 54px;
  }
  .lower-section--tint {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .lower-page-title {
    margin-bottom: 36px;
    font-size: 2.8rem;
  }
  .lower-page-heading {
    margin-bottom: 34px;
    font-size: 2.2rem;
    letter-spacing: .12em;
  }
  .lower-lead {
    margin-bottom: 34px;
    font-size: 1.5rem;
  }
  .goal-photo-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 42px;
  }
  .goal-photo-grid h3 {
    margin-bottom: 16px;
    font-size: 1.7rem;
  }
  .lower-gak .policy-row,
  .lower-gak .content-grid {
    grid-template-columns: 1fr;
  }
  .lower-gak .policy-row__body,
  .lower-gak .policy-highlight,
  .lower-gak .feature-block li,
  .lower-gak .page-text {
    word-break: break-all;
    overflow-wrap: anywhere;
  }
  .page-hero { min-height: 340px; }
  .page-hero__bar { width: 54px; }
  .page-hero__image { left: 54px; }
  .page-hero__image.no-embedded-title {
    background-position: 72% 22%;
    background-size: 180%;
  }
  .page-hero__title {
    left: 28px;
    right: 24px;
    bottom: 34px;
    padding: 24px 28px;
    font-size: 3.0rem;
  }
  .breadcrumb { width: calc(100% - 40px); }
  .page-section { padding: 54px 20px 68px; }
  .page-title { font-size: 2.5rem; }
  .page-lead { font-size: 1.7rem; }
  .content-grid,
  .event-list { grid-template-columns: 1fr; }
  .news-article__meta {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 26px;
  }
  .news-article__title {
    font-size: 2.3rem;
    line-height: 1.7;
  }
  .news-article__body {
    margin-top: 28px;
    padding-top: 28px;
  }
  .news-article__body p {
    font-size: 1.5rem;
    line-height: 2.05;
  }
  .news-related a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 20px;
  }
  .local-nav {
    width: calc(100% - 40px);
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .local-nav a {
    padding: 14px 8px;
    font-size: 1.2rem;
  }
  .flow-list li { padding-left: 72px; }
  .policy-row { grid-template-columns: 1fr; gap: 10px; }
  .policy-highlight { font-size: 2.0rem; }
  .weekly-program {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
  .js-ready .reveal,
  .js-ready .hero__bar,
  .js-ready .hero__vertical,
  .js-ready .hero__pagination,
  .js-ready .hero__title,
  .js-ready .page-hero__title {
    opacity: 1;
    visibility: visible;
  }
  .js-ready .hero__title {
    transform: translateX(-4%);
  }
  .js-ready .page-hero__title {
    transform: none;
  }
}
