/*
File: front-style.css
Purpose: トップページに関するスタイル定義
Created: 2025-09-11
Last Updated: 2025-09-11
Author: K.Y
Notes:
- スライダーボタンの色分け
- ブロックギャラリーのスタイル
*/

/* スライドタイトル */
.ltg-slide-text-caption {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size:clamp(1.1rem, 1.027rem + 0.36vw, 1.3rem);
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

/* スライドボタン */
.ltg-slide .btn-ghost {
	font-weight: 700;
	font-size: clamp(1.2rem, 0.909rem + 1.45vw, 2rem);
background:rgba(60,180,120,0.85) !important;
}

/* ふわっと拡大アニメーション */
.wp-block-gallery figure img {
  transition: transform 0.3s ease;
}
.wp-block-gallery figure:hover img {
  transform: scale(1.05);
}

/* キャプションの表示位置を画像の下に出す */
.wp-block-gallery figure {
  display: flex;
  flex-direction: column;
}
.wp-block-gallery figcaption {
  order: 1;
  padding: 8px;
  text-align: center;
  color: #333;
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
}

/* カスタム投稿タイトル */
.wp-block-post-title a {
  color: #000;
  text-decoration: none;
}

/* カスタム投稿タイトルホバー時 */
.wp-block-post-title a:hover {
  color: #222;
}
