<style>
    /* 余白リセット */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: sans-serif;
      background-color: #f6f9f9;
      padding: 20px;
    }

    /* ヘッダー部分（会社名） */
    .header {
      background-color: #02284e; /* 濃い青 */
      color: white;
      font-weight: bold;
      font-size: 2.5em;
      text-align: left;
      padding: 16px 0 16px 1em;
      width: 100%;
    }

    h1, h2 {
      text-align: center;
    }  

   h1 {
      margin-top: 30px; /* ← 上に30pxの余白を追加 */
    }

    h2 {
      margin-top: 40px;
      border-bottom: 2px solid #ccc;
      padding-bottom: 5px;
    }

    .team-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
      margin-top: 20px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .member-card {
      background:linear-gradient(135deg, #bcf1f79b 70%, #1920a9 100%);
      border-radius: 12px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .member-card .photo-oval {
      width: 100px;
      height: 140px;
      border-radius: 50%/60%;
      overflow: hidden;
      margin: 0 auto 8px;
      border: 2px solid #b1b5dc;
    }

    .photo-oval img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .name {
      font-weight: bold;
      font-size: 0.95em;
    }

    .position {
      font-size: 0.85em;
      color: #555;
    }

    @media (max-width: 600px) {
      .team-section {
        grid-template-columns: 1fr;
      }
    }
  </style>