/* links ページ固有スタイル */

/* ========== ページヒーロー ========== */
    .page-hero {      background: #1e3a5f;
      padding: 1.7rem 0 1.3rem;
      color: #fff;
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      margin: 0 0 0.05rem;
    }
    .page-hero-sub {
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      opacity: 0.75;
      font-weight: 300;
    }

    /* ========== セクションヘッダー ========== */
    .contact-section-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .contact-section-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: #8B6000;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 0.7rem;
    }
    .contact-section-eyebrow::before,
    .contact-section-eyebrow::after {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: currentColor;
      opacity: 0.4;
    }
    .contact-section-title {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 700;
      color: var(--color-text);
      margin: 0;
    }

    /* ========== リンク集セクション ========== */
    #links-content {
      background: var(--color-warm-white);
      padding: 5rem 0;
    }
    .policy-inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contact-form-lead {
      text-align: center;
      font-size: 0.92rem;
      color: var(--color-text-sub);
      line-height: 1.9;
      margin-bottom: 2.5rem;
    }

    /* カード */
    .policy-card {
      background: #fff;
      border-radius: 8px;
      padding: 2.5rem;
      box-shadow: 0 4px 24px rgba(30,30,60,0.08);
    }

    /* リンクエントリー */
    .link-entry {
      display: flex;
      align-items: flex-start;
      gap: 1.4rem;
      padding: 1.8rem 0;
      border-bottom: 1px solid var(--color-border);
    }
    .link-entry:first-child { padding-top: 0; }
    .link-entry:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }
.link-body { flex: 1; }
    .link-name {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-primary);
      margin: 0 0 0.4rem;
    }
    .link-name a {
      color: inherit;
      text-decoration: none;
    }
    .link-name a:hover { text-decoration: underline; text-underline-offset: 3px; }
    .link-desc {
      font-size: 0.9rem;
      color: var(--color-text);
      line-height: 1.9;
      margin: 0 0 0.7rem;
    }
    .link-url {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.78rem;
      color: var(--color-primary);
      text-decoration: underline;
      text-underline-offset: 2px;
      word-break: break-all;
    }

    /* ========== レスポンシブ ========== */
    @media (max-width: 767px) {
      #links-content { padding: 3.5rem 0; }
      .policy-card { padding: 1.8rem 1.4rem; }
      .link-entry { gap: 1rem; }
    }
