@charset "UTF-8";
/*!
 * Neighbors Rokko LP - Stylesheet
 * 画像背景方式 + 透明オーバーレイ用CSS
 */

/* =========================================================
   ▼ 既存テーマと干渉しないようリセット
   ========================================================= */
.nrlp-body {
  margin: 0;
  padding: 0;
  background: #fbf6ee;
  -webkit-font-smoothing: antialiased;
}

/* 既存テーマのコンテナ幅制限を打ち消す */
.nrlp-body .nrlp-lp,
.nrlp-body .nrlp-lp * {
  box-sizing: border-box;
}

/* =========================================================
   ▼ ページコンテナ
   ========================================================= */
.nrlp-lp {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  font-size: 0; /* セクション間の隙間を完全に消す */
}

@media (min-width: 900px) {
  .nrlp-body { padding: 24px 0; }
  .nrlp-lp {
    box-shadow: 0 12px 32px rgba(60, 40, 20, 0.12);
  }
}

/* =========================================================
   ▼ セクション(画像 + オーバーレイ)
   ========================================================= */
.nrlp-section {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0;
  line-height: 0;
}

.nrlp-section__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  user-select: none;
  -webkit-user-drag: none;
}

/* =========================================================
   ▼ オーバーレイ(透明な<a>タグ)
   各セクション内で絶対配置、画像のリサイズに%で追従
   ========================================================= */
.nrlp-overlay {
  position: absolute;
  display: block;
  background: transparent;
  text-decoration: none;
  border: 0;
  outline: 0;
  z-index: 2;
  border-radius: 999px; /* タップ時のリップルを丸く */
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(42, 157, 111, 0.18);
  transition: background-color 0.15s ease, transform 0.2s ease;
}

/* tel / map: 透明クリックエリアのまま、軽いフィードバックのみ */
.nrlp-overlay--tel:hover,
.nrlp-overlay--tel:focus-visible,
.nrlp-overlay--map:hover,
.nrlp-overlay--map:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
}
.nrlp-overlay--tel:active,
.nrlp-overlay--map:active {
  background-color: rgba(0, 0, 0, 0.06);
}

/* キーボードフォーカス時の枠線(アクセシビリティ) */
.nrlp-overlay:focus-visible {
  outline: 2px dashed rgba(42, 157, 111, 0.7);
  outline-offset: 2px;
}

/* スクリーンリーダー専用テキスト(視覚的には非表示) */
.nrlp-overlay .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   ▼ reserveタイプ(緑のCTAボタン) - リッチ化
   画像内のボタンを完全に上書きする本物のボタンとして描画
   ========================================================= */
.nrlp-overlay--reserve {
  /* 画像の緑ボタンを覆うように、自前の緑グラデーションで描画 */
  background:
    linear-gradient(180deg,
      #3fbc88 0%,
      #2ea874 45%,
      #1f9061 100%);
  box-shadow:
    /* 凹凸感(底面の濃い影) */
    0 6px 0 -1px #156a47,
    /* ふわっとした地面の影 */
    0 14px 24px -4px rgba(31, 144, 97, 0.55),
    /* 内側ハイライト(上部の光) */
    inset 0 2px 0 rgba(255, 255, 255, 0.45),
    /* 内側ローライト(下部の影) */
    inset 0 -3px 0 rgba(0, 0, 0, 0.10);
  overflow: hidden;
  isolation: isolate; /* 内側の擬似要素のz-indexを閉じ込める */
  transform: translateZ(0); /* レンダリング最適化 */
  transition:
    transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

/* 上部のテカリ(常時表示の柔らかいハイライト) */
.nrlp-overlay--reserve::before {
  content: '';
  position: absolute;
  top: 6%;
  left: 4%;
  right: 4%;
  height: 38%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.18) 60%,
    rgba(255, 255, 255, 0) 100%);
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

/* 流れる光のシマー(ホバー時にスーッと走る) */
.nrlp-overlay--reserve::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ホバー時: 浮き上がり + 影の強調 + シマーが流れる */
.nrlp-overlay--reserve:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 8px 0 -1px #156a47,
    0 22px 36px -6px rgba(31, 144, 97, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.55),
    inset 0 -3px 0 rgba(0, 0, 0, 0.10);
  filter: brightness(1.04);
}
.nrlp-overlay--reserve:hover::after {
  left: 130%;
}

/* フォーカス時もホバーと同等の見た目 */
.nrlp-overlay--reserve:focus-visible {
  transform: translateY(-3px) scale(1.015);
  outline: 2px dashed rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

/* アクティブ(押し込み)時 */
.nrlp-overlay--reserve:active {
  transform: translateY(2px) scale(1.0);
  box-shadow:
    0 2px 0 -1px #156a47,
    0 6px 12px -4px rgba(31, 144, 97, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  filter: brightness(0.98);
}

/* ホバーが効かないタッチデバイスでは、ロード時に1回だけシマーを流す */
@media (hover: none) {
  .nrlp-overlay--reserve::after {
    animation: nrlp-shimmer 3.5s ease-in-out 1.5s infinite;
  }
}
@keyframes nrlp-shimmer {
  0%   { left: -120%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}

/* 動きを減らす設定のユーザーには控えめに */
@media (prefers-reduced-motion: reduce) {
  .nrlp-overlay--reserve,
  .nrlp-overlay--reserve::after {
    transition: none;
    animation: none;
  }
  .nrlp-overlay--reserve:hover {
    transform: none;
  }
}

/* =========================================================
   ▼ reserveボタン内部のレイアウト(アイコン + テキスト + 矢印)
   ========================================================= */
.nrlp-btn-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
  padding: 0 5%;
  z-index: 3;
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  pointer-events: none;
}

/* 左側の電話アイコン(白丸＋緑受話器) */
.nrlp-btn-icon {
  flex: 0 0 auto;
  width: clamp(28px, 9%, 50px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
.nrlp-btn-icon svg { display: block; width: 100%; height: 100%; }

/* 中央のテキスト */
.nrlp-btn-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  min-width: 0; /* flex内テキストの折り返し制御 */
}
.nrlp-btn-main {
  display: block;
  color: #ffffff;
  font-weight: 900;
  font-size: clamp(24px, 7.2vw, 36px);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.12),
    0 4px 8px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.nrlp-btn-sub {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  font-size: clamp(11px, 3.2vw, 15px);
  margin-top: 6px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

/* 右側の矢印アイコン */
.nrlp-btn-arrow {
  flex: 0 0 auto;
  width: clamp(14px, 4%, 24px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
  transition: transform 0.2s ease;
}
.nrlp-btn-arrow svg { display: block; width: 100%; height: 100%; }

/* ホバー時に矢印が少し右に動く */
.nrlp-overlay--reserve:hover .nrlp-btn-arrow {
  transform: translateX(3px);
}

/* PC幅(LPコンテナがmax-width:480pxなので)では絶対値ベースで安定させる */
@media (min-width: 481px) {
  .nrlp-btn-main { font-size: 18px; }
  .nrlp-btn-sub  { font-size: 12px; }
}

/* =========================================================
   ▼ 中間CTAセクション(画像なし、純HTML)
   求職者向けの問い合わせ動線
   ========================================================= */
.nrlp-mid-cta {
  position: relative;
  background:
    radial-gradient(ellipse at top left,    rgba(255, 220, 230, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(255, 240, 200, 0.7) 0%, transparent 55%),
    linear-gradient(180deg, #fff5ec 0%, #fdebe2 100%);
  padding: 36px 22px 40px;
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 16px; /* セクションタグ内の font-size: 0 をリセット */
  line-height: 1.6;
  overflow: hidden;
}

.nrlp-mid-cta__inner {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

/* メイン見出し */
.nrlp-mid-cta__heading {
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.4;
}
.nrlp-mid-cta__heading-sub {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #6a4a3a;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.nrlp-mid-cta__heading-main {
  display: inline-block;
  font-size: clamp(20px, 5.6vw, 26px);
  font-weight: 800;
  color: #2c2620;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0 18px;

}
.nrlp-mid-cta__heading-main::before,
.nrlp-mid-cta__heading-main::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1.4em;
  border-color: #2c2620;
  transform: translateY(-50%);
}
.nrlp-mid-cta__heading-main::before {
  left: 0;
  border-left: 2px solid #2c2620;
  border-top: 2px solid #2c2620;
  border-bottom: 2px solid #2c2620;
  border-right: 0;
}
.nrlp-mid-cta__heading-main::after {
  right: 0;
  border-right: 2px solid #2c2620;
  border-top: 2px solid #2c2620;
  border-bottom: 2px solid #2c2620;
  border-left: 0;
}

/* リードテキスト */
.nrlp-mid-cta__lead {
  text-align: center;
  margin: 0 0 22px;
  font-size: 13px;
  color: #4a3a2c;
  line-height: 1.7;
}
.nrlp-mid-cta__lead strong {
  font-weight: 700;
  color: #2c2620;
  background: linear-gradient(transparent 60%, #ffe89a 60%);
  padding: 0 2px;
}

/* =========================================================
   ▼ ピンク座布団CTA(電話)
   ========================================================= */
.nrlp-pink-cta {
  position: relative;
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, #ee7a92 0%, #e85a7a 60%, #d44560 100%);
  border-radius: 20px;
  padding: 18px 22px 18px 22px;
  margin: 0 0 16px;
  color: #ffffff;
  box-shadow:
    0 6px 0 -1px #a83a55,
    0 14px 28px -6px rgba(232, 90, 122, 0.45);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.18s ease, filter 0.18s ease;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  isolation: isolate;
}

/* ピンクCTA：ホバー時のリッチアニメーション */
.nrlp-pink-cta:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    0 9px 0 -1px #a83a55,
    0 24px 40px -8px rgba(232, 90, 122, 0.6);
  filter: brightness(1.06);
}

/* 押した瞬間は沈む */
.nrlp-pink-cta:active {
  transform: translateY(2px) scale(0.995);
  box-shadow:
    0 2px 0 -1px #a83a55,
    0 8px 14px -6px rgba(232, 90, 122, 0.45);
  filter: brightness(0.98);
}

/* ホバー時に電話番号を少し強調 */
.nrlp-pink-cta:hover .nrlp-pink-cta__num {
  transform: scale(1.03);
  letter-spacing: 0.04em;
}

/* 電話番号のアニメーション準備 */
.nrlp-pink-cta__num {
  transition: transform 0.2s ease, letter-spacing 0.2s ease;
}

/* 右の無料スタンプを少し弾ませる */
.nrlp-pink-cta__stamp {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.nrlp-pink-cta:hover .nrlp-pink-cta__stamp {
  transform: translateY(-50%) rotate(-6deg) scale(1.08);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
}

/* 上部ハイライト */
.nrlp-pink-cta::before {
  content: '';
  position: absolute;
  top: 4%;
  left: 3%;
  right: 3%;
  height: 30%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.30) 0%,
    rgba(255, 255, 255, 0.08) 60%,
    rgba(255, 255, 255, 0) 100%);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}

/* キラキラ装飾(四隅) */
.nrlp-pink-cta__deco-tl,
.nrlp-pink-cta__deco-tr,
.nrlp-pink-cta__deco-bl,
.nrlp-pink-cta__deco-br {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M8 1l1 5 5 1-5 1-1 5-1-5-5-1 5-1z' fill='white' opacity='0.7'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.nrlp-pink-cta__deco-tl { top: 8px;  left: 12px; }
.nrlp-pink-cta__deco-tr { top: 8px;  right: 100px; transform: scale(0.7); }
.nrlp-pink-cta__deco-bl { bottom: 8px; left: 12px; transform: scale(0.7); }
.nrlp-pink-cta__deco-br { bottom: 8px; right: 100px; }

/* 見出しテキスト */
.nrlp-pink-cta__head {
  display: block;
  text-align: center;
  font-size: clamp(11px, 3.2vw, 13px);
  font-weight: 700;
  margin: 0 84px 6px 0; /* 右側のスタンプ分を空ける */
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 3;
  line-height: 1.4;
}
.nrlp-pink-cta__head-accent {
  font-weight: 800;
  font-size: 1.15em;
}

/* 電話番号(アイコン+番号) */
.nrlp-pink-cta__phone {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 76px 4px 0;
  position: relative;
  z-index: 3;
  white-space: nowrap;
}
.nrlp-pink-cta__icon {
  flex: 0 0 auto;
  width: clamp(34px, 9%, 42px);
  height: clamp(34px, 9%, 42px);
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.nrlp-pink-cta__num {
  font-size: clamp(22px, 7vw, 30px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
  font-family: 'Hiragino Sans', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  line-height: 1;
}

/* 受付時間 */
.nrlp-pink-cta__time {
  display: block;
  text-align: center;
  font-size: clamp(10px, 2.8vw, 12px);
  font-weight: 500;
  color: #ffffff;
  margin: 0 84px 0 0; /* スタンプ分の余白 */
  position: relative;
  z-index: 3;
  opacity: 0.95;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

/* 「見学・体験 無料!」スタンプ(右側の白丸) */
.nrlp-pink-cta__stamp {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  background: #ffffff;
  color: #e85a7a;
  border-radius: 50%;
  width: clamp(64px, 18vw, 76px);
  height: clamp(64px, 18vw, 76px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 4;
  text-align: center;
}
.nrlp-pink-cta__stamp-line1 {
  font-size: clamp(10px, 2.8vw, 12px);
  font-weight: 700;
}
.nrlp-pink-cta__stamp-line2 {
  font-size: clamp(15px, 4.5vw, 19px);
  font-weight: 900;
  margin-top: 1px;
}

/* =========================================================
   ▼ デバッグモード(オーバーレイ位置を視覚化)
   bodyに .nrlp-debug を付けると半透明の色付きエリアが表示される
   ========================================================= */
.nrlp-debug .nrlp-overlay {
  background-color: rgba(255, 0, 0, 0.25) !important;
  border: 2px solid rgba(255, 0, 0, 0.6) !important;
}
.nrlp-debug .nrlp-overlay--tel     { background-color: rgba(255, 100, 100, 0.3) !important; }
.nrlp-debug .nrlp-overlay--reserve { background-color: rgba(0, 200, 100, 0.3)   !important; }
.nrlp-debug .nrlp-overlay--map     { background-color: rgba(100, 100, 255, 0.3) !important; }

/* =========================================================
   ▼ 画像読み込み中の最小高さ確保(レイアウトシフト防止)
   全画像が941x1672(縦横比 ≒ 1.777)で統一されているため
   aspect-ratioで予約しておく
   ========================================================= */
.nrlp-section__img {
  aspect-ratio: 941 / 1672;
  background: #f5ede0;
}

/* 07-support.png 下部のピンクCTAが画面に入った時のアニメーション */
.nrlp-section.is-cta-inview .nrlp-overlay--tel {
  animation: nrlp-cta-pop 0.65s ease-out both;
  border-radius: 18px;
}

/* 浮き上がるような動き */
@keyframes nrlp-cta-pop {
  0% {
    transform: translateY(12px) scale(0.96);
    opacity: 0;
    box-shadow: none;
  }

  60% {
    transform: translateY(-4px) scale(1.02);
    opacity: 1;
    box-shadow:
      0 12px 24px rgba(232, 90, 122, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    box-shadow:
      0 8px 18px rgba(232, 90, 122, 0.18);
  }
}
/* 全ての緑CTAボタンをピンクCTA風のフォントに変更 */
.nrlp-overlay--reserve .nrlp-btn-main {
  font-size: clamp(18px, 5.2vw, 28px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.02em !important;
  color: #ffffff !important;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.16),
    0 4px 8px rgba(0, 0, 0, 0.22) !important;
  white-space: nowrap !important;
}

.nrlp-overlay--reserve .nrlp-btn-sub {
  font-size: clamp(10px, 2.8vw, 13px) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-top: 4px !important;
  letter-spacing: 0.02em !important;
  color: rgba(255, 255, 255, 0.96) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18) !important;
  white-space: nowrap !important;
}

@media (min-width: 481px) {
  .nrlp-overlay--reserve .nrlp-btn-main {
    font-size: 26px !important;
  }

  .nrlp-overlay--reserve .nrlp-btn-sub {
    font-size: 13px !important;
  }
}
/* ピンクCTA内の電話アイコンと無料スタンプを削除 */
.nrlp-pink-cta__icon,
.nrlp-pink-cta__stamp {
  display: none !important;
}

/* スタンプ削除後の余白をリセット */
.nrlp-pink-cta__head,
.nrlp-pink-cta__phone,
.nrlp-pink-cta__time {
  margin-right: 0 !important;
}

/* 電話番号を中央配置 */
.nrlp-pink-cta__phone {
  justify-content: center !important;
  gap: 0 !important;
}

/* 右側装飾の位置も自然に調整 */
.nrlp-pink-cta__deco-tr,
.nrlp-pink-cta__deco-br {
  right: 12px !important;
}
/* 中間CTAの緑ボタンサイズを小さくして、上のテキストと被らないよう調整 */
.nrlp-mid-cta__btn {
  position: relative !important;
  display: block !important;
  width: 88% !important;
  height: 56px !important;
  margin: 14px auto 0 !important;
  left: auto !important;
  top: auto !important;
  border-radius: 999px !important;
}

/* ボタン内の余白・文字サイズを調整 */
.nrlp-mid-cta__btn .nrlp-btn-inner {
  padding: 0 18px !important;
  gap: 10px !important;
}

/* 左の電話アイコンを少し小さく */
.nrlp-mid-cta__btn .nrlp-btn-icon {
  width: 34px !important;
}

/* テキストを小さくして被り防止 */
.nrlp-mid-cta__btn .nrlp-btn-main {
  font-size: clamp(10px, 5.4vw, 26px) !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

/* 右矢印も少し小さく */
.nrlp-mid-cta__btn .nrlp-btn-arrow {
  width: 16px !important;
}

/* 緑CTA：「ご相談はこちらまで！」をボタン全体の中央に固定 */
.nrlp-overlay--reserve .nrlp-btn-inner {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  padding: 0 !important;
}

/* テキストをボタン中央に絶対配置 */
.nrlp-overlay--reserve .nrlp-btn-text {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100% !important;
  text-align: center !important;
  display: block !important;
  padding: 0 56px !important;
}

/* メイン文言を中央揃え */
.nrlp-overlay--reserve .nrlp-btn-main {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 auto !important;
}

/* 矢印は右端に固定して、中央計算から外す */
.nrlp-overlay--reserve .nrlp-btn-arrow {
  position: absolute !important;
  right: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
/* 08-access画像内のGoogleマップ枠にだけ埋め込み表示 */
.nrlp-section--08-access .nrlp-map-embed {
  position: absolute !important;
  left: 46% !important;
  top: 9.6% !important;
  width: 48% !important;
  height: 34.6% !important;
  z-index: 4 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #f7f0e7 !important;
}

/* iframeを枠いっぱいに表示 */
.nrlp-section--08-access .nrlp-map-embed iframe {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}
/* まずは見学エリアに入れる問い合わせフォーム */
.nrlp-contact-form-mini {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px 18px 24px;
  box-shadow: 0 10px 28px rgba(90, 58, 35, 0.10);
  border: 1px solid rgba(232, 90, 122, 0.14);
  display: grid;
  gap: 14px;
}

.nrlp-contact-form-mini__field label {
  display: block;
  margin-bottom: 6px;
  color: #2c2620;
  font-size: 14px;
  font-weight: 800;
}

.nrlp-contact-form-mini__field label span {
  color: #8a7a6a;
  font-size: 12px;
  font-weight: 600;
  margin-left: 4px;
}

.nrlp-contact-form-mini__field input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1.5px solid #f2d8cf;
  border-radius: 14px;
  background: #fffaf7;
  color: #2c2620;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

.nrlp-contact-form-mini__field input::placeholder {
  color: #b5a79a;
  font-weight: 500;
}

.nrlp-contact-form-mini__field input:focus {
  border-color: #2a9d6f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(42, 157, 111, 0.12);
}

.nrlp-contact-form-mini__submit {
  width: 100%;
  height: 56px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #3fbc88 0%, #2ea874 45%, #1f9061 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow:
    0 6px 0 -1px #156a47,
    0 14px 24px -4px rgba(31, 144, 97, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.45);
}

.nrlp-contact-form-mini__submit:active {
  transform: translateY(2px);
}
/* =========================================================
   ▼ 見学・ご相談フォーム：LP全体のトンマナ強化版
   ========================================================= */

/* セクション背景：既存LPの淡いピンク×ベージュに寄せる */
.nrlp-mid-cta {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 214, 226, 0.85) 0%, transparent 34%),
    radial-gradient(circle at 92% 92%, rgba(255, 232, 180, 0.55) 0%, transparent 36%),
    linear-gradient(180deg, #fff7ef 0%, #fdebe4 100%) !important;
  padding: 46px 22px 50px !important;
}

/* 見出し全体 */
.nrlp-mid-cta__heading {
  position: relative;
  text-align: center !important;
  margin: 0 0 18px !important;
  line-height: 1.25 !important;
}

/* 「まずはお気軽に」 */
.nrlp-mid-cta__heading-sub {
  display: inline-block !important;
  margin: 0 0 8px !important;
  padding: 4px 14px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #6a4a3a !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  box-shadow: 0 4px 12px rgba(90, 58, 35, 0.08) !important;
}

/* 「見学・ご相談フォーム」 */
.nrlp-mid-cta__heading-main {
  display: block !important;
  padding: 0 !important;
  color: #2c2620 !important;
  font-size: clamp(28px, 8vw, 40px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.85) !important;
}

/* 既存のカッコ装飾がズレる場合は消す */
.nrlp-mid-cta__heading-main::before,
.nrlp-mid-cta__heading-main::after {
  display: none !important;
}

/* リード文 */
.nrlp-mid-cta__lead {
  margin: 0 0 24px !important;
  color: #5f4a3d !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.8 !important;
  text-align: center !important;
}

/* フォームカード：白ベタではなく、既存LPのカード感に寄せる */
.nrlp-contact-form-mini {
  position: relative !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 236, 242, 0.95) 0%, transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(232, 248, 239, 0.95) 0%, transparent 40%),
    #ffffff !important;
  border-radius: 28px !important;
  padding: 26px 18px 28px !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 18px 34px rgba(88, 55, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  display: grid !important;
  gap: 16px !important;
  overflow: hidden !important;
}

/* 右上に葉っぱ風のワンポイント */
.nrlp-contact-form-mini::before {
  content: "✦";
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(232, 90, 122, 0.36);
  font-size: 22px;
  line-height: 1;
}

/* 左下に淡い装飾 */
.nrlp-contact-form-mini::after {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(46, 168, 116, 0.08);
  pointer-events: none;
}

/* 各項目 */
.nrlp-contact-form-mini__field {
  position: relative !important;
  z-index: 1 !important;
}

/* ラベル：太さと余白をLP寄りに */
.nrlp-contact-form-mini__field label {
  display: flex !important;
  align-items: baseline !important;
  gap: 7px !important;
  margin: 0 0 8px !important;
  color: #2c2620 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

.nrlp-contact-form-mini__field label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e85a7a;
  box-shadow: 0 0 0 4px rgba(232, 90, 122, 0.12);
  flex: 0 0 auto;
  transform: translateY(-1px);
}

.nrlp-contact-form-mini__field label span {
  color: #9a8979 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

/* 入力欄：グレー感をなくして、温かい白に */
.nrlp-contact-form-mini__field input {
  width: 100% !important;
  height: 54px !important;
  padding: 0 16px !important;
  border: 1.5px solid #f0d8cf !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f4 100%) !important;
  color: #2c2620 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  outline: none !important;
  box-shadow:
    inset 0 2px 5px rgba(90, 58, 35, 0.04),
    0 2px 0 rgba(255, 255, 255, 0.9) !important;
}

.nrlp-contact-form-mini__field input::placeholder {
  color: #b9aa9e !important;
  font-weight: 700 !important;
}

.nrlp-contact-form-mini__field input:focus {
  border-color: #2ea874 !important;
  background: #ffffff !important;
  box-shadow:
    0 0 0 4px rgba(46, 168, 116, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

/* 送信ボタン：他CTAと同じリッチ感 */
.nrlp-contact-form-mini__submit {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 64px !important;
  margin-top: 12px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background:
    linear-gradient(180deg, #48c98f 0%, #2fac78 45%, #1f8f61 100%) !important;
  color: #ffffff !important;
  font-size: clamp(26px, 7vw, 34px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-bottom: 0 !important;
  cursor: pointer !important;
  overflow: hidden !important;
  box-shadow:
    0 7px 0 -1px #156a47,
    0 18px 30px -6px rgba(31, 144, 97, 0.55),
    inset 0 2px 0 rgba(255, 255, 255, 0.55),
    inset 0 -3px 0 rgba(0, 0, 0, 0.12) !important;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.14),
    0 4px 8px rgba(0, 0, 0, 0.18) !important;
}

/* ボタンのツヤ */
.nrlp-contact-form-mini__submit::before {
  content: "";
  position: absolute;
  top: 7%;
  left: 5%;
  right: 5%;
  height: 38%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.56) 0%,
    rgba(255, 255, 255, 0.18) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

/* 押下時 */
.nrlp-contact-form-mini__submit:active {
  transform: translateY(2px) !important;
  box-shadow:
    0 2px 0 -1px #156a47,
    0 8px 14px -6px rgba(31, 144, 97, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15) !important;
}
/* =========================================================
   ▼ 問い合わせフォーム外側背景：グラデーションを削除してLP全体に馴染ませる
   ========================================================= */

.nrlp-mid-cta {
  background: #fbf6ee !important;
  padding: 42px 22px 46px !important;
}

/* 見出し周りも余計な装飾感を抑える */
.nrlp-mid-cta__heading {
  margin: 0 0 16px !important;
  text-align: center !important;
}

/* 「まずはお気軽に」の背景装飾を弱める */
.nrlp-mid-cta__heading-sub {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: #6a4a3a !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

/* メイン見出しは強めのまま、背景となじませる */
.nrlp-mid-cta__heading-main {
  color: #2c2620 !important;
  font-size: clamp(27px, 7.2vw, 36px) !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

/* カッコ装飾が浮く場合は非表示 */
.nrlp-mid-cta__heading-main::before,
.nrlp-mid-cta__heading-main::after {
  display: none !important;
}

/* リード文も落ち着かせる */
.nrlp-mid-cta__lead {
  color: #5f4a3d !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.8 !important;
  margin: 0 0 22px !important;
}
/* =========================================================
   ▼ 問い合わせフォーム：ピンク/緑の色ムラグラデーションを削除
   ========================================================= */

/* フォーム外側の背景を単色に */
.nrlp-mid-cta {
  background: #fbf6ee !important;
}

/* フォームカード内のピンク・緑グラデーションを削除 */
.nrlp-contact-form-mini {
  background: #ffffff !important;
  border: 1px solid rgba(232, 90, 122, 0.12) !important;
  box-shadow:
    0 10px 24px rgba(90, 58, 35, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

/* 右上のキラキラ装飾も不要なら削除 */
.nrlp-contact-form-mini::before,
.nrlp-contact-form-mini::after {
  display: none !important;
}