html, body {
  overflow-x: hidden; 
}
/* --- LINEパーツ全体のスタイル --- */
.line-part-container {
  width: 100%;
  /* max-width: 1000px; */
  margin: 0 auto;
  padding: 30px 15px;
  text-align: center;
  box-sizing: border-box;
  font-family: sans-serif; /* 必要に応じてサイト共通のフォントに上書きしてください */
}

/* すべての配下要素でbox-sizingを適用 */
.line-part-container * {
  box-sizing: border-box;
}

/* マイクロコピー（見出し） */
.line-part-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 24px 0;
  display: inline-block;
  position: relative;
  color: #333;
}
.line-part-title::before {
  content: "\\";
  margin-right: 8px;
  color: #2cb45b;
}
.line-part-title::after {
  content: "/";
  margin-left: 8px;
  color: #2cb45b;
}

/* カードを包むグリッド（スマホ時は縦並び） */
.line-part-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 各カードの枠組み */
.line-part-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  text-align: left;
}

/* 円形アイコン共通 */
.line-part-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
  font-size: 24px;
}

/* 各アイコンの背景色 */
.line-part-icon-coupon { background-color: #2cb45b; }
.line-part-icon-campaign { background-color: #ffcc00; }
.line-part-icon-recommend { background-color: #3b7bb8; }

/* テキスト部分 */
.line-part-content {
  flex-grow: 1;
}
.line-part-heading {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 6px 0;
  color: #111;
}
.line-part-description {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.line-part-note {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  display: block;
}

/* --- パソコン表示用の切り替え（画面幅768px以上） --- */
@media (min-width: 768px) {
  .line-part-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .line-part-grid {
    flex-direction: row; /* 横並びに変更 */
  }
  .line-part-card {
    flex: 1; /* 3つのカードを均等幅にする */
    padding: 24px 16px;
  }
}

/* --- LINEメッセージ一例セクション全体のスタイル --- */
.line-msg-section {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    /* padding: 0 15px; */
    text-align: center;
    box-sizing: border-box;
}

.line-msg-section * {
  box-sizing: border-box;
}

/* セクションタイトル */
.line-msg-section-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 24px 0;
  color: #111;
}

/* メッセージグリッド（スマホは縦並び） */
.line-msg-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* メッセージボックス（バッジ＋画面） */
.line-msg-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* 緑色のバッジ */
.line-msg-badge {
  background-color: #2cb45b;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 20px;
  position: absolute;
  top: -12px;
  z-index: 2;
}

/* LINEトーク画面の背景 */
.line-msg-screen {
  background-color: #b9d1ea; /* LINEトーク画面風の水色 */
  border-radius: 8px;
  width: 100%;
  padding: 30px 16px 16px 12px;
  display: flex;
  align-items: flex-start;
  text-align: left;
}

/* 左側のアバター（アイコン） */
.line-msg-avatar {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* 吹き出しと時間のラッパー */
.line-msg-bubble-wrap {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
}

/* 吹き出し本体 */
.line-msg-bubble {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 12px;
  position: relative;
  max-width: 85%;
  flex-grow: 1;
}

/* 吹き出しの左の三角のツノ */
.line-msg-bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 10px;
  border-top: 6px solid transparent;
  border-right: 8px solid #ffffff;
  border-bottom: 6px solid transparent;
}

/* メッセージ本文 */
.line-msg-text {
  font-size: 13px;
  color: #111;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

/* メッセージ内の画像エリア共通 */
.line-msg-image-area {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.line-msg-image-area img {
  width: 100%;
  height: auto;
  display: block;
}

/* クーポン部分の疑似デザイン */
.coupon-bg {
  background: linear-gradient(135deg, #2cb45b, #249d4e);
  color: #ffffff;
  padding: 12px;
  text-align: center;
}
.coupon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coupon-tag {
  font-size: 11px;
  background-color: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 4px;
}
.coupon-price {
  font-size: 24px;
  font-weight: bold;
  margin: 4px 0;
}
.coupon-price small {
  font-size: 12px;
  margin-left: 2px;
}
.coupon-date {
  font-size: 10px;
  color: #f0f0f0;
  border-top: 1px dashed rgba(255,255,255,0.4);
  width: 100%;
  padding-top: 4px;
  margin-top: 4px;
}

/* ダミーの画像置き場背景 */
.dummy-img-bg {
  background-color: #f0f0f0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 12px;
  border: 1px dashed #ccc;
}

/* タイムスタンプ（12:00の部分） */
.line-msg-time {
  font-size: 10px;
  color: #555;
  margin-left: 6px;
  white-space: nowrap;
}

/* --- パソコン表示用の切り替え（画面幅768px以上） --- */
@media (min-width: 768px) {
  .line-msg-section-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .line-msg-grid {
    flex-direction: row; /* 横並びに変更 */
  }
  .line-msg-box {
    flex: 1; /* 3つの幅を均等にする */
  }
}

/* --- こんな方におすすめです全体のスタイル --- */
.line-recommend-section {
  width: 100vw;               
  position: relative;
  left: 50%;
  transform: translateX(-50%); 
  background-color: #e6f9e5;  
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: sans-serif;
  overflow: hidden;
  margin: 50px 0;
}
.line-recommend-section * {
  box-sizing: border-box;
}

/* インナーコンテナ（横幅の制限と中央揃え） */
.line-recommend-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* 白い吹き出し部分 */
.line-recommend-balloon {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


/* 見出し（中央の線付き） */
.line-recommend-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.line-recommend-title::before,
.line-recommend-title::after {
  content: "";
  height: 1px;
  background-color: #cbdad2;
  flex-grow: 1;
  max-width: 60px;
}

/* リスト全体のスタイル */
.line-recommend-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr; /* スマホ時は1カラム */
  gap: 12px 20px;
}

/* リストアイテム（チェックマーク付き） */
.line-recommend-list li {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

/* 緑色のチェックマークアイコンの再現 */
.line-recommend-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #2cb45b; /* チェックの背景の緑 */
  border-radius: 50%;
}
.line-recommend-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #ffffff; /* 白いチェック線 */
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

/* 右側の画像エリア */
.line-recommend-image {
    width: 110px;
    position: absolute;
    right: -32px;
    bottom: -22px;
    z-index: 2;
    pointer-events: none;
}

.line-recommend-image img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
}
/* --- パソコン表示用の切り替え（画面幅768px以上） --- */
@media (min-width: 768px) {
  .line-recommend-inner {
    flex-direction: row; /* 横並びに変更 */
    align-items: stretch; /* 高さを揃える */
    gap: 0;
  }
  .line-recommend-balloon {
    width: calc(100% - 180px); /* 画像の幅を引いたサイズ */
    padding: 30px 40px;
    margin-right: 20px; /* 吹き出しの突起スペース */
  }
  /* パソコン時のみ右側に吹き出しの突起（三角形）を表示 */
  .line-recommend-balloon::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-left: 10px solid #ffffff;
    border-bottom: 10px solid transparent;
  }
  .line-recommend-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  /* パソコン時は2列（横並び）に変更 */
  .line-recommend-list {
    grid-template-columns: 1fr 1fr;
  }
  .line-recommend-list li {
    font-size: 15px;
  }
  .line-recommend-image {
    width: 160px; /* PC時の画像サイズ */
  }
}

/* --- SNSセクション全体のスタイル --- */
.sns-section-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e6f9e5;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: sans-serif;
    overflow: hidden;
    margin: 50px 0;
}

.sns-section-container * {
  box-sizing: border-box;
}

/* タイトルエリア */
.sns-section-header {
  margin-bottom: 30px;
}

.sns-section-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sns-section-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  display: inline-block;
  position: relative;
}
/* タイトルの装飾（\ /） */
.sns-section-title::before { content: "\\"; margin-right: 8px; color: #2cb45b; }
.sns-section-title::after { content: "/"; margin-left: 8px; color: #2cb45b; }

.sns-section-lead {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* 2カラムレイアウト（スマホ時は縦並び） */
.sns-section-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* カード共通 */
.sns-section-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

/* カード上部（ロゴとキャッチコピー） */
.sns-card-top {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.sns-logo-area {
  width: 40px;
  height: 40px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.sns-card-header-text {
  display: flex;
  flex-direction: column;
}
.sns-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.sns-catch {
  font-size: 13px;
  font-weight: bold;
}
.instagram-color { color: #e1306c; }
.x-color { color: #1da1f2; }

/* 説明文 */
.sns-card-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

/* 投稿画像が3つ並ぶグリッド */
.sns-post-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.sns-post-dummy-img {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eee;
}
.sns-post-dummy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ボタン共通 */
.sns-btn {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: auto auto 0 auto;
  text-align: center;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-insta {
  border: 2px solid #e1306c;
  color: #e1306c;
}
.btn-insta:hover {
  background-color: #fff0f5;
}
.btn-x {
    border: 2px solid #1da1f2;
    color: #1da1f2;
}
.btn-x:hover {
  background-color: #e3f0ff;
}

/* --- PC用レイアウト（768px以上） --- */
@media (min-width: 768px) {
  .sns-section-title { font-size: 20px; }
  .sns-section-grid {
    flex-direction: row;
  }
  .sns-section-card {
    flex: 1;
    padding: 30px 24px;
  }
}

/* --- 固定追従バナー（スリム版）スタイル --- */
.line-fixed-banner-v2 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #00b900; /* より引き締まったLINEグリーン */
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 8px 16px; /* 上下パディングをさらに狭く */
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.line-fixed-banner-v2 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* インナーコンテナ */
.line-fixed-banner-inner-v2 {
  max-width: 960px; /* 横幅をややタイトにして一体感を向上 */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* 左側：テキストエリア（縦に中央揃え） */
.line-fixed-banner-text-v2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 2行の文字列同士を中央揃えに配置 */
  color: #ffffff;
  flex-grow: 1;
}

.line-sub-text-v2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2px;
}

.line-main-text-v2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* 「500円OFFクーポン」の黄色強調 */
.highlight-yellow-v2 {
  color: #ffeb3b;
  font-size: 1.15em; /* 文字を大きくして目立たせる */
  display: inline-block;
}

/* 右側：アクションエリア */
.line-fixed-banner-action-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* カプセル型白ボタン */
.line-banner-btn-v2 {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  color: #00b900;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 6px 24px 6px 12px; /* アイコン側を少し詰め、右側を開ける */
  border-radius: 40px; /* 綺麗なカプセル型 */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background-color 0.2s, transform 0.2s;
  height: 38px; /* ボタン自体の高さもコンパクトに固定 */
}

.line-banner-btn-v2:hover {
  background-color: #f7f7f7;
}

/* ボタン内のLINEアイコン（丸型） */
.line-btn-icon-v2 {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: flex;
  align-items: center;
}
.line-btn-icon-v2 svg {
  width: 100%;
  height: 100%;
}

/* ボタン内のテキストと矢印 */
.btn-text-v2 {
  letter-spacing: 0.05em;
}
.btn-arrow-v2 {
  margin-left: 6px;
  font-size: 12px;
  font-weight: normal;
  opacity: 0.7;
}

/* 下部バッジエリア */
.line-badges-v2 {
  display: flex;
  gap: 4px;
}
.badge-item-v2 {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0px 6px;
  border-radius: 10px;
  white-space: nowrap;
}

/* --- レスポンシブ対応（スマホ表示：640px以下の場合） --- */
@media (max-width: 640px) {
  .line-fixed-banner-v2 {
    padding: 6px 10px; /* スマホ時はさらに極薄に */
  }
  .line-fixed-banner-inner-v2 {
    flex-direction: column; /* 縦並びに切り替え */
    gap: 4px;
  }
  .line-sub-text-v2 {
    font-size: 11px;
  }
  .line-main-text-v2 {
    font-size: 13px;
  }
  .line-fixed-banner-action-v2 {
    width: 100%;
  }
  .line-banner-btn-v2 {
    width: 100%;
    max-width: 280px; /* 横幅を広げすぎない */
    height: 32px; /* スマホ時はさらにボタンを細く */
    font-size: 13px;
    padding: 4px 16px;
    justify-content: center;
  }
  .line-btn-icon-v2 {
    width: 18px;
    height: 18px;
  }
  /* スマホ時は画面の高さを奪わないようバッジを非表示 */
  .line-badges-v2 {
    display: none;
  }
}

.icon_part{
  width: 40px;
  height: auto;
}

.jiturei_icon{
  width: 25px;
  height: auto;
}

.bk {
    background: #000 !important;
    border-radius: 50px;
    padding: 8px;
}
/* --- 右下ポップアップLINEバナースタイル（初期状態は非表示、スクロールで出現版） --- */
.line-popup-banner {
  position: fixed;
  bottom: 30px; /* 下からの距離 */
  right: 30px;  /* 右からの距離 */
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* --- スクロール表示用の設定を追加 --- */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px); /* 最初は少し下に下げておく */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

/* スクロールされたらこのクラスがJSで付与されて表示される */
.line-popup-banner.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.line-popup-banner * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* リンクエリア全体 */
.line-popup-link {
  display: block;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.line-popup-link:hover {
  transform: translateY(-3px); /* ホバー時に少し浮く */
}

/* ★縦長キャラクターの配置設定 */
.line-popup-character {
  position: absolute;
  top: -94px;
  left: 50%;
  transform: translateX(-50%);
  width: 159px;
  z-index: -1;
  pointer-events: none;
  
  /* その場で跳ねるアニメーション */
  animation: hanakoBounceMild 4s ease-in-out infinite;
  transform-origin: center bottom;
}
.line-popup-character img {
  width: 100%;
  height: auto;
  display: block;
}

/* メインボックス：全体は緑の線 */
.line-popup-body {
  background-color: #ffffff;
  border: 2px solid #00b900;
  padding: 14px 16px 12px 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  width: 260px;
  position: relative;
  z-index: 1;
}

/* テキストエリア */
.line-popup-text {
  text-align: center;
  color: #333333;
  width: 100%;
}
.line-popup-sub {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #666666;
  margin-bottom: 2px;
}
.line-popup-main {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}
.highlight-green-inline {
  color: #00b900;
  font-size: 1.05em;
}

/* CTA：緑のベタ塗りボタン */
.line-popup-cta {
  background-color: #00b900;
  color: #ffffff;
  width: 100%;
  height: 38px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s;
  
  /* ボタンの動き */
  animation: lineBtnPop 4s ease-in-out infinite;
}
.line-popup-link:hover .line-popup-cta {
  background-color: #009900;
}

/* LINEアイコン */
.line-popup-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
}
.line-popup-icon img.line_icon {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   アニメーション定義（その場で少し跳ねるだけ）
========================================= */
@keyframes hanakoBounceMild {
  0%, 40% {
    transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) translateY(-6px) scale(1.02) rotate(1deg);
  }
  56% {
    transform: translateX(-50%) translateY(1px) scale(0.99) rotate(-0.5deg);
  }
  62% {
    transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
  }
}

/* ボタン ポンッ */
@keyframes lineBtnPop {
  0%, 55% { transform: scale(1); }
  60% { transform: scale(1.05); }
  66% { transform: scale(1); }
  100% { transform: scale(1); }
}

/* --- レスポンシブ対応（スマホ表示：640px以下の場合） --- */
@media (max-width: 640px) {
  .line-popup-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 0;
    /* スマホ時は下からの浮き上がりを無くす */
    transform: translateY(100%); 
  }
  .line-popup-banner.is-show {
    transform: translateY(0);
  }
  .line-popup-link:hover {
    transform: none;
  }
  
  /* スマホ時はキャラを非表示 */
  .line-popup-character {
    display: none;
  }
    
  .line-popup-body {
      width: 100%;
      border-radius: 0;
      border-left: none;
      border-right: none;
      border-bottom: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      gap: 10px;
      flex-direction: row;
      height: 65px;
      /* border: none; */
  }
  
  .line-popup-text {
    text-align: left;
    width: auto;
    flex-grow: 1;
  }
  .line-popup-sub {
    font-size: 11px;
  }
  .line-popup-main {
    font-size: 13px;
    line-height: 1.2;
  }
  
  .line-popup-cta {
    width: auto;
    min-width: 150px;
    height: 34px;
    font-size: 11px;
    padding: 0 10px;
  }
  .line-popup-icon {
    width: 16px;
    height: 16px;
  }
}

/* --- タイトル下のインラインCTAスタイル --- */
.sns-inline-cta {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.sns-inline-cta-body {
  background-color: #ffffff;
  border: 2px solid #00b900;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-direction: row;
  align-items: center;
  width: 600px;
}

/* テキストエリア */
.sns-inline-cta-text {
  text-align: center;
}
.sns-inline-cta-sub {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #666666;
  margin-bottom: 2px;
}
.sns-inline-cta-main {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333333;
}
.highlight-green-inline {
  color: #00b900;
  font-size: 1.05em;
}

/* 緑ベタボタン */
.sns-inline-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #00b900;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  width: 100%;
  max-width: 280px;
  height: 40px;
  border-radius: 20px;
  transition: background-color 0.2s, transform 0.2s;
}
.sns-inline-cta-btn:hover {
  background-color: #009900;
  transform: translateY(-1px);
}

/* ボタン内LINEアイコン */
.sns-inline-cta-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
}
.sns-inline-cta-icon img.line_icon {
  width: 100%;
  height: auto;
  display: block;
}

/* --- PC用レイアウト調整（641px以上） --- */
@media (min-width: 641px) {
  .sns-inline-cta-sub {
    font-size: 12px;
  }
  .sns-inline-cta-main {
    font-size: 17px;
  }
  .sns-inline-cta-btn {
    width: auto;
    min-width: 220px;
    padding: 0 24px;
  }
}

/* --- タイトル下のインラインCTAスタイル --- */
.sns-inline-cta {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.sns-inline-cta-body {
  background-color: #ffffff;
  border: 2px solid #00b900;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-direction: row;
  align-items: center;
  width: 600px;
}

/* テキストエリア */
.sns-inline-cta-text {
  text-align: center;
}
.sns-inline-cta-sub {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #666666;
  margin-bottom: 2px;
}
.sns-inline-cta-main {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333333;
}
.highlight-green-inline {
  color: #00b900;
  font-size: 1.05em;
}

/* 緑ベタボタン */
.sns-inline-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #00b900;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  width: 100%; /* スマホ時は横いっぱいに */
  max-width: 280px;
  height: 40px;
  border-radius: 20px;
  transition: background-color 0.2s, transform 0.2s;
}
.sns-inline-cta-btn:hover {
  background-color: #009900;
  transform: translateY(-1px);
}

/* ボタン内LINEアイコン */
.sns-inline-cta-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
}
.sns-inline-cta-icon img.line_icon {
  width: 100%;
  height: auto;
  display: block;
}

/* --- PC用レイアウト調整（641px以上） --- */
@media (min-width: 641px) {
  .sns-inline-cta-sub {
    font-size: 12px;
  }
  .sns-inline-cta-main {
    font-size: 17px;
  }
  .sns-inline-cta-btn {
    width: auto;
    min-width: 220px;
    padding: 0 24px;
  }
}

/* --- タイトル下のインラインCTAスタイル --- */
.sns-inline-cta {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.sns-inline-cta-body {
    background-color: #ffffff;
    border: 2px solid #00b900;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    width: 750px;
}

/* テキストエリア */
.sns-inline-cta-text {
  text-align: center;
}
.sns-inline-cta-sub {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #666666;
  margin-bottom: 2px;
}
.sns-inline-cta-main {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333333;
}
.highlight-green-inline {
  color: #00b900;
  font-size: 1.05em;
}

/* 緑ベタボタン */
.sns-inline-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #00b900;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  width: 100%; /* スマホ時は横いっぱいに */
  max-width: 280px;
  height: 40px;
  border-radius: 20px;
  transition: background-color 0.2s, transform 0.2s;
}
.sns-inline-cta-btn:hover {
  background-color: #009900;
  transform: translateY(-1px);
}

/* ボタン内LINEアイコン */
.sns-inline-cta-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
}
.sns-inline-cta-icon img.line_icon {
  width: 100%;
  height: auto;
  display: block;
}

/* --- PC用レイアウト調整（641px以上） --- */
@media (min-width: 641px) {
  .sns-inline-cta-sub {
    font-size: 12px;
  }
  .sns-inline-cta-main {
    font-size: 17px;
  }
  .sns-inline-cta-btn {
    width: auto;
    min-width: 220px;
    padding: 0 24px;
  }
}

/* --- メインビジュアル用のスタイル設定 --- */

.mv-wrap {
  position: relative;
  width: 100%;
}

.mv-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.mv-overlay-cta {
  position: absolute;
  bottom: 4%;
  left: 37.5%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 380px;
}

.mv-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #00b900;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
  width: 100%;
  height: 60px;
  border-radius: 35px;
  transition: background-color 0.2s, transform 0.2s;
  letter-spacing: 0.05em;
}

.mv-line-btn:hover {
  background-color: #009900;
  transform: translateY(-2px);
}

.mv-line-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}
.mv-line-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.mv-line-note {
  font-size: 13px;
  color: #333333;
  font-weight: bold;
  margin: 0;
  padding-left: 10px;
}

@media (max-width: 1400px) {
  .mv-overlay-cta {
    bottom: 3.5%;
    max-width: 320px;
    gap: 4px;
  }
  .mv-line-btn {
    font-size: 18px;
    height: 48px;
  }
  .mv-line-icon {
    width: 24px;
    height: 24px;
  }
  .mv-line-note {
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  .mv-overlay-cta {
    max-width: 280px;
  }
  .mv-line-btn {
    font-size: 16px;
    height: 42px;
  }
  .mv-line-note {
    font-size: 10px;
  }
}

@media (max-width: 640px) {
    .mv-overlay-cta {
        bottom: 2%;
        left: 33%;
        transform: translateX(-50%);
        max-width: 48%;
        gap: 0;
    }
  .mv-line-btn {
    font-size: 10px;
    height: 24px;
    gap: 6px;
    border-radius: 20px;
  }
  .mv-line-icon {
    width: 14px;
    height: 14px;
  }
  .mv-line-note {
    font-size: 7px;
    padding-left: 4px;
    white-space: nowrap;
    transform: scale(0.85);
    transform-origin: left center;
  }
}

.line-mv-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.mv-wrap > img {
  width: 100%;
  height: auto;
  display: block;
}

.tracking-nav{
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1400px) {
  .line-popup-banner {
    display: none !important;
  }
}