/* 基本スタイル */
body {
    line-height: 1.8;
  }

.font-ja {
    font-family: 'Noto Serif JP', 'Noto Serif', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
}

.font-en {
    font-family: 'Lora', 'Georgia', 'Times New Roman', serif;
}
  
  /* ヘッダーとフッター */
  header {
    margin-bottom: -50px;
  }
  
  /* ヘッダー画像のモバイル対応 */
  @media (max-width: 768px) {
    header h1 img {
      width: 100%;
      height: 75vw; /* 4:3比率 (100vw / 4 * 3) */
      max-height: 300px;
      object-fit: cover;
      object-position: center;
    }
  }

  /* 見出し */
  h1, h2, h3, h4 {
    font-family: serif;
    font-weight: 700;
    font-size: 1rem;
  }
  
  h1 {
    margin: 0;
    padding: 0;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h2.sec-title {
    margin-bottom: 50px;
    text-align: center;
  }
  
  h2.uk-modal-title, h3.uk-modal-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  h3.work-title {
    font-size: 1rem;
  }
  
  /* セクション */
  section {
    margin: 6rem 0;
  }
  
  /* テーブル */
  .uk-table th, .uk-table td {
    font-size: 0.9rem;
    vertical-align: top;
  }
  
  .uk-table th {
    white-space: nowrap;
    width: 60px;
  }
  
  #cv-d th {
    width: 50px;
  }
  
  #cv-d th, #cv-d td {
    font-size: 0.8rem;
  }
  
  /* 画像 */
  img {
    width: 100%;
  }
  
  figcaption {
    font-size: 0.8rem;
  }
  
  /* プライバシーポリシー関連 */
  .privacy-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .language-selector {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .lang-btn {
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ccc;
    margin: 0 5px;
    text-decoration: none;
    color: #1e87f0;
    display: inline-block;
    background-color: #fff;
    line-height: normal;
  }
  
  .lang-btn:hover {
    background-color: #f8f8f8;
    text-decoration: none;
  }
  
  .lang-btn.active {
    font-weight: bold;
    background-color: #f0f0f0;
    color: #333;
    border-color: #999;
  }
  
  .policy-section {
    display: none;
  }
  
  .policy-section.active {
    display: block;
  }
  
  /* ネオンロゴのフェードインアニメーション */
  .neon-logo {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .neon-logo.loaded {
    opacity: 1;
  }
  
  /* Font Awesome アイコンのスタイル */
  .sec-title i {
    margin-right: 8px;
  }
  
  .uk-button i {
    margin-right: 6px;
  }
  
  /* 言語切り替えリンクのアイコン */
  a i.fa-globe {
    margin-right: 4px;
  }