/* ===================================================
   group.css — 団体向けワークショップLP
   index.html の <style> を WordPress 用に再現
=================================================== */

/* ===================== WP THEME OVERRIDES ===================== */
.page-template-group {
  --font-family: 'Zen Maru Gothic', 'Montserrat', sans-serif;
}
.page-template-group,
.page-template-group * {
  font-family: 'Zen Maru Gothic', 'Montserrat', sans-serif !important;
  box-sizing: border-box;
}

:where(.page-template-group) h1,
:where(.page-template-group) h2,
:where(.page-template-group) h3,
:where(.page-template-group) h4,
:where(.page-template-group) h5,
:where(.page-template-group) h6,
:where(.page-template-group) p,
:where(.page-template-group) ul,
:where(.page-template-group) ol,
:where(.page-template-group) li,
:where(.page-template-group) figure {
  margin: 0;
  padding: 0;
}

.page-template-group img {
  display: block;
}

.page-template-group .hero-bg-photo img,
.page-template-group .photo-main-circle img,
.page-template-group .photo-thumb-circle img,
.page-template-group .s02-card-photo img,
.page-template-group .s03-deco-circle img,
.page-template-group .s03-card-image > img,
.page-template-group .s04-photo-main img,
.page-template-group .s04-photo-sub img,
.page-template-group .s05-col-photo img,
.page-template-group .s06-voice-avatar img,
.page-template-group .s08-right img,
.page-template-group .s-final-photo img { width: 100%; height: 100%; object-fit: cover; }

.page-template-group a { color: inherit; text-decoration: none; }
.page-template-group a:hover { text-decoration: none; }
.page-template-group .btn-consult { color: #fff !important; letter-spacing: normal !important; }

.page-template-group .section-title { text-align: left !important; }
.page-template-group .features-grid { text-align: left !important; }

.page-template-group .hero {
  position: relative !important;
  overflow: hidden !important;
  background: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  color: var(--text) !important;
  min-height: auto !important;
}

.page-template-group .hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(38px, 5vw, 60px) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: var(--text) !important;
  margin-bottom: 20px !important;
}
.page-template-group .hero-content h1 { font-size: clamp(38px, 5vw, 60px) !important; }
.page-template-group .hero-content p:not(.hero-area-limit) { margin-bottom: 0 !important; }
.page-template-group .hero-area-limit { font-size: 13px !important; }
.page-template-group .hero-catch p { font-size: 18px !important; }
.page-template-group .hero-content .hero-catch .quote { font-size: 22px !important; }
.page-template-group .hero-content p.hero-body-text { font-size: 14px !important; }

.page-template-group .faq-question::before,
.page-template-group .faq-question::after { display: none !important; content: none !important; }
.page-template-group .faq-q.faq-question { background: var(--green-pale) !important; border: none !important; padding: 18px 20px !important; }

/* フッターへの変数汚染防止 */
.page-template-group .footer-nav,
.page-template-group .footer-navigation,
.page-template-group .site-footer nav,
.page-template-group .widget_nav_menu { background: transparent !important; }

/* ===================== CSS VARIABLES ===================== */
:root {
  --green: #668e47;
  --green-light: #85ab61;
  --green-dark: #4a6b32;
  --green-pale: #eaf2e3;
  --green-pale2: #f3f7ed;
  --orange: #e87d29;
  --text: #2c2c2c;
  --text-light: #555;
  --cream: #faf8f3;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(102,142,71,0.12);
}

/* ===================== HERO ===================== */
.hero-bg-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.45) 12%,
    rgba(255,255,255,0.05) 30%,
    transparent 45%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-bg-photo img { object-position: center top; }

.hero-badge-corner {
  position: absolute;
  top: 28px; right: 0px;
  z-index: 3;
  transform: rotate(6deg);
  transform-origin: center center;
}
.hero-badge-corner img { width: 70%; }

.hero-body {
  position: relative;
  z-index: 2;
  padding: 48px 48px 0;
  min-height: 380px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 46%;
  padding-bottom: 28px;
}

.tag-pill {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 5px 16px; border-radius: 20px;
  margin-bottom: 20px; letter-spacing: 0.04em;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700; line-height: 1.25;
  color: var(--text); margin-bottom: 20px;
}
.hero-title .accent { color: var(--orange); }

.hero-catch {
  font-size: 18px; color: var(--text);
  line-height: 2; margin-bottom: 22px;
}
.hero-catch .quote { font-weight: 700; font-size: 22px; }
.hero-catch .highlight { font-size: 22px; color: var(--green); font-weight: 700; }
.hero-catch .accent { font-size: 28px; color: var(--orange); }

.feature-icons {
  display: flex; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.feature-icon-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-light); font-weight: 500;
}
.icon-box {
  width: 52px; height: 52px; border-radius: 34px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.icon-box img { width: 40px; height: 40px; object-fit: contain; }
.icon-line   { background: #e8faf0; }
.icon-photo  { background: #fff3e0; }
.icon-ai     { background: #e3f2fd; }
.icon-fraud  { background: #eaf2e3; }
.icon-map    { background: #fff8e1; }

.hero-body-text { font-size: 14px; line-height: 2; color: var(--text-light); }

.hero-area-limit {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 0;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-area-box {
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px rgba(102,142,71,0.13);
  display: inline-block;
  max-width: 100%;
}
.hero-area-box-lead {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.hero-area-box-tags {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.75;
}

.hero-bottom {
  position: relative;
  z-index: 5;
  padding: 0 48px 0 44%;
}

.hero-pricing-bar {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(102,142,71,0.10);
  margin-bottom: 16px;
  overflow: hidden;
}

.hero-pricing-content {
  display: grid;
  grid-template-columns: auto 1fr auto minmax(0, 1fr);
  align-items: center;
  gap: 0 14px;
  padding: 18px 20px;
}

.pricing-label {
  font-size: 12px; font-weight: 700;
  color: var(--green); background: var(--green-pale);
  padding: 7px 12px; border-radius: 10px;
  text-align: center; line-height: 1.6; white-space: nowrap;
  border: 1.5px solid rgba(102,142,71,0.2); flex-shrink: 0;
}

.pricing-info {
  display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 0;
}
.pricing-per { font-size: 13px; color: var(--text-light); white-space: nowrap; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; white-space: nowrap; }
.pricing-price .amount {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900;
  color: var(--orange); line-height: 1;
}
.pricing-price .yen { font-size: clamp(16px, 2vw, 22px); font-weight: 700; color: var(--orange); }

.pricing-divider {
  width: 1px; height: 40px;
  background: rgba(0,0,0,0.1); flex-shrink: 0;
}

.pricing-btns {
  display: flex; flex-direction: column;
  gap: 8px; min-width: 0;
}

.btn-consult {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex: 1;
  background: var(--orange); color: #fff;
  font-size: clamp(12px, 1.1vw, 14px); font-weight: 700;
  padding: clamp(6px, 1.0vw, 8px) clamp(10px, 1.5vw, 18px);
  border-radius: 24px;
  text-decoration: none; white-space: nowrap;
  cursor: pointer; transition: opacity 0.2s, transform 0.15s;
  min-width: 0;
}
.btn-consult:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-consult svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-area-band {
  background: rgba(74, 107, 50, 0.88);
  padding: 10px 20px;
}
.hero-area-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-area-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-right: 12px;
  white-space: nowrap;
}
.hero-area-tags {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .hero-area-band { padding: 10px 20px; }
  .hero-area-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero-area-title { white-space: normal; }
}

/* ===================== WAVE ===================== */
.hero-wave {
  position: relative; width: 100%;
  line-height: 0; z-index: 4;
  pointer-events: none; margin-top: 0;
}
.hero-wave svg { display: block; width: 100%; }

.wave-divider {
  width: 100%; overflow: hidden;
  line-height: 0; display: block;
}
.wave-divider svg { display: block; width: 100%; }

/* ===================== SECTION INTRO ===================== */
.section-intro {
  background: #fff;
  padding: 0 40px 48px;
}
.intro-top {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 36px;
}
.intro-top-body {
  flex: 1;
  min-width: 0;
}
.intro-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 40px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1.5;
  text-align: center;
  min-width: 140px;
}
.intro-heading {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
}
.intro-sub {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0;
}
.intro-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.intro-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 20px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.intro-card-icon,
.intro-card-title,
.intro-card-text { max-width: 70%; }
.intro-card-img {
  position: absolute;
  right: 0; top: 0;
  width: 30%; height: 100%;
  object-fit: cover;
  border-radius: 0 16px 16px 0;
  pointer-events: none;
}
.intro-card-icon {
  width: 48px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.intro-card-title { font-size: 13px; font-weight: 700; color: var(--green-dark); line-height: 1.4; }
.intro-card-text { font-size: 12px; color: var(--text-light); line-height: 1.7; }
@media (max-width: 820px) {
  .section-intro { padding: 40px 20px 36px; }
  .intro-top { flex-direction: column; gap: 16px; }
  .intro-badge { white-space: normal; min-width: unset; align-self: flex-start; }
  .intro-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .intro-features { grid-template-columns: 1fr; }
}

/* ===================== SECTION 01 ===================== */
.section-01 { background: var(--cream); padding: 72px 40px 60px; overflow: hidden; }
.section-inner { max-width: 1100px; margin: 0 auto; }

@media (max-width: 820px) {
  .section-inner,
  .s04-inner,
  .s05-header-wrap,
  .s05-cols,
  .s06-header,
  .s06-body,
  .s06-voices,
  .s08-inner,
  .faq-inner,
  .s-final-inner { padding-left: 16px; padding-right: 16px; }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}
.section-header-title-block { padding-top: 0; }
.section-title {
  font-size: clamp(22px, 3.5vw, 36px);
  white-space: nowrap;
  font-weight: 900; line-height: 1.4;
  margin-bottom: 0;
  display: inline-block;
  border-bottom: 2.5px solid rgba(102,142,71,0.40);
  padding-bottom: 12px;
}
.section-title .accent { color: var(--green); }

.section-num-badge {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--green);
  color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(102,142,71,0.30);
}
.section-num-badge.orange {
  background: var(--orange);
  box-shadow: 0 4px 16px rgba(232,125,41,0.30);
}
.section-num-badge .section-label {
  font-size: 8px; letter-spacing: 0.12em; opacity: 0.9; font-weight: 700;
  margin-bottom: 1px;
}
.section-num-badge .section-number {
  font-size: 30px; font-weight: 900; line-height: 1;
}

.s01-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0 24px;
  align-items: start;
}
.s01-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 0;
}

.s01-text p { font-size: 15px; line-height: 1.85; color: var(--text-light); margin-bottom: 6px; }
.s01-text p:last-child { margin-bottom: 0; }
.s01-text .bold-green { font-weight: 700; color: var(--green); font-size: 16px; }
.s01-text .warm { color: var(--orange); font-weight: 700; }

/* ===================== PHOTO CLUSTER ===================== */
.photo-cluster {
  position: relative;
  height: 500px;
  margin-right: -80px;
}

.photo-main-circle {
  width: 370px; height: 352px;
  border-radius: 55% 45% 48% 52% / 42% 44% 56% 58%;
  overflow: hidden;
  background: #c5e8cc;
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 12px 40px rgba(102,142,71,0.20);
}

.photo-thumb-circle {
  width: 200px; height: 192px;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.thumb-tr {
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  top: 10px; right: 20px;
  background: #b3d9f5;
}
.thumb-br {
  border-radius: 50% 40% 45% 55% / 55% 50% 45% 50%;
  bottom: 10px; right: 30px;
  background: #f5c6a0;
}

.photo-bubble {
  position: absolute;
  padding: 38px 24px;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.65;
  white-space: nowrap;
}
.bubble-top {
  top: clamp(12px, 3%, 28px);
  left: clamp(15%, 22%, 30%);
  z-index: 10;
}

.thumb-label {
  position: absolute;
  padding: 24px 12px;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
  line-height: 1.6;
  text-align: center;
}
.label-tr { top: 0px;   right: 0px; }
.label-br { top: 258px; right: 10px; }

.bubble-as-img {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.bubble-top.bubble-as-img { background-image: url('images/sec1_08.png'); }
.label-tr.bubble-as-img   { background-image: url('images/sec1_09.png'); }
.label-br.bubble-as-img   { background-image: url('images/sec1_10.png'); }

@media (min-width: 821px) {
  .bubble-top.bubble-as-img { width: 150px; padding-top: 14px; }
  .label-tr.bubble-as-img   { width: 100px; padding-top: 10px; }
  .label-br.bubble-as-img   { width: 120px; padding-top: 10px; }
}

.deco-phone {
  position: absolute;
  bottom: 30px;
  left: 60px;
  width: 110px;
  opacity: 0.82;
  transform: rotate(-18deg);
  z-index: 0;
  pointer-events: none;
  filter: sepia(0.2);
}

.sparkle {
  position: absolute; width: 14px; height: 14px;
  animation: twinkle 2.4s ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
.sp1 { top: 90px; left: 496px; animation-delay: 0s; }
.sp2 { top: 28px; right: 182px; animation-delay: 0.5s; }
.sp3 { bottom: 70px; left: 20px; animation-delay: 1s; }
.sp4 { bottom: 220px; right: 182px; animation-delay: 1.5s; }

/* ===================== FEATURES ===================== */
.features-band { background: transparent; padding: 20px 0 0; }
.features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: 20px; padding: 28px 20px 24px;
  border: 1.5px solid rgba(102,142,71,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(102,142,71,0.14); }
.feature-card-header {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 12px;
}
.feature-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-card-icon img { width: 56px; height: 56px; object-fit: contain; }
.feature-card-title { font-size: 15px; font-weight: 900; color: var(--text); line-height: 1.55; margin-bottom: 0; }
.feature-card-desc { font-size: 13px; line-height: 1.85; color: var(--text-light); }


/* ===================== ANIMATIONS ===================== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE (HERO / SECTION 01) ===================== */
@media (max-width: 1000px) {
  .hero-bg-photo { width: 52%; }
  .hero-content { max-width: 50%; }
}
@media (max-width: 820px) {
  .hero-body { padding: 32px 20px 0; min-height: auto; }
  .hero-bg-photo { display: none; }
  .hero-badge-corner { top: 36px; right: -60px; width: 260px; }
  .hero-content { max-width: 100%; padding-bottom: 20px; }
  .hero-bottom { padding: 0 20px; }
  .hero-pricing-bar {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 12px;
  }
  .hero-pricing-content { row-gap: 16px; }
  .pricing-divider { display: none; }
  .pricing-btns { grid-column: 1 / -1; width: 100%; flex-direction: row; }
  .btn-consult { flex: 1; }
  .s01-grid { grid-template-columns: 1fr; }
  .photo-cluster { height: 400px; margin-right: 0; }
  .photo-main-circle { width: 260px; height: 248px; left: 0; }
  .photo-thumb-circle { width: 148px; height: 142px; }
  .label-tr { right: 6px; }
  .label-br { top: 220px; right: 50px; }
  .sp1 { left: 268px; }
  .bubble-top { top: 10px; left: 2%; font-size: 11px; padding: 70px 12px; }
  .bubble-top.bubble-as-img { width: 120px; height: 90px; padding-top: 14px; }
  .label-tr.bubble-as-img { padding-top: 6px; }
  .label-br.bubble-as-img { padding-top: 6px; }
  .features-grid { grid-template-columns: repeat(2,1fr) !important; }
  .feature-card-title br { display: none; }
  .feature-card-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section-01 { padding: 48px 0 40px; }
}
@media (max-width: 560px) {
  .hero-badge-corner { width: 170px; top: 42px; right: -42px; }
  .hero-body { padding: 24px 16px 0; }
  .hero-bottom { padding: 0 16px; }
  .hero-pricing-content {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px 10px;
    padding: 14px 12px;
  }
  .pricing-divider { display: none; }
  .pricing-btns { grid-column: 1 / -1; width: 100%; }
  .pricing-info { align-items: center; }
  .pricing-price .amount { font-size: 26px; }
  .pricing-price .yen { font-size: 12px; }
  .pricing-price { white-space: nowrap; }
  .pricing-note { font-size: 10px !important; }
  .section-01 { padding: 40px 0 32px; }
  .s01-grid { gap: 32px; }
  .photo-cluster { height: 340px; margin-right: 0; }
  .photo-main-circle { width: 210px; height: 200px; left: 0; }
  .photo-thumb-circle { width: 120px; height: 115px; }
  .label-tr { top: -20px; right: 10px; font-size: 10px; }
  .label-br { top: 180px; right: 0px;  font-size: 10px; }
  .sp1 { left: 218px; }
  .bubble-top { top: 16px; left: 0%; font-size: 10px; padding: 20px 20px; }
  .bubble-top.bubble-as-img { width: 120px; height: 80px; padding-top: 14px; }
  .label-tr.bubble-as-img { padding-top: 4px; }
  .label-br.bubble-as-img { padding-top: 4px; }
  .features-grid { grid-template-columns: 1fr !important; }
  .feature-card { padding: 20px 16px 18px; }
  .feature-card-icon { width: 48px; height: 48px; }
  .feature-card-icon img { width: 48px; height: 48px; }
}

/* ===================== SECTION 02 ===================== */
.section-02 {
  background: var(--white);
  padding: 72px 40px 64px;
  overflow: hidden;
}

.s02-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  position: relative;
}
.s02-header::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 450px;
  width: 250px;
  height: 110px;
  background-image: url('images/sec2_0.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  pointer-events: none;
}
.s02-header-left { display: flex; flex-direction: column; gap: 10px; }
.s02-title {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text);
}
.s02-title .t-orange { color: var(--orange); }
.s02-title-small {
  font-size: 0.65em;
  font-weight: 700;
  color: var(--text);
  display: block;
  line-height: 1.1;
  margin-bottom: 0;
}

.s02-deco {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.s02-deco-icon {
  width: 88px;
  height: 88px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.s02-deco-icon--1 { background-image: url('images/sec2_1.png'); }
.s02-deco-icon--2 { background-image: url('images/sec2_2.png'); }
.s02-deco-icon--3 { background-image: url('images/sec2_3.png'); }

.s02-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.s02-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1.5px solid rgba(232,125,41,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.s02-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.s02-card-head { display: flex; align-items: flex-start; gap: 10px; padding: 16px 16px 10px; }
.s02-card-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.s02-card-title { font-size: 14px; font-weight: 900; color: var(--text); line-height: 1.55; padding-top: 4px; }
.s02-card-title .t-green { color: var(--green); }
.s02-card-photo {
  width: calc(100% - 24px); height: 160px;
  background: linear-gradient(135deg, #eaf2e3 0%, #d5e8c4 100%);
  overflow: hidden;
  margin: 0 12px;
  border-radius: 12px;
}
.s02-card-desc { padding: 12px 16px 18px; font-size: 13px; line-height: 1.85; color: var(--text-light); }

/* ===================== SECTION 03 ===================== */
.section-03 {
  background: var(--cream);
  padding: 72px 40px 64px;
  overflow: hidden;
}

.s03-header { display: flex; align-items: center; gap: 28px; margin-bottom: 48px; flex-wrap: wrap; }
.s03-header-left { display: flex; flex-direction: column; gap: 10px; }

.s03-badge {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--green);
  color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(102,142,71,0.30);
}
.s03-badge .s-label { font-size: 8px; letter-spacing: 0.12em; opacity: 0.9; font-weight: 700; margin-bottom: 1px; }
.s03-badge .s-num { font-size: 30px; font-weight: 900; line-height: 1; }

.s03-title { font-size: clamp(24px, 3.2vw, 38px); font-weight: 900; line-height: 1.3; color: var(--text); }
.s03-title .t-green { color: var(--green); }

.s03-bubble {
  width: 320px;
  align-self: stretch;
  margin-left: auto;
  background-image: url('images/sec3_01.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  flex-shrink: 0;
}

.s03-deco {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}
.s03-deco-circle {
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.s03-deco-circle:nth-child(1) { width: 40px; height: 40px; }
.s03-deco-circle:nth-child(2) { width: 56px; height: 56px; }
.s03-deco-circle + .s03-deco-circle { margin-left: 0; }

.s03-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.s03-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1.5px solid rgba(102,142,71,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.s03-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(102,142,71,0.14); }
.s03-card-head { display: flex; align-items: flex-start; gap: 10px; padding: 16px 16px 10px; }
.s03-card-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.s03-card-title { font-size: 14px; font-weight: 900; color: var(--text); line-height: 1.55; padding-top: 3px; }

.s03-card-image {
  width: calc(100% - 24px); height: 160px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin: 0 12px;
}
.s03-illust {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%; height: 100%;
}
.s03-illust-icon { font-size: 42px; line-height: 1; }
.s03-illust-label {
  font-size: 11px; font-weight: 700;
  color: var(--green-dark);
  background: rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 3px 10px;
}

.s03-card-list { padding: 12px 16px 18px; font-size: 13px; line-height: 1.85; color: var(--text-light); list-style: none; }
.s03-card-list li { position: relative; padding-left: 14px; margin-bottom: 4px; }
.s03-card-list li:last-child { margin-bottom: 0; }
.s03-card-list li::before { content: '・'; position: absolute; left: 0; color: var(--green); }

.s03-note {
  margin-top: 44px;
  padding: 14px 0;
  text-align: center;
  font-size: 13px; color: var(--text-light);
  border-top: 2px dashed rgba(102,142,71,0.25);
  border-bottom: 2px dashed rgba(102,142,71,0.25);
}

@media (max-width: 900px) {
  .s02-card-grid, .s03-card-grid { grid-template-columns: repeat(2, 1fr); }
  .s02-deco, .s03-deco { display: none; }
}
@media (max-width: 820px) {
  .section-02, .section-03 { padding: 48px 0 48px; }
  .s02-header, .s03-header { gap: 16px; flex-wrap: wrap; }
  .s02-header::after { left: 160px; width: 210px; height: 80px; }
  .s02-card-title br, .s03-card-title br { display: none; }
  .s03-header { position: relative; }
  .s03-bubble { position: absolute; top: 0; right: 0; width: 230px; height: 130px; margin-left: 0; }
}
@media (max-width: 560px) {
  .s02-card-grid, .s03-card-grid { grid-template-columns: 1fr; }
  .section-02, .section-03 { padding: 40px 0 40px; }
  .s03-bubble { width: 220px; height: 120px; }
}

/* ===================== SECTION 04 ===================== */
.section-04-wrap {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.s04-bg-image {
  position: absolute;
  top: 15%; bottom: 24%;
  left: 35%;
  right: 270px;
  background-image: url('images/sec4_08.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}
.section-04 {
  padding: 64px 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.s04-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.s04-left { flex: 1; }
.s04-right {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-top: 24px;
}
.s04-title { font-size: clamp(24px, 3vw, 36px); font-weight: 900; line-height: 1.3; margin-bottom: 10px; }
.s04-title .t-orange { color: var(--orange); }
.s04-subtitle { font-size: 15px; color: var(--text-light); margin-bottom: 32px; }

.s04-venue-grid { display: flex; flex-wrap: nowrap; gap: 12px; align-items: stretch; width: 100%; }
.s04-venue-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
  background: #fff;
  border: 1px solid var(--orange);
  border-radius: 14px;
  padding: 14px 12px 10px;
  flex: 1;
  min-width: 0;
  height: 130px;
}
.s04-venue-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.s04-venue-icon img { width: 100%; height: 100%; object-fit: contain; }
.s04-venue-wrap { display: flex; flex-direction: column; gap: 12px; }
.s04-venue-etc--inline {
  flex-shrink: 0;
  align-self: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--green);
  text-align: center;
  line-height: 1.5;
  padding: 0 6px;
  white-space: nowrap;
}
.s04-venue-etc--block {
  display: none;
  font-size: 14px;
  font-weight: 900;
  color: var(--green);
  text-align: left;
  line-height: 1.5;
}
.s04-bubble {
  position: absolute;
  top: -30px; left: -20px;
  width: 180px;
  height: 70px;
  background-image: url('images/sec4_06.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}
.s04-photo-main { width: 100%; height: 120px; background: var(--green-pale); border-radius: 16px; overflow: hidden; margin-top: 36px; }
.s04-photo-sub { width: 100%; height: 120px; background: var(--green-pale); border-radius: 16px; overflow: hidden; }

/* ===================== SECTION 05 ===================== */
.section-05-wrap { background: var(--cream); }
.section-05 { padding: 64px 40px; max-width: 1100px; margin: 0 auto; }
.s05-header { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.s05-title { font-size: clamp(22px, 3vw, 34px); font-weight: 900; }
.s05-bubble {
  position: absolute;
  top: 0; right: 0;
  width: 160px;
  height: 70px;
  background-image: url('images/sec5_bubble.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  pointer-events: none;
}
.s05-header-wrap { position: relative; margin-bottom: 20px; }
.s05-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.s05-col { display: flex; flex-direction: row; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.s05-col-body { padding: 24px; flex: 1; }
.s05-col-badge { display: inline-block; background: var(--green); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.s05-col-text { font-size: 13px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }
.s05-check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.s05-check-list li { font-size: 13px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.s05-check-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9 L7.5 12.5 L14 6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
.s05-col-photo { width: 160px; flex-shrink: 0; background: var(--green-pale); overflow: hidden; }

/* ===================== SECTION 06 ===================== */
.section-06-wrap { background: var(--white); position: relative; }
.section-06-wrap::after { content:''; position:absolute; right:3rem; bottom:36px; width:400px; height:375px; background-image:url(images/cost_01.png); background-size:contain; background-repeat:no-repeat; background-position:right bottom; pointer-events:none; }
.section-06 {
  padding: 36px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 14px 28px;
}
.s06-header { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.s06-title { font-size: clamp(22px, 3vw, 34px); font-weight: 900; }
.s06-body { grid-column: 1; grid-row: 2; display: flex; gap: 16px; align-items: stretch; }
.s06-voices { grid-column: 2; grid-row: 1 / 3; }
.s06-cards-row { display: flex; gap: 16px; align-items: stretch; flex: 1; }
.s06-left { display: flex; flex-direction: column; flex: 1; max-width: 530px; }

.s06-price-row { display: flex; gap: 16px; flex-wrap: nowrap; flex: 1; align-items: stretch; }
.s06-price-card {
  background: var(--white);
  border: 2px solid var(--green-pale);
  border-radius: 16px;
  padding: 16px 20px;
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.s06-price-label { display: inline-block; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 10px; margin-bottom: 12px; }
.s06-price-sub { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.s06-price-num { font-size: 46px; font-weight: 900; color: var(--orange); line-height: 1; white-space: nowrap; }
.s06-price-unit { font-size: 20px; font-weight: 700; white-space: nowrap; }
.s06-price-note { font-size: 11px; color: var(--text-light); margin-top: 6px; }
.s06-price-card.transport { border-color: var(--green-pale); flex: 2; }
.s06-price-card.transport .s06-price-num { color: var(--orange); font-size: 32px; }
.s06-price-card.transport .s06-price-unit { font-size: 16px; }
.s06-transport-icon {
  width: 48px; height: 48px;
  background-image: url('images/sec06_01.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: 4px;
}
.s06-small-card {
  border: 1.0px solid var(--orange);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-image: url('images/sec6_01.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right -30px;
  display: flex;
  align-items: flex-end;
  flex: 1;
  align-self: stretch;
}
.s06-small-card-text { width: 100%; padding: 14px 24px; background: linear-gradient(to top, rgba(255,249,240,0.95) 80%, rgba(255,249,240,0)); }
.s06-small-title { font-size: 15px; font-weight: 900; color: var(--orange); margin-bottom: 8px; }
.s06-small-desc { font-size: 12px; line-height: 1.8; color: var(--text-light); }

.s06-regular { margin-top:32px; border-top:1.5px solid rgba(92,122,62,0.15); padding-top:28px; }
.s06-regular-head { display:flex; align-items:center; gap:16px; margin-bottom:20px; flex-wrap:wrap; }
.s06-regular-badge { background:var(--green-dark); color:#fff; font-size:12px; font-weight:700; padding:6px 16px; border-radius:40px; white-space:nowrap; }
.s06-regular-sub { font-size:13px; color:var(--text-light); line-height:1.7; }
.s06-regular-cards { display:grid; grid-template-columns:repeat(2, auto); gap:16px; margin-bottom:14px; }
.s06-regular-card { border:1.5px solid rgba(92,122,62,0.2); border-radius:14px; padding:20px; position:relative; background:var(--white); }
.s06-regular-card.featured { border-color:var(--orange); background:#fff9f4; }
.s06-regular-card-badge { position:absolute; top:-10px; left:16px; background:var(--orange); color:#fff; font-size:10px; font-weight:700; padding:3px 12px; border-radius:20px; }
.s06-regular-type { font-size:13px; font-weight:900; color:var(--text); margin-bottom:8px; }
.s06-regular-list { margin-top:12px; padding-left:0; list-style:none; display:flex; flex-direction:column; gap:6px; }
.s06-regular-list li { font-size:12px; color:var(--text-light); padding-left:16px; position:relative; line-height:1.6; }
.s06-regular-list li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-size:11px; font-weight:700; }
.s06-regular-note { font-size:11px; color:var(--text-light); line-height:1.8; }

.s06-voices {
  background: var(--cream);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s06-voices-title { font-size: 14px; font-weight: 900; color: var(--green); display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.s06-voice-item { background: var(--white); border-radius: 14px; padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; font-size: 12px; line-height: 1.7; color: var(--text); }
.s06-voice-item.reverse { flex-direction: row-reverse; }
.s06-voice-item.reverse .s06-voice-age { text-align: left; }
.s06-voice-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--green-pale); flex-shrink: 0; overflow: hidden; }
.s06-voice-body { flex: 1; }
.s06-voice-age { font-size: 10px; color: var(--text-light); margin-top: 4px; text-align: right; }

/* ===================== SECTION 08 ===================== */
.section-08-wrap { background: var(--cream); }
.section-08 { padding: 64px 40px; max-width: 1100px; margin: 0 auto; }
.s08-inner { display: grid; grid-template-columns: 1fr 1.4fr 180px; gap: 32px; align-items: start; }
.s08-title { font-size: clamp(22px, 2.8vw, 32px); font-weight: 900; line-height: 1.3; margin-bottom: 12px; }
.s08-desc { font-size: 13px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }
.s08-free-label { display: inline-flex; align-items: center; gap: 6px; background: #fff3e0; border: 1.5px solid var(--orange); border-radius: 26px; padding: 6px 14px; font-size: 20px; font-weight: 700; color: var(--orange); }
.s08-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.s08-contact-item { background: var(--white); border-radius: 16px; padding: 20px 20px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; box-shadow: var(--shadow); }
.s08-contact-title { font-size: 13px; font-weight: 900; color: var(--text); margin-bottom: 4px; white-space: nowrap; }
.s08-contact-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.s08-mail-btn { flex: none; width: 100%; font-size: 13px; }
.s08-banner { margin-top: 32px; background: var(--green-pale); border: 2px solid var(--green); border-radius: 16px; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.s08-banner-text { font-size: 13px; font-weight: 700; color: var(--text); }
.s08-right { position: relative; border-radius: 20px; overflow: hidden; height: 280px; width: 250px; flex-shrink: 0; background: var(--green-pale); }

/* ===================== FAQ ===================== */
.faq-wrap { background: var(--white); }
.faq-section { padding: 64px 40px; max-width: 1100px; margin: 0 auto; }

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
}
.faq-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
}
.faq-title .accent { color: var(--green); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(102,142,71,0.08);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--green-pale);
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}
.faq-chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.faq-question.active .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--white);
  border: 1.5px solid rgba(102,142,71,0.10);
  border-top: none;
  border-radius: 0 0 16px 16px;
}
.faq-a-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
}
.faq-badge {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.faq-badge-q { background: var(--green); color: #fff; }
.faq-badge-a { background: var(--orange); color: #fff; }
.faq-q-text {
  font-size: 14px; font-weight: 700;
  color: var(--green-dark);
  line-height: 1.65;
  padding-top: 3px;
}
.faq-a-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.85;
  padding-top: 4px;
}

/* ===================== FINAL MESSAGE ===================== */
.section-final { background: var(--white); padding: 72px 40px 56px; position: relative; }
.s-final-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 40px; align-items: center; }
.s-final-left { flex: 1; }
.s-final-label { display: inline-flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.s-final-label .s-label { font-size: 10px; color: var(--text-light); }
.s-final-label .s-num { font-size: 28px; font-weight: 900; color: var(--text); }
.s-final-title { font-size: clamp(22px, 3.5vw, 42px); font-weight: 900; color: var(--text); line-height: 1.35; margin-bottom: 20px; }
.s-final-title em { font-style: normal; color: var(--green); }
.s-final-desc { font-size: 14px; color: var(--text-light); line-height: 1.9; }
.s-final-right { width: 340px; flex-shrink: 0; position: relative; }
.s-final-photo { width: 100%; height: 260px; border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.1); }
.s-final-bubble {
  position: absolute;
  top: -28px; left: -20px;
  background-image: url('images/final_03.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 16px 20px 36px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  box-shadow: none;
  z-index: 2;
}
.s-final-houses {
  margin-top: 24px;
  margin-left: -40px;
  margin-bottom: -96px;
  width: calc(100% + 80px);
  height: 210px;
  background-image: url('images/final_01.png');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
}

/* ===================== RESPONSIVE (SECTION 04–FINAL) ===================== */
@media (min-width: 821px) and (max-width: 1100px) {
  .s04-venue-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
  .s04-venue-etc--inline { display: none; }
  .s04-venue-etc--block { display: block; font-size: 13px; }
}
@media (max-width: 820px) {
  .s04-inner { flex-direction: column; }
  .s04-left { width: 100%; }
  .s04-right { width: 100%; flex-direction: row; margin-top: 0; }
  .s04-photo-main, .s04-photo-sub { flex: 1; margin-top: 8px; }
  .s04-bg-image { display: none; }
  .s04-venue-wrap { width: 100%; }
  .s04-venue-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); width: 100%; gap: 6px; }
  .s04-venue-item { flex: 1 1 0; min-width: 0; height: auto; overflow: hidden;
    padding: 10px 4px 8px; font-size: 10px; gap: 6px; border-radius: 10px; }
  .s04-venue-icon { width: 42px; height: 42px; }
  .s04-venue-etc--inline { display: none; }
  .s04-venue-etc--block { display: block; font-size: 13px; }
  .s05-cols { grid-template-columns: 1fr; }
  .section-06 { grid-template-columns: 1fr; grid-template-rows: auto; padding: 36px 20px; }
  .s06-header { grid-column: 1; grid-row: auto; }
  .s06-body   { grid-column: 1; grid-row: auto; min-width: 0; }
  .s06-voices { grid-column: 1; grid-row: auto; min-width: 0; }
  .s06-regular { min-width: 0; }
  .section-06-wrap::after { display: none; }
  .s06-cards-row { flex-direction: column; }
  .s06-left { max-width: 100%; }
  .s06-price-row { flex-wrap: nowrap; }
  .s06-price-card { white-space: normal; }
  .s06-small-card { min-height: 220px; background-size: cover; background-position: center -40px; }
  .s06-regular-card { min-width: 0; }
  .s06-regular-card .s06-price-num { font-size: 34px; }
  .s06-regular-card .s06-price-unit { font-size: 14px; }
  .s06-regular-cards { grid-template-columns: 1fr 1fr; }
  .s08-inner { grid-template-columns: 1fr; }
  .s08-contacts { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .s08-contact-item { padding: 12px 8px; gap: 8px; }
  .s08-contact-title { white-space: normal; font-size: 11px; }
  .s08-contact-desc { font-size: 10px; }
  .s08-right { width: 100%; height: 200px; }
  .s-final-inner { flex-direction: column; }
  .s-final-left { width: 100%; }
  .s-final-right { width: 100%; }
  .s-final-bubble { left: 0; }
  .s-final-houses {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: 0;
    height: 120px;
    background-size: 100% auto;
    background-position: center bottom;
  }
  .section-04, .section-05, .section-08, .faq-section { padding: 48px 0; }
  .section-final { padding: 48px 0 40px; }
}
@media (max-width: 560px) {
  .s08-banner { flex-direction: column; align-items: flex-start; }
  .s06-price-row { flex-direction: column; flex-wrap: wrap; }
  .s06-price-card { min-width: unset; width: 100%; }
  .s06-price-card.transport .s06-price-num { font-size: 44px; }
  .s06-price-card.transport .s06-price-unit { font-size: 20px; }
  .s06-regular-cards { grid-template-columns: 1fr; }
}
