/**
 * 005_e-logic-school店舗専用カスタムスタイル
 * オンライン英語塾 E-logic専用のデザイン調整
 */

/* 005店舗専用：英語教育ブランドのアクセント強化 */
.main-description {
  border: 2px solid rgba(41, 107, 166, 0.2);
  box-shadow: 0 8px 25px rgba(41, 107, 166, 0.1);
  /* 005店舗専用：日本語テキスト最適化 */
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* モバイル特化テキスト調整 */
@media (max-width: 600px) {
  .main-description {
    padding: 1.8rem 1.5rem;
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    line-height: 2.0;
  }
}

/* 満足度選択ボタンのホバー効果 */
.satisfaction-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 107, 166, 0.15);
}

/* ロゴ周辺の調整 */
.logo-img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  /* ロゴ画像の品質向上 */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  /* より高品質な表示 */
  transform: translateZ(0);
  backface-visibility: hidden;
}