/* style_en.css */


  /* ===== 英語ページ固有スタイル ===== */
  body {
    color: #333;
    margin: 0;
    padding: 0;
    background: #fff;
  }

  /* --- ナビ（日本語版と同じ構造） --- */
  nav {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 12px;
  }

  .nav-logo-text {
    display: flex;
    flex-direction: column;
  }

  .nav-logo-org {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.05em;
  }

  .nav-logo-center {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .nav-lang {
    margin-left: auto;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    padding: 4px 10px;
    letter-spacing: 0.1em;
  }

  /* --- メインコンテンツ --- */
  .en-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 32px 80px;
  }

  /* --- ヒーローエリア --- */
  .en-hero {
    margin-bottom: 60px;
    border-left: 4px solid #333;
    padding-left: 24px;
  }

  .en-hero-label {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 12px;
  }

  .en-hero-title {
    font-family: 'Hammersmith One', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
    margin: 0 0 16px;
    color: #111;
  }

  .en-hero-sub {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 560px;
  }

  /* --- セクション共通 --- */
  .en-section {
    padding: 0;
    border: none;
    margin-bottom: 56px;
  }

  .en-section-title {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .en-section-heading {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #111;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
  }

  .en-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin: 0 0 16px;
  }

  /* --- 事業一覧 --- */
  .en-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .en-service-card {
    border: 1px solid #e0e0e0;
    padding: 24px;
  }

  .en-service-card-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    color: #111;
  }

  .en-service-card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin: 0;
  }

  /* --- お問い合わせ --- */
  .en-contact {
    background: #f8f8f8;
    padding: 40px;
    margin-top: 20px;
  }

  .en-contact p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
  }

  .en-contact-email {
    display: inline-block;
    font-family: 'Hammersmith One', sans-serif;
    font-size: 16px;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    letter-spacing: 0.05em;
  }

  .en-contact-email:hover {
    opacity: 0.6;
  }

  .en-contact-note {
    margin-top: 16px !important;
    font-size: 12px !important;
    color: #888 !important;
  }

  /* --- トップへ戻るボタン --- */
  .en-back-top {
    display: block;
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
  }

  .en-back-top a {
    display: inline-block;
    font-family: 'Hammersmith One', sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    padding: 12px 32px;
    transition: background 0.2s, color 0.2s;
  }

  .en-back-top a:hover {
    background: #333;
    color: #fff;
  }

  /* --- フッター --- */
  footer {
    background: rgb(92, 15, 15);
    color: #fff;
    padding: 40px 32px;
    font-size: 13px;
    line-height: 1.8;
  }

  .footer-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-logo-name {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
  }

  .footer-org {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 11px;
    color: #666;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- レスポンシブ --- */
  @media (max-width: 600px) {
    nav {
      padding: 12px 16px;
    }

    .en-page {
      padding: 40px 16px 60px;
    }

    .en-contact {
      padding: 24px 20px;
    }

    .en-services {
      grid-template-columns: 1fr;
    }
  }