/**
 * 002_eijuspk18店舗専用カスタムスタイル
 * レンタルスタジオエイジュ専用のデザイン調整
 */

/* 店舗名（ロゴ下表示）のカスタマイズ */
.store-name-below-logo {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  margin-top: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--interactive-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--interactive-primary) 0%, var(--interactive-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

/* モバイル版での調整 */
@media (max-width: 767px) {
  .store-name-below-logo {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin-top: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.12em;
  }
}

/* ダンサーロゴに特化した調整 */
.logo-container {
  margin-bottom: 2rem;
}

.logo-img {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* 002店舗専用：暖色系のアクセント強化 */
.main-title {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.main-description {
  border: 2px solid rgba(205, 133, 63, 0.4);
  box-shadow: 0 8px 25px rgba(205, 133, 63, 0.15);
  /* 002店舗専用：日本語テキスト最適化 */
  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(-3px);
  box-shadow: 0 8px 25px rgba(205, 133, 63, 0.2);
}