  :root {
    --forest: #244b3a;
    --leaf: #5f8a63;
    --field: #e6c86f;
    --milk: #fffaf0;
    --paper: #ffffff;
    --ink: #222824;
    --muted: #66736b;
    --line: #e5eadf;
    --clay: #b6723f;
    --sky: #dbeff5;
    --sun: #fff1b8;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--ink);
    background: #fbfdf9;
    line-height: 1.8;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }

  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    color: var(--forest);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    border-bottom: 1px solid rgba(95, 138, 99, 0.18);
    box-shadow: 0 10px 28px rgba(36, 75, 58, 0.08);
  }
  .brand {
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--forest);
  }
  .brand small {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: rgba(36, 75, 58, 0.58);
    margin-top: 2px;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }
  .nav-links a {
    text-decoration: none;
    color: rgba(36, 75, 58, 0.72);
  }
  .nav-links a:hover { color: var(--clay); }
  .menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(95, 138, 99, 0.28);
    background: transparent;
    color: var(--forest);
    cursor: pointer;
  }
  .menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--leaf);
    margin: 5px auto;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(36, 75, 58, 0.12);
    padding: 16px 24px 24px;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: var(--forest);
    border-bottom: 1px solid rgba(95, 138, 99, 0.14);
  }

  .hero {
    min-height: calc(100vh - 35px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
    background:
      radial-gradient(circle at 24% 18%, rgba(255, 241, 184, 0.78), transparent 28%),
      linear-gradient(125deg, #fffdf6 0%, #eef7eb 48%, #dbeff5 100%);
    color: var(--ink);
  }
  .hero-copy {
    padding: 110px 54px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }
  .kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
  }
  .kicker span {
    border: 1px solid rgba(216, 195, 143, 0.46);
    background: rgba(255, 255, 255, 0.7);
    color: var(--forest);
    border-color: rgba(95, 138, 99, 0.28);
    padding: 5px 12px;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }
  .hero h1 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(2.45rem, 5vw, 4.9rem);
    line-height: 1.22;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
  }
  .hero-lead {
    max-width: 620px;
    color: #526158;
    font-size: 1rem;
    margin-bottom: 38px;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .button:hover { transform: translateY(-2px); }
  .button.primary {
    background: var(--leaf);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(95, 138, 99, 0.22);
  }
  .button.secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(95, 138, 99, 0.36);
    color: var(--forest);
  }
  .hero-media {
    position: relative;
    min-height: 540px;
    background: var(--sky);
    overflow: hidden;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.02) brightness(1.04);
  }
  .hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 253, 246, 0.22), rgba(255, 253, 246, 0.02) 48%, rgba(255, 255, 255, 0.06));
  }
  .photo-label {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(95, 138, 99, 0.28);
    color: #4f5f55;
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  section { padding: 92px 40px; }
  .section-inner { max-width: 1120px; margin: 0 auto; }
  .section-head {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: end;
    margin-bottom: 42px;
  }
  .label {
    color: var(--clay);
    font-weight: 900;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  h2 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.75rem, 3vw, 2.8rem);
    line-height: 1.42;
    letter-spacing: 0.04em;
    color: var(--forest);
  }
  .head-text {
    max-width: 420px;
    color: var(--muted);
    font-size: 0.94rem;
  }

  .facts {
    background: #f4f9f1;
    padding: 38px 40px;
    border-bottom: 1px solid var(--line);
  }
  .facts-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .fact {
    background: var(--paper);
    padding: 24px;
    min-height: 138px;
  }
  .fact strong {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 1.6rem;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .fact span {
    font-size: 0.84rem;
    color: var(--muted);
  }

  .photo-strip {
    padding: 56px 40px;
    background: #ffffff;
  }
  .photo-strip-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .photo-tile {
    position: relative;
    min-height: 260px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--sky);
  }
  .photo-tile.tall {
    min-height: 360px;
  }
  .photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) brightness(1.03);
  }
  .photo-tile:nth-child(2) img { object-position: 62% center; }
  .photo-tile:nth-child(3) img { object-position: 36% center; }
  .photo-tile figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(95, 138, 99, 0.22);
    border-radius: 6px;
    color: var(--forest);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 12px;
  }

  .intro {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.95)),
      var(--paper);
  }
  .top-message {
    background: #ffffff;
  }
  .route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .route-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(36, 75, 58, 0.1);
  }
  .route-card span {
    display: block;
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
  .route-card h3 {
    color: var(--forest);
    margin-bottom: 10px;
  }
  .route-card p {
    color: var(--muted);
    font-size: 0.9rem;
  }
  .intro-grid {
    display: grid;
    grid-template-columns: 0.86fr 1fr;
    gap: 54px;
    align-items: start;
  }
  .message {
    background: linear-gradient(150deg, #f9fff6, #edf7e8);
    color: var(--ink);
    padding: 38px;
    border-radius: 8px;
    border: 1px solid rgba(95, 138, 99, 0.2);
  }
  .message p {
    color: var(--muted);
    margin-top: 16px;
  }
  .message strong {
    color: var(--forest);
    font-size: 1.1rem;
  }
  .body-text p + p { margin-top: 20px; }
  .body-text {
    color: #3d463f;
    font-size: 0.98rem;
  }

  .work {
    background: linear-gradient(180deg, #f7fbf4, #eef7fb);
  }
  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .work-item {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 28px;
    border-radius: 8px;
    min-height: 240px;
  }
  .work-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--sun);
    color: var(--forest);
    font-weight: 900;
    margin-bottom: 18px;
  }
  .work-item h3 {
    color: var(--forest);
    font-size: 1.08rem;
    margin-bottom: 12px;
  }
  .work-item p {
    color: var(--muted);
    font-size: 0.9rem;
  }

  .recruit {
    background: linear-gradient(135deg, #f4fbef 0%, #e4f3f8 100%);
    color: var(--ink);
  }
  .recruit h2 { color: var(--forest); }
  .recruit .head-text { color: var(--muted); }
  .recruit .label { color: var(--clay); }
  .recruit-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
  }
  .conditions {
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(95, 138, 99, 0.22);
    border-radius: 8px;
    padding: 28px;
  }
  .conditions h3 {
    color: var(--forest);
    margin-bottom: 18px;
  }
  .conditions ul {
    list-style: none;
    display: grid;
    gap: 12px;
  }
  .conditions li {
    border-bottom: 1px solid rgba(95, 138, 99, 0.16);
    padding-bottom: 12px;
    color: #44544a;
  }
  .conditions span {
    display: block;
    font-size: 0.76rem;
    color: var(--clay);
    letter-spacing: 0.08em;
  }
  .timeline {
    display: grid;
    gap: 14px;
  }
  .timeline-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(95, 138, 99, 0.18);
  }
  .timeline-time {
    color: var(--clay);
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
  }
  .timeline-item p {
    color: #44544a;
  }

  .life-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .life-panel {
    border: 1px solid var(--line);
    padding: 30px;
    border-radius: 8px;
    background: var(--paper);
  }
  .life-panel h3 {
    color: var(--forest);
    margin-bottom: 12px;
  }
  .life-panel p {
    color: var(--muted);
    font-size: 0.92rem;
  }

  .contact {
    background: #f8fbf5;
  }
  .contact-box {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 8px;
    padding: 34px;
  }
  .contact-lead p {
    color: var(--muted);
    margin-top: 14px;
  }
  .contact-list {
    display: grid;
    gap: 14px;
  }
  .contact-row {
    border: 1px solid var(--line);
    padding: 18px;
    border-radius: 8px;
  }
  .contact-row span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    margin-bottom: 4px;
  }
  .contact-row strong {
    font-size: 1.06rem;
    color: var(--forest);
    word-break: break-all;
  }
  footer {
    background: #eaf2e6;
    color: rgba(36, 75, 58, 0.72);
    padding: 34px 40px;
  }
  .footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.78rem;
  }

  .fade {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade.visible {
    opacity: 1;
    transform: none;
  }

  .page-hero {
    background:
      radial-gradient(circle at 18% 18%, rgba(255, 241, 184, 0.76), transparent 28%),
      linear-gradient(125deg, #fffdf6 0%, #eef7eb 52%, #dbeff5 100%);
    padding: 92px 40px 72px;
  }
  .page-hero-about {
    background:
      linear-gradient(90deg, rgba(255, 253, 246, 0.95) 0%, rgba(255, 253, 246, 0.72) 46%, rgba(255, 255, 255, 0.1) 100%),
      linear-gradient(125deg, #fffdf6 0%, #edf7e8 100%);
  }
  .page-hero-work {
    background:
      radial-gradient(circle at 82% 16%, rgba(230, 200, 111, 0.42), transparent 24%),
      linear-gradient(135deg, #f8fbf5 0%, #e7f4f0 100%);
  }
  .page-hero-recruit {
    background:
      radial-gradient(circle at 75% 18%, rgba(255, 241, 184, 0.88), transparent 26%),
      linear-gradient(135deg, #fffaf0 0%, #eff8e8 58%, #dbeff5 100%);
  }
  .page-hero-contact {
    background:
      radial-gradient(circle at 18% 16%, rgba(219, 239, 245, 0.9), transparent 30%),
      linear-gradient(135deg, #f9fcff 0%, #f5fbef 100%);
  }
  .page-hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: 42px;
    align-items: center;
  }
  .page-hero h1 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    line-height: 1.28;
    letter-spacing: 0.04em;
    color: var(--forest);
    margin-bottom: 18px;
  }
  .page-hero p {
    color: #526158;
    max-width: 660px;
  }
  .page-photo {
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(95, 138, 99, 0.2);
    box-shadow: 0 18px 34px rgba(36, 75, 58, 0.12);
  }
  .page-photo img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
  }
  .page-hero-about .page-photo {
    min-height: 380px;
    transform: rotate(1deg);
  }
  .hero-mini-flow,
  .hero-recruit-card,
  .hero-contact-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(95, 138, 99, 0.22);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(36, 75, 58, 0.12);
  }
  .hero-mini-flow {
    display: grid;
    gap: 1px;
    background: var(--line);
    overflow: hidden;
  }
  .hero-mini-flow div {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    padding: 18px 20px;
  }
  .hero-mini-flow span {
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    color: var(--clay);
  }
  .hero-mini-flow strong {
    color: var(--forest);
  }
  .hero-recruit-card {
    padding: 12px;
    display: grid;
    gap: 10px;
  }
  .hero-recruit-card div {
    background: #ffffff;
    border: 1px solid rgba(95, 138, 99, 0.16);
    border-radius: 6px;
    padding: 20px;
  }
  .hero-recruit-card span,
  .hero-contact-card span {
    display: block;
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }
  .hero-recruit-card strong {
    display: block;
    color: var(--forest);
    font-family: "Noto Serif JP", serif;
    font-size: 1.45rem;
    line-height: 1.35;
  }
  .hero-contact-card {
    padding: 32px;
  }
  .hero-contact-card strong {
    display: block;
    color: var(--forest);
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    word-break: break-all;
    margin-bottom: 16px;
  }
  .hero-contact-card p {
    color: var(--muted);
  }
  .split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
  }
  .soft-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px;
  }
  .soft-card h3 {
    color: var(--forest);
    margin-bottom: 12px;
  }
  .soft-card p,
  .soft-card li {
    color: var(--muted);
    font-size: 0.94rem;
  }
  .soft-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
  }
  .soft-card li {
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
  }
  .soft-card li:last-child { border-bottom: 0; padding-bottom: 0; }
  .page-band {
    background: linear-gradient(180deg, #f7fbf4, #eef7fb);
  }
  .detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .detail-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
  }
  .detail-card h3 {
    color: var(--forest);
    margin-bottom: 10px;
  }
  .detail-card p {
    color: var(--muted);
    font-size: 0.94rem;
  }
  .table-list {
    display: grid;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
  }
  .table-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--line);
  }
  .table-row:last-child { border-bottom: 0; }
  .table-row span {
    background: #f4f9f1;
    color: var(--forest);
    font-weight: 700;
    padding: 16px 18px;
  }
  .table-row strong {
    padding: 16px 18px;
    font-weight: 500;
    color: #3d463f;
  }
  .page-cta {
    background: var(--forest);
    color: #ffffff;
    border-radius: 8px;
    padding: 34px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
  }
  .page-cta h2 {
    color: #ffffff;
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  }
  .page-cta p { color: rgba(255,255,255,0.78); }
  .image-story {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }
  .image-story.reverse img {
    order: 2;
  }
  .image-story img {
    width: 100%;
    height: 360px;
    object-fit: cover;
  }
  .image-story > div {
    padding: 34px;
  }
  .image-story h2 {
    font-size: clamp(1.45rem, 2.6vw, 2.25rem);
    margin-bottom: 14px;
  }
  .image-story p {
    color: var(--muted);
  }

  @media (max-width: 900px) {
    .nav { top: 0; padding: 14px 20px; }
    .nav-links { display: none; }
    .menu-button { display: block; }
    .mobile-menu { top: 70px; }
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .hero-copy { padding: 72px 22px 44px; }
    .hero-media {
      min-height: 280px;
      order: -1;
    }
    .hero-media::before {
      background: linear-gradient(180deg, rgba(255, 253, 246, 0.04), rgba(255, 255, 255, 0.14));
    }
    .photo-label { left: 18px; right: 18px; bottom: 18px; }
    section { padding: 66px 22px; }
    .section-head { display: block; }
    .head-text { margin-top: 14px; }
    .page-hero { padding: 66px 22px 52px; }
    .page-hero-inner,
    .split { grid-template-columns: 1fr; }
    .page-photo { min-height: 240px; }
    .page-photo img { min-height: 240px; }
    .page-hero-about .page-photo {
      min-height: 260px;
      transform: none;
    }
    .detail-grid { grid-template-columns: 1fr; }
    .table-row { grid-template-columns: 1fr; }
    .page-cta { display: block; }
    .page-cta .button { margin-top: 18px; }
    .facts { padding: 24px 20px; }
    .facts-grid { grid-template-columns: 1fr 1fr; }
    .photo-strip { padding: 34px 20px; }
    .photo-strip-grid { grid-template-columns: 1fr; }
    .photo-tile,
    .photo-tile.tall { min-height: 240px; }
    .intro-grid,
    .recruit-layout,
    .contact-box { grid-template-columns: 1fr; }
    .route-grid { grid-template-columns: 1fr; }
    .image-story,
    .image-story.reverse {
      grid-template-columns: 1fr;
    }
    .image-story.reverse img { order: 0; }
    .image-story img { height: 240px; }
    .image-story > div { padding: 24px; }
    .work-grid { grid-template-columns: 1fr; }
    .life-grid { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 72px 1fr; }
    .footer-inner { flex-direction: column; }
  }

  @media (max-width: 520px) {
    .brand { font-size: 0.98rem; }
    .hero h1 { font-size: 2.28rem; }
    .hero-actions { flex-direction: column; }
    .button { width: 100%; }
    .facts-grid { grid-template-columns: 1fr; }
    .fact { min-height: auto; }
    .message,
    .conditions,
    .contact-box { padding: 24px; }
    .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  }
