/* フォント共通 */
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
}


/* ===========================
   LP専用ヘッダー（最小アップデート）
=========================== */
.lp-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #224168;
  padding: 32px 0; /* ← 厚みだけアップ */
  z-index: 2000;
}

.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-header-logo {
  font-family: 'Anton', sans-serif;
  font-size: 36px; /* ← ロゴ大きく */
  color: #dcb06c;
  letter-spacing: 0.05em;
}

.lp-header-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 32px; /* ← 間隔アップ */
  font-family: 'Anton', sans-serif;
  font-size: 20px; /* ← 読みやすく拡大 */
  letter-spacing: 0.05em;
}

/* ===========================
   帯（ラフと同じ位置に乗る）
=========================== */
.lp-band {
position: absolute;
  top: 0;   /* ← これで上にピッタリ */
  left: 0;
  width: 100%;
  background: rgba(34, 65, 104, 0.75);
  padding: 36px 20px 28px;
  text-align: center;
}

.lp-band-inner {
  text-align: center;
}

.lp-band-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.lp-band-sub {
  margin-top: 10px;
  font-size: 16px;
  color: #e6e6e6;
}

.lp-hero {
  width: 100%;
  height: 55vh;   /* 好きに調整 */
  position: relative;
  overflow: hidden;
}

.lp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;  /* ← カーポート側を映す */
}

/* 帯（画像の上に重ねる） */
.lp-band {
  position: absolute;
  top: 80px; /* ← 位置調整 */
  left: 0;
  width: 100%;
  background: rgba(34, 65, 104, 0.75);
  padding: 36px 20px 28px;
  text-align: center;
}



/* ===========================
   ヒーロー画像（高さを調整）
=========================== */
.lp-hero {
  width: 100%;
  height: 60vh;            /* ←必要に応じて50vh〜60vh調整OK */
  overflow: hidden;
  position: relative;
}

.lp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;   /* ←ここが最重要！画像の下側を見せる */
}


/* ===========================
   レスポンシブ（スマホ）
=========================== */
@media (max-width: 600px) {

  .lp-header {
    padding: 18px 0;   /* ← ヘッダーの厚み控えめ */
  }

  .lp-header-logo {
    font-size: 26px;   /* ← ロゴは少し小さく */
  }

  .lp-header-nav a {
    font-size: 15px;   /* ← 読みやすいサイズに */
    margin-left: 16px; /* ← 間隔を詰めないと横幅きつい */
  }
}


@media (max-width: 600px) {

  /* 帯の高さ：さらに薄く */
  .lp-band {
    padding: 18px 10px;   /* ← かなり薄めでコンパクト */
  }

  /* タイトル：一段小さく */
  .lp-band-title {
    font-size: 16px;      /* ← 20px → 16px */
    line-height: 1.35;
  }

  /* サブタイトル：控えめサイズ */
  .lp-band-sub {
    font-size: 11px;      /* ← 13px → 11px */
    margin-top: 4px;
  }
}


/* ===============================================
   SECTION
================================================ */
.lp-section {
  background: #fff;
  padding: 80px 16px;
}

.lp-section.alt-bg {
  background: #eef2f7;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background: #dca85c;
  margin: 10px auto 0;
  display: block;
}

.lp-list {
  list-style: none;
  padding-left: 0;
}


.lp-list li {
  padding-left: 22px;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.8;
}

.lp-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.15em;   /* ← ここが最重要！中心にピッタリ来る値 */
  color: #dca85c;
  font-size: 18px;
  line-height: 1;
}

/* -----------------------------------
  交互セクション（LP用）
----------------------------------- */
.lp-alt {
  padding: 100px 0;
}

.lp-alt-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.lp-alt-block {
  display: flex;
  align-items: center;
  gap: 60px;
}

.lp-alt-block.reverse {
  flex-direction: row-reverse;
}

.alt-text {
  flex: 1;
}

.alt-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: left;
}

.alt-img {
  flex: 1;
}

.alt-img img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .lp-alt-block,
  .lp-alt-block.reverse {
    flex-direction: column;
  }
  .alt-title {
    text-align: center;
  }
}

/* ===============================================
   LP：左右交互レイアウト（画像＋テキスト）
================================================ */

/* 横並びの基本形 */
.lp-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* 逆向き（画像 ←→ テキストの左右反転） */
.lp-flex.reverse {
  flex-direction: row-reverse;
}

/* 画像ブロック */
.lp-image {
  flex: 1;
}

.lp-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* テキストブロック */
.lp-text {
  flex: 1;
}

/* セクションタイトル（既存デザインを踏襲） */
.lp-text .section-title {
  text-align: left;  /* 画像横の見出しは左寄せの方が自然 */
  margin-bottom: 20px;
}

/* スマホ対応（縦並び） */
@media (max-width: 900px) {
  .lp-flex,
  .lp-flex.reverse {
    flex-direction: column;
    gap: 32px;
  }

  .lp-text .section-title {
    text-align: center; /* スマホでは中央寄せ */
  }
}


/* ===============================================
   PRICE
================================================ */
.price-card {
  background: #fff;
  padding: 32px;
  border-radius: 10px;
  
  box-shadow: 0 4px 14px rgba(0
  ,0,0,0.08);
  margin-bottom: 40px;
  
}


.price-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.price-list span {
  font-weight: 700;
}

.note {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

/* ------------------------------------------
   価格セクション 実例写真
------------------------------------------ */
.price-image-wrap {
  max-width: 1000px;
  margin: 0 auto 48px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.price-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* スマホ対応（少し下余白を詰める） */
@media (max-width: 800px) {
  .price-image-wrap {
    margin-bottom: 32px;
    border-radius: 10px;
  }
}

/* ===============================================
   CTA
================================================ */
.lp-cta {
  background: #224168;
  color: #fff;
  padding: 90px 16px;
  text-align: center;
}

.cta-title {
  font-size: 28px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-main,
.btn-line,
.btn-sub {
  display: inline-block;
  padding: 18px 26px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.btn-main {
  background: #333;
  color: #fff;
}

.btn-line {
  background: #00c300;
  color: #fff;
}

.btn-sub {
  background: #fff;
  color: #333;
}

@media (max-width: 600px) {

  /* セクション余白さらに圧縮 */
  .lp-cta {
    padding: 32px 12px;
  }

  /* タイトル */
  .cta-title {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 18px;
    text-align: center;
  }

  /* ボタンの親の余白調整 */
  .cta-buttons {
    gap: 10px;
  }

  /* ボタン本体（はみ出し防止） */
  .cta-buttons a {
    width: 100%;              /* はみ出し対策 */
    max-width: 100%;          /* 追加で絶対はみ出さない */
    padding: 8px 12px;        /* 高さをさらに圧縮 */
    font-size: 13px;          /* テキストも小さく */
    border-radius: 8px;       /* スマホ向けに控えめ */
    box-sizing: border-box;   /* 念のため */
    display: block;
    text-align: center;
  }
}


/* ===============================================
   FOOTER
================================================ */
.lp-footer {
  background: #1c2f45;
  color: #fff;
  padding: 40px 16px;
  text-align: center;
}

.footer-copy {
  font-size: 20px;
  font-weight: 700;
}

.footer-address {
  opacity: 0.8;
  margin-top: 8px;
}


/* ===============================================
   RESPONSIVE
================================================ */
@media (max-width: 600px) {

  .lp-logo {
    font-size: 22px;
  }

  .lp-header-nav a {
    font-size: 16px;
    margin-left: 12px;
  }

  .lp-hero-bg {
    height: 360px;
  }

  .lp-hero-title {
    font-size: 26px;
  }

  .lp-hero-sub {
    font-size: 15px;
  }

}






/*================================================
                       js
================================================*/


.lp-header {
  transition: box-shadow 0.3s ease;
}

.lp-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   雪アニメーション（LP限定）
========================================================= */

.snow {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 5000; /* ヘッダーより奥、でも最前面に見える位置 */
}

.snow span {
  position: absolute;
  top: -10px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: snowfall linear infinite;
}

/* アニメーション */
@keyframes snowfall {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(20px);
    opacity: 0;
  }
}


/* =========================================================
   ハイクオリティ雪（3種類の雪 + 光ボケエフェクト）
========================================================= */

.snow {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 5000;
}

/* 通常雪（小粒） */
.snow .flake {
  position: absolute;
  top: -10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  filter: blur(1px);
  animation: snowfall linear infinite, sway ease-in-out infinite;
}

/* 大粒雪（ふわっと近くを舞う） */
.snow .flake-large {
  background: rgba(255, 255, 255, 0.9);
  filter: blur(1.5px);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* 光ボケ（前ボケのキラッとした丸） */
.snow .flake-bokeh {
  background: rgba(255, 255, 255, 0.25);
  filter: blur(4px) brightness(1.4);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

/* 縦落下 */
@keyframes snowfall {
  0% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
}

/* 横揺れ（ふわふわ） */
@keyframes sway {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(-20px); }
}
