/** Shopify CDN: Minification failed

Line 188:0 Expected "}" to go with "{"

**/
/* ================================
   ファーストビューセクション（修正版）
================================ */
.fv-section {
  position: relative;
  width: 100%;
  max-width: 1200px;       /* セクション全体の最大幅 */
  margin: 0 auto;           /* 中央寄せ */
  height: auto;            /* 高さ：画面高さいっぱい */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;   /* 黒背景で余白補完 */
  overflow: hidden;
  box-sizing: border-box;
}

/* ================================
   ファーストビュー画像
================================ */
.fv-image {
  height: auto;        /* 高さを画面にフィット */
  width: 100%;          /* アスペクト比維持 */
  max-width: 800px;     /* 横方向の最大幅制限 */
  object-fit: contain;  /* 黒背景残す */
  display: block;
}

/* LPセクション全体 */
.lp-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.lp-container {
  max-width: 600px; /* PC最大幅 */
  width: 100%;
  box-sizing: border-box;
}

/* 画像 */
.lp-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;       /* ← 余白をゼロにする */
  padding: 0;      /* ← 念のためパディングもゼロ */
  border: none;    /* 枠線があれば消す */
  line-height: 0;  /* 行間の隙間を防止 */
}

/* タイトル */
.lp-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* 段落テキスト */
.lp-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px; /* PC最小16px以上 */
  line-height: 1.6;
  color: #333;
}

/* レスポンシブ対応の埋め込み動画 */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 比率 */
  height: 0;
  overflow: hidden;
  max-width: 800px; /* PC最大幅 */
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTAセクション */
.cta-section {
  width: 100%;
  background: #111; /* 黒背景を維持 */
  padding: 40px 20px;
  text-align: center;

  /* グラデーションのボーダー */
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, #f15a24, #f7931e);
  border-image-slice: 1;
}

/* オファーテキスト */
.cta-offer {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff; /* 白に戻す */
  margin-bottom: 15px;
}

/* サブテキスト */
.cta-sub {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  color: #ddd;
}

/* CTAボタン */
.cta-btn {
  display: inline-block;
  background-color: #f15a24;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 60px; /* 横余白広め */
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,204,153,0.4);
}

.cta-btn:hover {
  background-color: #f7931e;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255,204,153,0.6);
}


/* スマホ向け調整 */
@media screen and (max-width: 767px) {
  .fv-section {
    height: auto; /* 自動調整 */
  }

  .fv-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .lp-container {
    max-width: 500px; /* スマホ最大幅 */
  }

  .lp-title {
    font-size: 20px;
  }

  .lp-text {
    font-size: 15px; /* スマホ最小15px以上 */
  }

  .video-wrapper {
    max-width: 500px; /* スマホ最大幅 */
  }

  .cta-section {
  padding: 10px 20px;

  .cta-offer {
    font-size: 20px;
  }
  .cta-sub {
    font-size: 16px;
  }
  .cta-btn {
    font-size: 16px;
    padding: 14px 40px;
    margin-bottom: 10px;
  }
}
