/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/* start */
/* LPテンプレート用 共通スタイル */
.lp-template-page .site-header {
  /* LPでグローバルナビを目立たせたくない場合はコメントアウトを外す */
  /* display: none; */
}

.lp-template-page .site-footer {
  /* フッターをごくシンプルにしたければ調整 */
  /* padding-top: 24px;
  padding-bottom: 24px; */
}

.lp-template-wrap {
  max-width: 100%;
}

.lp-template-main {
  margin: 0;
}

/* 記事内の余白を調整（必要に応じて）*/
.lp-entry__content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0px 16px 80px;
}

/* ブロックテンプレで使った lp-section 系class があればここで調整 */
.lp-section {
  margin: 0;
}

.lp-section + .lp-section {
  /* セクション間の余白 */
  margin-top: 0;
}

/* ファーストビュー用など、必要に応じて */
.lp-fv {
  /* background-color: #f0f6ff; など */
}
/* end */



/* start */
/* ━━ LP専用ヘッダー ━━━━━━━━━━━ */
.lp-header {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  background-color: #ffffff;
}

.lp-header__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-header__logo img {
  max-height: 65px;
  width: auto;
}

.lp-header__logo a {
  text-decoration: none;
  color: inherit;
}

.lp-header__tel {
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}


/* ━━ LP専用フッター ━━━━━━━━━━━ */

.lp-footer {
  border-top: 1px solid #eee;
  padding: 16px 0;
  background-color: #ffffff;
}

.lp-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  font-size: 12px;
  color: #666;
}


 /* テキストサイズ最適化 */
.lp-footer {
  background: #f5f5f5;
  padding: 30px 20px;
  font-size: 14px;
}

.lp-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.footer-links li {
  display: inline-block;
  margin: 0 8px;
}

.footer-links a {
  color: #333;
  text-decoration: underline;
}

.footer-copy {
  font-size: 12px;
  color: #666;
}

/* end */



/* =========================
   LP用ヘッダー追従
========================= */
.lp-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
}

/* ヘッダー分だけ本文を下げる（高さは必要に応じて調整） */
.lp-content{
  padding-top: 80px;
}


/* =========================
   LPヘッダー（固定＋CTA）
========================= */
.lp-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.lp-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 14px 20px; */
  max-width: 1200px;
  margin: 0 auto;
}


/* CTAボタン */
.lp-header__cta{
  display: inline-block;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  background: var(--lp-cta-color, #0073aa);
  opacity: .85;
  border-radius: var(--lp-cta-radius, 6px);
}


/* CTA hover時の文字色を固定 */
.lp-header__cta:hover,
.lp-header__cta:focus {
  color: #fff;
  text-decoration: none;
}


/* CTA 通常状態 */
.lp-header__cta{
  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

/* hover時：少し浮く */
.lp-header__cta:hover,
.lp-header__cta:focus{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  opacity: 0.95;
}




/* アンカーずれ防止 */
:root{
  scroll-padding-top: 80px;
}

/* SP最適化 */
@media (max-width: 767px){
  .lp-header__inner{
    padding: 10px 12px;
  }
  .lp-header__cta{
    font-size: 13px;
    padding: 8px 14px;
  }
  .lp-content{
    padding-top: 70px;
  }
}

