/* Design Philosophy: Editorial Civic Design for partner information. Keep the document-led layout quiet, clear, and trustworthy. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    :root {
      --orange: #E87722;
      --orange-dark: #c9621a;
      --orange-light: #fdf0e6;
      --text: #2c2c2c;
      --gray: #666;
      --gray-light: #f7f7f7;
      --border: #ece8e3;
      --navy: #1a1a2e;
    }
    body {
      font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
      color: var(--text);
      line-height: 1.8;
      background: #fff;
      min-width: 320px;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .page-nav {
      background: #f3f1ed;
      padding: 14px 80px;
      display: flex;
      gap: 8px;
      align-items: center;
      font-size: 12px;
      color: #777;
      border-bottom: 1px solid #e4dfd9;
      margin-top: 64px;
    }
    .page-nav-links {
      display: flex;
      gap: 12px;
      margin-left: auto;
      flex-wrap: wrap;
    }
    .page-nav-links a {
      background: #ddd;
      color: #888;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
    }
    .page-nav-links a.current {
      background: var(--orange);
      color: #fff;
    }
    .page-hero {
      background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
      color: #fff;
      padding: 76px 0 64px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -45%;
      right: -10%;
      width: 460px;
      height: 460px;
      background: var(--orange);
      opacity: 0.08;
      border-radius: 50%;
    }
    .breadcrumb {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .breadcrumb a { color: rgba(255,255,255,0.78); }
    .page-hero-tag {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .page-hero h1 {
      font-size: 36px;
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .page-hero p {
      font-size: 15px;
      color: rgba(255,255,255,0.82);
      max-width: 720px;
      line-height: 1.9;
      position: relative;
      z-index: 1;
    }
    section { padding: 80px 0; }
    .section-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 900;
      line-height: 1.4;
      margin-bottom: 16px;
      color: var(--text);
    }
    .section-desc {
      font-size: 15px;
      color: #555;
      line-height: 1.9;
      max-width: 760px;
      margin-bottom: 42px;
    }
    .partner-doc-section {
      background: #fff;
    }
    .partner-doc-card {
      border: 1px solid var(--border);
      border-radius: 24px;
      background: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
      padding: 40px;
      box-shadow: 0 18px 48px rgba(26, 26, 46, 0.06);
      max-width: 820px;
    }
    .partner-doc-meta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--orange);
      background: var(--orange-light);
      border-radius: 999px;
      padding: 6px 12px;
      margin-bottom: 18px;
    }
    .partner-doc-card h2 {
      font-size: 26px;
      line-height: 1.5;
      margin-bottom: 14px;
      color: var(--text);
    }
    .partner-doc-card p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.9;
    }
    .partner-doc-actions {
      margin-top: 28px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
    }
    .btn-primary {
      background: var(--orange);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
    }
    .btn-secondary {
      border: 1px solid #d9d2ca;
      color: var(--text);
      background: #fff;
    }
    .btn-secondary:hover {
      border-color: var(--orange);
      color: var(--orange);
      transform: translateY(-2px);
    }
    @media (max-width: 1024px) {
      .page-nav {
        padding-left: 40px;
        padding-right: 40px;
      }
    }
    @media (max-width: 768px) {
      .page-nav {
        margin-top: 104px;
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
      }
      .page-nav-links {
        margin-left: 0;
      }
      .page-hero { padding: 56px 0 48px; }
      .page-hero h1 {
        font-size: 28px;
      }
      .page-hero p,
      .section-desc,
      .partner-doc-card p {
        font-size: 13px;
      }
      section { padding: 56px 0; }
      .section-title,
      .partner-doc-card h2 {
        font-size: 24px;
      }
      .partner-doc-card {
        padding: 28px 20px;
        border-radius: 20px;
      }
    }
