
@charset "utf-8";
* {
	margin: 0;
	padding: 0;
}

*{box-sizing: border-box;}
/* float解除用 */
.clearlist {
	content: "";
	display: block;
	clear: both;
}

body{
    overflow-x: hidden;
    background-color: #fff;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-bottom: 200px;
}

a{
    text-decoration: none;
    list-style: none;
    color: inherit;
}


/* ===========================
   BASE
=========================== */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  color: #fff;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px min(8vw, 64px);
  overflow: hidden;
}

/* 背景画像 */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/top.jpg') center/cover no-repeat;
  filter: brightness(0.85);
  z-index: 1;
}

/* 背景の光（ピンク×ゴールド） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,180,220,0.75), transparent 10%),
    radial-gradient(circle at 90% 100%, rgba(255,220,150,0.58), transparent 25%);
  z-index: 2;
}

/* ===========================
   INNER GRID
=========================== */
.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

/* ===========================
   COPY
=========================== */
.hero-copy .hero-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.7;
  margin-bottom: 16px;
  text-shadow: 4px 4px 8px #333;
}

.hero-copy h1 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.1);
    text-shadow: 4px 4px 8px #333;
}

.hero-copy .hero-sub {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* ===========================
   VISUAL BLOCK
=========================== */
.hero-visual {
  position: relative;
  width: min(420px, 45vw);
  aspect-ratio: 4/5;
  margin-left: auto;
}

/* グラスパネル（背景の透明パネル） */
.hero-panel {
  position: absolute;
  inset: 6%;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.01);
  z-index: 1;
}

/* 写真共通 */
.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* メイン写真（縦長） */
.hero-photo.main {
  width: 62%;
  aspect-ratio: 3/4;
  top: 10%;
  left: 8%;
  transform: rotate(-3deg);
}

/* サブ写真（横長） */
.hero-photo.sub {
  width: 55%;
  aspect-ratio: 4/3;
  bottom: 6%;
  right: 4%;
  transform: rotate(4deg);
}

/* ===========================
   FADE ANIMATION
=========================== */
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 768px) {

  .hero {
    padding: 60px 20px 80px;
    text-align: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .hero-visual {
    margin: 0 auto;
    width: min(320px, 85vw);
    aspect-ratio: 4/5;
  }

  .hero-photo.main {
    width: 70%;
    top: 6%;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
  }

  .hero-photo.sub {
    width: 60%;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
  }

  .hero-panel {
    inset: 10%;
  }
}


.empathy-vertical {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 8vw;
}

/* 背景（固定＋微ズーム） */
.ev-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/wedding2.png');
  background-size: 115%;
  background-position: center;
  transition: background-size 1s ease-out;
}

.empathy-vertical.scrolled .ev-bg {
  background-size: 100%;
}

/* 黒レイヤー */
.ev-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}

/* 斜めカットのサブ画像 */
.ev-subimage {
  position: absolute;
  right: 0%;
  top: 0;
  height: 100%;
  width: 40%;
  overflow: hidden;
  opacity: 0.55;
}

.ev-subimage img {
  height: 100%;
  width: 120%;
  object-fit: cover;
}

/* PC用 */
.ev-content {
  position: relative;
  z-index: 5;
  color: #fff;
  display: flex;
  gap: 200px;
  align-items: flex-start;
}

.ev-title {
  font-size: clamp(12px, 2vw, 24px);
  line-height: 1.6;
  max-width: 380px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

/* ここはPC用のままでOK（縦書き横並び） */
.ev-lines {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 22px;
  line-height: 2.2;
  opacity: 0;
  animation: fadeIn 1.8s ease forwards;
  animation-delay: 0.4s;
}

.ev-lines p {
  margin-bottom: 24px;
  opacity: 0.85;
}


/* アニメーション */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {

  .empathy-vertical {
    height: auto;
    min-height: 0;
    padding: 100px 20px;
    display: block;
    align-items: initial;
  }

  .ev-content {
    display: block;
    text-align: center;
  }

  .ev-title {
    font-size: 22px;
    line-height: 1.7;
    max-width: none;
    margin: 0 auto 32px;
  }

  /* ★ h2 の下に “縦書き1列” を置く */
  .ev-lines {
    writing-mode: vertical-rl;      /* ← 縦書きブロック */
    text-orientation: upright;
    font-size: 14px;
    line-height: 2.1;
    margin: 20px auto;
    height: 350px;                  /* 縦の長さを調整 */
    opacity: 0.9;
    display: inline-block;          /* 中央寄せしやすくする */
  }

  .ev-lines p {
    margin-bottom: 18px;
  }
}




.intro-parallax {
  position: relative;
  height: 50vh;
  min-height: 360px;
  background-image: url('../images/flower.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: background-size 0.7s ease-out;
  overflow: hidden;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.intro-parallax.scrolled {
  background-size: 100%;
}

/* 黒レイヤー */
.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(1.5px);
}

/* 斜めカットのサブ画像 */
.intro-subimage {
  position: absolute;
  right: -10%;
  top: 0;
  height: 100%;
  width: 45%;
  overflow: hidden;
  transform: skewX(-8deg);
  opacity: 0.85;
}

.intro-subimage img {
  height: 100%;
  width: 120%;
  object-fit: cover;
  transform: skewX(8deg);
}

/* テキスト */
.intro-content {
  position: relative;
  color: #fff;
  max-width: 600px;
  margin-left: 5%;
}

.intro-content h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.5;
  margin-bottom: 18px;
  font-weight: 600;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.intro-content p {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.9;
}


/* 全体 */
.problem-solution {
  position: relative;
  padding: 180px 20px;
  background: #fff7fb;
  overflow: hidden;
}

/* 背景の大画像 */
.ps-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.9);
  transform: scale(1.05);
}

/* 左の縦長サブ画像 */
.ps-sideimg {
  position: absolute;
  left: 0;
  top: 10%;
  width: 32%;
  height: 80%;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  opacity: 0.5;
  transform: translateX(-40px);
  transition: 1.2s ease;
}

.ps-sideimg.show {
  opacity: 0.5;
  transform: translateX(0);
}

.ps-sideimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  opacity: 0.3;
}

/* 内側 */
.ps-inner {
  position: relative;
  z-index: 5;
  max-width: 760px;
  margin: 0 auto;
}

/* 問題提起 */
.ps-title {
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #333;
}

.ps-lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 32px;
  color: #444;
}

.ps-list {
  list-style: none;
  margin-bottom: 32px;
}

.ps-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
  font-weight: 900;
}

.ps-bottom {
  font-size: 16px;
  line-height: 2;
  color: #444;
}

/* 解決策 */
.ps-solution {
  margin-top: 120px;
}

.ps-solution-title {
  font-size: 28px;
  line-height: 1.7;
  margin-bottom: 60px;
  text-align: center;
  color: #333;
}

/* ステップ全体 */
.ps-steps {
  position: relative;
  padding-left: 70px;
}

/* 縦ライン */
.ps-line {
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, #ff9acb, #ffc8e3);
  border-radius: 999px;
  overflow: visible;
}

/* 光の粒 */
.ps-line-glow {
  position: absolute;
  top: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  background: #ffb3d6;
  border-radius: 50%;
  opacity: 0;
}

/* ラインが伸びる */
.ps-steps.show .ps-line {
  animation: psLineDown 1.6s cubic-bezier(.25,.1,.25,1) forwards;
}

.ps-steps.show .ps-line-glow {
  animation: psGlowDown 1.6s cubic-bezier(.25,.1,.25,1) forwards;
}

/* ステップ */
.ps-step {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.ps-step .num {
  font-size: 22px;
  font-weight: 700;
  color: #ff7fb5;
  min-width: 32px;
}

.ps-step p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

/* 順番にフェードイン */
.ps-steps.show .ps-step {
  opacity: 1;
  transform: translateY(0);
}

.ps-steps.show .ps-step:nth-child(2) { transition: 0.6s 0.3s; }
.ps-steps.show .ps-step:nth-child(3) { transition: 0.6s 0.6s; }
.ps-steps.show .ps-step:nth-child(4) { transition: 0.6s 0.9s; }
.ps-steps.show .ps-step:nth-child(5) { transition: 0.6s 1.2s; }

/* ラインアニメーション */
@keyframes psLineDown {
  0%   { height: 0; }
  100% { height: 100%; }
}

@keyframes psGlowDown {
  0%   { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* フェード */
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}


.reason-section {
  padding: 160px 20px 180px;
  background: #fffdfd;
}

.reason-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  color: #333;
}

.reason-title {
  font-size: 28px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.reason-lead {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 56px;
}

/* カード3つ横並び（SPで縦） */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.reason-card {
  position: relative;
  padding: 28px 24px 32px;
  border-radius: 18px;
  background: radial-gradient(circle at 0% 0%, rgba(255,200,230,0.35), transparent 55%),
              #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* カード内の淡い光 */
.reason-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,210,230,0.7), transparent 60%);
  opacity: 0.0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reason-card.show::before {
  opacity: 1;
  transform: translateY(0);
}

.reason-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff7fb5;
  margin-bottom: 12px;
}

.reason-card h3 {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.reason-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

/* フェード共通（前セクションと同じ思想で） */
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.0s ease, transform 1.0s ease;
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* SP対応 */
@media (max-width: 768px) {
  .reason-section {
    padding: 120px 20px 140px;
  }

  .reason-title {
    font-size: 22px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .sp-only {
    display: inline;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}


/* ===========================
   セクション全体
=========================== */
.visual-duo-section {
  position: relative;
  padding: 200px 20px;
  background: #fff7fb;
  overflow: hidden;
}

/* 背景の大画像（薄く・明るく・奥行き） */
.vd-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.9);
  transform: scale(1.05);
}

/* 内側 */
.vd-inner {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===========================
   左右の写真（2枚）
=========================== */
.vd-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* 左の縦長写真 */
.vd-photo.left {
  width: 32%;
  aspect-ratio: 3/4;
  left: 0;
  top: 50%;
  transform: translate(-20%, -50%) rotate(-4deg);
}

/* 右の横長写真 */
.vd-photo.right {
  width: 42%;
  aspect-ratio: 4/3;
  right: 0;
  top: 40%;
  transform: translate(20%, -40%) rotate(3deg);
}

/* 画像 */
.vd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   テキスト（中央に浮かぶ）
=========================== */
.vd-copy {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.vd-copy h2 {
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vd-copy p {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

/* ===========================
   スクロールアニメーション
=========================== */
.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* 写真は少し遅れて出す */
.vd-photo.left.show {
  opacity: 1;
  transform: translate(-20%, -50%) rotate(-4deg);
}

.vd-photo.right.show {
  opacity: 1;
  transform: translate(20%, -40%) rotate(3deg);
}

/* SP対応 */
@media (max-width: 768px) {

  .visual-duo-section {
    padding: 80px 20px 120px; /* 余白を大幅に圧縮 */
  }

  /* 写真の absolute を解除して縦並びに */
  .vd-photo {
    position: relative;
    width: 100% !important;
    height: auto;
    aspect-ratio: 4/3;
    transform: none !important;
    margin: 0 auto 24px;
    opacity: 0;
    border-radius: 14px;
  }

  .vd-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 左右の個別指定を無効化 */
  .vd-photo.left,
  .vd-photo.right {
    left: auto;
    right: auto;
    top: auto;
  }

  /* テキストが写真に被らないように */
  .vd-copy {
    margin-top: 20px;
    text-align: center;
    padding: 0 10px;
    opacity: 0;
  }

  .vd-copy h2 {
    font-size: 22px;
    line-height: 1.6;
  }

  .vd-copy p {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* ===========================
   セクション全体
=========================== */
.feature-section {
  position: relative;
  padding: 180px 20px;
  background: #fff7fb;
  overflow: hidden;
}

/* 背景の淡い光 */
.feature-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,200,230,0.45), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(255,230,200,0.45), transparent 60%);
  opacity: 0.7;
}

/* 内側 */
.feature-inner {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.feature-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.feature-lead {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 60px;
}

/* ===========================
   カード3つ
=========================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px 36px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* カード内の淡い光 */
.feature-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,210,230,0.7), transparent 60%);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.feature-card.show::before {
  opacity: 1;
  transform: translateY(0);
}

/* 物撮り写真 */
.feature-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト */
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

/* ===========================
   スクロールアニメーション
=========================== */
.fade-item.show,
.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* SP対応 */
@media (max-width: 768px) {

  .feature-section {
    padding: 120px 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 24px 20px 32px;
  }

  .feature-title {
    font-size: 24px;
  }
}

/* ===========================
   ベネフィット
=========================== */
.benefit-section-ns {
  position: relative;
  padding: 160px 20px;
  background: #fff7fb;
  overflow: hidden;
}

/* 背景（薄く・柔らかく） */
.benefit-bg-ns img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.9);
  transform: scale(1.05);
}

/* 内側 */
.benefit-inner-ns {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
}

/* PC：左右2カラム */
.benefit-grid-ns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
}

/* 写真 */
.benefit-photo-ns {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.benefit-photo-ns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト */
.benefit-text-ns h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.benefit-lead-ns {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin-bottom: 32px;
}

.benefit-list-ns {
  list-style: none;
  padding: 0;
}

.benefit-list-ns li {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 20px;
}

/* SP対応 */
@media (max-width: 768px) {
  .benefit-section-ns {
    padding: 120px 20px;
  }

  .benefit-grid-ns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefit-text-ns h2 {
    font-size: 22px;
  }

  .benefit-lead-ns {
    font-size: 14px;
  }

  .benefit-list-ns li {
    font-size: 14px;
  }
}


.benefit-section {
  position: relative;
  padding: 200px 20px;
  background: #fff7fb;
  overflow: hidden;
}

/* 背景画像 */
.benefit-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: brightness(0.9) blur(1px);
  transform: scale(1.05);
}

/* 前景テキスト */
.benefit-inner {
  position: relative;
  z-index: 5;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}

.benefit-title {
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.benefit-lead {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin-bottom: 40px;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 12px;
}

/* フェードアニメーション */
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* SP対応 */
@media (max-width: 768px) {

  .benefit-section {
    padding: 140px 20px;
  }

  .benefit-title {
    font-size: 24px;
  }

  .benefit-lead {
    font-size: 14px;
  }

  .benefit-list li {
    font-size: 14px;
  }
}

/* ===========================
   セクション全体
=========================== */
.flow-section {
  position: relative;
  padding: 200px 20px;
  background: #fff7fb;
  overflow: hidden;
}

/* 背景（縦構図） */
.flow-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  opacity: 0.22;
  filter: brightness(0.9) blur(1px);
  transform: scale(1.05);
}

/* 内側 */
.flow-inner {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
}

.flow-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 80px;
  color: #333;
}

/* ===========================
   ステップ全体
=========================== */
.flow-steps {
  position: relative;
  padding-left: 80px;
}

/* 光の縦ライン */
.flow-line {
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, #ff9acb, #ffc8e3);
  border-radius: 999px;
  overflow: visible;
}

.flow-line-glow {
  position: absolute;
  top: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  background: #ffb3d6;
  border-radius: 50%;
  opacity: 0;
}

/* ラインアニメーション */
.flow-steps.show .flow-line {
  animation: flowLineDown 1.6s cubic-bezier(.25,.1,.25,1) forwards;
}

.flow-steps.show .flow-line-glow {
  animation: flowGlowDown 1.6s cubic-bezier(.25,.1,.25,1) forwards;
}

@keyframes flowLineDown {
  0% { height: 0; }
  100% { height: 100%; }
}

@keyframes flowGlowDown {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ===========================
   各ステップ
=========================== */
.flow-step {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.flow-step-photo {
  width: 160px;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.flow-step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-step-text {
  flex: 1;
}

.step-num {
  font-size: 22px;
  font-weight: 700;
  color: #ff7fb5;
}

.flow-step-text h3 {
  font-size: 20px;
  margin: 6px 0 10px;
  color: #333;
}

.flow-step-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

/* スクロールで順番に浮かぶ */
.flow-steps.show .flow-step {
  opacity: 1;
  transform: translateY(0);
}

.flow-steps.show .flow-step:nth-child(2) { transition-delay: 0.3s; }
.flow-steps.show .flow-step:nth-child(3) { transition-delay: 0.6s; }
.flow-steps.show .flow-step:nth-child(4) { transition-delay: 0.9s; }
.flow-steps.show .flow-step:nth-child(5) { transition-delay: 1.2s; }

/* ===========================
   SP対応
=========================== */
@media (max-width: 768px) {

  .flow-section {
    padding: 140px 20px;
  }

  .flow-steps {
    padding-left: 0;
  }

  .flow-line {
    display: none; 
  }

  .flow-step {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }

  .flow-step-photo {
    width: 100%;
  }

  .flow-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}


/* ===========================
   セクション全体
=========================== */
.ring-film-section {
  position: relative;
  padding: 120px 0 160px;
  background: #ffffff;
  overflow: hidden;
}

/* 背景の淡い光（白ベース） */
.ring-film-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 210, 230, 0.35), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(230, 230, 255, 0.4), transparent 60%);
  opacity: 0.7;
  animation: rfBgFlow 16s linear infinite;
}

@keyframes rfBgFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-8%); }
}

.ring-film-inner {
  position: relative;
  z-index: 5;
  padding: 0 20px;
  max-width: 960px;
  margin: 0 auto;
}

/* タイトル（共通） */
.rf-head {
  text-align: center;
  margin-bottom: 60px;
}

.rf-head h2 {
  font-size: 24px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.rf-head p {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

/* 各カット（モバイル主役） */
.rf-block {
  margin-bottom: 56px;
}

.rf-photo {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.rf-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 左右からスライド（モバイル） */
.rf-photo-left {
  transform: translateX(-40px);
}

.rf-photo-right {
  transform: translateX(40px);
}

.rf-photo.show {
  opacity: 1;
  transform: translateX(0);
}

/* テキスト（写真の下に浮かぶ） */
.rf-text {
  margin-top: 18px;
  font-size: 14px;
  line-height: 2;
  color: #444;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.rf-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* フェード共通 */
.rf-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.rf-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   PC拡張
=========================== */
@media (min-width: 1024px) {

  .ring-film-section {
    padding: 180px 0 220px;
  }

  .ring-film-inner {
    padding: 0 40px;
  }

  .rf-head {
    margin-bottom: 80px;
  }

  .rf-head h2 {
    font-size: 32px;
  }

  .rf-head p {
    font-size: 15px;
  }

  .rf-block {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
  }

  /* 交互に左右入れ替え */
  .rf-block:nth-child(2) .rf-photo { order: 1; }
  .rf-block:nth-child(2) .rf-text  { order: 2; text-align: left; }
  .rf-block:nth-child(3) .rf-photo { order: 2; }
  .rf-block:nth-child(3) .rf-text  { order: 1; text-align: right; }
  .rf-block:nth-child(4) .rf-photo { order: 1; }
  .rf-block:nth-child(4) .rf-text  { order: 2; text-align: left; }

  .rf-photo {
    max-width: 520px;
    transform: translateX(60px);
  }

  .rf-photo-left {
    transform: translateX(-60px);
  }

  .rf-photo-right {
    transform: translateX(60px);
  }

  .rf-text {
    font-size: 15px;
    line-height: 2.1;
    margin-top: 0;
  }
}

/* ===========================
   会場セクション
=========================== */
.venue-section-ns {
  position: relative;
  padding: 40px 20px;
  background: #fffdfd;
}

/* 内側（PCは左右に余白を広めに） */
.venue-inner-ns {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px; /* ← PC余白 */
}

/* タイトル */
.venue-title-ns {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* 説明文 */
.venue-lead-ns {
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 40px;
}

/* ===========================
   グリッド
=========================== */
.venue-grid-ns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* カード */
.venue-card-ns {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.venue-card-ns img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.venue-caption-ns {
  font-size: 14px;
  padding: 12px 0 14px;
  color: #444;
}

/* 注意書き */
.venue-note-ns {
  text-align: center;
  font-size: 12px;
  margin-top: 32px;
  color: #777;
}

/* ===========================
   SP対応
=========================== */
@media (max-width: 768px) {

  .venue-section-ns {
    padding: 120px 20px;
  }

  .venue-inner-ns {
    padding: 0 10px; 
  }

  .venue-title-ns {
    font-size: 22px;
  }

  .venue-lead-ns {
    font-size: 14px;
  }

  .venue-card-ns img {
    height: 140px;
  }
}

/* ===========================
   旅行・グランピングセクション
=========================== */
.travel-section-ns {
  position: relative;
  padding: 40px 20px;
  background: #fffdfd;
}

/* 内側（PCは左右に余白） */
.travel-inner-ns {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* タイトル */
.travel-title-ns {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* 説明文 */
.travel-lead-ns {
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 40px;
}

/* ===========================
   グリッド
=========================== */
.travel-grid-ns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* カード */
.travel-card-ns {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.travel-card-ns img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.travel-caption-ns {
  font-size: 14px;
  padding: 12px 0 14px;
  color: #444;
}

/* ===========================
   SP対応
=========================== */
@media (max-width: 768px) {

  .travel-section-ns {
    padding: 120px 20px;
  }

  .travel-inner-ns {
    padding: 0 10px;
  }

  .travel-title-ns {
    font-size: 22px;
  }

  .travel-lead-ns {
    font-size: 14px;
  }

  .travel-card-ns img {
    height: 150px;
  }
}


/* ===========================
   CTA
=========================== */
.cta-night-section {
  position: relative;
  padding: 120px 20px 160px;
  background: #000;
  overflow: hidden;
  text-align: center;
}

.cta-night-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(255,120,180,0.35), transparent 70%),
    radial-gradient(circle at 50% 120%, rgba(255,80,150,0.25), transparent 70%);
  opacity: 0.8;
  animation: ctaGlow 12s linear infinite;
}

@keyframes ctaGlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6%); }
}

.cta-night-inner {
  position: relative;
  z-index: 5;
  max-width: 960px;
  margin: 0 auto;
}

.cta-title {
  font-size: 26px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 14px;
  line-height: 2;
  color: #f7d7e8;
  margin-bottom: 32px;
}

/* ラベル */
.cta-label {
  margin: 0 auto 26px;
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #ffe3f5;
  border-radius: 999px;
  border: 1px solid rgba(255, 180, 220, 0.7);
  background: rgba(0, 0, 0, 0.35);
}

/* ===========================
   相談バナー
=========================== */
.consult-banner-inner {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.consult-card {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 14px;
  padding: 20px 18px 22px;
  color: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.consult-line {
  border: 1px solid rgba(0, 255, 120, 0.6);
}

.consult-form {
  border: 1px solid rgba(255, 200, 230, 0.7);
}

.consult-lead {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ffe3f0;
}

.consult-body {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #f8f0f4;
}

/* ボタン */
.consult-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.consult-btn-line {
  background: linear-gradient(135deg, #00c300, #4be35f);
  color: #0b240b;
  box-shadow: 0 10px 26px rgba(0, 195, 0, 0.45);
}

.consult-btn-form {
  background: linear-gradient(135deg, #ff4f9a, #ff7ac5);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 80, 150, 0.45);
}

.consult-btn-note {
  font-size: 11px;
  opacity: 0.9;
}

/* hover（PC） */
@media (hover: hover) {
  .consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6);
    opacity: 0.96;
  }
}

/* フェード */
.cb-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.cb-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   PCレイアウト
=========================== */
@media (min-width: 768px) {

  .cta-night-section {
    padding: 160px 20px 200px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-sub {
    font-size: 16px;
  }

  .consult-banner-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .consult-card {
    padding: 24px 22px 26px;
  }

  .consult-lead {
    font-size: 15px;
  }

  .consult-body {
    font-size: 14px;
  }

  .consult-btn {
    font-size: 16px;
  }
}

/* ===========================
   お問い合わせフォーム
=========================== */
.contact-section {
  padding: 80px 20px;
  background: #fff;
}

.contact-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 40px;
  color: #333;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.req {
  background: #ff4f9a;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fafafa;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 4px;
}

.contact-btn {
  margin-top: 20px;
  padding: 14px 0;
  background: #ff4f9a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}

.contact-btn:hover {
  opacity: 0.85;
}

/* ===========================
   代表挨拶セクション
=========================== */
.greeting-section-ns {
  position: relative;
  padding: 160px 20px;
  background: #fffdfd;
}

.greeting-inner-ns {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.greeting-title-ns {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}

/* PC：横並び */
.greeting-grid-ns {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* 写真 */
.greeting-photo-ns {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.greeting-photo-ns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 文章 */
.greeting-text-ns p {
  font-size: 15px;
  line-height: 2;
  color: #444;
  margin-bottom: 18px;
  font-weight: 600;
}

.greeting-sign-ns {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

/* SP対応 */
@media (max-width: 768px) {

  .greeting-section-ns {
    padding: 30px 20px;
  }

  .greeting-inner-ns {
    padding: 0 10px;
  }

  .greeting-title-ns {
    font-size: 22px;
  }

  .greeting-grid-ns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .greeting-photo-ns {
    aspect-ratio: 4/3;
  }

  .greeting-text-ns p {
    font-size: 14px;
  }
}

/* ===========================
   代表挨拶：
=========================== */
@media (min-width: 769px) {
  .greeting-grid-ns {
    align-items: center !important; 
  }

  .greeting-photo-ns {
    align-self: center !important;  
  }
}


/* ===========================
   会社情報
=========================== */
.company-section {
  position: relative;
  padding: 40px 20px;
  background: #fff;
  overflow: hidden;
}

/* 背景画像 */
.company-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/wedding14.png'); 
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  transform: scale(1);
  transition: transform 1.8s ease-out;
}

/* スクロールで拡大 */
.company-bg.scale {
  transform: scale(1.15);
}

.company-inner {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
}

.company-title {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

/* テーブル */
.company-table {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.company-table .row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 18px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.company-table .row:last-child {
  border-bottom: none;
}

.company-table .th {
  color: #888;
  font-size: 14px;
  padding-right: 10px;
}

.company-table .td {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}

/* PC拡張 */
@media (min-width: 768px) {
  .company-title {
    font-size: 32px;
  }

  .company-table {
    padding: 30px 32px;
  }

  .company-table .row {
    padding: 22px 10px;
  }

  .company-table .th,
  .company-table .td {
    font-size: 15px;
  }
}
/* ===========================
   下部固定バナー
=========================== */
.ns-bottom-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -300px;
  width: 100%;
  padding: 18px 14px 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 150, 200, 0.25);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
  color: #fff;
  z-index: 99999;
  transition: bottom 0.45s ease-out;
  text-align: center;
}

.ns-bottom-banner.show {
  bottom: 0;
}

/* ===========================
   テキスト
=========================== */
.ns-banner-text {
  margin-bottom: 10px;
}

.ns-banner-lead {
  font-size: 12px;
  line-height: 1.6;
  color: #ffe3f5;
}

.ns-banner-sub {
  font-size: 11px;
  margin-top: 4px;
}

/* ===========================
   ボタン横並び
=========================== */
.ns-banner-buttons {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
  align-items: stretch; 
}

/* ===========================
   ボタン
=========================== */
.ns-banner-btn {
  width: 50%;
  flex: none;

  height: 48px;         
  padding: 0;            
  line-height: 48px;   

  display: flex;
  align-items: center;  
  justify-content: center;

  gap: 6px;
  font-size: 13px;
  font-weight: 700;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}

/* アイコン */
.ns-banner-btn i {
  font-size: 16px;
  line-height: 1;
  display: inline-block;
}

/* 色 */
.ns-line {
  background: #06C755;
}

.ns-contact {
  background: #ff4f9a;
}

/* 注意書き */
.ns-banner-note {
  font-size: 10px;
  margin-top: 8px;
  color: #ddd;
  line-height: 1.5;
}

/* ===========================
   モーダル全体
=========================== */
.ns-pp-open {
  display: inline-block !important;
  margin: 0 auto !important;
  text-align: center !important;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 50px;
}

.ns-pp-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 999999;
}

/* 背景の暗幕 */
.ns-pp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

/* モーダル本体 */
.ns-pp-content {
  position: relative;
  width: min(90%, 720px);
  max-height: 80vh;
  background: rgba(0,0,0,0.55);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,150,200,0.35);
}

/* 背景画像（薄く） */
.ns-pp-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: brightness(0.9) blur(1px);
  transform: scale(1.05);
  z-index: -1;
}

/* タイトル */
.ns-pp-title {
  text-align: center;
  font-size: 24px;
  padding: 20px 0 10px;
  color: #ffe3f5;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* スクロールエリア */
.ns-pp-scroll {
  max-height: 60vh;
  overflow-y: auto;
  padding: 20px 28px 30px;
  color: #f7eaf2;
  line-height: 1.9;
  font-size: 14px;
}

/* スクロールバー */
.ns-pp-scroll::-webkit-scrollbar {
  width: 6px;
}

.ns-pp-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,150,200,0.6);
  border-radius: 999px;
}

/* 見出し */
.ns-pp-scroll h3 {
  font-size: 16px;
  margin: 20px 0 8px;
  color: #ffb8d8;
}

/* 閉じるボタン */
.ns-pp-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* 開くボタン（任意） */
.ns-pp-open {
  background: #ff4f9a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* SP対応 */
@media (max-width: 768px) {
  .ns-pp-title {
    font-size: 20px;
  }

  .ns-pp-scroll {
    font-size: 13px;
    padding: 18px 20px 26px;
  }
}
