/**
 * カスタムユーティリティクラス
 * テキストシャドウやその他のユーティリティ
 */

/* ===================================
 * テキストシャドウ
 * =================================== */

/* 基本的なテキストシャドウ（黒） */
.text-shadow-sm {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.text-shadow-md {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.text-shadow-lg {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.text-shadow-xl {
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}

/* カスタムカラーのテキストシャドウ */
.text-shadow-cream {
  text-shadow: 0px 0px 8px #F4F1EC;
}

.text-shadow-gold {
  text-shadow: 2px 2px 6px #E7B546;
}

.text-shadow-blue {
  text-shadow: 2px 2px 6px #4A596A;
}

/* Google Mapをモノクロにするフィルター */
.map-grayscale {
  filter: grayscale(100%) contrast(1.1);
}

/* ===================================
 * レスポンシブ改行制御
 * md以下（768px未満）では改行を無視
 * =================================== */

/* モバイルでは改行を無視 */
@media (max-width: 767px) {
  .md\:preserve-breaks br {
    display: none;
  }
}

/* デスクトップでは改行を表示 */
@media (min-width: 768px) {
  .md\:preserve-breaks br {
    display: block;
  }
}

/* ===================================
 * WYSIWYGエディタコンテンツスタイル
 * リスト要素のデフォルトスタイルを復元
 * =================================== */

.wysiwyg-content ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 1.5rem;
}

.wysiwyg-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.wysiwyg-content li {
  margin-bottom: 0.5rem;
}

.wysiwyg-content li:last-child {
  margin-bottom: 0;
}

.wysiwyg-content p {
  margin-bottom: 1rem;
}

.wysiwyg-content p:last-child {
  margin-bottom: 0;
}

.wysiwyg-content strong {
  font-weight: 600;
}

.wysiwyg-content em {
  font-style: italic;
}

.wysiwyg-content a {
  color: #3A6351; /* eveplaza-forest-green */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.wysiwyg-content a:hover {
  color: #E57F5A; /* eveplaza-terracotta */
}

/* 見出しスタイル */
.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
  color: #3C3C3C; /* eveplaza-dark-gray */
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.wysiwyg-content h1 { font-size: 2rem; }
.wysiwyg-content h2 { font-size: 1.75rem; }
.wysiwyg-content h3 { font-size: 1.5rem; }
.wysiwyg-content h4 { font-size: 1.25rem; }
.wysiwyg-content h5 { font-size: 1.125rem; }
.wysiwyg-content h6 { font-size: 1rem; }

@media (min-width: 768px) {
  .wysiwyg-content h1 { font-size: 2.5rem; }
  .wysiwyg-content h2 { font-size: 2rem; }
  .wysiwyg-content h3 { font-size: 1.75rem; }
  .wysiwyg-content h4 { font-size: 1.375rem; }
}

/* 水平線 */
.wysiwyg-content hr {
  border: none;
  border-top: 1px solid rgba(60,60,60,0.2); /* eveplaza-dark-gray/20 */
  margin: 2rem 0;
}

/* 引用 */
.wysiwyg-content blockquote {
  border-left: 4px solid #E57F5A; /* eveplaza-terracotta */
  padding-left: 1rem;
  color: #2D2D2D;
  margin: 1.5rem 0;
}

@media (max-width: 767px) {
  .wysiwyg-content li {
    margin-bottom: 0.25rem;
  }
}