/* 共通・レイアウト */
.obon-main {
  margin: 0;
  padding: 0;
  /* 全体を上品な明朝体（游明朝）に変更 */
  font-family:
    "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  background-color: #fff; /* 指示書：「背景は白ではない」を考慮した淡い生成り色 */
  color: #5d5d5d;
  line-height: 1.7;
}

.obon-main img {
  max-width: 100%;
  height: auto;
  display: block;
}

.obon-main a {
  text-decoration: none;
}

.l-container {
  max-width: 1200px; /* 指示書：maxwidth1200px */
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-container {
    padding: 0;
  }
}

/* 共通h3見出し（下線つき） */
.section-subtitle__center {
  text-align: center;
  font-size: 1.6rem;
  font-weight: normal;
  margin: 50px 0 20px 0;
  border-left: none;
  padding-left: 0;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 0.1em;
}

.section-subtitle__center::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #5d5d5d;
}

@media screen and (max-width: 768px) {
  .section-subtitle__center {
    font-size: 1.25rem;
    padding-bottom: 12px;
  }

  .section-subtitle__center::after {
  }
}

/* ヘッダー */
.obon-header {
  background-color: #ffffff;
  padding: 20px 0;
}

.obon-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.obon-header__logo {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #222222;
  letter-spacing: 0.05em;
}

.obon-header__tagline {
  margin: 0;
  font-size: 0.9rem;
  color: #5d5d5d;
}

/* メインエリア */
.obon-main {
  padding: 0 0 80px;
}

/* ヒーローセクション */
.hero-section {
  background-color: #fbf5e8;
  padding: 40px 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 0 0 16px;
    padding-top: 50px;
  }
}

.hero-section__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-section__img-wrapper {
  width: 100%;
  background-color: #eae5dc;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-section__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-section__intro {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-section__intro-text {
  margin: 0;
  font-size: 1rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hero-section__intro-text {
    padding: 0 16px;
    text-align: left;
    font-size: 0.85rem;
  }
}

.hero-section__nav {
  padding-top: 30px;
  margin-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .hero-section__nav {
    padding: 0 16px;
    padding-top: 30px;
  }
}

.hero-section__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.hero-section__nav-item {
}

.hero-section__nav-link {
  display: block;
  padding: 12px 8px 10px; /* 矢印との隙間を考慮したパディング調整 */
  background-color: #fff;
  color: #5d5d5d;
  text-align: center;
  font-size: 0.85rem;
  font-weight: bold;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.04); /* 柔らかい影を追加 */
  transition: all 0.3s ease-in-out;
}

.hero-section__nav-link:hover {
  background-color: #5d5d5d;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* ホバー時に影を少し深める */
}

/* テキストの下・センターに「>」の下向きバージョン（くさび型矢印）を配置 */
.hero-section__nav-link::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 1.5px solid #5d5d5d; /* 矢印の線 */
  border-right: 1.5px solid #5d5d5d; /* 矢印の線 */
  transform: rotate(45deg); /* 45度回転させて下向きの矢印に */
  margin: 6px auto 0; /* テキスト下のセンターに寄せる */
  transition: all 0.3s ease-in-out;
}

/* ホバー時は矢印の色も反転 */
.hero-section__nav-link:hover::after {
  border-color: #ffffff;
}

/* 動画セクション */
.video-section {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .video-section {
    padding: 0 16px;
  }
}

.video-section__inner {
}

/* 指示書：中央に大きく「動画」を再現 (borderは使用せず、塗りの背景のみ) */
.video-section__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #eae5dc;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* 商品共通セクション */
.product-section {
  background-color: #ffffff;
  padding: 40px;
  margin: 0 auto;
  margin-bottom: 40px;
  width: 900px;
}

@media screen and (max-width: 768px) {
  .product-section {
    width: 100%;
    padding: 0;
  }
}

.product-section__inner {
}

/* 指示書：見出しにはborder-bottomを入れて引き締め */
.product-section__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 30px 0;
  text-align: center;
  border-bottom: 2px solid #5d5d5d;
  padding-bottom: 15px;
  letter-spacing: 0.05em;
}

/* 商品セクション内のサブタイトルあしらいを「width: 60px」の底線（border-bottom風）に変更 */
.product-section__subtitle {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 40px 0 20px 0;
  padding-bottom: 10px; /* 線との隙間を確保 */
  position: relative;
}

.product-section__subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px; /* ご指定のwidth60px */
  height: 2px;
  background-color: #5d5d5d;
}

/* モダン盆提灯見出し用（中央寄せ＆下部飾り線） */
.product-section__subtitle--center {
  text-align: center;
  font-size: 1.6rem;
  font-weight: normal;
  margin: 50px 0 10px 0;
  border-left: none;
  padding-left: 0;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 0.1em;
}

.product-section__subtitle--center::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1.5px;
  background-color: #5d5d5d;
}

/* サブタイトル下のリードテキスト用 */
.product-section__lead-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 20px 0 40px 0;
  color: #5d5d5d;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .product-section__lead-text {
    font-size: 0.75rem;
    margin: 16px 0 32px 0;
    padding: 0 16px;
  }
}

/* --------------------------------------------------
       盆提灯 イントロブロック（flex横並び＆ずれた背景の精緻な再現）
       -------------------------------------------------- */
.lantern-intro {
  display: flex;
  gap: 32px;
  margin-bottom: 140px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .lantern-intro {
    /* flex-direction: column; */
    gap: 16px;
    background-color: #fbf5e8;
    padding: 40px 16px;
    margin-bottom: 48px;
  }
}

.lantern-intro__text-container {
  position: relative;
  flex: 1;
}

/* 背景色がbottomとrightにずれて配置されるデザインの再現 */
.lantern-intro__text-bg {
  position: absolute;
  top: 30px;
  left: -30px;
  right: -140px;
  bottom: -100px;
  background-color: #fbf5e8; /* 画像内の美しい薄ベージュ */
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .lantern-intro__text-bg {
    display: none;
  }
}

.lantern-intro__content {
  position: relative;
  z-index: 2;
}

.lantern-intro__title {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0 0 32px 0;
  font-family:
    "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  letter-spacing: 0.05em;
  color: #5d5d5d;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .lantern-intro__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}

.lantern-intro__text {
  font-size: 1rem;
  line-height: 1.9;
  margin: 0;
  text-align: justify;
  color: #5d5d5d;
}
@media screen and (max-width: 768px) {
  .lantern-intro__text {
    font-size: 0.75rem;
  }
}

.lantern-intro__img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; /* ずれた背景より手前に表示 */
}

.lantern-intro__img {
  width: 260px;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .lantern-intro__img {
    width: 160px;
    height: auto;
    object-fit: cover;
  }
}

/* -------------------------------------------------- */

/* [商品一覧リストのレイアウト]
       デフォルト：PC（769px以上）→ 3カラム */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

/* レスポンシブ調整：SP（768px以下）→ 2カラム（gapもバランスを考えて少し狭めます） */
@media screen and (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 16px;
  }
}

/* 指示「カードやリストにはborderを使わないでください」を適用 */
.product-card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card__img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #eae5dc;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  text-align: center;
}

/* 商品名はゴシック体にして読みやすさを確保 */
.product-card__title {
  margin: 0;
  margin-top: 8px;
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
}

@media screen and (max-width: 768px) {
  .product-card__title {
    font-size: 0.825rem;
    line-height: 1;
  }
}

/* お値段はゴシック体にして価格の可読性をアップ */
.product-card__price {
  margin: 0;
  font-size: 0.85rem;
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
}

@media screen and (max-width: 768px) {
  .product-card__price {
    margin: 0;
    font-size: 0.75rem;
  }
}

.product-section__btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* アクションボタン (クリック対象のため視認性維持、ホバーで色反転) */
.product-section__btn {
  display: inline-block;
  padding: 12px 45px;
  background-color: #ffffff;
  border: 1px solid #5d5d5d;
  color: #5d5d5d;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease-in-out;
}

.product-section__btn:hover {
  background-color: #5d5d5d;
  color: #ffffff;
}

/* お盆飾りセクション */
.display-section {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 40px;
}

.display-section__inner {
}

.display-section__intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .display-section__intro {
    grid-template-columns: 1fr;
  }
}

.display-section__intro-text {
}

/* 見出し用の下線デザイン */
.display-section__intro-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 20px 0;
  border-bottom: 2px solid #5d5d5d;
  padding-bottom: 15px;
}

.display-section__intro-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.display-section__intro-img-wrapper {
  background-color: #eae5dc;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.display-section__intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* お盆飾りセクション内のサブタイトルあしらいも「width: 60px」の底線に変更 */
.display-section__subtitle {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 25px 0;
  padding-bottom: 10px; /* 線との隙間を確保 */
  position: relative;
}

.display-section__subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px; /* ご指定のwidth60px */
  height: 2px;
  background-color: #5d5d5d;
}

/* お盆のコーディネートセクション */
.coordinate-section {
  background-color: #fbf5e8;
  padding: 80px 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .coordinate-section {
    background-color: #fbf5e8;
    padding: 40px 0;
  }
}

.coordinate-header__headline-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px; /* 見出しテキストに合わせた最適な横幅 */
  aspect-ratio: 837.84 / 221.97; /* SVGのviewBox比率を完全維持 */
  margin: 10px auto 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .coordinate-header__headline-wrapper {
    justify-content: center;
    width: 300px;
  }
}

/* 敷かれた雲型SVG */
.coordinate-header__bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: drop-shadow(
    0 4px 10px rgba(0, 0, 0, 0.02)
  ); /* 優しい影で白抜きをさらに浮き立たせる */
}

.coordinate-header__tagline {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 3rem;
  font-weight: bold;
  color: #5d5d5d;
  letter-spacing: 0.15em;
  padding-bottom: 2px; /* 上下中央の微調整 */
}

@media screen and (max-width: 768px) {
  .coordinate-header__tagline {
    font-size: 1.5rem;
  }
}

.coordinate-section__inner {
}

/* 見出しにborder-bottomを適用 */
.coordinate-section__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 40px 0;
  text-align: center;
  border-bottom: 2px solid #5d5d5d;
  padding-bottom: 15px;
  letter-spacing: 0.05em;
}

.coordinate-block {
  width: 900px;
  margin: 0 auto;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .coordinate-block {
    width: 100%;
    margin-bottom: 64px;
  }
}

.coordinate-block:last-child {
  margin-bottom: 0;
}

.coordinate-block__header {
  margin-bottom: 20px;
}

.coordinate-block__title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 0 12px 0;
}

.coordinate-block__desc {
  margin: 0;
  font-size: 1rem;
  color: #5d5d5d;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .coordinate-block__desc {
    font-size: 0.825rem;
    padding: 0 16px;
  }
}

.coordinate-block__img-wrapper {
  background-color: #eae5dc;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 30px;
}

.coordinate-block__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.coordinate-block__subtitle {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #5d5d5d;
}

@media screen and (max-width: 768px) {
  .coordinate-kogin__wrapper {
    padding: 0 16px;
  }
}
.coordinate-kogin {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .coordinate-kogin {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
}

.coordinate-kogin__img {
  width: 300px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .coordinate-kogin__img {
    width: 100%;
  }
}

.coordinate-kogin__desc {
  font-size: 0.875rem;
  color: #5d5d5d;
  text-align: left;
  margin: 0;
}

/* コラムセクション */
.column-section {
  background-color: #fbf5e8;
  padding: 80px 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .column-section {
    padding: 40px 16px;
    margin-bottom: 0;
  }
}

.column-section__inner {
}

.column-section__title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-align: center;
  padding-bottom: 15px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .column-section__title {
    font-size: 1.5rem;
    margin: 0;
    padding-bottom: 24px;
  }
}

.column-section__desc {
  margin: 0 0 40px 0;
  font-size: 0.95rem;
  text-align: justify;
  color: #5d5d5d;
}

@media screen and (max-width: 768px) {
  .column-section__desc {
    margin: 0 0 40px 0;
    font-size: 0.825rem;
  }
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .column-grid {
    grid-template-columns: 1fr;
  }
}

/* コラムカードのborderを排除 */
.column-card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.column-card:hover {
  transform: translateY(-8px);
}

.column-card__img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #eae5dc;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.column-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-card__body {
  padding: 15px 5px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
  justify-content: space-between;
}

.column-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1.6;
}

.column-card__link {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: bold;
  color: #5d5d5d;
  border-bottom: 1.5px solid #5d5d5d;
  padding-bottom: 2px;
}

.column-section__btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* アクションボタン (クリック対象のため視認性維持、ホバーで色反転) */
.column-section__btn {
  display: inline-block;
  padding: 12px 45px;
  background-color: #957255;
  border: 1px solid #957255;
  color: #fbf5e8;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease-in-out;
}

.column-section__btn:hover {
  background-color: #fbf5e8;
  color: #957255;
}

/* FAQセクション */
.faq-section {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .faq-section {
    padding: 40px 16px;
  }
}
.faq-section__inner {
}

.faq-section__title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 15px 0;
  text-align: center;
  padding-bottom: 15px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .faq-section__title {
    font-size: 1.5rem;
    margin: 0;
    padding-bottom: 24px;
  }
}

.faq-section__subtitle {
  font-size: 0.95rem;
  text-align: center;
  margin: 20px 0 40px 0;
  color: #5d5d5d;
}

@media screen and (max-width: 768px) {
  .faq-section__subtitle {
    font-size: 0.825rem;
    margin: 0 0 40px 0;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* アコーディオン部分のborderを廃止し、背景の濃淡で分かりやすく調整 */
.faq-item {
  background-color: #f7f4ef;
  margin-bottom: 10px;
}

.faq-item__question {
  padding: 18px 20px;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  gap: 10px;
  cursor: pointer;
}

.faq-item__question::before {
  content: "Q.";
  color: #990000;
}

.faq-item__question-text {
}

.faq-item__answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
}

.faq-item__answer::before {
  content: "A.";
  color: #5d5d5d;
  font-weight: bold;
}

.faq-item__answer-text {
  margin: 0;
}

/* 相談窓口セクション */
.consult-section {
  margin-bottom: 40px;
}

.consult-section__inner {
}

/* 囲み線のborderを排除 */
.consult-section__card {
  background-color: #ebf8fe;
  padding: 50px 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .consult-section__card {
    padding: 40px 16px;
  }
}

/* 見出しにborder-bottomを適用 */
.consult-section__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 auto 30px;
  line-height: 1.5;
  padding-bottom: 15px;
  max-width: 800px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .consult-section__title {
    font-size: 1.5rem;
    margin: 0;
    padding-bottom: 24px;
  }
}

.consult-section__img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px auto;
  height: auto;
}

.consult-section__desc {
  font-size: 0.95rem;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: justify;
  line-height: 1.8;
}

.consult-section__btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 指示書：マウスホバーで色反転 */
.consult-section__btn {
  flex: 1 1 250px;
  max-width: 320px;
  padding: 15px 10px;
  background-color: #ffffff;
  border: 1px solid #5d5d5d;
  color: #5d5d5d;
  font-weight: bold;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.consult-section__btn:hover {
  background-color: #5d5d5d;
  color: #ffffff;
}

.consult-section__btn--accent {
  border-color: #990000;
  color: #990000;
}

.consult-section__btn--accent:hover {
  background-color: #990000;
  color: #ffffff;
}

/* フッター */
.footer {
  background-color: #5d5d5d;
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
}

.footer__inner {
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
}

/* フローティングエリア (枠線は使わず、柔らかなシャドウで境界を表現) */
.floating-area {
  position: fixed;
  right: 10px;
  bottom: 134px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 220px;
}

@media (max-width: 600px) {
  .floating-area {
    width: 100%;
    padding: 8px 24px;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    background-color: #990000;
  }

  .ToTop a {
    bottom: 120px;
  }
}

.floating-banner {
  background-color: #990000;
  padding: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* borderを使わず影で優しく表現 */
  text-align: center;
  border-radius: 16px;
}

.floating-banner__title {
  margin: 0 0 6px 0;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
}

.floating-banner__text {
  margin: 0 0 12px 0;
  font-size: 0.75rem;
  color: #5d5d5d;
}

/* 指示書：マウスホバーで色反転 */
.floating-banner__btn {
  display: block;
  padding: 8px;
  background-color: #fff;
  color: #990000;
  font-size: 0.8rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.floating-banner__btn:hover {
  background-color: #990000;
  color: #ffffff;
}

/* 指示書：マウスホバーで色反転 */
.floating-btn {
  display: block;
  background-color: #1a6340; /* シックな和風グリーン */
  color: #ffffff;
  text-align: center;
  padding: 14px;
  font-size: 0.85rem;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.floating-btn:hover {
  background-color: #5d5d5d;
  color: #ffffff;
}
/* --- 共通スタイル --- */
.floating-area {
  display: none; /* 初期状態は非表示 */
  z-index: 9999;
  width: 100%;
}

/* --- PC用のスタイル --- */
@media screen and (min-width: 769px) {
  .floating-area {
    position: fixed;
    bottom: 125px;
    right: 10px;
    width: auto; /* PCでは元のサイズに */
  }
}

/* --- SP用のスタイル --- */
@media screen and (max-width: 768px) {
  /* 固定させたいフッター付近の特定のdiv（これより下には追従させない基準点） */
  #sp-stop-area {
    position: relative; /* absoluteで止めるための基準点にします */
  }

  .floating-area {
    left: 0;
  }

  /* ② 800px〜フッター手前：画面の下に張り付いて追従する状態 */
  .floating-area.is-sp-fixed {
    position: fixed !important;
    bottom: 0 !important;
    top: auto !important;
  }

  /* ③ フッター付近に到達：追従をやめて、その場（特定divの直前）に置いていかれる状態 */
  .floating-area.is-sp-absolute {
    position: relative !important;
    bottom: auto !important;
    /* #sp-stop-area の上端にピタッとくっついて止まります */
    /* もし stopArea の「中」に入れている場合は top: 0; にしてください */
    transform: translateY(-100%);
  }
}
