/* ================================================================
   Noel by ReAm — メインスタイルシート
   ================================================================ */

/* ================================================================
   リセット・基本設定
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

/* ================================================================
   ラッパー
   ================================================================ */
#noel-lp {
  display: block;
  position: relative;
  background-color: #ffffff;
  color: #3f3f44;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
#noel-lp p  { margin: 0 0 1em; padding: 0; background: none; color: inherit; }
#noel-lp ul { list-style: none; margin: 0; padding: 0; background: none; }
#noel-lp li { background: none; padding: 0; }
#noel-lp a  { text-decoration: none; }
#noel-lp img { max-width: 100%; height: auto; display: block; }
#noel-lp h1, #noel-lp h2, #noel-lp h3, #noel-lp h4 {
  margin: 0; padding: 0; font-weight: 500; line-height: 1.5;
  background: transparent; border: none; box-shadow: none; color: #3f3f44;
}
#noel-lp section { background: none; background-color: transparent; }

/* ================================================================
   #5 グローバルナビ / ハンバーガーメニュー
   ================================================================ */
.nl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217,215,211,0.5);
  transition: box-shadow 0.3s;
}
.nl-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nl-nav-logo {
  height: 32px;
  width: auto;
  display: block;
}
/* PC メニュー */
.nl-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nl-nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: #3f3f44;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  transition: color 0.2s;
  position: relative;
}
.nl-nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: #9a8f7d;
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nl-nav-links a:hover { color: #9a8f7d; }
.nl-nav-links a:hover::after { transform: scaleX(1); }
.nl-nav-cta {
  background-color: #9a8f7d;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em;
  transition: background 0.2s !important;
}
.nl-nav-cta:hover { background-color: #7d7264 !important; }
.nl-nav-cta::after { display: none !important; }

/* ハンバーガーボタン */
.nl-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}
.nl-hamburger span {
  display: block;
  height: 1.5px;
  background: #3f3f44;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nl-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nl-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nl-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* モバイルドロワー */
.nl-drawer {
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nl-drawer.open { transform: translateX(0); }
.nl-drawer-links {
  list-style: none; margin: 0; padding: 0;
  width: 100%;
  text-align: center;
}
.nl-drawer-links li { border-bottom: 1px solid #f0efec; }
.nl-drawer-links a {
  display: block;
  padding: 18px 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #3f3f44;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nl-drawer-links a:hover { color: #9a8f7d; background: #f6f5f3; }
.nl-drawer-cta {
  margin-top: 24px;
  padding: 14px 40px !important;
  background: #9a8f7d !important;
  color: #ffffff !important;
  border-radius: 2px;
  font-size: 0.95rem !important;
}

/* ================================================================
   ヒーロー下のスクロールオフセット用
   ================================================================ */
#noel-lp { padding-top: 60px; }
#nl-top { scroll-margin-top: 60px; }

/* ================================================================
   レイアウト
   ================================================================ */
#noel-lp .nl-wrap {
  width: 100%; max-width: 1120px;
  margin-left: auto; margin-right: auto;
  padding-left: 24px; padding-right: 24px;
}
#noel-lp .nl-wrap-narrow {
  width: 100%; max-width: 860px;
  margin-left: auto; margin-right: auto;
  padding-left: 24px; padding-right: 24px;
}

/* ================================================================
   セクション共通
   ================================================================ */
#noel-lp .nl-sec-white { padding: 96px 0; background-color: #ffffff; color: #3f3f44; }
#noel-lp .nl-sec-soft  { padding: 96px 0; background-color: #f6f5f3; color: #3f3f44; }

#noel-lp .nl-hd { text-align: center; margin-bottom: 56px; }
#noel-lp .nl-hd .ey {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem; letter-spacing: 0.35em;
  color: #8a8a8f; text-transform: uppercase; margin-bottom: 12px;
}
#noel-lp .nl-hd h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: #3f3f44; letter-spacing: 0.08em; font-weight: 500;
  background: transparent; border: none; padding: 0; margin: 0;
}
#noel-lp .nl-hd .sub { margin-top: 18px; color: #6f6f75; font-size: 0.98rem; }
#noel-lp .nl-hd::after {
  content: ""; display: block; width: 48px; height: 1px;
  background: #8a8a8f; margin: 20px auto 0;
}

/* ================================================================
   ボタン
   ================================================================ */
#noel-lp .nl-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem; letter-spacing: 0.12em;
  border-radius: 2px; transition: all 0.3s ease;
  cursor: pointer; text-decoration: none; line-height: 1.4; font-weight: 400;
}
#noel-lp .nl-btn-pri { background-color: #9a8f7d; color: #ffffff; border: 1px solid #9a8f7d; }
#noel-lp .nl-btn-pri:hover { background-color: #7d7264; border-color: #7d7264; color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(154,143,125,0.35); }
#noel-lp .nl-btn-out { background-color: rgba(255,255,255,0.8); color: #3f3f44; border: 1px solid #8a8a8f; }
#noel-lp .nl-btn-out:hover { background-color: #3f3f44; color: #ffffff; border-color: #3f3f44; }
#noel-lp .nl-btn-lit { background-color: #ffffff; color: #3f3f44; border: 1px solid #ffffff; }
#noel-lp .nl-btn-lit:hover { background-color: #f6f5f3; color: #3f3f44; transform: translateY(-2px); }
/* #1 追加：お客様の変化ボタン */
#noel-lp .nl-btn-ghost {
  background-color: transparent;
  color: #3f3f44;
  border: 1px solid #3f3f44;
}
#noel-lp .nl-btn-ghost:hover {
  background-color: #3f3f44;
  color: #ffffff;
  transform: translateY(-2px);
}
#noel-lp .nl-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   ヒーロー
   ================================================================ */
#noel-lp .nl-hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
  background-color: #f0efec;
}
#noel-lp .nl-hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center; z-index: 0;
}
#noel-lp .nl-hero-bg::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 40%, rgba(246,245,243,0.60) 68%, rgba(227,224,219,0.25) 100%);
}
#noel-lp .nl-hero .nl-wrap { position: relative; z-index: 1; }
#noel-lp .nl-hero-in { max-width: 740px; }
#noel-lp .nl-hero-logo { width: 160px; height: auto; margin-bottom: 32px; display: block; }
#noel-lp .nl-hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1.6;
  color: #3f3f44; letter-spacing: 0.06em; margin-bottom: 28px;
  font-weight: 500; background: transparent; border: none; padding: 0;
}
#noel-lp .nl-hero-catch {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem); color: #6f6f75;
  margin-bottom: 12px; border-left: 3px solid #9a8f7d;
  padding: 2px 0 2px 16px; background: none; display: block;
}
#noel-lp .nl-hero-desc { color: #6f6f75; font-size: 1rem; margin-bottom: 28px; }
#noel-lp .nl-access {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: #8a8a8f; letter-spacing: 0.1em; margin-bottom: 28px;
}

/* ================================================================
   お悩みチェック
   ================================================================ */
#noel-lp .nl-check-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; max-width: 880px; margin: 0 auto 36px;
}
#noel-lp .nl-check-item {
  display: flex; align-items: flex-start; gap: 14px;
  background-color: #ffffff; border: 1px solid #d9d7d3;
  border-left: 3px solid #9a8f7d; padding: 18px 20px;
  border-radius: 4px; font-size: 0.96rem; color: #3f3f44;
}
#noel-lp .nl-check-item i { color: #9a8f7d; margin-top: 4px; flex-shrink: 0; }
#noel-lp .nl-prob-note { text-align: center; color: #6f6f75; max-width: 720px; margin: 0 auto; }
#noel-lp .nl-prob-note strong { color: #3f3f44; }

/* ================================================================
   About
   ================================================================ */
#noel-lp .nl-catch {
  text-align: center; font-family: "Noto Serif JP", serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem); line-height: 1.7;
  color: #3f3f44; margin-bottom: 40px; font-weight: 500;
  background: transparent; border: none; padding: 0;
}
#noel-lp .nl-catch .x { color: #9a8f7d; font-family: "Cormorant Garamond", serif; font-size: 1.2em; }
#noel-lp .nl-about-txt { max-width: 720px; margin: 0 auto 40px; text-align: center; color: #6f6f75; }
#noel-lp .nl-about-txt p { color: #6f6f75; }
#noel-lp .nl-about-box {
  background-color: #efedea; border-radius: 4px; padding: 36px 40px;
  max-width: 720px; margin: 0 auto; text-align: center; border-left: 4px solid #9a8f7d;
}
#noel-lp .nl-about-box p { color: #6f6f75; margin: 0; font-size: 0.98rem; }
#noel-lp .nl-about-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 860px; margin: 0 auto 48px;
}
#noel-lp .nl-about-imgs figure { margin: 0; border-radius: 4px; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,0.08); }
#noel-lp .nl-about-imgs img { width: 100%; height: 300px; object-fit: cover; display: block; }

/* ================================================================
   初心者
   ================================================================ */
#noel-lp .nl-beginner-box {
  background-color: #ffffff; border: 1px solid #d9d7d3; border-radius: 4px;
  padding: 48px 44px; max-width: 800px; margin: 0 auto; text-align: center; color: #3f3f44;
}
#noel-lp .nl-beginner-box .big {
  font-family: "Noto Serif JP", serif; font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #3f3f44; margin-bottom: 24px; line-height: 1.7;
  background: transparent; border: none; padding: 0; font-weight: 500;
}
#noel-lp .nl-beginner-box p { color: #6f6f75; }
#noel-lp .nl-beginner-box .hl { color: #9a8f7d; font-weight: 500; }

/* ================================================================
   サービス
   ================================================================ */
#noel-lp .nl-svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 32px; }
#noel-lp .nl-svc-card {
  background-color: #ffffff; border: 1px solid #d9d7d3; border-radius: 4px;
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
#noel-lp .nl-svc-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.06); }
#noel-lp .nl-svc-top {
  height: 0;
  padding-bottom: 65%;   /* ← 16:9比率（横長写真におすすめ） */
  background-color: #efedea;
  background-size: cover;
  background-position: center;
  position: relative;
}
#noel-lp .nl-svc-top.svc1 { background-image: url('../img/service-1.jpg'); }
#noel-lp .nl-svc-top.svc2 { background-image: url('../img/service-2.jpg'); }
#noel-lp .nl-svc-top::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.28) 100%);
}
#noel-lp .nl-svc-top .tag {
  position: absolute; left: 18px; bottom: 14px; z-index: 1;
  color: #ffffff; font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.18em; font-size: 0.85rem; text-transform: uppercase;
}
#noel-lp .nl-svc-body { padding: 28px 26px 32px; background-color: #ffffff; color: #3f3f44; }
#noel-lp .nl-svc-body h3 {
  font-family: "Noto Serif JP", serif; font-size: 1.2rem; margin-bottom: 14px;
  color: #3f3f44; background: transparent; border: none; padding: 0; font-weight: 500;
}
#noel-lp .nl-svc-body p { color: #6f6f75; font-size: 0.95rem; margin: 0; }
#noel-lp .nl-svc-combo {
  background-color: #ffffff; border: 1px solid #d9d7d3; border-radius: 4px;
  padding: 36px 32px; max-width: 860px; margin: 0 auto 20px; text-align: center; color: #3f3f44;
}
#noel-lp .nl-svc-combo h3 {
  font-family: "Noto Serif JP", serif; font-size: 1.2rem; margin-bottom: 16px;
  color: #3f3f44; background: transparent; border: none; padding: 0; font-weight: 500;
}
#noel-lp .nl-svc-combo p { color: #6f6f75; margin: 0; }

/* ================================================================
   #2 選ばれる理由（画像付き）
   ================================================================ */
#noel-lp .nl-rsn-list { display: grid; gap: 32px; max-width: 940px; margin: 0 auto; }
#noel-lp .nl-rsn {
  background-color: #ffffff; border: 1px solid #d9d7d3; border-radius: 4px;
  overflow: hidden; color: #3f3f44;
  display: grid; grid-template-columns: 76px 1fr;
  gap: 0; align-items: stretch;
}
/* 番号＋テキストエリア */
#noel-lp .nl-rsn-inner {
  display: grid; grid-template-columns: 76px 1fr;
  gap: 24px; align-items: start;
  padding: 32px 34px;
}
/* #2 理由画像 */
#noel-lp .nl-rsn-img {
  width: 100%;
  height: 0;
  padding-bottom: 38%;   /* ← 縦横比を調整する数値（幅100%に対して高さ38%） */
  background-color: #efedea;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
#noel-lp .nl-rsn-img.rsn1 { background-image: url('../img/reason-1.jpg'); }
#noel-lp .nl-rsn-img.rsn2 { background-image: url('../img/reason-2.jpg'); }
#noel-lp .nl-rsn-img.rsn3 { background-image: url('../img/reason-3.jpg'); }
#noel-lp .nl-rsn-img.rsn4 { background-image: url('../img/reason-4.jpg'); }

/* カードを縦並びに変更（番号・タイトル → 画像 → テキスト の順） */
#noel-lp .nl-rsn {
  display: flex; flex-direction: column;
  grid-template-columns: none;
}
/* 理由カード テキスト本文エリア */
#noel-lp .nl-rsn-body {
  padding: 24px 34px 32px;
}
#noel-lp .nl-rsn-num {
  font-family: "Cormorant Garamond", serif; font-size: 2.8rem;
  color: #8a8a8f; line-height: 1;
  border-bottom: 2px solid #9a8f7d; width: fit-content;
  padding-bottom: 4px; background: transparent;
}
#noel-lp .nl-rsn h3 {
  font-family: "Noto Serif JP", serif; font-size: 1.15rem;
  margin-bottom: 12px; color: #3f3f44;
  background: transparent; border: none; padding: 0; font-weight: 500;
}
#noel-lp .nl-rsn p { color: #6f6f75; font-size: 0.95rem; margin: 0; }

/* ================================================================
   #3 ギャラリー スライドショー
   ================================================================ */
#noel-lp .nl-slider {
  position: relative; max-width: 1000px; margin: 0 auto;
  overflow: hidden; border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
#noel-lp .nl-slider-track {
  display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
#noel-lp .nl-slide {
  flex: 0 0 100%; position: relative;
}
#noel-lp .nl-slide img {
  width: 100%; height: 520px; object-fit: cover; display: block;
}
/* キャプション */
#noel-lp .nl-slide-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.45));
  color: #ffffff; font-size: 0.85rem; letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
/* 矢印ボタン */
#noel-lp .nl-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px;
  background: rgba(255,255,255,0.88); border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #3f3f44; font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: background 0.2s, transform 0.2s;
}
#noel-lp .nl-slider-btn:hover { background: #ffffff; transform: translateY(-50%) scale(1.08); }
#noel-lp .nl-slider-prev { left: 16px; }
#noel-lp .nl-slider-next { right: 16px; }
/* ドット */
#noel-lp .nl-slider-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
#noel-lp .nl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #d9d7d3; border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
#noel-lp .nl-dot.active { background: #9a8f7d; transform: scale(1.3); }

/* ================================================================
   こんな方に
   ================================================================ */
#noel-lp .nl-for-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  max-width: 860px; margin: 0 auto;
}
#noel-lp .nl-for-item {
  display: flex; align-items: flex-start; gap: 12px;
  background-color: #ffffff; border: 1px solid #d9d7d3;
  padding: 16px 18px; border-radius: 4px; font-size: 0.95rem; color: #3f3f44;
}
#noel-lp .nl-for-item i { color: #9a8f7d; margin-top: 4px; flex-shrink: 0; }

/* ================================================================
   変化
   ================================================================ */
#noel-lp .nl-change-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 940px; margin: 0 auto;
}
#noel-lp .nl-change-card {
  background-color: #ffffff; border: 1px solid #d9d7d3;
  border-radius: 4px; padding: 22px 20px; text-align: center; color: #3f3f44;
}
#noel-lp .nl-change-card i { font-size: 1.4rem; color: #9a8f7d; margin-bottom: 10px; display: block; }
#noel-lp .nl-change-card p { font-size: 0.92rem; color: #3f3f44; margin: 0; }
#noel-lp .nl-change-note { text-align: center; margin-top: 32px; color: #6f6f75; }

/* ================================================================
   #4 Before / After（テキスト中央揃え）
   ================================================================ */
#noel-lp .nl-ba {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
#noel-lp .nl-ba-fig { border-radius: 4px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.08); margin: 0; }
/* #4 テキストエリアを中央揃えに */
#noel-lp .nl-ba-txt { text-align: center; }
#noel-lp .nl-ba-txt h3 {
  font-family: "Noto Serif JP", serif; font-size: 1.5rem;
  margin-bottom: 18px; color: #3f3f44;
  background: transparent; border: none; padding: 0; font-weight: 500;
  line-height: 1.6;
}
#noel-lp .nl-ba-txt p { color: #6f6f75; margin: 0 0 28px; }
#noel-lp .nl-ba-pts { display: grid; gap: 10px; text-align: left; max-width: 300px; margin: 0 auto; }
#noel-lp .nl-ba-pts li {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 10px; border-bottom: 1px dashed #d9d7d3;
  font-size: 0.95rem; color: #3f3f44;
}
#noel-lp .nl-ba-pts i { color: #9a8f7d; flex-shrink: 0; }

/* ================================================================
   体験予約
   ================================================================ */
#noel-lp .nl-trial {
  background-color: #efedea; border-radius: 4px; border: 1px solid #d9d7d3;
  padding: 48px 44px; max-width: 800px; margin: 0 auto; text-align: center; color: #3f3f44;
}
#noel-lp .nl-trial h3 {
  font-family: "Noto Serif JP", serif; font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 20px; color: #3f3f44; background: transparent; border: none; padding: 0; font-weight: 500;
}
#noel-lp .nl-trial p { color: #6f6f75; margin-bottom: 28px; }

/* ================================================================
   料金
   ================================================================ */
#noel-lp .nl-price-blk { margin-bottom: 44px; }
#noel-lp .nl-price-blk:last-child { margin-bottom: 0; }
#noel-lp .nl-price-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
  color: #3f3f44;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #8a8a8f;
  border-top: none;
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  font-weight: 500;
  box-shadow: none;
}
#noel-lp .nl-price-ttl i { color: #9a8f7d; }
#noel-lp .nl-tbl {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border: 1px solid #d9d7d3;
}
#noel-lp .nl-tbl th,
#noel-lp .nl-tbl td {
  padding: 15px 20px;
  border-bottom: 1px solid #d9d7d3;
  text-align: left;
  font-size: 0.95rem;
  background: none;
}
#noel-lp .nl-tbl tr:last-child th,
#noel-lp .nl-tbl tr:last-child td { border-bottom: none; }
#noel-lp .nl-tbl th { font-weight: 500; color: #3f3f44; }
#noel-lp .nl-tbl td {
  text-align: right;
  white-space: nowrap;
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  color: #7d7264;
}
#noel-lp .nl-tbl tr:hover th,
#noel-lp .nl-tbl tr:hover td { background-color: #f6f5f3; }
#noel-lp .nl-price-note {
  font-size: 0.84rem;
  color: #6f6f75;
  margin: 8px 2px 0;
  display: block;
}
#noel-lp .nl-pkg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
#noel-lp .nl-pkg {
  background-color: #ffffff;
  border: 1px solid #d9d7d3;
  border-radius: 4px;
  padding: 24px 20px;
  color: #3f3f44;
}
#noel-lp .nl-pkg h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  margin-bottom: 14px;
  text-align: center;
  color: #3f3f44;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d7d3;
  border-top: none;
  border-left: none;
  border-right: none;
  background: transparent;
  font-weight: 500;
  box-shadow: none;
}
#noel-lp .nl-pkg .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  color: #3f3f44;
  font-size: 0.93rem;
}
#noel-lp .nl-pkg .row .pr {
  font-family: "Noto Serif JP", serif;
  font-size: 1.02rem;
  color: #7d7264;
}

/* ================================================================
   FAQ
   ================================================================ */
#noel-lp .nl-faq-wrap { max-width: 820px; margin: 0 auto; }
#noel-lp .nl-faq { background-color: #ffffff; border: 1px solid #d9d7d3; border-radius: 4px; margin-bottom: 12px; overflow: hidden; }
#noel-lp .nl-faq-q { display: flex; align-items: center; gap: 14px; padding: 20px 22px; cursor: pointer; font-weight: 500; color: #3f3f44; font-size: 0.97rem; background: none; }
#noel-lp .nl-faq-q .qm { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; color: #9a8f7d; flex-shrink: 0; }
#noel-lp .nl-faq-q .ic { margin-left: auto; transition: transform 0.3s; color: #8a8a8f; flex-shrink: 0; }
#noel-lp .nl-faq.op .ic { transform: rotate(45deg); }
#noel-lp .nl-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 22px; color: #6f6f75; font-size: 0.95rem; }
#noel-lp .nl-faq.op .nl-faq-a { max-height: 400px; padding: 0 22px 22px; }
#noel-lp .nl-faq-a p { color: #6f6f75; }

/* ================================================================
   CTA
   ================================================================ */
#noel-lp .nl-cta {
  position: relative; overflow: hidden;
  background-color: #2f2f33; padding: 96px 0; text-align: center; color: #ffffff;
}
#noel-lp .nl-cta-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../img/cta-bg.jpg');
  background-size: cover; background-position: center; z-index: 0;
}
#noel-lp .nl-cta-bg::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(47,47,51,0.90) 0%, rgba(52,52,58,0.82) 100%);
}
#noel-lp .nl-cta .nl-wrap-narrow { position: relative; z-index: 1; }
#noel-lp .nl-cta-tag {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4); border-radius: 100px;
  padding: 6px 20px; font-size: 0.88rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9); margin-bottom: 20px;
}
#noel-lp .nl-cta h2 {
  font-family: "Noto Serif JP", serif; font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.7; letter-spacing: 0.06em; margin-bottom: 22px;
  color: #ffffff; background: transparent; border: none; padding: 0; font-weight: 500;
}
#noel-lp .nl-cta .sub-txt { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
#noel-lp .nl-cta .nl-btns { justify-content: center; }

/* ================================================================
   フッター
   ================================================================ */
#noel-lp .nl-ft { background-color: #2f2f33; color: #c9c8cc; padding: 60px 0 26px; font-size: 0.9rem; }
#noel-lp .nl-ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
#noel-lp .nl-ft-brand-logo { width: 120px; height: auto; display: block; margin-bottom: 16px; }
#noel-lp .nl-ft-brand p { color: #9a999e; line-height: 1.8; margin: 0; font-size: 0.88rem; }
#noel-lp .nl-ft-col h4 {
  font-family: "Noto Serif JP", serif; font-size: 0.95rem; color: #ffffff;
  margin-bottom: 16px; letter-spacing: 0.08em;
  background: transparent; border: none; padding: 0; font-weight: 500; box-shadow: none;
}
#noel-lp .nl-ft-col li { margin-bottom: 10px; font-size: 0.88rem; color: #c9c8cc; }
#noel-lp .nl-ft-col a { color: #c9c8cc; }
#noel-lp .nl-ft-col a:hover { color: #ffffff; }
#noel-lp .nl-ft-col i { width: 18px; color: #8a8a8f; margin-right: 6px; }
#noel-lp .nl-ft-btm { text-align: center; padding-top: 22px; border-top: 1px solid #45454a; color: #85848a; font-size: 0.78rem; letter-spacing: 0.1em; }
#noel-lp .nl-ft-btm small { color: #85848a; }

/* ================================================================
   アニメーション
   ================================================================ */
#noel-lp .rv { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
#noel-lp .rv.on { opacity: 1; transform: none; }
#noel-lp .rv.d1 { transition-delay: 0.1s; }
#noel-lp .rv.d2 { transition-delay: 0.2s; }
#noel-lp .rv.d3 { transition-delay: 0.3s; }

/* ================================================================
   モバイル固定CTA
   ================================================================ */
#noel-lp .nl-fixcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  display: none; padding: 10px 14px;
  background-color: rgba(255,255,255,0.96);
  border-top: 1px solid #d9d7d3; backdrop-filter: blur(8px);
}
#noel-lp .nl-fixcta .nl-btn { width: 100%; padding: 13px; }

/* ================================================================
   レスポンシブ
   ================================================================ */
@media (max-width: 900px) {
  .nl-nav-links { display: none; }
  .nl-hamburger { display: flex; }
  #noel-lp .nl-ft-grid { grid-template-columns: 1fr 1fr; }
  #noel-lp .nl-ft-brand { grid-column: 1 / -1; }
  #noel-lp .nl-change-grid { grid-template-columns: repeat(2, 1fr); }
  #noel-lp .nl-ba { grid-template-columns: 1fr; gap: 36px; }
  #noel-lp .nl-ba-txt { text-align: center; }
  #noel-lp .nl-ba-pts { margin: 0 auto; }
}
@media (max-width: 768px) {
  #noel-lp { padding-top: 60px; }
  #noel-lp .nl-sec-white, #noel-lp .nl-sec-soft { padding: 60px 0; }
  #noel-lp .nl-cta { padding: 60px 0; }
  #noel-lp .nl-check-grid { grid-template-columns: 1fr; }
  #noel-lp .nl-svc-grid { grid-template-columns: 1fr; }
  #noel-lp .nl-rsn-inner { grid-template-columns: 1fr; gap: 12px; padding: 24px 22px; }
  #noel-lp .nl-rsn-body { padding: 16px 22px 24px; }
  #noel-lp .nl-for-list { grid-template-columns: 1fr; }
  #noel-lp .nl-change-grid { grid-template-columns: 1fr; }
  #noel-lp .nl-about-imgs { grid-template-columns: 1fr; }
  #noel-lp .nl-about-imgs img { height: 240px; }
  #noel-lp .nl-pkg-cards { grid-template-columns: 1fr; }
  #noel-lp .nl-tbl th, #noel-lp .nl-tbl td { padding: 12px 14px; font-size: 0.88rem; }
  #noel-lp .nl-about-box, #noel-lp .nl-trial { padding: 28px 22px; }
  #noel-lp .nl-beginner-box { padding: 32px 22px; }
  #noel-lp .nl-fixcta { display: block; }
  #noel-lp .nl-slide img { height: 300px; }
}
@media (max-width: 480px) {
  #noel-lp .nl-btns { flex-direction: column; width: 100%; }
  #noel-lp .nl-btns .nl-btn { width: 100%; }
  #noel-lp .nl-hd h2 { font-size: 1.45rem; }
  .nl-nav { padding: 0 16px; }
}
