/*
 Theme Name: Lightning Child
 Template: lightning
*/





/* Lightning スライドショーのタイトル調整（子テーマ専用） */
.ltg-slide-title,
.ltg-slider .caption h2 {
  font-size: 4rem !important;   /* 倍サイズ */
  font-weight: 800 !important;  /* 極太 */
  line-height: 1.2 !important;
  color: #fff !important;
  text-shadow: 0 3px 12px rgba(0,0,0,.7) !important;
  text-align: center !important;
}

/* スライドキャプションを上下中央に配置 */
.ltg-slider .caption {
  width: 100% !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  text-align: center !important;
  position: absolute !important;
  z-index: 10 !important;
}

/* モバイル用（小さめに） */
@media (max-width: 599px) {
  .ltg-slide-title,
  .ltg-slider .caption h2 {
    font-size: 2.4rem !important;
  }
}


<?php
function lightning_child_enqueue_styles() {
    wp_enqueue_style(
        'lightning-child-style',
        get_stylesheet_uri(),
        array('lightning-design-style')  // 親テーマのCSSを先に読み込む
    );
}
add_action('wp_enqueue_scripts', 'lightning_child_enqueue_styles');
