*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mint: #7EC8C8;
  --mint-light: #E8F7F7;
  --mint-pale: #F0FAFA;
  --coral: #F0A896;
  --coral-light: #FDF0ED;
  --cream: #FAFAF5;
  --text: #333333;
  --text-sub: #333333;
  --text-light: #aaa;
  --white: #ffffff;
  --script: 'Caveat', cursive;
  --sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
}

html {
  scroll-padding-top: 80px;
  font-size: 18px;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.9;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(126, 200, 200, 0.2);
  padding: 4px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(62%) sepia(20%) saturate(700%) hue-rotate(140deg) brightness(105%);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--mint);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-divider {
  width: 1px;
  height: 28px;
  background: var(--mint-light);
}

.header-tel {
  text-align: right;
}

.header-tel .free {
  font-size: 0.8rem;
  color: var(--mint);
  font-weight: 500;
  display: block;
}

.header-tel .num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.btn-header {
  background: var(--coral);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

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

.hamburger { display: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* 水彩風装飾 */
.blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.18;
  pointer-events: none;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--mint);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--coral);
  bottom: 60px;
  left: -60px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  background: var(--mint-light);
  color: var(--mint);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--text);
}

.hero-sub {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: var(--text-sub);
  margin-bottom: 10px;
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--coral);
}

.hero-desc {
  font-size: 0.88rem;
  color: var(--text-sub);
  margin-bottom: 36px;
  line-height: 2;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-main {
  background: var(--coral);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s, opacity 0.2s;
  letter-spacing: 0.05em;
}

.btn-main:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-sub {
  background: transparent;
  color: var(--mint);
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid var(--mint);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.btn-sub:hover {
  background: var(--mint);
  color: var(--white);
}

.hero-visual {
  position: relative;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--coral-light) 100%);
  border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.hero-badge .num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mint);
}

.hero-badge .label {
  font-size: 0.8rem;
  color: var(--text-sub);
  display: block;
}

/* ===== SECTION 共通 ===== */
.sec {
  padding: 100px 48px;
}

.sec-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.sec-head .script {
  font-family: var(--script);
  font-size: 2.4rem;
  color: var(--mint);
  display: block;
  margin-bottom: 4px;
}

.sec-head h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
}

.sec-head .line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--coral);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== MESSAGE ===== */
.message {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.message::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--mint-light);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.message-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.message-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--mint-light) 0%, var(--mint-pale) 100%);
  border-radius: 50% 50% 40% 40% / 30% 30% 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.message-text .script {
  font-family: var(--script);
  font-size: 2.4rem;
  color: var(--mint);
  display: block;
  margin-bottom: 16px;
}

.message-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.7;
}

.message-text p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 2.2;
}

/* ===== STRENGTHS ===== */
.strengths {
  background: var(--cream);
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.point-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.point-item.reverse {
  direction: rtl;
}

.point-item.reverse>* {
  direction: ltr;
}

.point-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--mint-light) 0%, #d0f0f0 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.point-photo::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--coral);
  opacity: 0.1;
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
}

.point-content .num {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--coral);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}

.point-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--text);
}

.point-content h3 em {
  font-style: normal;
  color: var(--mint);
  border-bottom: 2px solid var(--mint-light);
}

.point-content p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 2.2;
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(126, 200, 200, 0.15);
}

.service-img {
  height: 160px;
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--coral-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.service-body p {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.9;
}

.service-body .more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--mint);
  text-decoration: none;
  border-bottom: 1px solid var(--mint);
  padding-bottom: 2px;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--mint-pale);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.gallery-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--coral-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.gallery-meta {
  padding: 14px 16px;
}

.gallery-meta .area {
  font-size: 0.68rem;
  color: var(--mint);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.gallery-meta .title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

/* ===== VOICES ===== */
.voices {
  background: var(--coral-light);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(240, 168, 150, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voice-stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.voice-badge {
  display: inline-block;
  background: var(--mint-light);
  color: var(--mint);
  font-size: 0.68rem;
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.voice-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.9;
  flex: 1;
}

.voice-scores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.voice-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.voice-score .label {
  font-size: 0.6rem;
  color: var(--text-sub);
}

.voice-score .val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
}

.voice-meta {
  border-top: 1px solid #f0ece8;
  padding-top: 12px;
  font-size: 0.72rem;
  color: var(--text-sub);
  line-height: 1.8;
}

.voice-meta .area {
  color: var(--mint);
  font-weight: 500;
}

/* ===== AREAS ===== */
.areas {
  background: var(--white);
  text-align: center;
}

.areas-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.area-chip {
  background: var(--mint-light);
  color: var(--mint);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 500;
}

.area-chip.main {
  background: var(--mint);
  color: var(--white);
}

/* ===== FLOW ===== */
.flow {
  background: var(--cream);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--mint), var(--coral));
  z-index: 0;
}

.flow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.flow-step .circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.2rem;
  box-shadow: 0 4px 16px rgba(126, 200, 200, 0.2);
}

.flow-step:nth-child(odd) .circle {
  background: var(--mint);
  border-color: var(--mint);
}

.flow-step .num {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--coral);
  display: block;
  margin-bottom: 4px;
}

.flow-step .name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

/* ===== ACCESS ===== */
.access {
  background: var(--white);
}

.access-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.access-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 420px;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.access-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.access-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.access-list li {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.7;
}

.access-list .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.access-list strong {
  display: block;
  font-size: 0.72rem;
  color: var(--mint);
  font-weight: 500;
  margin-bottom: 2px;
}

/* ===== INSTAGRAM ===== */
.instagram {
  background: linear-gradient(135deg, var(--coral-light) 0%, var(--mint-light) 100%);
  text-align: center;
}

.insta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.insta-id {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--coral);
  display: block;
  margin-bottom: 12px;
}

.insta-desc {
  font-size: 0.88rem;
  color: var(--text-sub);
  margin-bottom: 28px;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

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

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-left .script {
  font-family: var(--script);
  font-size: 2.4rem;
  color: var(--mint);
  display: block;
  margin-bottom: 8px;
}

.contact-left h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.tel-block {
  background: var(--mint-light);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.tel-block .free {
  font-size: 0.68rem;
  color: var(--mint);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

.tel-block .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.tel-block .hours {
  font-size: 0.72rem;
  color: var(--text-sub);
  display: block;
  margin-top: 4px;
}

.contact-address {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 2;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-row label span {
  background: var(--coral);
  color: var(--white);
  font-size: 0.6rem;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
}

.form-row select {
  padding-right: 48px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #c0c0c0;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--mint);
}

.form-row textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ===== トップへ戻るボタン ===== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: var(--mint);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(126, 200, 200, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--coral);
}

@media (max-width: 768px) {
  .back-to-top {
    display: none;
  }
}

/* ===== DEMO NOTICE ===== */
.demo-notice {
  background: #fff8e1;
  border-top: 2px solid #f0c040;
  text-align: center;
  padding: 12px 24px;
  font-size: 13px;
  color: #7a6000;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-light);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 32px 40px;
  font-size: 0.75rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto 12px;
  border-radius: 6px;
  filter: brightness(0) invert(1);
}

/* ===== SP ===== */
@media (max-width: 830px) {
  header {
    padding: 12px 20px;
  }

  .header-tel {
    display: none;
  }

  .header-nav {
    display: none;
  }

  .header-tel { display: none; }
  .header-divider { display: none; }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 201;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    padding: 80px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
  }

  .drawer.open { right: 0; }

  .drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-sub);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
  }

  .drawer-close:hover {
    background: var(--mint-light);
    color: var(--mint);
  }

  .drawer a {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--mint-light);
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }

  .drawer a:hover { color: var(--mint); }

  .drawer .drawer-btn {
    margin-top: 28px;
    background: var(--coral);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-size: 0.88rem;
    border-bottom: none;
  }

  .drawer-tel {
    margin-top: auto;
    padding-top: 24px;
    text-align: center;
  }

  .drawer-tel .free {
    font-size: 0.65rem;
    color: var(--mint);
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
  }

  .drawer-tel .num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
  }

  .overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 199;
  }

  .overlay.open { display: block; }

  .sec {
    padding: 70px 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .message-wrap {
    grid-template-columns: 1fr;
  }

  .message-photo {
    max-width: 200px;
    margin: 0 auto;
  }

  .point-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .point-item .point-photo {
    order: 2;
  }

  .point-item .point-content {
    order: 1;
  }

  .point-item.reverse {
    direction: ltr;
  }

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

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

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

  .flow-steps::before {
    display: none;
  }

  .flow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .flow-step .circle {
    margin: 0;
    flex-shrink: 0;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .sec-head .script {
    font-size: 1.8rem;
  }

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

  .access-wrap {
    grid-template-columns: 1fr;
  }
}
