/* 英語テキストのタイポグラフィ改善 */

/* 英語フォント用の基本設定 */
.en, .english-text {
  font-family: 'Times New Roman', 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: justify;
  word-spacing: 0.1em;
}

/* 英語見出し用のスタイル */
.ind_lead {
  font-family: 'Times New Roman', 'Libre Baskerville', Georgia, serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1.5em;
}

/* 英語本文用のスタイル */
.ind_txt .jp {
  font-family: 'Times New Roman', 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
  text-align: justify;
  word-spacing: 0.1em;
  text-justify: inter-word;
}

/* 段落間の適切な間隔 */
.ind_txt .jp br + br {
  line-height: 2.2;
}

/* 英語テキストの読みやすさ向上 */
.english-content {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 2;
  hyphenate-limit-last: always;
  hyphenate-limit-zone: 8%;
}

/* レスポンシブ対応 */
@media screen and (max-width: 750px) {
  .ind_lead {
    font-size: 1.2em;
    line-height: 1.3;
    letter-spacing: 0.03em;
  }
  
  .ind_txt .jp {
    font-size: 0.95em;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}

@media screen and (max-width: 500px) {
  .ind_lead {
    font-size: 1.1em;
    line-height: 1.2;
  }
  
  .ind_txt .jp {
    font-size: 0.9em;
    line-height: 1.5;
  }
}

/* 特定のクラスの改善 */
.fns14 {
  font-size: 1.4em;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.lh17 {
  line-height: 1.7 !important;
}

.lesp-003 {
  letter-spacing: 0.03em !important;
}

/* 英語テキストの視覚的な改善 */
.english-enhanced {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga" 1, "kern" 1;
}

/* 英語タイトル用の特別なスタイル */
.english-title {
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: none;
  line-height: 1.3;
}

/* 英語サブタイトル用のスタイル */
.english-subtitle {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
}