/* ============================================
   BASE / RESET
============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand: #EF8200;
  --brand-dark: #D47300;
  --brand-light: #FFF7EE;
  --black: #222222;
  --dark: #333333;
  --gray: #707070;
  --gray-light: #A8A8A8;
  --border: #E5E0DA;
  --bg: #FAF8F5;
  --bg-warm: #F3F0EB;
  --white: #FFFFFF;
  --sans: 'Noto Sans JP', sans-serif;
  --serif: 'Noto Serif JP', serif;
  --max-w: 1000px;
  --gutter: 24px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/*body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.95;
  overflow-x: hidden;
}*/

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   共通パーツ
============================================= */
.heading-main {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--black);
  text-align: center;
  margin-bottom: 20px;
}

.heading-main--left { text-align: left; }

.heading-sub {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 20px;
}

.section-lead {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: -24px;
  margin-bottom: 48px;
}

.text-small { font-size: 0.8rem; color: var(--gray); }

.btn-primary {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 16px 44px;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.15s ease;
  letter-spacing: 0.04em;
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.cta-wrap { text-align: center; margin-top: 56px; }

/* プレースホルダー */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.img-placeholder span { font-size: 0.8rem; color: var(--gray-light); }

.img-placeholder--wide { aspect-ratio: 16 / 10; }
.img-placeholder--step { aspect-ratio: 4 / 3; }
.img-placeholder--gallery { aspect-ratio: 4 / 3; }
.img-placeholder--scene { aspect-ratio: 3 / 2; }
.img-placeholder--voice { aspect-ratio: 4 / 3; }
.img-placeholder--staff { aspect-ratio: 3 / 2; }

/* オレンジ下線アクセント */
.underline-accent {
  text-decoration: none;
  background:linear-gradient(transparent 70%, #ef8200 70%);
  padding-bottom: 2px;
}

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

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SEC1 | ファーストビュー
============================================= */
.sec-fv {
  position: relative;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.postid-32738 .sec-fv{
  min-height: 800px;
}
.postid-36475 .sec-fv{
  min-height: 600px;
}


.fv-bg {
  position: absolute;
  inset: 0;
  background-color: #2a2420;
  background-image: url('https://images.unsplash.com/photo-1510915361894-db8b60106cb1?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.fv-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 28, 22, 0.45) 0%,
    rgba(34, 28, 22, 0.7) 100%
  );
}

.fv-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
}

.fv-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.fv-sub {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.14em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.fv-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.fv-meta span {
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 14px;
  border-radius: 3px;
}

.sec-fv .btn-primary {
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

/* ============================================
   SEC2 | 理想の暮らし
============================================= */
.sec-dream {
  padding: 100px 0;
  background: var(--white);
}

.dream-grid {
  max-width: 880px;
  margin: 0 auto;
}

.dream-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
}

.dream-scene:last-child { margin-bottom: 0; }
.dream-scene--reverse { direction: rtl; }
.dream-scene--reverse > * { direction: ltr; }

.dream-scene-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 12px;
}

.dream-scene-text p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 2;
}

.dream-summary {
  max-width: 640px;
  margin: 64px auto 0;
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.dream-summary p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.8;
}

/* ============================================
   SEC3 | 問題提起
============================================= */
.sec-problem {
  padding: 100px 0;
  background: var(--bg);
}

.problem-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}

.problem-img-wrap { margin-bottom: 20px; }

.problem-block-title {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.problem-block-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 2;
}

.problem-message {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.problem-message p {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 2;
}

.problem-message strong { color: var(--brand); }

/* ============================================
   SEC4 | 気密性能 + C値
============================================= */
.sec-performance {
  padding: 100px 0;
  background: var(--white);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.split-row--reverse { direction: rtl; }
.split-row--reverse > * { direction: ltr; }

.split-text p {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 2;
}

.split-text strong { color: var(--brand); }

.performance-cvalue-row {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

.proof-cvalue {
  margin: 10px 0;
  padding: 15px 0 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-label { font-size: 0.8rem; color: var(--gray); margin-bottom: 4px; }

.proof-number {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1!important;
}

.proof-number strong {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.proof-number span {
  font-size: 0.85rem;
  color: var(--gray);
  margin-left: 4px;
}

/* ============================================
   SEC5 | 体験の紹介
============================================= */
.sec-experience {
  padding: 100px 0;
  background: var(--bg);
}

.exp-step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}

.exp-step-row--reverse { direction: rtl; }
.exp-step-row--reverse > * { direction: ltr; }

.exp-step-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.exp-step-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.6;
}

.exp-step-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 2;
}

.exp-step-content strong { color: var(--brand); font-weight: 700; }

.exp-step-row--highlight .exp-step-title {
  color: var(--brand);
  font-size: 1.25rem;
}

.exp-step-row--highlight .exp-step-content {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--brand);
}

/* ============================================
   SEC6 | オーナーさまの声（2件）
============================================= */
.sec-voice {
  padding: 100px 0;
  background-color: #FAF8F6;
}

.voice-row {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}

.voice-row:last-child { margin-bottom: 0; }
.voice-row--reverse { direction: rtl; }
.voice-row--reverse > * { direction: ltr; }

.voice-quote {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.voice-quote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.3;
  position: absolute;
  top: -4px;
  left: 0;
}

.voice-name {
  font-size: 0.8rem;
  color: var(--gray);
  padding-left: 24px;
}

/* ============================================
   SEC7 | Regardの紹介
============================================= */
.sec-about {
  padding: 100px 0;
  background: var(--white);
}

.about-text {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 2;
}

.about-text strong { color: var(--brand); }

/* --- about-gallery: スライダー（PC・SP共通ベース） --- */

/* containerを突き抜けて全幅に広げるラッパー */
.about-gallery-wrap {
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(var(--gutter), calc(50vw - var(--max-w) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc(50vw - var(--max-w) / 2 + var(--gutter)));
}

.about-gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-gallery::-webkit-scrollbar {
  display: none;
}

/* PC版：3枚が見える幅で固定、4・5枚目はスクロール */
.about-gallery .gallery-item {
  flex: 0 0 calc((min(var(--max-w), 100vw) - var(--gutter) * 2 - 14px * 2) / 3);
  scroll-snap-align: start;
}

.about-gallery .gallery-item .img-placeholder--gallery {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

/* --- ナビゲーションドット --- */
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.gallery-dot.is-active {
  background: var(--brand);
  transform: scale(1.3);
}

/* ============================================
   SEC8 | スタッフメッセージ
============================================= */
.sec-staff-message {
  padding: 80px 0;
  background: var(--bg);
}

.staff-message-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.staff-comment {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 16px;
}

.staff-names {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   SEC9 | FAQ
============================================= */
.sec-faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--brand); }
.faq-q-label { font-weight: 700; color: var(--brand); flex-shrink: 0; }
.faq-q span:nth-child(2) { flex: 1; }

.faq-toggle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-light);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
}

.faq-item.is-open .faq-toggle { transform: rotate(45deg); color: var(--brand); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}

.faq-item.is-open .faq-a { max-height: 300px; padding-bottom: 22px; }

.faq-a p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 2;
  padding-left: 32px;
}

/* ============================================
   SEC10 | 最終CTA（シンプル化）
============================================= */
.sec-reserve {
  padding: 80px 0 100px;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}

.reserve-lead {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 32px;
}

.reserve-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.reserve-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 3px;
  background: var(--white);
}

.reserve-notes {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
}

.reserve-notes h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.reserve-notes li {
  position: relative;
  padding-left: 16px;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 6px;
  line-height: 1.8;
}

.reserve-notes li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--gray-light);
}

.reserve-form-area {
  max-width: 600px;
  margin: 0 auto 48px;
}

.form-placeholder {
  background: var(--white);
  border: 1px dashed var(--border);
  padding: 20px 20px;
  border-radius: 4px;
}

iframe#formArea{
  height:400px;
}

.form-placeholder p { font-size: 0.85rem; color: var(--gray-light); }

.reserve-contact {
  max-width: 400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.reserve-contact p { font-size: 0.85rem; color: var(--gray); margin-bottom: 4px; }
.reserve-tel { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.reserve-tel a { color: var(--dark); }
.reserve-tel a:hover { color: var(--brand); }

/* ============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE - SP（768px以下）
============================================= */
@media (max-width: 768px) {
  .heading-main { font-size: 1.4rem; margin-bottom: 32px; }
  .fv-title { font-size: 1.65rem; }
  .btn-primary { padding: 14px 32px; font-size: 0.9rem; }

  .problem-two-col,
  .split-row, .split-row--reverse,
  .exp-step-row, .exp-step-row--reverse,
  .dream-scene, .dream-scene--reverse,
  .voice-row, .voice-row--reverse,
  .staff-message-inner {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }

  .split-row--reverse > *,
  .exp-step-row--reverse > *,
  .dream-scene--reverse > *,
  .voice-row--reverse > * { direction: ltr; }

  .exp-step-row--reverse .exp-step-img,
  .dream-scene--reverse .dream-scene-img,
  .voice-row--reverse .voice-img { order: -1; }

  .split-row--reverse .split-img { order: -1; }
  .img-placeholder--tall { min-height: 240px; aspect-ratio: 4 / 3; }
  /* SP: ラッパーのpadding上書き（画面端からgutter分の余白） */
  .about-gallery-wrap {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .about-gallery .gallery-item {
    flex: 0 0 82%;
  }
  .info-table th { width: 100px; font-size: 0.82rem; }
  .reserve-notes { padding: 20px 24px; }
  .exp-step-row--highlight .exp-step-content { padding-left: 16px; }
  .performance-cvalue-row { margin-top: 48px; padding-top: 48px; }
  .dream-summary { margin-top: 48px; padding-top: 36px; }
}

@media (max-width: 480px) {
  .fv-title { font-size: 1.35rem; }
  .heading-main { font-size: 1.2rem; }
  .proof-number strong { font-size: 2.2rem; }
}

/* ============================================
   PC版フォントサイズ統一体系（769px以上）
   
   設計思想：
   - スマホ版のサイズはそのまま維持（モバイルファースト）
   - PC版のみ、一回り大きく＋同階層を統一サイズに
   
   階層体系：
   H1  FVタイトル .......... 2.75rem
   H2  セクション見出し ...... 2rem
   H3  セクション内小見出し .. 1.25rem（highlight: 1.35rem）
   本文 .................... 1rem
   リード・サブ見出し ....... 1.05rem
   CTA・FAQ質問 ............ 1rem
   FAQ回答 ................. 0.95rem
   補足テキスト ............. 0.88rem
   メタ情報 ................ 0.82rem
============================================= */
@media (min-width: 769px) {

  /* --- H1：FVタイトル --- */
  .fv-title {
    font-size: 2.75rem;
  }

  /* --- H2：セクション見出し（全セクション統一） --- */
  .heading-main {
    font-size: 2rem;
  }

  /* --- H3：セクション内小見出し（全セクション統一 1.25rem） --- */
  .dream-scene-title,
  .problem-block-title,
  .exp-step-title,
  .heading-sub {
    font-size: 1.25rem;
  }

  /* --- H3 highlight版（Step04のみ少し大きく） --- */
  .exp-step-row--highlight .exp-step-title {
    font-size: 1.35rem;
  }

  /* --- heading-sub（モデルハウス名など） --- */
  .heading-sub {
    font-size: 1.4rem;
  }

  /* --- 本文（全セクション統一 1rem） --- */
  .dream-scene-text p,
  .problem-block-text,
  .exp-step-content p,
  .split-text p,
  .about-text p,
  .problem-message p,
  .staff-comment,
  .voice-quote {
    font-size: 0.9rem;
  }

  /* --- リード文・サブ見出し（統一 1.05rem） --- */
  .section-lead,
  .fv-sub,
  .reserve-lead {
    font-size: 1.05rem;
  }

  /* --- まとめ・強調テキスト --- */
  .dream-summary p {
    font-size: 1.2rem;
  }

  /* --- CTA・FAQ質問（統一 1rem） --- */
  .btn-primary {
    font-size: 1rem;
  }

  .faq-q {
    font-size: 1rem;
  }

  /* --- FAQ回答（統一 0.95rem） --- */
  .faq-a p {
    font-size: 0.95rem;
  }

  /* --- Stepナンバー --- */
  .exp-step-num {
    font-size: 0.82rem;
  }

  /* --- C値の数値表示 --- */
  .proof-number strong {
    font-size: 3rem;
  }

  .proof-number span {
    font-size: 0.9rem;
  }

  .proof-label {
    font-size: 0.85rem;
  }

  /* --- 補足テキスト（統一 0.88rem） --- */
  .text-small,
  .voice-name,
  .staff-names,
  .reserve-notes h3,
  .reserve-contact p {
    font-size: 0.88rem;
  }

  .reserve-notes li {
    font-size: 0.88rem;
  }

  /* --- メタ情報（統一 0.82rem） --- */
  .fv-meta span,
  .reserve-meta span {
    font-size: 0.82rem;
  }

  /* --- 電話番号 --- */
  .reserve-tel {
    font-size: 1.4rem;
  }
}

.postid-32738 .m-single{
  max-width: 1280px;
}
.postid-32738 .lp03-inner{
  max-width: 820px;
  margin: 0 auto;
}
.postid-32738 .m-single{
  padding: 0;
  border: none;
}
.postid-32738 .wysiwyg,
.postid-36475 .wysiwyg{
  margin-top: 0;
}
.postid-32738 .m-single__box,
.postid-32738 .m-single__title,
.postid-32738 .m-single__infoBox{
  display: none;
}
.wysiwyg .ai-lp03 h2{
  margin-top: 0;
  padding: 0;
  border: none;
  font-size:  2rem;
  line-height: 1.6;
  font-weight: bold;
}
.wysiwyg .ai-lp03 h2::after{
  display: none;
}
.wysiwyg .ai-lp03 h3{
  font-weight: bold;
  padding-bottom: 0;
  font-size: 1.2rem;
  margin-top: 0;
}
.wysiwyg .ai-lp03 h3:after{
  display: none;
}
.wysiwyg .ai-lp03 h2+*,
.wysiwyg .ai-lp03 h3+* {
    margin-top: 0;
}
.wysiwyg .ai-lp03 a {
    color: #fff;
    text-decoration: none;
}
.form-placeholder a{
    color: var(--gray-light)!important;
}
.reserve-tel a{
  color: #000!important;
}
.m-single .ai-lp03 #formArea{
  height: 400px;
}
.reserve-notes h3 {
  font-size: 0.85rem!important;
  font-weight: 700;
}
.reserve-notes li {
  font-size: 0.82rem!important;
}
.reserve-notes li::after{
  display: none;
}
@media screen and (max-width: 1199px) {
  .postid-32738 .sec-fv{
    min-height: 700px;
  }
}
@media screen and (max-width: 991px) {
  .postid-32738 .sec-fv{
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  .postid-36475 .sec-fv{
    min-height: 400px;
  }
  .heading-main {
      font-size: 1.4rem!important;
      margin-bottom: 15px;
  }
  .sec-dream .container,
  .sec-performance .container {
    padding: 0;
  }
  .sec-problem,
  .sec-experience,
  .sec-voice,
  .sec-staff-message,
  .sec-reserve{
    margin-left: -25px;
    width: calc(100% + 50px);
  }
}
@media (max-width: 480px) {
  .heading-main {
      font-size: 1.2rem!important;
  }
  .wysiwyg .ai-lp03 h3 {
    font-size: 1.1rem;
  }

}
@media screen and (min-width: 769px) {
    .wysiwyg .ai-lp03 p+p {
         margin-top: 0; 
    }
}
