/**
 * 003_kikuchi-music店舗専用カスタムスタイル
 * きくちミュージックスクール専用のデザイン調整
 */

/* 003店舗専用：音楽系ブランドのアクセント強化 */
.main-description {
  border: 2px solid rgba(200, 73, 91, 0.2);
  box-shadow: 0 8px 25px rgba(200, 73, 91, 0.1);
  /* 003店舗専用：日本語テキスト最適化 */
  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(200, 73, 91, 0.15);
}

/* ロゴ周辺の調整 */
.logo-img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}